00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #ifndef SMSEXAMPLE_HRH
00031 #define SMSEXAMPLE_HRH
00032
00033
00034
00035 enum TMultiViewsViewNumber
00036 {
00037 ELogViewId = 1,
00038 EListboxViewId
00039 };
00040
00041 enum TSMSExampleCommandIds
00042 {
00043 ESMSExampleCmdSendMessage = 10,
00044 ESMSExampleCmdMoveToDraftsFolder,
00045 ESMSExampleCmdMoveToMyFolders,
00046 ESMSExampleCmdDeleteMessage,
00047 ESMSExampleCmdCopyMessage,
00048 ESMSExampleCmdCopyMessageToDrafts,
00049 ESMSExampleCmdCopyMessageToOwnFolder,
00050 ESMSExampleCmdCopyMessageToInbox
00051 };
00052
00053 enum TSMSExampleCommandMoveIds
00054 {
00055 ESMSExampleCmdMoveMessageFromDraftsToInbox = 40,
00056 ESMSExampleCmdMoveMessageFromDraftsToOutbox,
00057 ESMSExampleCmdMoveMessageFromOutboxToInbox,
00058 ESMSExampleCmdMoveMessageFromOutboxToDrafts,
00059 ESMSExampleCmdMoveMessageFromInboxToOutbox,
00060 ESMSExampleCmdMoveMessageFromInboxToDrafts
00061 };
00062
00063 enum TSMSExampleCommandCopyIds
00064 {
00065 ESMSExampleCmdCopyMessageFromDraftsToInbox = 60,
00066 ESMSExampleCmdCopyMessageFromDraftsToOutbox,
00067 ESMSExampleCmdCopyMessageFromOutboxToInbox,
00068 ESMSExampleCmdCopyMessageFromOutboxToDrafts,
00069 ESMSExampleCmdCopyMessageFromInboxToOutbox,
00070 ESMSExampleCmdCopyMessageFromInboxToDrafts
00071 };
00072
00073 enum TSMSExampleCommandDeleteIds
00074 {
00075 ESMSExampleCmdDeleteMessageFromInbox = 80,
00076 ESMSExampleCmdDeleteMessageFromDrafts,
00077 ESMSExampleCmdDeleteMessageFromOutbox
00078 };
00079
00080 enum TListBoxModes
00081 {
00082 ESMSExampleModeCopyToOutbox = 120,
00083 ESMSExampleModeCopyToInbox,
00084 ESMSExampleModeCopyToDrafts,
00085 ESMSExampleModeCopy,
00086 ESMSExampleDelete,
00087 ESMSExampleMove
00088 };
00089
00090 enum TListBoxSelectCommands
00091 {
00092 ESMSExampleListBoxSelectAll = 160,
00093 ESMSExampleListBoxDeSelectAll,
00094 ESMSExampleListBoxCancel,
00095 ESMSExampleListBoxDone
00096 };
00097
00098 enum TListBoxSettingsCommands
00099 {
00100 ESMSExampleListBoxSettings = 180,
00101 ESMSExampleListBoxSetAutomaticDeleteOn,
00102 ESMSExampleListBoxSetAutomaticDeleteOff
00103 };
00104
00105 enum TMtmsExampleMaxAddressLength
00106 {
00107 EMtmsExampleMaxAddressLength = 64
00108 };
00109
00110 #endif // SMSEXAMPLE_HRH