Changes between Version 27 and Version 28 of APP_BASIC_MENUS_R0


Ignore:
Timestamp:
07/29/09 12:20:31 (16 years ago)
Author:
stefan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • APP_BASIC_MENUS_R0

    v27 v28  
    137137   * NormalModeItem 
    138138   * FullScreenItem 
     139  * Skins 
     140   * DefaultSkinItem 
     141   * AlternativeSkinItem 
     142  * WindowMenu 
     143   * CascadeItem 
     144   * TileItem 
    139145  * HelpMenu 
    140146   * HelpContentsItem 
    141147   * BugReportItem 
    142148   * AboutItem 
    143    * InspecturmenuItem 
    144  
     149   * InspecturMenuItem 
     150    
    145151 
    146152 * A refactoniring will be needed, so every Item has the definition of its properties in itself, not in its Module class. (optional)  
     
    171177  * Help 
    172178 
    173  * Following shortcuts will be introduced using: 
     179 * Following shortcuts will be introduced using property ACCELERATOR_PROP_ID of ElementSkinPart argument of the defineSkin method: 
    174180  * Ctrl+N - New Book 
    175181  * Ctrl+O - Open Book 
     
    182188  * Ctrl+C - Copy 
    183189  * Ctrl+V - Paste 
    184  
     190Example: 
     191{{{ 
     192@SkinPartDef 
     193private static void defineSkin(ElementSkinPart part) { 
     194        part.add(TITLE_PROP_ID, "PDF..."); //title property defined as "PDF" 
     195        part.add(TOOL_TIP_PROP_ID, "Exports current book to pdf file"); //Tool tip property defined 
     196        part.add(MNEMONIC_PROP_ID, KeyEvent.VK_P); //Mnemonic - i.e. when P is pressed, combined with Alt. 
     197} 
     198}}} 
    185199  * "..." suffix of Items Title Property for Items that, when clicked, open a Dialog. 
    186200