/* * * * * * * *\ RESOURCE.H - Copyright (c) 2023 freedom7341, Vortesys DESCRIPTION - Program Manager's resource collection. ** NO DEPENDENCIES ** LICENSE INFORMATION - MIT License, see LICENSE.txt in the root folder \* * * * * * * */ /* Pragmas */ #pragma once /* Icon Library */ // Primary, 1-9 #define IDI_PROGMGR 1 #define IDI_PROGGRP 2 #define IDI_PROGITM 3 // Secondary, 10-19 #define IDI_COMMS 10 #define IDI_CONSOLE 11 #define IDI_DOCUMENT 12 #define IDI_SPREADSHEET 13 // Tertiary, 20+ #define IDI_SUPERMAN 20 /* Menus and Commands */ // Context Menus and Accelerators #define IDM_MAIN 100 #define IDM_ITEM 101 #define IDM_GROUP 102 #define IDA_ACCELS 103 // File, 110-119 #define IDM_FILE 110 #define IDM_FILE_NEW 111 #define IDM_FILE_OPEN 112 #define IDM_FILE_MOVE 113 #define IDM_FILE_COPY 114 #define IDM_FILE_DELETE 115 #define IDM_FILE_PROPS 116 #define IDM_FILE_RUN 117 #define IDM_FILE_EXIT 118 // Options, 130-149 #define IDM_OPTIONS 130 #define IDM_OPTIONS_AUTOARRANGE 131 #define IDM_OPTIONS_MINONRUN 132 #define IDM_OPTIONS_TOPMOST 133 #define IDM_OPTIONS_SHOWUSERNAME 134 #define IDM_OPTIONS_SAVESETTINGS 135 #define IDM_OPTIONS_SAVENOW 136 // Window, 150-169, 10000+ #define IDM_WINDOW 150 #define IDM_WINDOW_CASCADE 151 #define IDM_WINDOW_TILE 152 #define IDM_WINDOW_TILEHORIZONTALLY 153 #define IDM_WINDOW_ARRANGEICONS 154 #define IDM_WINDOW_CHILDSTART 10000 // Help, 170-179 #define IDM_HELP 170 #define IDM_HELP_INDEX 171 #define IDM_HELP_ABOUT 172 // Miscellaneous, 180-199 #define IDM_SHUTDOWN 180 #define IDM_TASKMGR 181 // Desktop Menus, 1000 - 1020 #define IDM_DESK 1000 #define IDM_DESK_VIEW 1001 #define IDM_DESK_SORT 1002 #define IDM_DESK_SCREENRES 1003 #define IDM_DESK_PERSONALIZE 1004 /* String Table */ #define IDS_APPTITLE 1 #define IDS_PMCLASS 2 #define IDS_DTCLASS 3 #define IDS_GRPCLASS 4 #define IDS_WEBSITE 5 // Menu Commands #define IDS_RUN 100 #define IDS_TASKMGR 101 #define IDS_EXIT 102 #define IDS_SHUTDOWN 103