Changes between Version 17 and Version 18 of BOOK_FULL_SCREEN_MODE_R0


Ignore:
Timestamp:
04/28/09 14:10:10 (16 years ago)
Author:
tanya
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BOOK_FULL_SCREEN_MODE_R0

    v17 v18  
    3939 
    4040= 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). 
    4345  * NORMAL 
    4446  * PRESENTATION 
     
    5456  * Full Screen mode 
    5557 
    56  * Make the main window's JFrame in full screen when fullScreenMode is true 
     58 * Make the main window's JFrame in full screen when the value of the screenMode() is !ScreenMode.FULL_SCREEN 
    5759  * 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: 
    5961   * use {{{gcf.setUndecorated(true)}}} to remove the window title bar, border and all other decorations 
    6062   * resize it to screen's dimensions 
     
    6567  * Flaps are not visible when FULL_SCREEN mode is toggled and can auto-hide. The user can control them and made them visible. 
    6668  * Flaps are not available in PRESENTATION mode. The user could not control them. 
    67   * This is implemented with a flapsInFullScreen() property which is in MDMainWindow. 
     69  * This is implemented in a flapsInFullScreen() property which is in MDMainWindow. 
    6870 
    6971 * Configure visibility of the !TabBar 
     
    7981    * {{{res.setResizable(false);}}} 
    8082    * Hide the title bar: {{{ ((BasicInternalFrameUI)res.getUI()).getNorthPane().setVisible(false); }}} 
     83  
    8184 
    8285= Implementation =