Changes between Version 17 and Version 18 of BOOK_FULL_SCREEN_MODE_R0
- Timestamp:
- 04/28/09 14:10:10 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BOOK_FULL_SCREEN_MODE_R0
v17 v18 39 39 40 40 = Design = 41 42 * Create enum !ScreenMode for the different modes of Sophie's main window. 41 42 * org.sophie2.main.app.commons.app 43 44 * Create enum !ScreenMode for the different modes of Sophie's main window (in org.sophie2.base.layout.model). 43 45 * NORMAL 44 46 * PRESENTATION … … 54 56 * Full Screen mode 55 57 56 * Make the main window's JFrame in full screen when fullScreenMode is true58 * Make the main window's JFrame in full screen when the value of the screenMode() is !ScreenMode.FULL_SCREEN 57 59 * In MDMainWindow.globalContainer modify the {{{configureFrameSettings(JFrame gcf)}}} method 58 * When fullScreenMode is true:60 * When the value of the screenMode() is !ScreenMode.FULL_SCREEN: 59 61 * use {{{gcf.setUndecorated(true)}}} to remove the window title bar, border and all other decorations 60 62 * resize it to screen's dimensions … … 65 67 * Flaps are not visible when FULL_SCREEN mode is toggled and can auto-hide. The user can control them and made them visible. 66 68 * Flaps are not available in PRESENTATION mode. The user could not control them. 67 * This is implemented witha flapsInFullScreen() property which is in MDMainWindow.69 * This is implemented in a flapsInFullScreen() property which is in MDMainWindow. 68 70 69 71 * Configure visibility of the !TabBar … … 79 81 * {{{res.setResizable(false);}}} 80 82 * Hide the title bar: {{{ ((BasicInternalFrameUI)res.getUI()).getNorthPane().setVisible(false); }}} 83 81 84 82 85 = Implementation =