Ticket #2456: 2456-presentation-mode-im.patch
File 2456-presentation-mode-im.patch, 35.4 KB (added by deni, 15 years ago) |
---|
-
modules/org.sophie2.base.menus/src/main/java/org/sophie2/base/menus/MenuBar.java
### Eclipse Workspace Patch 1.0 #P sophie
4 4 5 5 import org.sophie2.base.visual.BaseVisualElement; 6 6 import org.sophie2.core.prolib.annot.Own; 7 import org.sophie2.core.prolib.annot.Setup; 7 8 import org.sophie2.core.prolib.impl.AutoListProperty; 8 9 import org.sophie2.core.prolib.impl.ResourceProperty; 9 10 import org.sophie2.core.prolib.interfaces.ListProp; … … 40 41 protected void setup(JMenuBar res) { 41 42 items().get(); // ensure this is available 42 43 res.setEnabled(true); 43 res.setVisible(true); 44 45 44 46 45 res.removeAll(); 47 46 for(MenuMember m : items().get()) { 48 47 assert m != null : "cannot add a separator (marked by null) in a menu bar"; … … 51 50 res.repaint(); 52 51 53 52 } 53 54 @Setup 55 @SuppressWarnings("unused") 56 public void setupVisibility(JMenuBar res) { 57 res.setVisible(visible().get()); 58 } 54 59 } 55 60 return getBean().makeProp(swingMenuBar.class); 56 61 } -
modules/org.sophie2.main.app.menus/src/main/java/org/sophie2/main/app/menus/AppMenuBar.java
1 1 package org.sophie2.main.app.menus; 2 2 3 3 import org.sophie2.base.layout.model.MainWindow; 4 import org.sophie2.base.layout.model.MainWindowOptions.ScreenMode; 4 5 import org.sophie2.base.menus.MenuBar; 5 6 import org.sophie2.base.skins.SkinElementId; 6 7 import org.sophie2.base.visual.skins.RelatedChildren; 7 8 import org.sophie2.base.visual.skins.VisualElementDef; 8 9 import org.sophie2.core.prolib.interfaces.Prop; 9 10 import org.sophie2.main.app.commons.app.AppMainWindow; 11 import org.sophie2.main.app.commons.util.AppViewUtil; 10 12 import org.sophie2.main.app.menus.view.ViewMenu; 11 13 12 14 /** … … 31 33 public AppMenuBar() { 32 34 getBean(); 33 35 } 36 37 @Override 38 public boolean computeVisible() { 39 AppMainWindow mainWindow = AppViewUtil.findMainWindow(this); 40 return !ScreenMode.PRESENTATION.equals( 41 mainWindow.mainWindowOptions().get().getScreenMode()); 42 } 34 43 35 44 } -
modules/org.sophie2.main.media.natlib/src/main/java/org/sophie2/main/media/natlib/output/NativeAudioOutput.java
83 83 } 84 84 85 85 /** 86 * The cur ent state of the output.86 * The current state of the output. 87 87 */ 88 88 protected State state = State.NEW; 89 89 /** … … 198 198 } 199 199 } 200 200 201 // the number of times the output has been started 202 private int count; 203 201 204 public void start() { 202 assert this.state == State.NEW : "Not new : " + this.state; 203 this.state = State.STARTING; 204 doInEdt(this.stepRunnable); 205 if (this.count == 0) { 206 assert this.state == State.NEW : "Not new : " + this.state; 207 this.state = State.STARTING; 208 doInEdt(this.stepRunnable); 209 } 210 this.count++; 205 211 } 206 212 207 213 public void stop() { 208 this.state = State.STOPPING; 214 this.count--; 215 if (this.count == 0) { 216 this.state = State.STOPPING; 217 } 209 218 } 210 219 211 220 public void registerComposite(final MediaComposite media) { -
modules/org.sophie2.main.layout.mydoggy/src/main/java/org/sophie2/main/layout/mydoggy/MDAppletWindow.java
15 15 import org.sophie2.base.commons.util.position.ImmSize; 16 16 import org.sophie2.base.layout.impl.DefaultMainWindow; 17 17 import org.sophie2.base.layout.model.MainWindow; 18 import org.sophie2.base.layout.model.MainWindowOptions.ScreenMode;19 18 import org.sophie2.core.mvc.LogicR3; 20 19 import org.sophie2.core.mvc.events.EventR3; 21 20 import org.sophie2.core.prolib.annot.Setup; … … 112 111 private static final long serialVersionUID = 1L; 113 112 114 113 public void actionPerformed(ActionEvent e) { 115 // fire switch to normal mode116 114 if (mainWindow().get().mainWindowOptions().get().isInFullscreen()) { 117 115 LogicR3.fire(new EventR3(mainWindow().get(), 118 116 null, null, e, 119 DefaultMainWindow.EventIds. SET_SCREEN_MODE,120 ScreenMode.NORMAL));117 DefaultMainWindow.EventIds.QUIT_SCREEN_MODE, 118 mainWindow().get().mainWindowOptions().get().getScreenMode())); 121 119 } 122 120 } 123 121 -
modules/org.sophie2.main.app.menus/src/main/java/org/sophie2/main/app/menus/view/PresentationItem.java
1 package org.sophie2.main.app.menus.view; 2 3 import java.awt.event.KeyEvent; 4 5 import javax.swing.KeyStroke; 6 7 import org.sophie2.base.commons.util.ImageUtil; 8 import org.sophie2.base.commons.util.ImmImage; 9 import org.sophie2.base.menus.MenuMember; 10 import org.sophie2.base.skins.SkinElementId; 11 import org.sophie2.base.visual.BaseVisualElement; 12 import org.sophie2.base.visual.skins.ElementPartCreator; 13 import org.sophie2.base.visual.skins.SkinPartDef; 14 import org.sophie2.base.visual.skins.VisualElementDef; 15 import org.sophie2.main.app.commons.util.AppViewUtil; 16 import org.sophie2.main.app.menus.AppMenuItem; 17 18 /** 19 * The <i>View -> Presentation Mode</i> menu item. 20 * 21 * @author deni 22 */ 23 @SkinElementId("app.menus.view.presentation-menu-item") 24 @VisualElementDef(parent=ViewMenu.class, sortKey="44-presentation-item") 25 public class PresentationItem extends AppMenuItem { 26 27 @SuppressWarnings("unused") 28 @SkinPartDef 29 private static void defineSkin(ElementPartCreator part) { 30 part.add(BaseVisualElement.TITLE_PROP_ID, "Presentation Mode"); 31 part.add(BaseVisualElement.TOOL_TIP_PROP_ID, "Use Sophie in presentation mode"); 32 part.add(MenuMember.MNEMONIC_PROP_ID, KeyEvent.VK_P); 33 part.add(MenuMember.ACCELERATOR_PROP_ID, KeyStroke.getKeyStroke(KeyEvent.VK_F5, 0)); 34 part.add(ICON_PROP_ID, ImageUtil.loadIcon("tick.png")); 35 } 36 37 @Override 38 protected boolean computeEnabled() { 39 return AppViewUtil.getCurrentBookView(this) != null; 40 } 41 42 @Override 43 protected ImmImage computeIcon() { 44 return null; 45 } 46 } -
modules/org.sophie2.base.layout/src/main/java/org/sophie2/base/layout/model/Flap.java
1 1 package org.sophie2.base.layout.model; 2 2 3 import org.sophie2.base.layout.model.MainWindowOptions.ScreenMode; 3 4 import org.sophie2.base.visual.BaseVisualElement; 4 5 import org.sophie2.base.visual.VisualProvider; 5 6 import org.sophie2.core.prolib.annot.Own; … … 60 61 } 61 62 return getBean().makeProp(tabs.class); 62 63 } 64 65 @Override 66 public boolean computeVisible() { 67 ScreenMode screenMode = parent().get().mainWindowOptions().get().getScreenMode(); 68 return !ScreenMode.PRESENTATION.equals(screenMode); 69 } 63 70 64 71 } -
modules/org.sophie2.base.scene/src/main/java/org/sophie2/base/scene/BaseSceneVisual.java
42 42 } 43 43 part.addInteraction("M_CONTROL TAB", EventIds.SELECT_NEXT_BOOK); 44 44 part.addInteraction("M_CONTROL M_SHIFT TAB", EventIds.SELECT_PREVIOUS_BOOK); 45 46 45 } 47 46 48 47 /** … … 111 110 } 112 111 113 112 @Override 114 protected void setup(JComponent res) { 113 protected void setup(JComponent res) { 115 114 Dimension size = actualViewRect().get().getSize().toDimension(); 116 115 res.setSize(size); 117 116 res.setPreferredSize(size); -
modules/org.sophie2.base.layout/src/main/java/org/sophie2/base/layout/model/TabBar.java
1 1 package org.sophie2.base.layout.model; 2 2 3 import org.sophie2.base.layout.model.MainWindowOptions.ScreenMode; 3 4 import org.sophie2.base.visual.BaseSwingVisualElement; 4 5 import org.sophie2.core.prolib.interfaces.Prop; 5 6 … … 21 22 return getBean().makeParentProp(MainWindow.class); 22 23 } 23 24 24 25 @Override 26 public boolean computeVisible() { 27 ScreenMode screenMode = parent().get().mainWindowOptions().get().getScreenMode(); 28 return !ScreenMode.PRESENTATION.equals(screenMode); 29 } 30 25 31 } -
modules/org.sophie2.main.app.commons/src/main/java/org/sophie2/main/app/commons/page/NavigationLogic.java
1 package org.sophie2.main.app.commons.page; 2 3 import org.sophie2.base.layout.model.MainWindow; 4 import org.sophie2.base.layout.model.MainWindowOptions.ScreenMode; 5 import org.sophie2.base.model.resources.r4.ResourceRefList; 6 import org.sophie2.base.scene.BaseSceneVisual; 7 import org.sophie2.base.visual.interaction.InputEventR3; 8 import org.sophie2.base.visual.interaction.Key; 9 import org.sophie2.core.mvc.EventFilterBuilder; 10 import org.sophie2.core.mvc.OperationDef; 11 import org.sophie2.core.mvc.events.EventR3; 12 import org.sophie2.main.app.commons.book.BookView; 13 import org.sophie2.main.app.commons.util.AppViewUtil; 14 15 /** 16 * Handles events for navigating through the current book. 17 * 18 * @author deni 19 */ 20 public enum NavigationLogic implements OperationDef { 21 22 /** 23 * Goes to the previous on pressing PageUp key. 24 */ 25 ON_PAGE_UP { 26 27 public void defineFilter(EventFilterBuilder filter) { 28 filter.setSourceClass(BaseSceneVisual.class); 29 filter.setEventId(InputEventR3.KEY_PRESSED); 30 filter.setEventParam(InputEventR3.KEY_PARAM_INDEX, Key.PAGE_UP); 31 } 32 33 @SuppressWarnings("synthetic-access") 34 public boolean handle(EventR3 event) { 35 BaseSceneVisual visual = event.getSource(BaseSceneVisual.class); 36 return goToPrevPage(visual); 37 } 38 }, 39 40 /** 41 * Goes to the next page on pressing PageDown key. 42 */ 43 ON_PAGE_DOWN { 44 45 public void defineFilter(EventFilterBuilder filter) { 46 filter.setSourceClass(BaseSceneVisual.class); 47 filter.setEventId(InputEventR3.KEY_PRESSED); 48 filter.setEventParam(InputEventR3.KEY_PARAM_INDEX, Key.PAGE_DOWN); 49 } 50 51 @SuppressWarnings("synthetic-access") 52 public boolean handle(EventR3 event) { 53 BaseSceneVisual visual = event.getSource(BaseSceneVisual.class); 54 return goToNextPage(visual); 55 } 56 }, 57 58 /** 59 * Goes to the previous page on pressing the left arrow 60 * if the current book is in presentation mode. 61 */ 62 ON_LEFT_ARROW { 63 64 public void defineFilter(EventFilterBuilder filter) { 65 filter.setSourceClass(BaseSceneVisual.class); 66 filter.setEventId(InputEventR3.KEY_PRESSED); 67 filter.setEventParam(InputEventR3.KEY_PARAM_INDEX, Key.LEFT); 68 } 69 70 @SuppressWarnings("synthetic-access") 71 public boolean handle(EventR3 event) { 72 BaseSceneVisual visual = event.getSource(BaseSceneVisual.class); 73 MainWindow window = AppViewUtil.findMainWindow(visual); 74 ScreenMode screenMode = window.mainWindowOptions().get().getScreenMode(); 75 if (screenMode != ScreenMode.PRESENTATION) { 76 return false; 77 } 78 return goToPrevPage(visual); 79 } 80 }, 81 82 /** 83 * Goes to the next page on pressing the right arrow 84 * if the current book is in presentation mode. 85 */ 86 ON_RIGHT_ARROW { 87 88 public void defineFilter(EventFilterBuilder filter) { 89 filter.setSourceClass(BaseSceneVisual.class); 90 filter.setEventId(InputEventR3.KEY_PRESSED); 91 filter.setEventParam(InputEventR3.KEY_PARAM_INDEX, Key.RIGHT); 92 } 93 94 @SuppressWarnings("synthetic-access") 95 public boolean handle(EventR3 event) { 96 BaseSceneVisual visual = event.getSource(BaseSceneVisual.class); 97 MainWindow window = AppViewUtil.findMainWindow(visual); 98 ScreenMode screenMode = window.mainWindowOptions().get().getScreenMode(); 99 if (screenMode != ScreenMode.PRESENTATION) { 100 return false; 101 } 102 return goToNextPage(visual); 103 } 104 }, 105 106 /** 107 * Goes to the next page on pressing space 108 * if the current book is in presentation mode. 109 */ 110 ON_SPACE { 111 112 public void defineFilter(EventFilterBuilder filter) { 113 filter.setSourceClass(BaseSceneVisual.class); 114 filter.setEventId(InputEventR3.KEY_PRESSED); 115 filter.setEventParam(InputEventR3.KEY_PARAM_INDEX, Key.SPACE); 116 } 117 118 @SuppressWarnings("synthetic-access") 119 public boolean handle(EventR3 event) { 120 BaseSceneVisual visual = event.getSource(BaseSceneVisual.class); 121 MainWindow window = AppViewUtil.findMainWindow(visual); 122 ScreenMode screenMode = window.mainWindowOptions().get().getScreenMode(); 123 if (screenMode != ScreenMode.PRESENTATION) { 124 return false; 125 } 126 return goToNextPage(visual); 127 } 128 }; 129 130 private static boolean goToPrevPage(BaseSceneVisual visual) { 131 BookView bookView = AppViewUtil.getCurrentBookView(visual); 132 if (bookView == null) { 133 return false; 134 } 135 136 int index = bookView.getCurPageIndex() - 1; 137 if (index < 0) { 138 return false; 139 } 140 141 ResourceRefList pages = bookView.model().get().getPages(); 142 bookView.goToPage(pages.get(index)); 143 144 return true; 145 } 146 147 private static boolean goToNextPage(BaseSceneVisual visual) { 148 BookView bookView = AppViewUtil.getCurrentBookView(visual); 149 if (bookView == null) { 150 return false; 151 } 152 153 int index = bookView.getCurPageIndex() + 1; 154 ResourceRefList pages = bookView.model().get().getPages(); 155 if (index >= pages.size()) { 156 return false; 157 } 158 bookView.goToPage(pages.get(index)); 159 160 return true; 161 } 162 163 } -
modules/org.sophie2.main.layout.mydoggy/src/main/java/org/sophie2/main/layout/mydoggy/MDMainWindow.java
424 424 this.helper.removeAll(); 425 425 426 426 MainWindow mainWindow = mainWindow().get(); 427 MainWindowOptions options = mainWindow.mainWindowOptions().get(); 427 428 428 if ( !mainWindow.mainWindowOptions().get().isSdi()) {429 if (options.isSdi() || ScreenMode.PRESENTATION.equals(options.getScreenMode())) { 429 430 431 if (mainWindow.desktopDocument().get() != null) { 432 registerDesktopScrollPane( 433 mainWindow.desktopDocument().get().swingComponent().get()); 434 } 435 436 } else { 437 430 438 if (mainWindow.tabBar().get() != null) { 431 439 this.helper.add(mainWindow.tabBar().get().swingComponent().get(), 432 440 BorderLayout.NORTH); … … 435 443 this.helper.add(desktopScrollPane().get(), BorderLayout.CENTER); 436 444 437 445 registerDesktopScrollPane(this.helper); 438 } else { 439 440 if (mainWindow.desktopDocument().get() != null) { 441 registerDesktopScrollPane( 442 mainWindow.desktopDocument().get().swingComponent().get()); 443 } 446 444 447 } 445 448 } 446 449 … … 505 508 mw.mainWindowOptions().set( 506 509 new MainWindowOptions(screenMode, WindowsState.CUSTOM)); 507 510 } 511 512 @SuppressWarnings("unused") 513 @Setup 514 protected void setupRootPaneStyle(Void res) { 515 ScreenMode screenMode = mainWindow().get().mainWindowOptions().get().getScreenMode(); 516 if (!ScreenMode.PRESENTATION.equals(screenMode)) { 517 toolWindowManager().get().setName(SKIN_ELEMENT_ID + "/root-panel"); 518 } else { 519 toolWindowManager().get().setName(null); 520 } 521 } 508 522 509 523 @SuppressWarnings("unused") 510 524 @Setup … … 665 679 */ 666 680 private void registerFlap(MDFlap mdFlap) { 667 681 668 if (mdFlap == null ) {682 if (mdFlap == null || !mdFlap.visible().get()) { 669 683 // No flap, no tabs. 684 toolWindowManager().get().unregisterAllToolWindow(); 670 685 return; 671 686 } 672 687 -
modules/org.sophie2.main.app.menus/src/main/java/org/sophie2/main/app/menus/view/ViewMenuLogic.java
1 1 package org.sophie2.main.app.menus.view; 2 2 3 import java.awt.Dimension; 4 import java.awt.Toolkit; 5 6 import org.sophie2.base.commons.util.position.ImmPoint; 7 import org.sophie2.base.commons.util.position.ImmRect; 8 import org.sophie2.base.commons.util.position.ImmSize; 9 import org.sophie2.base.layout.BaseLayoutModule; 10 import org.sophie2.base.layout.LayoutEngine; 3 11 import org.sophie2.base.layout.impl.DefaultMainWindow; 12 import org.sophie2.base.layout.model.MainWindow; 4 13 import org.sophie2.base.layout.model.MainWindowOptions; 14 import org.sophie2.base.layout.model.MainWindowOptions.ScreenMode; 5 15 import org.sophie2.base.menus.MenuItem; 16 import org.sophie2.base.model.book.BookH; 17 import org.sophie2.base.model.resources.r4.ResourceRefR4; 18 import org.sophie2.base.scene.SceneVisual; 6 19 import org.sophie2.core.modularity.SortKey; 7 20 import org.sophie2.core.mvc.EventFilterBuilder; 8 21 import org.sophie2.core.mvc.LogicR3; 9 22 import org.sophie2.core.mvc.OperationDef; 10 23 import org.sophie2.core.mvc.events.EventR3; 11 24 import org.sophie2.main.app.commons.app.AppMainWindow; 25 import org.sophie2.main.app.commons.book.BaseBookDocView; 26 import org.sophie2.main.app.commons.book.BaseBookView; 27 import org.sophie2.main.app.commons.book.BookDocView; 28 import org.sophie2.main.app.commons.book.panels.NavigationPanel; 12 29 import org.sophie2.main.app.commons.util.AppViewUtil; 13 30 14 31 /** … … 34 51 FullScreenItem source = event.getSource(FullScreenItem.class); 35 52 AppMainWindow mainWindow = AppViewUtil.findMainWindow(source); 36 53 37 if (!mainWindow.mainWindowOptions().get().isInFullscreen()) {38 54 ScreenMode screenMode = mainWindow.mainWindowOptions().get().getScreenMode(); 55 if (!ScreenMode.FULLSCREEN.equals(screenMode)) { 39 56 return LogicR3.fire(mainWindow, null, null, null, 40 57 DefaultMainWindow.EventIds.SET_SCREEN_MODE, 41 58 MainWindowOptions.ScreenMode.FULLSCREEN); 42 59 } 43 60 44 61 return LogicR3.fire(mainWindow, null, null, null, 62 DefaultMainWindow.EventIds.QUIT_SCREEN_MODE, 63 ScreenMode.FULLSCREEN); 64 } 65 }, 66 67 /** 68 * Handles a user request to go in presentation mode. Opens a new {@link MainWindow} 69 * showing the current book in preview mode as a desktop document. The new window has 70 * appropriate {@link MainWindowOptions}, but it is responsibility of the layout to actually 71 * display the presentation mode. 72 */ 73 @SortKey("rrt-set-presentation-mode") 74 ON_PRESENTATION_MODE { 75 public void defineFilter(EventFilterBuilder filter) { 76 filter.setSourceClass(PresentationItem.class); 77 filter.setEventId(MenuItem.EventIds.CLICKED); 78 } 79 80 public boolean handle(EventR3 event) { 81 PresentationItem source = event.getSource(PresentationItem.class); 82 BookH book = AppViewUtil.getCurrentBook(source); 83 84 AppMainWindow newWindow = new AppMainWindow(); 85 BaseBookDocView bdw = new BookDocView(book.getAccess()); 86 87 // open in preview 88 if (!bdw.bookView().get().getViewOptions().isPreviewMode()) { 89 newWindow.documents().add(bdw); 90 BaseBookDocView previewBdw = bdw.preview(); 91 LogicR3.fire(bdw, previewBdw, 92 null, null, NavigationPanel.EventIds.OPEN_PREVIEW, false); 93 ResourceRefR4 currentPage = 94 bdw.bookView().get().getCurrentPageView().model().get().getRef(); 95 previewBdw.bookView().get().goToPage(currentPage.getThisChildRef()); 96 97 bdw = previewBdw; 98 } 99 newWindow.desktopDocument().set(bdw); 100 101 // modify zoom 102 ImmSize pageSize = book.getPageSize(); 103 Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize(); 104 105 SceneVisual sv = bdw.workArea().get().sceneVisual().get(); 106 sv.wantedViewRect().set(new ImmRect(ImmPoint.ZERO, new ImmSize(screenSize))); 107 108 float widthRatio = screenSize.width / pageSize.getWidth(); 109 float heigthRatio = screenSize.height / pageSize.getHeight(); 110 float zoom = widthRatio < heigthRatio ? widthRatio : heigthRatio; 111 BaseBookView bookView = bdw.bookView().get(); 112 bookView.setViewOptions(bookView.getViewOptions().modifyZoom(zoom)); 113 114 LayoutEngine engine = BaseLayoutModule.get().showDefaultEngine(); 115 engine.mainWindows().add(newWindow); 116 117 // set desktop as current document 118 boolean minimizedAll = LogicR3.fire(newWindow, null, null, null, 119 DefaultMainWindow.EventIds.ARRANGE_WINDOWS, 120 MainWindowOptions.WindowsState.ALL_MINIMIZED); 121 assert minimizedAll : "Could not minimize all windows and set desktop document to current"; 122 123 // change the screen mode 124 boolean presentationModeOpened = LogicR3.fire(newWindow, null, null, null, 45 125 DefaultMainWindow.EventIds.SET_SCREEN_MODE, 46 MainWindowOptions.ScreenMode.NORMAL); 126 MainWindowOptions.ScreenMode.PRESENTATION); 127 assert presentationModeOpened : "Could not open presentation mode"; 128 129 // request focus in window, so that navigation works 130 bdw.workArea().get().sceneVisual().get().swingComponent().get().requestFocusInWindow(); 131 132 return true; 47 133 } 48 134 }, 49 135 -
modules/org.sophie2.main.app.commons/src/main/java/org/sophie2/main/app/commons/MainAppModule.java
62 62 import org.sophie2.main.app.commons.links.LinkProcessorLogic; 63 63 import org.sophie2.main.app.commons.page.ExtraPageView; 64 64 import org.sophie2.main.app.commons.page.MainPageView; 65 import org.sophie2.main.app.commons.page.NavigationLogic; 65 66 import org.sophie2.main.app.commons.page.PageWorkArea; 66 67 import org.sophie2.main.app.commons.page.RootPageView; 67 68 import org.sophie2.main.app.commons.page.ScenePageLogic; … … 212 213 SimpleOperation.fillExtensions(res, LinkProcessorLogic.class); 213 214 SimpleOperation.fillExtensions(res, MainWindowLogic.class); 214 215 SimpleOperation.fillExtensions(res, BookPanelLogic.class); 216 SimpleOperation.fillExtensions(res, NavigationLogic.class); 215 217 216 218 SimpleOperation.fillExtensions(res, CreateTemplateDialog.DialogLogic.class); 217 219 -
modules/org.sophie2.main.layout.mydoggy/src/main/java/org/sophie2/main/layout/mydoggy/MDFlap.java
101 101 } 102 102 return getBean().makeProp(subElements.class); 103 103 } 104 105 @Override 106 public boolean computeVisible() { 107 return model().get().visible().get(); 108 } 104 109 } -
modules/org.sophie2.base.layout/src/main/java/org/sophie2/base/layout/BaseLayoutModule.java
53 53 protected void defineExtensions(List<SophieExtension<?>> res) { 54 54 SimpleOperation.fillExtensions(res, ListPaletteSeparatorLogic.class); 55 55 } 56 57 private LayoutEngine defaultEngine = null; 56 58 57 59 /** 58 60 * This method creates the default engine (from appropriate provider). … … 62 64 * The created engine or null if none. 63 65 */ 64 66 public LayoutEngine showDefaultEngine() { 65 VisualProvider visualProvider = 66 BaseVisualModule.get().findProvider(LayoutEngine.class, null, null); 67 if (visualProvider == null) { 68 SophieLog.warn("Showing default engine failed. Cannot find provider for LayoutEngine"); 69 return null; 67 if (this.defaultEngine == null) { 68 VisualProvider visualProvider = 69 BaseVisualModule.get().findProvider(LayoutEngine.class, null, null); 70 if (visualProvider == null) { 71 SophieLog.warn("Showing default engine failed. Cannot find provider for LayoutEngine"); 72 return null; 73 } 74 this.defaultEngine = visualProvider.create(LayoutEngine.class); 70 75 } 71 return visualProvider.create(LayoutEngine.class); 76 77 return this.defaultEngine; 72 78 } 73 79 } -
modules/org.sophie2.main.app.commons/src/main/java/org/sophie2/main/app/commons/page/ScenePageLogic.java
128 128 @Override 129 129 public void released() { 130 130 pwa.selectionArea().set(ImmArea.EMPTY); 131 132 // set the focus to the scene 133 pwa.sceneVisual().get().swingComponent().get().requestFocusInWindow(); 131 134 } 132 135 133 136 @Override -
modules/org.sophie2.main.app.commons/src/main/java/org/sophie2/main/app/commons/book/BaseBookDocView.java
10 10 import org.sophie2.base.commons.util.ImageUtil; 11 11 import org.sophie2.base.commons.util.ImmImage; 12 12 import org.sophie2.base.layout.model.DocView; 13 import org.sophie2.base.layout.model.MainWindowOptions.ScreenMode; 13 14 import org.sophie2.base.media.AudioChunk; 14 15 import org.sophie2.base.media.MediaComposite; 15 16 import org.sophie2.base.media.TimePos; … … 32 33 import org.sophie2.main.app.commons.app.AppMainWindow; 33 34 import org.sophie2.main.app.commons.app.ResourceDocView; 34 35 import org.sophie2.main.app.commons.page.PageWorkArea; 36 import org.sophie2.main.app.commons.util.AppViewUtil; 35 37 36 38 /** 37 39 * A {@link DocView} that displays a book. It contains a {@link BaseBookView} and its swing … … 232 234 233 235 modelSwing.setLayout(new BorderLayout()); 234 236 235 if (bookView().get().getViewOptions().isShowViewControls()) { 237 AppMainWindow mainWindow = AppViewUtil.findMainWindow(bookView().get()); 238 if (mainWindow == null) { 239 return null; 240 } 241 ScreenMode screenMode = mainWindow.mainWindowOptions().get().getScreenMode(); 242 if (!ScreenMode.PRESENTATION.equals(screenMode) 243 && bookView().get().getViewOptions().isShowViewControls()) { 236 244 modelSwing.add(viewOptionsScrollPane().get().swingComponent(), BorderLayout.NORTH); 237 245 modelSwing.add(workAreaPane().get(), BorderLayout.CENTER); 238 246 } else { -
modules/org.sophie2.main.layout.mydoggy/src/main/java/org/sophie2/main/layout/mydoggy/MDFrameWindow.java
27 27 import org.sophie2.base.layout.impl.DefaultMainWindow; 28 28 import org.sophie2.base.layout.model.MainWindow; 29 29 import org.sophie2.base.layout.model.MainWindowOptions; 30 import org.sophie2.base.layout.model.MainWindowOptions.ScreenMode;31 30 import org.sophie2.base.skins.SkinUtil; 32 31 import org.sophie2.core.modularity.FileEntryManager; 33 32 import org.sophie2.core.mvc.LogicR3; … … 121 120 long currentTime = System.currentTimeMillis(); 122 121 123 122 if (lastOpStart != null) { 124 if ((currentTime - lastOpStart) > LONG_OP_INTERVAL) { 123 if ((currentTime - lastOpStart) > LONG_OP_INTERVAL 124 && gcf.isVisible()) { 125 125 this.lastSetTime = lastOpStart; 126 126 getDialog().setVisible(true); 127 127 } … … 153 153 } 154 154 155 155 public void keyReleased(KeyEvent e) { 156 157 if (mainWindow().get() == null) { 158 return; 159 } 160 MainWindowOptions windowOptions = mainWindow().get().mainWindowOptions().get(); 161 156 162 if (e.getKeyCode() == KeyEvent.VK_ESCAPE) { 157 158 if (mainWindow().get() != null 159 && mainWindow().get().mainWindowOptions() 160 .get().isInFullscreen()) { 161 LogicR3.fire( 162 mainWindow().get(), 163 null, 164 null, 165 null, 166 DefaultMainWindow.EventIds.SET_SCREEN_MODE, 167 MainWindowOptions.ScreenMode.NORMAL); 163 164 if (windowOptions.isInFullscreen()) { 165 LogicR3.fire(mainWindow().get(), null, null, null, 166 DefaultMainWindow.EventIds.QUIT_SCREEN_MODE, 167 mainWindow().get().mainWindowOptions().get().getScreenMode()); 168 168 } 169 169 } 170 170 } … … 241 241 private static final long serialVersionUID = 1L; 242 242 243 243 public void actionPerformed(ActionEvent e) { 244 // fire switch to normal mode245 244 if (mainWindow().get().mainWindowOptions().get().isInFullscreen()) { 246 245 LogicR3.fire(new EventR3( 247 246 mainWindow().get(), 248 247 null, 249 248 null, 250 249 e, 251 DefaultMainWindow.EventIds. SET_SCREEN_MODE,252 ScreenMode.NORMAL));250 DefaultMainWindow.EventIds.QUIT_SCREEN_MODE, 251 mainWindow().get().mainWindowOptions().get().getScreenMode())); 253 252 } 254 253 } 255 254 -
modules/org.sophie2.main.app.menus/src/main/java/org/sophie2/main/app/menus/view/ViewMenu.java
20 20 */ 21 21 @SkinElementId("app.menus.view-menu") 22 22 @VisualElementDef(parent=AppMenuBar.class, sortKey="da-view-menu") 23 @RelatedChildren({NormalModeItem.class, FullScreenItem.class })23 @RelatedChildren({NormalModeItem.class, FullScreenItem.class, PresentationItem.class}) 24 24 public class ViewMenu extends AppMenu{ 25 25 26 26 @SuppressWarnings("unused") -
modules/org.sophie2.base.layout/src/main/java/org/sophie2/base/layout/impl/DefaultMainWindow.java
40 40 */ 41 41 @EventParams({ ScreenMode.class }) 42 42 SET_SCREEN_MODE, 43 44 /** 45 * The user has requested to quit the current {@link ScreenMode}. 46 */ 47 @EventParams({ ScreenMode.class }) 48 QUIT_SCREEN_MODE, 43 49 44 50 /** 45 51 * The user has requested to rearrange the open document windows. … … 54 60 CLOSE; 55 61 56 62 /** 57 * The index of the parameter for the {@link EventIds#SET_SCREEN_MODE} 58 * and {@link EventIds#ARRANGE_WINDOWS} events.63 * The index of the parameter for the {@link EventIds#SET_SCREEN_MODE}, 64 * {@link EventIds#QUIT_SCREEN_MODE} and {@link EventIds#ARRANGE_WINDOWS} events. 59 65 */ 60 66 public static final int PARAM_INDEX = 0; 61 67 } -
modules/org.sophie2.main.app.commons/src/main/java/org/sophie2/main/app/commons/app/MainWindowLogic.java
4 4 import java.util.List; 5 5 6 6 import org.osgi.framework.BundleException; 7 import org.sophie2.base.layout.BaseLayoutModule; 8 import org.sophie2.base.layout.LayoutEngine; 7 9 import org.sophie2.base.layout.impl.DefaultDocView; 8 10 import org.sophie2.base.layout.impl.DefaultMainWindow; 9 11 import org.sophie2.base.layout.model.DocView; … … 58 60 }, 59 61 60 62 /** 63 * Handles a user request to quit fullscreen mode. 64 * 65 * @author deni 66 */ 67 @SortKey("uuu-close-fullscreen-mode") 68 ON_QUIT_FULLSCREEN_MODE { 69 70 public void defineFilter(EventFilterBuilder filter) { 71 filter.setEventId(DefaultMainWindow.EventIds.QUIT_SCREEN_MODE); 72 filter.setEventParam(DefaultMainWindow.EventIds.PARAM_INDEX, ScreenMode.FULLSCREEN); 73 filter.setSourceClass(DefaultMainWindow.class); 74 } 75 76 public boolean handle(EventR3 event) { 77 DefaultMainWindow mainWindow = event.getSource(DefaultMainWindow.class); 78 return LogicR3.fire(mainWindow, null, null, null, 79 DefaultMainWindow.EventIds.SET_SCREEN_MODE, 80 MainWindowOptions.ScreenMode.NORMAL); 81 } 82 }, 83 84 /** 85 * Handles a user request to quit presentation mode. 86 * In fact, closes the window in presentation mode. 87 * 88 * @author deni 89 */ 90 @SortKey("uuu-close-presentation-mode") 91 ON_QUIT_PRESENTATION_MODE { 92 93 public void defineFilter(EventFilterBuilder filter) { 94 filter.setEventId(DefaultMainWindow.EventIds.QUIT_SCREEN_MODE); 95 filter.setEventParam(DefaultMainWindow.EventIds.PARAM_INDEX, ScreenMode.PRESENTATION); 96 filter.setSourceClass(DefaultMainWindow.class); 97 } 98 99 public boolean handle(EventR3 event) { 100 DefaultMainWindow mainWindow = event.getSource(DefaultMainWindow.class); 101 102 LayoutEngine engine = BaseLayoutModule.get().showDefaultEngine(); 103 engine.mainWindows().remove(engine.mainWindows().get().indexOf(mainWindow)); 104 105 System.out.println(engine.mainWindows().get().size()); 106 107 return true; 108 } 109 }, 110 111 /** 61 112 * Handles a user request to rearrange the open windows. Sets the 62 113 * appropriate {@link MainWindowOptions} to the {@link MainWindow}. Layout 63 114 * is then responsible for the actual rearrangement.