1 /*****************************************************************************/ 2 /* */ 3 /* STATFLAG.H */ 4 /* */ 5 /* (C) 1995 Ullrich von Bassewitz */ 6 /* Wacholderweg 14 */ 7 /* D-70597 Stuttgart */ 8 /* EMail: uz@ibb.schwaben.com */ 9 /* */ 10 /*****************************************************************************/ 11 12 13 14 // $Id$ 15 // 16 // $Log$ 17 // 18 // 19 20 21 22 // Flags for use with CreateStatusLine/PushStatusLine 23 24 25 26 #ifndef __STATFLAG_H 27 #define __STATFLAG_H 28 29 30 31 /*****************************************************************************/ 32 /* Flags for creating standard status lines */ 33 /*****************************************************************************/ 34 35 36 37 // !!! Old names, do not use for future development !!! 38 const u32 siF1_Help = 0x00000001; 39 const u32 siEsc_Abort = 0x00000002; 40 const u32 siEsc_End = 0x00000004; 41 const u32 siEsc_Proceed = 0x00000008; 42 const u32 siF10_Accept = 0x00000010; 43 const u32 siCR_Accept = 0x00000020; 44 const u32 siUpDn_Select = 0x00000040; 45 const u32 siUpDnCR_Select = 0x00000080; 46 const u32 siIns_Insert = 0x00000100; 47 const u32 siDel_Delete = 0x00000200; 48 const u32 siCR_Change = 0x00000400; 49 const u32 siCtrlD_Print = 0x00000800; 50 const u32 siCtrlG_Graphics = 0x00001000; 51 const u32 siAltX_Exit = 0x00002000; 52 const u32 siCR_Confirm = 0x00004000; 53 const u32 siCursPgKeys_Move = 0x00008000; 54 const u32 siF3_Open = 0x00010000; 55 const u32 siAltF3_Close = 0x00020000; 56 const u32 siF5_Zoom = 0x00040000; 57 const u32 siCtrlF5_Resize = 0x00080000; 58 const u32 siAltI_Login = 0x00100000; 59 const u32 siAltO_Logout = 0x00200000; 60 61 62 63 // New codes -> Example 64 const u32 siHelp = 0x00000001; // F1 Help 65 const u32 siAbort = 0x00000002; // ESC Abort 66 const u32 siEnd = 0x00000004; // ESC Done 67 const u32 siProceed = 0x00000008; // ESC Proceed 68 const u32 siAccept = 0x00000010; // F10 Accept 69 const u32 siEnter = 0x00000020; // <�� Accept 70 const u32 siSelectKeys = 0x00000040; // Select 71 const u32 siSelectChooseKeys = 0x00000080; // <�� Select 72 const u32 siInsert = 0x00000100; // Ins Insert 73 const u32 siDelete = 0x00000200; // Del Delete 74 const u32 siChange = 0x00000400; // <�� Change 75 const u32 siPrint = 0x00000800; // Alt-D Print 76 const u32 siGraphics = 0x00001000; // Alt-G Graphics 77 const u32 siExit = 0x00002000; // Alt-X Exit 78 const u32 siConfirm = 0x00004000; // Enter Confirm 79 const u32 siPageKeys = 0x00008000; // PgUp PgDn Move 80 const u32 siOpen = 0x00010000; // F3 Open 81 const u32 siSave = 0x00020000; // F2 Save 82 const u32 siClose = 0x00040000; // Alt-F3 Close 83 const u32 siZoom = 0x00080000; // F5 Zoom 84 const u32 siResize = 0x00100000; // Ctrl-F5 Resize 85 const u32 siLogin = 0x00200000; // Alt-I Login 86 const u32 siLogout = 0x00400000; // Alt-O Logout 87 const u32 siMoveKeys = 0x10000000; // <-> Move 88 const u32 siResizeKeys = 0x20000000; // Shift-<-> Resize 89 90 91 92 // End of STATFLAG.H 93 94 #endif 95 96