home *** CD-ROM | disk | FTP | other *** search
- IDOIFACE MENU
- BEGIN
- POPUP "&File"
- BEGIN
- MENUITEM "&New\tCtrl+N", CM_FILENEW
- MENUITEM "&Open...\tCtrl+O", CM_FILEOPEN
- MENUITEM "&Close", IDM_CLOSE
- MENUITEM "&Reset", IDM_RESET
- MENUITEM SEPARATOR
- MENUITEM "&Save\tCtrl+S", CM_FILESAVE
- MENUITEM "Save &As...\tCtrl+A", IDM_SAVEAS
- MENUITEM SEPARATOR
- MENUITEM "Reset Palette", IDM_RESETPALETTE
- MENUITEM "Load Palette...", IDM_LOADPALETTE
- MENUITEM "Save Palette...", IDM_SAVEPALETTE
- MENUITEM SEPARATOR
- MENUITEM "&Print...\tCtrl+P", CM_FILEPRINT
- MENUITEM SEPARATOR
- MENUITEM "E&xit", CM_EXIT
- END
- POPUP "&Edit"
- BEGIN
- MENUITEM "Cut\tCtrl+X", IDM_CUT
- MENUITEM "Copy\tCtrl+C", IDM_COPY
- MENUITEM "Paste\tCtrl+V", IDM_PASTE
- END
- POPUP "&Options"
- BEGIN
- MENUITEM "Zoom In", IDM_ZOOMIN
- MENUITEM "Zoom Out", IDM_ZOOMOUT
- MENUITEM "Zoom To Fit Window", IDM_ZOOMTOFITWINDOW
- MENUITEM SEPARATOR
- MENUITEM "Use Default Menus", IDM_USEIDOMENUS
- MENUITEM "Grid Lines", IDM_GRIDLINES
- MENUITEM "Snap To Grid", IDM_SNAPTOGRID
- MENUITEM "Edit Mode", IDM_EDITMODE
- MENUITEM "Enforce Rules", IDM_ENFORCERULES
- MENUITEM SEPARATOR
- MENUITEM "Display Messages", IDM_DISPLAYMESSAGES
- END
- POPUP "Actions"
- BEGIN
- MENUITEM "Add Entity", IDM_ADDENTITY
- MENUITEM "Add Relation", IDM_ADDRELATION
- MENUITEM SEPARATOR
- MENUITEM "Delete Entity", IDM_DELETEENTITY
- MENUITEM "Delete Relation", IDM_DELETERELATION
- MENUITEM SEPARATOR
- MENUITEM "Set Current Entity Text", IDM_SETCURRENTENTITYTEXT
- MENUITEM "Set Item Font", IDM_SETITEMFONT
- END
- POPUP "Attributes"
- BEGIN
- POPUP "InterAct"
- BEGIN
- MENUITEM "Color", IDM_COLOR
- MENUITEM "Grid", IDM_GRID
- END
- POPUP "Entity"
- BEGIN
- MENUITEM "Text", IDM_TEXT
- MENUITEM "Color", IDM1_COLOR
- MENUITEM "Style", IDM_SHAPE
- MENUITEM "Graphic", IDM_GRAPHIC
- END
- POPUP "Relation"
- BEGIN
- MENUITEM "Text", IDM1_TEXT
- MENUITEM "Style", IDM1_SHAPE
- MENUITEM "Color", IDM2_COLOR
- END
- END
- POPUP "&Window"
- BEGIN
- MENUITEM "Tool Palette", IDM_TOOLPALETTE
- MENUITEM "Color Palette", IDM_COLORPALETTE
- MENUITEM "Alignment Palette", IDM_ALIGNMENTPALETTE
- MENUITEM SEPARATOR
- MENUITEM "Refresh InterAct", IDM_REFRESHIDO
- MENUITEM SEPARATOR
- MENUITEM "&Cascade", CM_CASCADECHILDREN
- MENUITEM "&Tile", CM_TILECHILDREN
- MENUITEM "Arrange &Icons", CM_ARRANGEICONS
- MENUITEM "Close &All", CM_CLOSECHILDREN
- END
- POPUP "&Help"
- BEGIN
- MENUITEM "&Help", IDM_HELP
- MENUITEM SEPARATOR
- MENUITEM "&About", IDM_ABOUT
- END
- END
-
- IDOIFACE ACCELERATORS
- BEGIN
- "N", CM_FILENEW, VIRTKEY , CONTROL
- "O", CM_FILEOPEN, VIRTKEY , CONTROL
- "S", CM_FILESAVE, VIRTKEY , CONTROL
- "A", IDM_SAVEAS, VIRTKEY , CONTROL
- "P", CM_FILEPRINT, VIRTKEY , CONTROL
- "X", IDM_CUT, VIRTKEY , CONTROL
- "C", IDM_COPY, VIRTKEY , CONTROL
- "V", IDM_PASTE, VIRTKEY , CONTROL
- END
-
- STRINGTABLE PRELOAD DISCARDABLE
- BEGIN
- CM_FILENEW , "Open a new diagram"
- CM_FILEOPEN , "Open an existing diagram file"
- CM_FILESAVE , "Save the active window into a diagram file"
- CM_FILEPRINT , "Print the active diagram"
- CM_EXIT , "Quit the application"
- CM_CASCADECHILDREN , "Arrange windows so they overlap"
- CM_TILECHILDREN , "Arrange windows as non-overlapping tiles"
- CM_ARRANGEICONS , "Arrange icons at the bottom of the window"
- CM_CLOSECHILDREN , "Close all windows"
- IDM_ZOOMIN , "Zoom in"
- IDM_ZOOMOUT , "Zoom out"
- IDM_ZOOMTOFITWINDOW , "Zoom diagram to fit window"
- IDM_EDITMODE , "All the diagram to be edited"
- IDM_DELETEENTITY , "Delete an entity"
- IDM_ABOUT , "About InterAct"
- IDM_CLOSE , "Close the avtive diagram window"
- IDM_RESET , "Reset the active diagram window"
- IDM_SAVEAS , "Save the active window into a new diagram file"
- IDM_RESETPALETTE , "Reset the tools palette for the active diagram"
- IDM_LOADPALETTE , "Load a tools palette for the active diagram"
- IDM_SAVEPALETTE , "Save the tools palette for the active diagram"
- IDM_CUT , "Remove selected objects to the clipboard"
- IDM_COPY , "Copy selected objects to the clipboard"
- IDM_PASTE , "Paste objects from the clipboard"
- IDM_USEIDOMENUS , "Display default menus when objects are right-clicked"
- IDM_GRIDLINES , "Display grid lines"
- IDM_SNAPTOGRID , "Snap objects to nearest grid line"
- IDM_DISPLAYMESSAGES , "Display messages confirming addition/deletion of objects"
- IDM_ADDENTITY , "Add an entity"
- IDM_ADDRELATION , "Add a relation"
- IDM_DELETERELATION , "Delete a relation"
- IDM_SETCURRENTENTITYTEXT , "Set text on the current entity"
- IDM_SETITEMFONT , "Set font on the current entity"
- IDM_COLOR , "Display color properties for InterAct"
- IDM_GRID , "Display grid properties for InterAct"
- IDM_TEXT , "Display text properties for current entity"
- IDM1_COLOR , "Display color properties for current entity"
- IDM_SHAPE , "Display style properties for current entity"
- IDM_GRAPHIC , "Display graphics properties for current entity"
- IDM1_TEXT , "Display text properties for current relation"
- IDM1_SHAPE , "Display style properties for current relation"
- IDM2_COLOR , "Display color properties for current relation"
- IDM_TOOLPALETTE , "Show tools palette"
- IDM_COLORPALETTE , "Show color palette"
- IDM_ALIGNMENTPALETTE , "Show alignment palette"
- IDM_REFRESHIDO , "Refresh InterAct window"
- IDM_HELP , "Help"
- IDM_ENFORCERULES , "Enforce Rules within the Diagram"
- END
-
-