Changes between Version 28 and Version 29 of APP_BASIC_MENUS_R0
- Timestamp:
- 07/29/09 12:23:42 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
APP_BASIC_MENUS_R0
v28 v29 192 192 @SkinPartDef 193 193 private 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. 194 part.add(ACCELERATOR_PROP_ID, KeyStroke.getKeyStroke(KeyEvent.VK_P, InputEvent.CTRL_MASK)); //Shortcut is added CTRL+P 197 195 } 198 196 }}}