home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-09-17 | 1.9 KB | 70 lines | [TEXT/MPS ] |
- //========================================================================================
- //
- // File: Menus.fr
- // Release Version: $ ODF 1 $
- //
- // Copyright: (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
- //
- //========================================================================================
-
- #ifndef FWRESFIL_K
- #include "FWResFil.k"
- #endif
-
- #ifndef DEFINES_K
- #include "Defines.k"
- #endif
-
- #ifndef FWMENUS_FR
- #include "FWMenus.fr"
- #endif
-
- //----------------------------------------------------------------------------
- // Strings for Hello Menu
- //----------------------------------------------------------------------------
- resource FW_kMULTISTRING (kHelloPartStrings)
- {
- kFirstString, "Welcome to ODF on ";
- kMacString, "Macintosh";
- kWinString, "Windows";
- kBlankString, "This part intentionally left blank";
- }
-
- //----------------------------------------------------------------------------
- // Strings for Undo and Redo menu items
- //----------------------------------------------------------------------------
-
- resource FW_kMULTISTRING (kHelloUndoStrings)
- {
- kUndoDragTextMsg, "Undo Text Removal";
- kRedoDragTextMsg, "Redo Text Removal";
- kUndoDropTextMsg, "Undo Text Drop";
- kRedoDropTextMsg, "Redo Text Drop";
- kUndoClearTextMsg, "Undo Text Clear";
- kRedoClearTextMsg, "Redo Text Clear";
- kUndoCutTextMsg, "Undo Text Cut";
- kRedoCutTextMsg, "Redo Text Cut";
- kUndoPasteTextMsg, "Undo Text Paste";
- kRedoPasteTextMsg, "Redo Text Paste";
- }
-
- //----------------------------------------------------------------------------
- // Menus
- //----------------------------------------------------------------------------
-
- resource FW_RMenuBar(kMenuBar)
- {
- "About ODFHello...",
-
- {
- FW_RPullDownMenu
- (
- "Hello"
- {
- FW_RTextItem(cPlaceInCenter, FW_kNoKeyEquivalent, "Place Text in Center"),
- FW_RTextItem(cPlaceAtTop, FW_kNoKeyEquivalent, "Place Text at Top")
- }
- )
- }
- };
-