ReactOS Fundraising Campaign 2012
 
€ 4,410 / € 30,000

Information | Donate

Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS
  5. Fundraiser 2012

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

definitions.h
Go to the documentation of this file.
00001 /*
00002  * PROJECT:     PAINT for ReactOS
00003  * LICENSE:     LGPL
00004  * FILE:        base/applications/paint/definitions.h
00005  * PURPOSE:     Defines the resource ids and other stuff
00006  * PROGRAMMERS: Benedikt Freisen
00007  */
00008  
00009 /* DEFINES **********************************************************/
00010 
00011 #define HISTORYSIZE 11
00012 /* HISTORYSIZE = number of possible undo-steps + 1 */
00013 
00014 #define SIZEOF(a)  (sizeof(a) / sizeof((a)[0]))
00015 /* sizeof for string constants; equals max. number of characters */
00016 
00017 #define IDI_APPICON 500
00018 
00019 #define IDB_TOOLBARICONS    510
00020 
00021 #define IDI_TRANSPARENT     526
00022 #define IDI_NONTRANSPARENT  527
00023 
00024 #define IDC_FILL        530
00025 #define IDC_COLOR       531
00026 #define IDC_ZOOM        532
00027 #define IDC_PEN         533
00028 #define IDC_AIRBRUSH    534
00029 
00030 #define IDI_HORZSTRETCH 535
00031 #define IDI_VERTSTRETCH 536
00032 
00033 #define ID_MENU 501
00034 
00035 #define IDM_FILENEW     201
00036 #define IDM_FILEOPEN    202
00037 #define IDM_FILESAVE    203
00038 #define IDM_FILESAVEAS  204
00039 #define IDM_FILEASWALLPAPERPLANE        210
00040 #define IDM_FILEASWALLPAPERCENTERED     211
00041 #define IDM_FILEASWALLPAPERSTRETCHED    212
00042 #define IDM_FILEEXIT    205
00043 
00044 #define IDM_EDITUNDO    220
00045 #define IDM_EDITREDO    221
00046 #define IDM_EDITCUT     222
00047 #define IDM_EDITCOPY    223
00048 #define IDM_EDITPASTE   224
00049 #define IDM_EDITDELETESELECTION 225
00050 #define IDM_EDITINVERTSELECTION 226
00051 #define IDM_EDITSELECTALL   227
00052 #define IDM_EDITCOPYTO      228
00053 #define IDM_EDITPASTEFROM   229
00054 
00055 #define IDM_VIEWTOOLBOX         230
00056 #define IDM_VIEWCOLORPALETTE    231
00057 #define IDM_VIEWSTATUSBAR       232
00058 #define IDM_FORMATICONBAR       233
00059 #define IDM_VIEWZOOM125         234
00060 #define IDM_VIEWZOOM25          235
00061 #define IDM_VIEWZOOM50          236
00062 #define IDM_VIEWZOOM100         237
00063 #define IDM_VIEWZOOM200         238
00064 #define IDM_VIEWZOOM400         239
00065 #define IDM_VIEWZOOM800         240
00066 #define IDM_VIEWFULLSCREEN      241
00067 #define IDM_VIEWSHOWGRID        242
00068 #define IDM_VIEWSHOWMINIATURE   243
00069 
00070 #define IDM_IMAGEROTATEMIRROR   250
00071 #define IDM_IMAGECHANGESIZE     251
00072 #define IDM_IMAGECROP           252
00073 #define IDM_IMAGEINVERTCOLORS   253
00074 #define IDM_IMAGEATTRIBUTES     254
00075 #define IDM_IMAGEDELETEIMAGE    255
00076 #define IDM_IMAGEDRAWOPAQUE     256
00077 
00078 #define IDM_COLORSEDITPALETTE   260
00079 
00080 #define IDM_HELPHELPTOPICS  270
00081 #define IDM_HELPINFO        271
00082 
00083 //the following 16 numbers need to be in order, increasing by 1
00084 #define ID_FREESEL  600
00085 #define ID_RECTSEL  601
00086 #define ID_RUBBER   602
00087 #define ID_FILL     603
00088 #define ID_COLOR    604
00089 #define ID_ZOOM     605
00090 #define ID_PEN      606
00091 #define ID_BRUSH    607
00092 #define ID_AIRBRUSH 608
00093 #define ID_TEXT     609
00094 #define ID_LINE     610
00095 #define ID_BEZIER   611
00096 #define ID_RECT     612
00097 #define ID_SHAPE    613
00098 #define ID_ELLIPSE  614
00099 #define ID_RRECT    615
00100 
00101 //the following 16 numbers need to be in order, increasing by 1
00102 #define TOOL_FREESEL  1
00103 #define TOOL_RECTSEL  2
00104 #define TOOL_RUBBER   3
00105 #define TOOL_FILL     4
00106 #define TOOL_COLOR    5
00107 #define TOOL_ZOOM     6
00108 #define TOOL_PEN      7
00109 #define TOOL_BRUSH    8
00110 #define TOOL_AIRBRUSH 9
00111 #define TOOL_TEXT     10
00112 #define TOOL_LINE     11
00113 #define TOOL_BEZIER   12
00114 #define TOOL_RECT     13
00115 #define TOOL_SHAPE    14
00116 #define TOOL_ELLIPSE  15
00117 #define TOOL_RRECT    16
00118 
00119 #define ID_ACCELERATORS 800
00120 
00121 #define IDD_MIRRORROTATE        700
00122 #define IDD_MIRRORROTATEGROUP   701
00123 #define IDD_MIRRORROTATERB1     702
00124 #define IDD_MIRRORROTATERB2     703
00125 #define IDD_MIRRORROTATERB3     704
00126 #define IDD_MIRRORROTATERB4     705
00127 #define IDD_MIRRORROTATERB5     706
00128 #define IDD_MIRRORROTATERB6     707
00129 
00130 #define IDD_ATTRIBUTES          710
00131 #define IDD_ATTRIBUTESEDIT1     711
00132 #define IDD_ATTRIBUTESEDIT2     712
00133 #define IDD_ATTRIBUTESTEXT1     715
00134 #define IDD_ATTRIBUTESTEXT2     716
00135 #define IDD_ATTRIBUTESTEXT3     717
00136 #define IDD_ATTRIBUTESTEXT4     718
00137 #define IDD_ATTRIBUTESTEXT5     719
00138 #define IDD_ATTRIBUTESTEXT6     720
00139 #define IDD_ATTRIBUTESTEXT7     721
00140 #define IDD_ATTRIBUTESTEXT8     722
00141 #define IDD_ATTRIBUTESSTANDARD  723
00142 #define IDD_ATTRIBUTESGROUP1    724
00143 #define IDD_ATTRIBUTESGROUP2    725
00144 #define IDD_ATTRIBUTESRB1       726
00145 #define IDD_ATTRIBUTESRB2       727
00146 #define IDD_ATTRIBUTESRB3       728
00147 #define IDD_ATTRIBUTESRB4       729
00148 #define IDD_ATTRIBUTESRB5       730
00149 
00150 #define IDD_CHANGESIZE      740
00151 #define IDD_CHANGESIZEGROUP 741
00152 #define IDD_CHANGESIZEICON1 742
00153 #define IDD_CHANGESIZETEXT1 743
00154 #define IDD_CHANGESIZEEDIT1 744
00155 #define IDD_CHANGESIZETEXT2 745
00156 #define IDD_CHANGESIZEICON2 746
00157 #define IDD_CHANGESIZETEXT3 747
00158 #define IDD_CHANGESIZEEDIT2 748
00159 #define IDD_CHANGESIZETEXT4 749
00160 
00161 #define IDS_PROGRAMNAME 900
00162 #define IDS_WINDOWTITLE 901
00163 #define IDS_INFOTITLE   902
00164 #define IDS_INFOTEXT    903
00165 #define IDS_SAVEPROMPTTEXT  904
00166 #define IDS_DEFAULTFILENAME 905
00167 #define IDS_MINIATURETITLE  906
00168 #define IDS_TOOLTIP1    910
00169 #define IDS_TOOLTIP2    911
00170 #define IDS_TOOLTIP3    912
00171 #define IDS_TOOLTIP4    913
00172 #define IDS_TOOLTIP5    914
00173 #define IDS_TOOLTIP6    915
00174 #define IDS_TOOLTIP7    916
00175 #define IDS_TOOLTIP8    917
00176 #define IDS_TOOLTIP9    918
00177 #define IDS_TOOLTIP10   919
00178 #define IDS_TOOLTIP11   920
00179 #define IDS_TOOLTIP12   921
00180 #define IDS_TOOLTIP13   922
00181 #define IDS_TOOLTIP14   923
00182 #define IDS_TOOLTIP15   924
00183 #define IDS_TOOLTIP16   925
00184 
00185 #define IDS_OPENFILTER  926
00186 #define IDS_SAVEFILTER  927
00187 #define IDS_FILESIZE    928
00188 #define IDS_PRINTRES    929

Generated on Sat May 26 2012 04:15:58 for ReactOS by doxygen 1.7.6.1

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.