home *** CD-ROM | disk | FTP | other *** search
- #ifndef CMDDEF_H
- #define CMDDEF_H
-
- #include <uidefs.h>
-
- /* Command Status */
-
- #define CMDSTATUS_FAIL 0
- #define CMDSTATUS_SUCCESS 1
- #define CMDSTATUS_IGNORE 2
-
- /* Command Types */
-
- #define CMDTYPE_EVENT 0
- #define CMDTYPE_CONTROL 1
- #define CMDTYPE_PRIMITIVE 2
- #define CMDTYPE_COMMAND 3
- #define CMDTYPE_PLATFORM 4
-
- /* Command Data Types */
-
- #define CMDDATA_WORD 1
- #define CMDDATA_DWORD 2
- #define CMDDATA_STRING 3
- #define CMDDATA_ARRAY 4
- #ifdef LSSHORT_UNIT
- #define CMDDATA_UNIT (CMDDATA_WORD)
- #else
- #define CMDDATA_UNIT (CMDDATA_DWORD)
- #endif
- #define CMDDATA_PTR 6
-
- /* Command Access Types */
-
- #define CMDACCESS_READ 0
- #define CMDACCESS_WRITE 1
- #define CMDACCESS_READWRITE 2
-
- /* Command State Definitions */
-
- #define CMDSTATE_OFF 0
- #define CMDSTATE_ON 1
- #define CMDSTATE_STYLE 2
-
- /* Command Why Definitions */
-
- #define CMDWHY_BECAUSE 0
- #define CMDWHY_LOCAL 1
- #define CMDWHY_STYLE 2
-
- /* Event Types */
-
- #define CMDEVENT_KEY 0
- #define CMDEVENT_MOUSEDOWN 1
- #define CMDEVENT_MOUSEUP 2
- #define CMDEVENT_MOUSEMOVE 3
- #define CMDEVENT_MOUSEDBLCLK 4
- #define CMDEVENT_PAINT 5
- #define CMDEVENT_HSCROLL 6
- #define CMDEVENT_VSCROLL 7
- #define CMDEVENT_FOCUS 8
- #define CMDEVENT_SIZE 9
- #define CMDEVENT_HSCROLLPCT 10
- #define CMDEVENT_VSCROLLPCT 11
- #define CMDEVENT_SELECT 12
- #define CMDEVENT_DESELECT 13
- #define CMDEVENT_IDLE 14
- #define CMDEVENT_BEGINSCROLL 15
- #define CMDEVENT_ENDSCROLL 16
- #define CMDEVENT_MOUSEPOSITION 17
- #define CMDEVENT_DRAG 18
- #define CMDEVENT_DROPCUT 19
- #define CMDEVENT_DROPCOPY 20
- #define CMDEVENT_DROPSELECT 21
- #define CMDEVENT_DROPPASTE 22
- #define CMDEVENT_OPEN 23
- #define CMDEVENT_CLOSE 24
- #define CMDEVENT_FORMAT 25
- #define CMDEVENT_UPDATE 26
-
- /* Event Generic Modifiers */
-
- #define CMDGMOD_SHIFT 0x0001
- #define CMDGMOD_ALT 0x0002
- #define CMDGMOD_CTRL 0x0004
- #define CMDGMOD_COMMAND 0x0008
- #define CMDGMOD_OPTION 0x0010
- #define CMDGMOD_SYS 0x0020
- #define CMDGMOD_CAPSLOCK 0x0040
- #define CMDGMOD_NUMLOCK 0x0080
- #define CMDGMOD_SCROLLLOCK 0x0100
- #define CMDGMOD_HELP 0x0200
- #define CMDGMOD_STEALTH 0x0400
-
- /* Event Specific Modifiers */
-
- #define CMDSMOD_NONE 0x0000 /* no bits on */
-
- #define CMDSMOD_MBUTTON1 0x0001 /* mouse stuff */
- #define CMDSMOD_MBUTTON2 0x0002
- #define CMDSMOD_MBUTTON3 0x0004
- #define CMDSMOD_MBUTTONMASK 0x0007 /* bit mask for mouse buttons */
- #define CMDSMOD_MBUTTONDOWN 0x0008
- #define CMDSMOD_MBUTTONUP 0x0010
-
- #define CMDSMOD_DOUBLEBYTE 0x0001 /* keyboard stuff */
- #define CMDSMOD_GOINGDOWN 0x0002
- #define CMDSMOD_COMINGUP 0x0004
- #define CMDSMOD_VIRTUAL 0x0008
-
- #define CMDSMOD_SELECT_DAMNIT 0x0001 /* SELECT message stuff */
- #define CMDSMOD_CLICKED 0x0002 /* select stuff */
- #define CMDSMOD_NOMOVE 0x0004
-
- /* Changing the virtual key codes to something other than what Windows */
- /* uses will make AFID accelerators not work. */
-
- /* Virtual Keys, Standard Set */
-
- #define CMDVK_LBUTTON 0x01
- #define CMDVK_RBUTTON 0x02
- #define CMDVK_CANCEL 0x03
- #define CMDVK_MBUTTON 0x04
- #define CMDVK_BACK 0x08
- #define CMDVK_TAB 0x09
- #define CMDVK_CLEAR 0x0C
- #define CMDVK_RETURN 0x0D
- #define CMDVK_SHIFT 0x10
- #define CMDVK_CONTROL 0x11
- #define CMDVK_MENU 0x12
- #define CMDVK_PAUSE 0x13
- #define CMDVK_CAPITAL 0x14
- #define CMDVK_ESCAPE 0x1B
- #define CMDVK_SPACE 0x20
- #define CMDVK_PRIOR 0x21
- #define CMDVK_NEXT 0x22
- #define CMDVK_END 0x23
- #define CMDVK_HOME 0x24
- #define CMDVK_LEFT 0x25
- #define CMDVK_UP 0x26
- #define CMDVK_RIGHT 0x27
- #define CMDVK_DOWN 0x28
- #define CMDVK_SELECT 0x29
- #define CMDVK_PRINT 0x2A
- #define CMDVK_EXECUTE 0x2B
- #define CMDVK_SNAPSHOT 0x2C
- #define CMDVK_INSERT 0x2D
- #define CMDVK_DELETE 0x2E
- #define CMDVK_HELP 0x2F
-
- /* CMDVK_A thru CMDVK_Z are the same as their ASCII equivalents: 'A' thru 'Z' */
- /* CMDVK_0 thru CMDVK_9 are the same as their ASCII equivalents: '0' thru '0' */
-
- #define CMDVK_NUMPAD0 0x60
- #define CMDVK_NUMPAD1 0x61
- #define CMDVK_NUMPAD2 0x62
- #define CMDVK_NUMPAD3 0x63
- #define CMDVK_NUMPAD4 0x64
- #define CMDVK_NUMPAD5 0x65
- #define CMDVK_NUMPAD6 0x66
- #define CMDVK_NUMPAD7 0x67
- #define CMDVK_NUMPAD8 0x68
- #define CMDVK_NUMPAD9 0x69
- #define CMDVK_MULTIPLY 0x6A
- #define CMDVK_ADD 0x6B
- #define CMDVK_SEPARATOR 0x6C
- #define CMDVK_SUBTRACT 0x6D
- #define CMDVK_DECIMAL 0x6E
- #define CMDVK_DIVIDE 0x6F
- #define CMDVK_F1 0x70
- #define CMDVK_F2 0x71
- #define CMDVK_F3 0x72
- #define CMDVK_F4 0x73
- #define CMDVK_F5 0x74
- #define CMDVK_F6 0x75
- #define CMDVK_F7 0x76
- #define CMDVK_F8 0x77
- #define CMDVK_F9 0x78
- #define CMDVK_F10 0x79
- #define CMDVK_F11 0x7A
- #define CMDVK_F12 0x7B
- #define CMDVK_F13 0x7C
- #define CMDVK_F14 0x7D
- #define CMDVK_F15 0x7E
- #define CMDVK_F16 0x7F
- #define CMDVK_F17 0x80
- #define CMDVK_F18 0x81
- #define CMDVK_F19 0x82
- #define CMDVK_F20 0x83
- #define CMDVK_F21 0x84
- #define CMDVK_F22 0x85
- #define CMDVK_F23 0x86
- #define CMDVK_F24 0x87
-
- #define CMDVK_NUMLOCK 0x90
-
- /* Internal virtual keys - beyond 0x8000 */
-
- #define CMDVK_TABLETAB 0x8009
- #define CMDVK_TABLELEFT 0x8025
- #define CMDVK_TABLEUP 0x8026
- #define CMDVK_TABLERIGHT 0x8027
- #define CMDVK_TABLEDOWN 0x8028
-
- /*- Command Commands -*/
-
- #define CMDCOMMAND_NEW 1 /*- NewCmd -*/
- #define CMDCOMMAND_REVERT 2 /*- RevertCmd -*/
- #define CMDCOMMAND_OPEN 3 /*- OpenCmd -*/
- #define CMDCOMMAND_FILECLOSE 4 /*- FileCloseCmd -*/
- #define CMDCOMMAND_INSERT 5 /*- InsertCmd -*/
- #define CMDCOMMAND_SAVE 6 /*- SaveAsCmd -*/
- #define CMDCOMMAND_COPY 7 /*- CopyCmd -*/
- #define CMDCOMMAND_NEWWINDOW 8 /*- NewWindowCmd -*/
- #define CMDCOMMAND_REVISEACCEPT 9 /*- RevisionAcceptCmd -*/
- #define CMDCOMMAND_REVISECANCEL 10 /*- RevisionCancelCmd -*/
- #define CMDCOMMAND_GLOSSINSERT 11 /*- GlossaryInsert -*/
- #define CMDCOMMAND_TIMESAVE 12 /*- TimeSave -*/
- #define CMDCOMMAND_DOCCOMPARE 13 /*- DocCompare -*/
- #define CMDCOMMAND_FASTFORMAT 14 /*- FastFormat -*/
- #define CMDCOMMAND_PRINT 15 /*- Print -*/
- #define CMDCOMMAND_MERGE 16 /*- MergeCmd -*/
- #define CMDCOMMAND_RAWNEW 17 /*- RawNewCmd -*/
- #define CMDCOMMAND_RAWOPEN 18 /*- RawOpenCmd -*/
- #define CMDCOMMAND_RAWINSERT 19 /*- RawInsertCmd -*/
- #define CMDCOMMAND_RAWREVERT 20 /*- RawRevertCmd -*/
- #define CMDCOMMAND_RAWSAVE 21 /*- RawSaveCmd -*/
- #define CMDCOMMAND_RAWFILECLOSE 22 /*- RawFileCloseCmd -*/
- #define CMDCOMMAND_WINDOWCLOSE 23 /*- WindowCloseCmd -*/
- #define CMDCOMMAND_RAWWINDOWCLOSE 24 /*- RawWindowCloseCmd -*/
- #define CMDCOMMAND_CLOSEALL 25 /*- CloseAllCmd -*/
- #define CMDCOMMAND_RAWCLOSEALL 26 /*- RawCloseAllCmd -*/
- #define CMDCOMMAND_INSERTPAGELAYOUT 27 /*- InsertPageLayout -*/
- #define CMDCOMMAND_REMOVEPAGELAYOUT 28 /*- RemovePageLayout -*/
- #define CMDCOMMAND_REVERTPAGELAYOUT 29 /*- RevertPageLayout -*/
- #define CMDCOMMAND_CREATEDATAFILE 30 /*- CreateDataFile -*/
- #define CMDCOMMAND_EDITDATAFILE 31 /*- EditDataFile -*/
- #define CMDCOMMAND_OPENDATAFILE 32 /*- OpenDataFile -*/
- #define CMDCOMMAND_NOTE 33 /*- InsertNote -*/
- #define CMDCOMMAND_INSERTFIELD 34 /*- InsertField -*/
- #define CMDCOMMAND_INSERTPAGENUMBER 35 /*- InsertPageNumber -*/
- #define CMDCOMMAND_INSERTDATE 36 /*- InsertDate -*/
- #define CMDCOMMAND_INSERTFOOTNOTE 37 /*- InsertFootnote -*/
- #define CMDCOMMAND_REMOVEPAGEBREAK 38 /*- RemovePageBreak -*/
- #define CMDCOMMAND_INSERTCOLUMNBREAK 39 /*- InsertColumnBreak -*/
- #define CMDCOMMAND_GENERATEINDEX 40 /*- GenerateIndex -*/
- #define CMDCOMMAND_GENERATETOC 41 /*- GenerateToc -*/
- #define CMDCOMMAND_EDITUSERDICT 42 /*- EditUserDict -*/
- #define CMDCOMMAND_SENDMAIL 43 /*- SendMail -*/
- #define CMDCOMMAND_LOADOBJECTS 44 /*- LoadObjects -*/
- #define CMDCOMMAND_GENERATEMASTER 45 /*- GenerateMaster -*/
- #define CMDCOMMAND_SAVEASSTYLESHEET 46 /*- SaveAsStyleSheet -*/
- #define CMDCOMMAND_GOTOPAGE 47 /*- GoToPage -*/
- #define CMDCOMMAND_GOTOOBJECT 48 /*- GoToObject -*/
- #define CMDCOMMAND_CREATEGRAPHIC 49 /*- CreateGraphic -*/
- #define CMDCOMMAND_INSERTDOCINFO 50 /*- InsertDocInfo -*/
- #define CMDCOMMAND_RAWTIMESAVE 51 /*- TimeSave -*/
- #define CMDCOMMAND_ADDTOGLOSSARY 52 /*- AddToGlossary -*/
- #define CMDCOMMAND_INSERTEXTERNAL 53 /*- InsertExternal -*/
- #define CMDCOMMAND_REPLACEALL 54 /*- ReplaceAll -*/
- #define CMDCOMMAND_RAWRAWSAVE 55 /*- RawRawSave -*/
- #define CMDCOMMAND_EXIT 56 /*- ExitCmd -*/
- #define CMDCOMMAND_SAVECOPY 57 /*- SaveCopy -*/
- #define CMDCOMMAND_INSERTPAGEBREAK 58 /*- InsertPageBreak -*/
- #define CMDCOMMAND_REMOVECOLUMNBREAK 59 /*- RemoveColumnBreak -*/
- #define CMDCOMMAND_INDEX 60 /*- AddIndexEntry -*/
- #define CMDCOMMAND_TOC 61 /*- AddTOCEntry -*/
- #define CMDCOMMAND_VIEW 62 /*- ViewCmd -*/
-
- /*- Command Verbs -*/
-
- #define CMDVERB_SELECT 1 /*- Select -*/
- #define CMDVERB_DESELECT 2 /*- Deselect -*/
- #define CMDVERB_OPEN 3 /*- Open -*/
- #define CMDVERB_CLOSE 4 /*- Close -*/
- #define CMDVERB_INSERT 5 /*- Insert -*/
- #define CMDVERB_DELETE 6 /*- Delete -*/
- #define CMDVERB_ADD 7 /*- Add -*/
- #define CMDVERB_REMOVE 8 /*- Remove -*/
- #define CMDVERB_SETPROPERTY 9 /*- SetProperty -*/
- #define CMDVERB_GETPROPERTY 10 /*- GetProperty -*/
- #define CMDVERB_SHOW 11 /*- Show -*/
- #define CMDVERB_HIDE 12 /*- Hide -*/
- #define CMDVERB_ACTIVATE 13 /*- Activate -*/
- #define CMDVERB_TERMINATE 14 /*- Terminate -*/
- #define CMDVERB_SAVE 15 /*- Save -*/
- #define CMDVERB_LOAD 16 /*- Load -*/
- #define CMDVERB_CUT 17 /*- Cut -*/
- #define CMDVERB_COPY 18 /*- Copy -*/
- #define CMDVERB_PASTE 19 /*- Paste -*/
- #define CMDVERB_PASTELINK 20 /*- PasteLink -*/
- #define CMDVERB_CREATE 21 /*- Create -*/
- #define CMDVERB_DESTROY 22 /*- Destroy -*/
- #define CMDVERB_SCROLL 23 /*- Scroll -*/
- #define CMDVERB_EXTRACT 24 /*- Extract -*/
- #define CMDVERB_REALIZE 25 /*- Realize -*/
- #define CMDVERB_BEGINCHANGE 26 /*- BeginChange -*/
- #define CMDVERB_ENDCHANGE 27 /*- EndChange -*/
- #define CMDVERB_BEGINUNDO 28 /*- BeginUndo -*/
- #define CMDVERB_ENDUNDO 29 /*- EndUndo -*/
- #define CMDVERB_QUERY 30 /*- Query -*/
- #define CMDVERB_UNDO 31 /*- Undo -*/
- #define CMDVERB_ENUMERATE 32 /*- Enumerate -*/
- #define CMDVERB_ATTACH 33 /*- Attach -*/
- #define CMDVERB_DETACH 34 /*- Detach -*/
- #define CMDVERB_SPLIT 35 /*- Split -*/
- #define CMDVERB_START 36 /*- Start -*/
- #define CMDVERB_END 37 /*- End -*/
- #define CMDVERB_FORWARD 38 /*- Forward -*/
- #define CMDVERB_BACKWARD 39 /*- Backward -*/
- #define CMDVERB_UP 40 /*- Up -*/
- #define CMDVERB_DOWN 41 /*- Down -*/
- #define CMDVERB_PUSH 42 /*- Push -*/
- #define CMDVERB_POP 43 /*- Pop -*/
- #define CMDVERB_UPDATE 44 /*- Update -*/
- #define CMDVERB_CONNECT 45 /*- Connect -*/
- #define CMDVERB_DISCONNECT 46 /*- Disconnect -*/
- #define CMDVERB_PURGE 47 /*- Purge -*/
- #define CMDVERB_TAB 48 /*- Tab -*/
- #define CMDVERB_EXPAND 49 /*- Expand -*/
- #define CMDVERB_CONTRACT 50 /*- Contract -*/
- #define CMDVERB_PROMOTE 51 /*- Promote -*/
- #define CMDVERB_DEMOTE 52 /*- Demote -*/
- #define CMDVERB_MOVEUP 53 /*- MoveUp -*/
- #define CMDVERB_MOVEDOWN 54 /*- MoveDown -*/
- #define CMDVERB_EMBED 55 /*- Embed -*/
- #define CMDVERB_CONFIGURE 56 /*- Configure -*/
- #define CMDVERB_RUN 57 /*- Run -*/
- #define CMDVERB_WHYPROPERTY 58 /*- WhyProp -*/
- #define CMDVERB_BREAK 59 /*- Break -*/
- #define CMDVERB_REPLACE 60 /*- Replace -*/
- #define CMDVERB_GET 61 /*- Get -*/
- #define CMDVERB_CLEAR 62 /*- Clear -*/
- #define CMDVERB_BACKSPACE 63 /*- Backspace -*/
- #define CMDVERB_SPACE 64 /*- Space -*/
- #define CMDVERB_REVERT 65 /*- Revert -*/
- #define CMDVERB_REVISEACCEPT 66 /*- RevisionAccept -*/
- #define CMDVERB_REVISECANCEL 67 /*- RevisionCancel -*/
- #define CMDVERB_MARK 68 /*- Mark -*/
- #define CMDVERB_SETARRAYPROPERTY 69 /*- SetArrayProp -*/
- #define CMDVERB_GETARRAYPROPERTY 70 /*- GetArrayProp -*/
- #define CMDVERB_GOTO 71 /*- GoTo -*/
- #define CMDVERB_NEXT 72 /*- Next -*/
- #define CMDVERB_SKIP 73 /*- Skip -*/
- #define CMDVERB_SETALLPROPERTY 74 /*- SetAllProperties -*/
- #define CMDVERB_GETALLPROPERTY 75 /*- GetAllProperties -*/
- #define CMDVERB_ADJUST 76 /*- Adjust -*/
- #define CMDVERB_SAVEDATA 77 /*- SaveData -*/
- #define CMDVERB_SAVESNAPSHOT 78 /*- SaveSnapshot -*/
- #define CMDVERB_PROCESSACCELERATOR 79 /*- ProcessAccelerator -*/
- #define CMDVERB_OLECREATENEW 80 /*- OleCreateNew -*/
- #define CMDVERB_MEND 81 /*- Mend -*/
- #define CMDVERB_FORMAT 82 /*- Format -*/
- #define CMDVERB_ENABLE 83 /*- Enable -*/
- #define CMDVERB_DISABLE 84 /*- Disable -*/
- #define CMDVERB_MOVE 85 /*- Move -*/
- #define CMDVERB_COMPARE 86 /*- Compare -*/
- #define CMDVERB_INSERTNUMBER 87 /*- InsertNumber -*/
- #define CMDVERB_ANCHOR 88 /*- Anchor -*/
- #define CMDVERB_OLECREATEEMBEDDEDFILE 89 /*- OleCreateEmbeddedFile -*/
- #define CMDVERB_OLECREATELINKEDFILE 90 /*- OleCreateLinkedFile -*/
- #define CMDVERB_DRAGCOPY 91 /*- DragCopy -*/
- #define CMDVERB_SUM 92 /*- Sum -*/
- #define CMDVERB_FIND 93 /*- Find -*/
- #define CMDVERB_FORMULATE 94 /*- Formulate -*/
- #define CMDVERB_NAMEDGETPROPERTY 95 /*- NamedGetProperty -*/
- #define CMDVERB_NAMEDSETPROPERTY 96 /*- NamedSetProperty -*/
- #define CMDVERB_PRESENT 97 /*- Present -*/
- #define CMDVERB_PULL 98 /*- Pull -*/
- #define CMDVERB_RENDER 99 /*- Render -*/
- #define CMDVERB_CREATENEW 100 /*- CreateNew -*/
- #define CMDVERB_CREATEFROMFILE 101 /*- CreateFromFile -*/
- #define CMDVERB_REMOVEDEPENDENCYONDATA 102 /*- RemoveDependencyOnData -*/
- #define CMDVERB_RESET 103 /*- Reset -*/
- #define CMDVERB_GETTHEORETICALSCALEDSIZE 104 /*- TheoreticalScaledSize -*/
- #define CMDVERB_HIT 105 /*- Hit -*/
- #define CMDVERB_SPELLGET 106 /*- SpellGet -*/
- #define CMDVERB_WHO 107 /*- Who -*/
- #define CMDVERB_CREATEFROMCLIPBOARD 108 /*- CreateFromClipboard -*/
- #define CMDVERB_LOCALIZE 109 /*- Localize -*/
- #define CMDVERB_MARKS 110 /*- Marks -*/
- #define CMDVERB_APPACTIVATE 111 /*- AppActivate -*/
- #define CMDVERB_INVALIDATE 112 /*- Invalidate -*/
- #define CMDVERB_VALIDATEVALUE 113 /*- ValidateValue -*/
- #define CMDVERB_COPYTOEXTERNCLIP 114 /*- CopyToExternClip -*/
- #define CMDVERB_RENDERTOEXTERNCLIP 115 /*- RenderToExternClip -*/
-
- /*- Command Objects -*/
-
- #define CMDOBJECT_APPLICATION 1 /*- Application -*/
- #define CMDOBJECT_DOCUMENT 2 /*- Document -*/
- #define CMDOBJECT_WINDOW 3 /*- Window -*/
- #define CMDOBJECT_DIAGNOSTICS 4 /*- Diagnostic -*/
- #define CMDOBJECT_PROCEDURE 5 /*- Procedure -*/
- #define CMDOBJECT_LAYOUT 6 /*- Layout -*/
- #define CMDOBJECT_PAGE 7 /*- Page -*/
- #define CMDOBJECT_FRAME 8 /*- Frame -*/
- #define CMDOBJECT_STYLE 9 /*- Style -*/
- #define CMDOBJECT_OBJECT 10 /*- Object -*/
- #define CMDOBJECT_WIDTH 11 /*- Width -*/
- #define CMDOBJECT_HEIGHT 12 /*- Height -*/
- #define CMDOBJECT_MARGINS 13 /*- Margins -*/
- #define CMDOBJECT_LEFT 14 /*- Left -*/
- #define CMDOBJECT_TOP 15 /*- Top -*/
- #define CMDOBJECT_RIGHT 16 /*- Right -*/
- #define CMDOBJECT_BOTTOM 17 /*- Bottom -*/
- #define CMDOBJECT_TEXT 18 /*- Text -*/
- #define CMDOBJECT_VIEWCOUNT 19 /*- ViewCount -*/
- #define CMDOBJECT_VIEWLEVEL 20 /*- ViewLevel -*/
- #define CMDOBJECT_VIEWTYPE 21 /*- ViewType -*/
- #define CMDOBJECT_ARRANGEMENT 22 /*- Arrangement -*/
- #define CMDOBJECT_TABLE 23 /*- Table -*/
- #define CMDOBJECT_ROW 24 /*- Row -*/
- #define CMDOBJECT_CELL 25 /*- Cell -*/
- #define CMDOBJECT_PROPERTY 26 /*- Property -*/
- #define CMDOBJECT_VERB 27 /*- Verb -*/
- #define CMDOBJECT_FONT 28 /*- Font -*/
- #define CMDOBJECT_NAME 29 /*- Name -*/
- #define CMDOBJECT_SIZE 30 /*- Size -*/
- #define CMDOBJECT_BOLD 31 /*- Bold -*/
- #define CMDOBJECT_ITALIC 32 /*- Italic -*/
- #define CMDOBJECT_UNDERLINE 33 /*- Underline -*/
- #define CMDOBJECT_STREAM 34 /*- Stream -*/
- #define CMDOBJECT_PARAGRAPH 35 /*- Paragraph -*/
- #define CMDOBJECT_SENTENCE 36 /*- Sentence -*/
- #define CMDOBJECT_LINE 37 /*- Line -*/
- #define CMDOBJECT_WORD 38 /*- Word -*/
- #define CMDOBJECT_CHARACTER 39 /*- Character -*/
- #define CMDOBJECT_ORIENTATION 40 /*- Orientation -*/
- #define CMDOBJECT_REPLACEMENT 41 /*- Replacement -*/
- #define CMDOBJECT_ID 42 /*- ID -*/
- #define CMDOBJECT_COLUMN 43 /*- Column -*/
- #define CMDOBJECT_STRIKETHRU 44 /*- StrikeThrough -*/
- #define CMDOBJECT_PREFERENCES 45 /*- Preferences -*/
- #define CMDOBJECT_AUTOBACKUP 46 /*- AutoBackup -*/
- #define CMDOBJECT_SAVE 47 /*- Save -*/
- #define CMDOBJECT_UNDO 48 /*- Undo -*/
- #define CMDOBJECT_MESSAGE 49 /*- Message -*/
- #define CMDOBJECT_DRAGDROP 50 /*- DragDrop -*/
- #define CMDOBJECT_INITIALS 51 /*- Initials -*/
- #define CMDOBJECT_DISPLAY 52 /*- Display -*/
- #define CMDOBJECT_COLOR 53 /*- Color -*/
- #define CMDOBJECT_LOAD 54 /*- Load -*/
- #define CMDOBJECT_EXIT 55 /*- ExitObj -*/
- #define CMDOBJECT_BACKUP 56 /*- Backup -*/
- #define CMDOBJECT_MACRO 57 /*- Macro -*/
- #define CMDOBJECT_WORK 59 /*- Work -*/
- #define CMDOBJECT_COLLAPSIBLE 60 /*- Collapsible -*/
- #define CMDOBJECT_NOTCOPYABLE 61 /*- NotCopyable -*/
- #define CMDOBJECT_PRINT 62 /*- Print -*/
- #define CMDOBJECT_LEFTEXT 63 /*- LeftExt -*/
- #define CMDOBJECT_TOPEXT 64 /*- TopExt -*/
- #define CMDOBJECT_RIGHTEXT 65 /*- RightExt -*/
- #define CMDOBJECT_BOTTOMEXT 66 /*- BottomExt -*/
- #define CMDOBJECT_COLWIDTH 67 /*- ColWidth -*/
- #define CMDOBJECT_GAP 68 /*- Gap -*/
- #define CMDOBJECT_ROTATION 69 /*- Rotation -*/
- #define CMDOBJECT_VIEW 70 /*- View -*/
- #define CMDOBJECT_EXTERNAL 71 /*- External -*/
- #define CMDOBJECT_SELECTABLE 72 /*- Selectable -*/
- #define CMDOBJECT_SPAN 73 /*- Span -*/
- #define CMDOBJECT_WRAP 74 /*- Wrap -*/
- #define CMDOBJECT_SHARE 75 /*- Share -*/
- #define CMDOBJECT_BORDER 76 /*- Border -*/
- #define CMDOBJECT_RED 77 /*- Red -*/
- #define CMDOBJECT_GREEN 78 /*- Green -*/
- #define CMDOBJECT_BLUE 79 /*- Blue -*/
- #define CMDOBJECT_EXTRA 80 /*- Extra Color Word -*/
- #define CMDOBJECT_BACKGROUND 81 /*- BackGround -*/
- #define CMDOBJECT_SHADOW 82 /*- Shadow -*/
- #define CMDOBJECT_JOIN 83 /*- Join -*/
- #define CMDOBJECT_FOUNDRY 84 /*- Foundry -*/
- #define CMDOBJECT_FIT 85 /*- Fit -*/
- #define CMDOBJECT_COLUMNS 86 /*- Columns -*/
- #define CMDOBJECT_ROWS 87 /*- Rows -*/
- #define CMDOBJECT_PARENT 88 /*- Parent -*/
- #define CMDOBJECT_X 89 /*- X Position -*/
- #define CMDOBJECT_Y 90 /*- Y Position -*/
- #define CMDOBJECT_PRINTER 91 /*- Printer -*/
- #define CMDOBJECT_PICTURE 92 /*- Picture -*/
- #define CMDOBJECT_TAB 93 /*- Tab -*/
- #define CMDOBJECT_MARKS 94 /*- Marks -*/
- #define CMDOBJECT_NOTES 95 /*- Notes -*/
- #define CMDOBJECT_OUTLINE 96 /*- Outline -*/
- #define CMDOBJECT_HEADING 97 /*- Heading -*/
- #define CMDOBJECT_NORMAL 98 /*- Normal -*/
- #define CMDOBJECT_COLOR2 99 /*- Color2 -*/
- #define CMDOBJECT_SIDES 100 /*- Sides -*/
- #define CMDOBJECT_UI 101 /*- UserInterface -*/
- #define CMDOBJECT_SCROLLBAR 102 /*- ScrollBar -*/
- #define CMDOBJECT_POSITION 103 /*- Position -*/
- #define CMDOBJECT_SCROLLBUTTON 104 /*- ScrollButton -*/
- #define CMDOBJECT_RETENTION 105 /*- Retention -*/
- #define CMDOBJECT_CONTENTS 106 /*- Contents -*/
- #define CMDOBJECT_HEADER 107 /*- Header -*/
- #define CMDOBJECT_FOOTER 108 /*- Footer -*/
- #define CMDOBJECT_CLASS 109 /*- Class -*/
- #define CMDOBJECT_CONDITION 110 /*- Condition -*/
- #define CMDOBJECT_OVERRIDE 111 /*- Override -*/
- #define CMDOBJECT_FRAMER 112 /*- Framer -*/
- #define CMDOBJECT_LEVEL 113 /*- Level -*/
- #define CMDOBJECT_ALL 114 /*- All -*/
- #define CMDOBJECT_FIRST 115 /*- First -*/
- #define CMDOBJECT_HANG 116 /*- Hang -*/
- #define CMDOBJECT_REST 117 /*- Rest -*/
- #define CMDOBJECT_INDENT 118 /*- Indent -*/
- #define CMDOBJECT_LOADNAME 119 /*- LoadName -*/
- #define CMDOBJECT_EXITNAME 120 /*- ExitName -*/
- #define CMDOBJECT_AUTOSAVE 121 /*- AutoSave -*/
- #define CMDOBJECT_DEBUG 122 /*- Debug -*/
- #define CMDOBJECT_TABULATOR 123 /*- Tabulator -*/
- #define CMDOBJECT_ERRORCHECK 124 /*- ErrorCheck -*/
- #define CMDOBJECT_GUTTER 125 /*- Gutter -*/
- #define CMDOBJECT_SECTION 126 /*- Section -*/
- #define CMDOBJECT_MASTER 127 /*- Master -*/
- #define CMDOBJECT_CONNECTED 128 /*- Connected -*/
- #define CMDOBJECT_PROTECTED 129 /*- Protected -*/
- #define CMDOBJECT_OPTIONS 130 /*- Options -*/
- #define CMDOBJECT_HYPHEN 131 /*- Hyphen -*/
- #define CMDOBJECT_WIDOW 132 /*- Widow -*/
- #define CMDOBJECT_KERNING 133 /*- Kerning -*/
- #define CMDOBJECT_BALANCE 134 /*- Balance -*/
- #define CMDOBJECT_PERCENTAGE 135 /*- Percentage -*/
- #define CMDOBJECT_OFFSETX 136 /*- OffsetX -*/
- #define CMDOBJECT_OFFSETY 137 /*- OffsetY -*/
- #define CMDOBJECT_HELP 139 /*- Help -*/
- #define CMDOBJECT_FILES 140 /*- Files -*/
- #define CMDOBJECT_TYPE 141 /*- Type -*/
- #define CMDOBJECT_WHERE 142 /*- Where -*/
- #define CMDOBJECT_DISTANCEX 143 /*- DistanceX -*/
- #define CMDOBJECT_DISTANCEY 144 /*- DistanceY -*/
- #define CMDOBJECT_MAXIMIZE 145 /*- Maximize -*/
- #define CMDOBJECT_ALIGNMENT 146 /*- Alignment -*/
- #define CMDOBJECT_EMBEDDED 147 /*- Embedded -*/
- #define CMDOBJECT_CUSTOMLEVEL 148 /*- CustomLevel -*/
- #define CMDOBJECT_LAST 149 /*- Last -*/
- #define CMDOBJECT_GRAPHIC 150 /*- Graphic -*/
- #define CMDOBJECT_NUMBER 151 /*- Number -*/
- #define CMDOBJECT_TABRACK 152 /*- TabRack -*/
- #define CMDOBJECT_LEADER 153 /*- Leader -*/
- #define CMDOBJECT_ONEPAGE 154 /*- OnePage -*/
- #define CMDOBJECT_SCROLL 155 /*- Scroll -*/
- #define CMDOBJECT_COLOR3 156 /*- Color3 -*/
- #define CMDOBJECT_COLOR4 157 /*- Color4 -*/
- #define CMDOBJECT_COLOR5 158 /*- Color5 -*/
- #define CMDOBJECT_REVERSE 159 /*- Reverse -*/
- #define CMDOBJECT_SORT 160 /*- Sort -*/
- #define CMDOBJECT_OFFSET 161 /*- Offset -*/
- #define CMDOBJECT_DESCRIPTION 162 /*- Description -*/
- #define CMDOBJECT_OVERLAY 163 /*- Overlay -*/
- #define CMDOBJECT_AMOUNT 164 /*- Amount -*/
- #define CMDOBJECT_FORMAT 165 /*- Format -*/
- #define CMDOBJECT_SELECTION 166 /*- Selection -*/
- #define CMDOBJECT_CASE 167 /*- Case -*/
- #define CMDOBJECT_DOUBLEUNDERLINE 168 /*- DoubleUnder -*/
- #define CMDOBJECT_COLLAPSED 169 /*- Collapsed -*/
- #define CMDOBJECT_WORDUNDERLINE 170 /*- WordUnderline -*/
- #define CMDOBJECT_WORDDOUBLEUNDERLINE 171 /*- WordDoubleUnder -*/
- #define CMDOBJECT_SMALLCAPS 172 /*- SmallCaps -*/
- #define CMDOBJECT_MINHEIGHT 173 /*- MinimumHeight -*/
- #define CMDOBJECT_SPACING 174 /*- Spacing -*/
- #define CMDOBJECT_ABOVE 175 /*- Above -*/
- #define CMDOBJECT_BELOW 176 /*- Below -*/
- #define CMDOBJECT_ALWAYS 177 /*- Always -*/
- #define CMDOBJECT_OVERSTRIKE 178 /*- Overstrike -*/
- #define CMDOBJECT_SUPERSCRIPT 179 /*- SuperScript -*/
- #define CMDOBJECT_SUBSCRIPT 180 /*- SubScript -*/
- #define CMDOBJECT_FILTER 181 /*- Filter -*/
- #define CMDOBJECT_DIRECTIONUP 182 /*- DirectionUp -*/
- #define CMDOBJECT_PATH 183 /*- Path -*/
- #define CMDOBJECT_SPACE 184 /*- Space -*/
- #define CMDOBJECT_WIDTHTYPE 185 /*- WidthType -*/
- #define CMDOBJECT_PARALINE 186 /*- Paraline -*/
- #define CMDOBJECT_PARALINE2 187 /*- Paraline2 -*/
- #define CMDOBJECT_BORDERSTYLE 188 /*- BorderStyle -*/
- #define CMDOBJECT_VALID 189 /*- Valid -*/
- #define CMDOBJECT_STYLEPATH 190 /*- StylePath -*/
- #define CMDOBJECT_ICON 191 /*- Icon -*/
- #define CMDOBJECT_LEADING 192 /*- Leading -*/
- #define CMDOBJECT_DIRECTIONDOWN 193 /*- DirectionDown -*/
- #define CMDOBJECT_DIRECTIONRIGHT 194 /*- DirectionRight -*/
- #define CMDOBJECT_DIRECTIONLEFT 195 /*- DirectionLeft -*/
- #define CMDOBJECT_REVISION 196 /*- Revision -*/
- #define CMDOBJECT_KEYWORD 197 /*- KeyWord -*/
- #define CMDOBJECT_TIME 198 /*- Time -*/
- #define CMDOBJECT_SIZETEXT 199 /*- SizeText -*/
- #define CMDOBJECT_DATESTRING 200 /*- DateString -*/
- #define CMDOBJECT_REVISIONDATESTRING 201 /*- RevisionDateString -*/
- #define CMDOBJECT_FIELDARRAY 202 /*- FieldArray -*/
- #define CMDOBJECT_STYLENAMEARRAY 203 /*- StyleNameArray -*/
- #define CMDOBJECT_PAGEARRAY 204 /*- PageArray -*/
- #define CMDOBJECT_ALIGNARRAY 205 /*- AlignArray -*/
- #define CMDOBJECT_SNAPSHOT 206 /*- Snapshot -*/
- #define CMDOBJECT_TOC 207 /*- TableOfContents -*/
- #define CMDOBJECT_SEPARATORARRAY 208 /*- SeparatorArray -*/
- #define CMDOBJECT_BUOYANCY 209 /*- Buoyancy -*/
- #define CMDOBJECT_INFO 210 /*- Info -*/
- #define CMDOBJECT_REVISIONTIME 211 /*- RevisionTime -*/
- #define CMDOBJECT_REVISIONTIMESTRING 212 /*- RevisionTimeString -*/
- #define CMDOBJECT_EDITTIME 213 /*- EditTime -*/
- #define CMDOBJECT_TIMESTRING 214 /*- TimeString -*/
- #define CMDOBJECT_FONT2 215 /*- Font2 -*/
- #define CMDOBJECT_VIEWPORT 216 /*- Viewport -*/
- #define CMDOBJECT_SEARCH 217 /*- Search -*/
- #define CMDOBJECT_ATTRIBUTES 218 /*- Attributes -*/
- #define CMDOBJECT_REPLACECASE 219 /*- ReplaceCase -*/
- #define CMDOBJECT_REPLACEATTRS 220 /*- ReplaceAttrs -*/
- #define CMDOBJECT_MERGE 221 /*- Merge -*/
- #define CMDOBJECT_UNITS 222 /*- Units -*/
- #define CMDOBJECT_RECORD 223 /*- Record -*/
- #define CMDOBJECT_ACROSS 224 /*- Across -*/
- #define CMDOBJECT_DOWN 225 /*- Down -*/
- #define CMDOBJECT_FLAG 226 /*- Flag -*/
- #define CMDOBJECT_PRESENTATION 227 /*- Presentation -*/
- #define CMDOBJECT_FOOTNOTE 228 /*- Footnote -*/
- #define CMDOBJECT_SEPARATOR 229 /*- Separator -*/
- #define CMDOBJECT_GATHER 230 /*- Gather -*/
- #define CMDOBJECT_START 231 /*- Start -*/
- #define CMDOBJECT_CHARACTERSET 232 /*- CharacterSet -*/
- #define CMDOBJECT_MANIPULATE 233 /*- Manipulate -*/
- #define CMDOBJECT_RESET 234 /*- Reset -*/
- #define CMDOBJECT_STYLESHEET 235 /*- StyleSheet -*/
- #define CMDOBJECT_ENCRYPT 236 /*- Encrypt -*/
- #define CMDOBJECT_LANGUAGE 237 /*- Language -*/
- #define CMDOBJECT_GRAMMAR 238 /*- Grammar -*/
- #define CMDOBJECT_ANONYMOUS 239 /*- Anonymous -*/
- #define CMDOBJECT_NEXTNAME 240 /*- NextName -*/
- #define CMDOBJECT_BEFORE 241 /*- Before -*/
- #define CMDOBJECT_AFTER 242 /*- After -*/
- #define CMDOBJECT_WITHIN 243 /*- Within -*/
- #define CMDOBJECT_COLBEFORE 244 /*- ColBefore -*/
- #define CMDOBJECT_COLAFTER 245 /*- ColAfter -*/
- #define CMDOBJECT_KEEPNEXT 246 /*- KeepNext -*/
- #define CMDOBJECT_KEEPPREV 247 /*- KeepPrev -*/
- #define CMDOBJECT_KEY 248 /*- Key -*/
- #define CMDOBJECT_NEXT 249 /*- Next -*/
- #define CMDOBJECT_LESSER 250 /*- Lesser -*/
- #define CMDOBJECT_INTERVENE 251 /*- Intervene -*/
- #define CMDOBJECT_CUMULATIVE 252 /*- Cumulative -*/
- #define CMDOBJECT_PAREN 253 /*- Paren -*/
- #define CMDOBJECT_THOUSAND 254 /*- Thousand -*/
- #define CMDOBJECT_CURRENCY 255 /*- Currency -*/
- #define CMDOBJECT_THOUSANDSYMBOL 256 /*- ThousandSymbol -*/
- #define CMDOBJECT_CURRENCYSYMBOL 257 /*- CurrencySymbol -*/
- #define CMDOBJECT_EQUAL 258 /*- Equal -*/
- #define CMDOBJECT_INDEX 259 /*- Index -*/
- #define CMDOBJECT_FONTTEXT 260 /*- FontText -*/
- #define CMDOBJECT_SPACETEXT 261 /*- SpaceText -*/
- #define CMDOBJECT_TITLE 262 /*- Title -*/
- #define CMDOBJECT_MENU 263 /*- Menu -*/
- #define CMDOBJECT_STATUS 264 /*- Status -*/
- #define CMDOBJECT_HSCROLL 265 /*- HScroll -*/
- #define CMDOBJECT_ALTERNATIVE 266 /*- Alternative -*/
- #define CMDOBJECT_CAPS 267 /*- Caps -*/
- #define CMDOBJECT_SCALEMODE 268 /*- ScaleMode -*/
- #define CMDOBJECT_SCALEPERCENTAGE 269 /*- ScalePercentage -*/
- #define CMDOBJECT_SCALEWIDTH 270 /*- ScaleWidth -*/
- #define CMDOBJECT_SCALEHEIGHT 271 /*- ScaleHeight -*/
- #define CMDOBJECT_CONTENTROTATION 272 /*- ContentRotation -*/
- #define CMDOBJECT_CENTEREDHORIZONTALLY 273 /*- CenteredX -*/
- #define CMDOBJECT_SCALEASPECT 274 /*- ScaleAspect -*/
- #define CMDOBJECT_CONTAINER 275 /*- Container -*/
- #define CMDOBJECT_DEFAULTCOLUMNWIDTH 276 /*- DefaultColumnWidth -*/
- #define CMDOBJECT_DEFAULTROWHEIGHT 277 /*- DefaultRowHeight -*/
- #define CMDOBJECT_ACTIVE 278 /*- Active -*/
- #define CMDOBJECT_SERVERCONTEXT 279 /*- ServerContext -*/
- #define CMDOBJECT_FILTERCONTEXT 280 /*- FilterContext -*/
-
- /* these should be in uidefs.h */
- #define CMDOBJECT_FULLPATH 281 /*- FullPath -*/
- #define CMDOBJECT_DISPNAME 282 /*- DisplayableName -*/
- #define CMDOBJECT_DISPPATH 283 /*- DisplayablePath -*/
- #define CMDOBJECT_SHEETFULLPATH 284 /*- SheetFullPath -*/
- #define CMDOBJECT_SHEETDISPNAME 285 /*- SheetDisplayableName -*/
- #define CMDOBJECT_SHEETDISPPATH 286 /*- SheetDisplayablePath -*/
-
- #define CMDOBJECT_SCHEDULER 287 /*- Scheduler -*/
- #define CMDOBJECT_READY 288 /*- Ready -*/
- #define CMDOBJECT_SLEEPING 289 /*- Sleeping -*/
- #define CMDOBJECT_COLOR6 290 /*- Color6 -*/
- #define CMDOBJECT_REVLOCK 291 /*- RevLock -*/
- #define CMDOBJECT_REVISERNAME 292 /*- ReviserName -*/
- #define CMDOBJECT_CONTENT_OBJECT 293 /*- ContentObject -*/
- #define CMDOBJECT_CONTEXT_OBJECT 294 /*- ContextObject -*/
- #define CMDOBJECT_CREATIONREVISION 295 /*- CreationRevision -*/
- #define CMDOBJECT_DELETIONREVISION 296 /*- DeletionRevision -*/
- #define CMDOBJECT_CELLSTYLENAME 297 /*- CellStyleName -*/
- #define CMDOBJECT_HIDESHOWPROPS 298 /*- HideShowProps -*/
- #define CMDOBJECT_OLE 299 /*- Ole -*/
- #define CMDOBJECT_CELLPARAGRAPHSTYLENAME 300 /*- CellParagraphStyleName -*/
- #define CMDOBJECT_NUMBEROFROWS 301 /*- NumberOfRows -*/
- #define CMDOBJECT_NUMBEROFCOLUMNS 302 /*- NumberOfColumns -*/
- #define CMDOBJECT_COMMAND 303 /*- Command -*/
- #define CMDOBJECT_PAGEBREAK 304 /*- PageBreak -*/
- #define CMDOBJECT_READONLY 305 /*- ReadOnly -*/
- #define CMDOBJECT_DEMANDLOAD 306 /*- DemandLoad -*/
- #define CMDOBJECT_CHILD 307 /*- Child -*/
- #define CMDOBJECT_SHOW 308 /*- Show -*/
- #define CMDOBJECT_BOOKMARK 309 /*- BookMark -*/
- #define CMDOBJECT_DIRECT 310 /*- Direct -*/
- #define CMDOBJECT_FONTTABLE 311 /*- FontTable -*/
- #define CMDOBJECT_FORMULA 312 /*- Formula -*/
- #define CMDOBJECT_NOINTERSECTSIB 313 /*- NoIntersectSiblings -*/
- #define CMDOBJECT_MASTERNAME 314 /*- MasterName -*/
- #define CMDOBJECT_DDELINK 315 /*- DdeLink -*/
- #define CMDOBJECT_NOTE 316 /*- Note -*/
- #define CMDOBJECT_MARKER 317 /*- Marker -*/
- #define CMDOBJECT_CELLENGINE 318 /*- CellEngine -*/
- #define CMDOBJECT_ENDNOTE 319 /*- EndNote -*/
- #define CMDOBJECT_CENTER 320 /*- Center -*/
- #define CMDOBJECT_BOTTOMALIGN 321 /*- BottomAlign -*/
- #define CMDOBJECT_LEADERDOTTYPE 322 /*- LeaderDotType -*/
- #define CMDOBJECT_INSERTION 323 /*- Insertion -*/
- #define CMDOBJECT_NOTGROUPABLE 324 /*- NotGroupable -*/
- #define CMDOBJECT_VALUE 325 /*- Value -*/
- #define CMDOBJECT_ABSOLUTE 326 /*- Absolute -*/
- #define CMDOBJECT_ABSOLUTEX 327 /*- AbsoluteX -*/
- #define CMDOBJECT_ABSOLUTEY 328 /*- AbsoluteY -*/
- #define CMDOBJECT_FIELD 329 /*- Field -*/
- #define CMDOBJECT_MIRROR 330 /*- Mirror -*/
- #define CMDOBJECT_VARIABLE 331 /*- Variable -*/
- #define CMDOBJECT_TEMPORARY 332 /*- Temporary -*/
- #define CMDOBJECT_FOCUSROW 333 /*- FocusRow -*/
- #define CMDOBJECT_FOCUSCOL 334 /*- FocusCol -*/
- #define CMDOBJECT_FOCUSX 335 /*- FocusX -*/
- #define CMDOBJECT_FOCUSY 336 /*- FocusY -*/
- #define CMDOBJECT_PRIVATE 337 /*- Private -*/
- #define CMDOBJECT_PRIMARY 338 /*- Primary -*/
- #define CMDOBJECT_SECONDARY 339 /*- Secondary -*/
- #define CMDOBJECT_MARKED 340 /*- Marked -*/
- #define CMDOBJECT_BOS 341 /*- BeginningOfStream -*/
- #define CMDOBJECT_EOS 342 /*- EndOfStream -*/
- #define CMDOBJECT_BOP 343 /*- BeginningOfPara -*/
- #define CMDOBJECT_EOP 344 /*- EndOfPara -*/
- #define CMDOBJECT_BOL 345 /*- BeginningOfLine -*/
- #define CMDOBJECT_EOL 346 /*- EndOfLine -*/
- #define CMDOBJECT_BOF 347 /*- BeginningOfFrib -*/
- #define CMDOBJECT_EOF 348 /*- EndOfFrib -*/
- #define CMDOBJECT_BOC 349 /*- BeginningOfChain -*/
- #define CMDOBJECT_EOC 350 /*- EndOfChain -*/
- #define CMDOBJECT_LOCAL 351 /*- Local -*/
- #define CMDOBJECT_MUTE 352 /*- Mute -*/
- #define CMDOBJECT_ACCESSRIGHTS 353 /*- AccessRights -*/
- #define CMDOBJECT_UNKNOWN 354 /*- Unknown -*/
- #define CMDOBJECT_BULLET 355 /*- Bullet -*/
- #define CMDOBJECT_WINDOWSNAME 356 /*- WindowsName -*/
- #define CMDOBJECT_CHANGED 357 /*- Changed -*/
- #define CMDOBJECT_AWARE 358 /*- Aware -*/
- #define CMDOBJECT_ROOT 359 /*- Root -*/
- #define CMDOBJECT_LELOBJECT 360 /*- LelObject -*/
- #define CMDOBJECT_DIRTY 361 /*- Dirty -*/
- #define CMDOBJECT_FOCUSROW2 362 /*- FocusRow2 -*/
- #define CMDOBJECT_FOCUSCOL2 363 /*- FocusCol2 -*/
- #define CMDOBJECT_SEQUENCE 364 /*- Sequence -*/
- #define CMDOBJECT_ENDPAGE 365 /*- EndPage -*/
- #define CMDOBJECT_ENDSEQUENCE 366 /*- EndSequence -*/
- #define CMDOBJECT_GRID 367 /*- Grid -*/
- #define CMDOBJECT_MINLEFT 368 /*- MinLeft -*/
- #define CMDOBJECT_MINRIGHT 369 /*- MinRight -*/
- #define CMDOBJECT_MINTOP 370 /*- MinTop -*/
- #define CMDOBJECT_MINBOTTOM 371 /*- MinBottom -*/
- #define CMDOBJECT_HONORPROTECTION 372 /*- HonorProtection -*/
- #define CMDOBJECT_LINKGRAPHIC 373 /*- LinkGraphic -*/
- #define CMDOBJECT_SERVERCONTEXTFORMAT 374 /*- ServerContextFormat -*/
- #define CMDOBJECT_DATAFORMAT 375 /*- DataFormat -*/
- #define CMDOBJECT_SNAPSHOTSTART 376 /*- SnapshotStart -*/
- #define CMDOBJECT_SNAPSHOTSIZE 377 /*- SnapshotSize -*/
- #define CMDOBJECT_SNAPSHOTSTREAM 378 /*- SnapshotStream -*/
- #define CMDOBJECT_LINKED 379 /*- Linked -*/
- #define CMDOBJECT_LINKEDFILE 380 /*- LinkedFile -*/
- #define CMDOBJECT_VEGOMATIC 381 /*- Vegomatic -*/
- #define CMDOBJECT_CHILDSPANNABLE 382 /*- ChildSpannable -*/
- #define CMDOBJECT_BADREFERENCE 383 /*- BadReference -*/
- #define CMDOBJECT_DIALOGDEFAULT 384 /*- DialogDefault -*/
- #define CMDOBJECT_SCALABLE 385 /*- Scalable -*/
- #define CMDOBJECT_LELSERVERDOC 386 /*- LelServerDoc -*/
- #define CMDOBJECT_LELEMBEDDED 387 /*- LelEmbedded -*/
- #define CMDOBJECT_LELCLIENTDOCNAME 388 /*- LelClientDocName -*/
- #define CMDOBJECT_MAXIMUMLEFT 389 /*- MaxLeft -*/
- #define CMDOBJECT_MAXIMUMRIGHT 390 /*- MaxRigth -*/
- #define CMDOBJECT_MAXIMUMTOP 391 /*- MaxTop -*/
- #define CMDOBJECT_MAXIMUMBOTTOM 392 /*- MaxBottom -*/
- #define CMDOBJECT_MAXIMUMLEFTBORDER 393 /*- MaxLeftBorder -*/
- #define CMDOBJECT_MAXIMUMRIGHTBORDER 394 /*- MaxRightBorder -*/
- #define CMDOBJECT_MAXIMUMTOPBORDER 395 /*- MaxTopBorder -*/
- #define CMDOBJECT_MAXIMUMBOTTOMBORDER 396 /*- MaxBottomBorder -*/
- #define CMDOBJECT_BASELINE 397 /*- BaseLineOffset -*/
- #define CMDOBJECT_SCRIPT 398 /*- Script -*/
- #define CMDOBJECT_SCRIPTING 399 /*- Scripting -*/
- #define CMDOBJECT_EQNFONTHEIGHT 400 /*- EqnFontHeight -*/
- #define CMDOBJECT_ENCRYPT2 401 /*- Encrypt2 -*/
- #define CMDOBJECT_ENUMERATION 402 /*- Enumeration -*/
- #define CMDOBJECT_OPEN 403 /*- Open -*/
- #define CMDOBJECT_CELLGROUP 404 /*- CellGroup -*/
- #define CMDOBJECT_PRO30 405 /*- AmiPro30 -*/
- #define CMDOBJECT_MAXIMUMINSERTROWS 406 /*- MaxInsertRows -*/
- #define CMDOBJECT_MAXIMUMINSERTCOLUMNS 407 /*- MaxInsertColumns -*/
- #define CMDOBJECT_WYSIWYG 408 /*- WYSIWYG -*/
- #define CMDOBJECT_END 409 /*- End -*/
- #define CMDOBJECT_ISGRAPHIC 410 /*- IsGraphic -*/
-
- /* Command change flags */
-
- #define CMDCHANGE_NONE 0x0
- #define CMDCHANGE_STYLE 0x1
- #define CMDCHANGE_LAYOUT 0x2
- #define CMDCHANGE_CONTENTS 0x4
- #define CMDCHANGE_DISPLAY 0x8
- #define CMDCHANGE_APPDISPLAY 0x10
- #define CMDCHANGE_REFLOWALL 0x20
- #define CMDCHANGE_INITIAL 0x40
- #define CMDCHANGE_SECTION 0x80
- #define CMDCHANGE_OPTIONS 0x100
- #define CMDCHANGE_ALL (CMDCHANGE_STYLE | CMDCHANGE_LAYOUT | \
- CMDCHANGE_CONTENTS | CMDCHANGE_DISPLAY \
- | CMDCHANGE_REFLOWALL | CMDCHANGE_INITIAL \
- | CMDCHANGE_SECTION | CMDCHANGE_OPTIONS)
-
- /* Command change types */
- #define CMDCHANGE_APPLY 1
- #define CMDCHANGE_CANCEL 2
-
- /* Response types */
-
- #define CMDRESPONSE_NO 0
- #define CMDRESPONSE_YES 1
- #define CMDRESPONSE_AMBIGUOUS 2
-
- #endif
-