home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-09-17 | 1.4 KB | 71 lines | [TEXT/MPS ] |
- //========================================================================================
- //
- // File: PartInfo.fr
- // Release Version: $ ODF 2 $
- //
- // Copyright: (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
- //
- //========================================================================================
-
- #ifndef FWRESFIL_K
- #include "FWResFil.k"
- #endif
-
- #ifndef FWPART_FR
- #include "FWPart.fr"
- #endif
-
- #ifndef DEFINES_K
- #include "Defines.k"
- #endif
-
- #ifndef BINDING_K
- #include "Binding.k"
- #endif
-
- #ifndef FWWINDOW_K
- #include "FWWindow.k"
- #endif
-
- //----------------------------------------------------------------------------------------
- // PartInfo Resource
- //----------------------------------------------------------------------------------------
-
- resource FW_RPartInfo(kPartInfoID)
- {
- // ----- Icon ID
- kViewAsIconID,
-
- // ----- MenuBar ID
- 0,
-
- // ----- Document Window ID
- kDocumentWindowID,
-
- // ----- Part Name
- "ODFButton R2",
-
- // ----- PartKind
- kODFButtonKind
- };
-
- //----------------------------------------------------------------------------------------
- // Document Window Resource
- //----------------------------------------------------------------------------------------
-
- resource FW_RDocumentWindow(kDocumentWindowID)
- {
- // ----- Size
- {FW_FIX(200), FW_FIX(80)},
-
- // ----- Position
- {FW_FIX(0), FW_FIX(0)}, // (0,0) means default position
-
- // ----- Style
- FW_kDocumentWindow,
-
- // ----- Presentation
- kODFButtonPresentation
- };
-
-