xref: /reactos/base/applications/mspaint/rsrc.rc (revision 84344399)
1/*
2 * PROJECT:    PAINT for ReactOS
3 * LICENSE:    LGPL-2.0-or-later (https://spdx.org/licenses/LGPL-2.0-or-later)
4 * PURPOSE:    Managing the resources
5 * COPYRIGHT:  Copyright 2009 Benedikt Freisen <b.freisen@gmx.net>
6 */
7
8#include <windef.h>
9#include <winuser.rh>
10#include <commctrl.h>
11
12#include "resource.h"
13
14#define REACTOS_STR_FILE_DESCRIPTION  "ReactOS Paint"
15#define REACTOS_STR_INTERNAL_NAME     "mspaint"
16#define REACTOS_STR_ORIGINAL_FILENAME "mspaint.exe"
17
18#include <reactos/version.rc>
19
20/* Icons */
21
22IDI_APPICON ICON "img/paint.ico"
23
24IDB_TOOLBARICONS BITMAP "img/iconbar.bmp"
25
26IDI_TRANSPARENT ICON "img/transparent.ico"
27IDI_NONTRANSPARENT ICON "img/nontransparent.ico"
28
29IDC_FILL CURSOR "img/fill.cur"
30IDC_COLOR CURSOR "img/color.cur"
31IDC_ZOOM CURSOR "img/zoom.cur"
32IDC_PEN CURSOR "img/pen.cur"
33IDC_AIRBRUSH CURSOR "img/airbrush.cur"
34IDC_HANDDRAG CURSOR "img/handdrag.cur"
35
36IDI_HORZSTRETCH ICON "img/horzstretch.ico"
37IDI_VERTSTRETCH ICON "img/vertstretch.ico"
38IDI_HORZSKEW ICON "img/horzskew.ico"
39IDI_VERTSKEW ICON "img/vertskew.ico"
40
41CREATEPROCESS_MANIFEST_RESOURCE_ID RT_MANIFEST "mspaint.exe.manifest"
42
43/* UTF-8 */
44#pragma code_page(65001)
45
46#ifdef LANGUAGE_BG_BG
47    #include "lang/bg-BG.rc"
48#endif
49#ifdef LANGUAGE_CS_CZ
50    #include "lang/cs-CZ.rc"
51#endif
52#ifdef LANGUAGE_DE_DE
53    #include "lang/de-DE.rc"
54#endif
55#ifdef LANGUAGE_EN_GB
56    #include "lang/en-GB.rc"
57#endif
58#ifdef LANGUAGE_EN_US
59    #include "lang/en-US.rc"
60#endif
61#ifdef LANGUAGE_ES_ES
62    #include "lang/es-ES.rc"
63#endif
64#ifdef LANGUAGE_ET_EE
65    #include "lang/et-EE.rc"
66#endif
67#ifdef LANGUAGE_EU_ES
68    #include "lang/eu-ES.rc"
69#endif
70#ifdef LANGUAGE_FR_FR
71    #include "lang/fr-FR.rc"
72#endif
73#ifdef LANGUAGE_HE_IL
74    #include "lang/he-IL.rc"
75#endif
76#ifdef LANGUAGE_HU_HU
77    #include "lang/hu-HU.rc"
78#endif
79#ifdef LANGUAGE_ID_ID
80    #include "lang/id-ID.rc"
81#endif
82#ifdef LANGUAGE_IT_IT
83    #include "lang/it-IT.rc"
84#endif
85#ifdef LANGUAGE_JA_JP
86    #include "lang/ja-JP.rc"
87#endif
88#ifdef LANGUAGE_NL_NL
89    #include "lang/nl-NL.rc"
90#endif
91#ifdef LANGUAGE_NB_NO
92    #include "lang/no-NO.rc"
93#endif
94#ifdef LANGUAGE_PL_PL
95    #include "lang/pl-PL.rc"
96#endif
97#ifdef LANGUAGE_PT_BR
98    #include "lang/pt-BR.rc"
99#endif
100#ifdef LANGUAGE_PT_PT
101    #include "lang/pt-PT.rc"
102#endif
103#ifdef LANGUAGE_RO_RO
104    #include "lang/ro-RO.rc"
105#endif
106#ifdef LANGUAGE_RU_RU
107    #include "lang/ru-RU.rc"
108#endif
109#ifdef LANGUAGE_SK_SK
110    #include "lang/sk-SK.rc"
111#endif
112#ifdef LANGUAGE_SQ_AL
113    #include "lang/sq-AL.rc"
114#endif
115#ifdef LANGUAGE_SV_SE
116    #include "lang/sv-SE.rc"
117#endif
118#ifdef LANGUAGE_TR_TR
119    #include "lang/tr-TR.rc"
120#endif
121#ifdef LANGUAGE_UK_UA
122    #include "lang/uk-UA.rc"
123#endif
124#ifdef LANGUAGE_VI_VN
125    #include "lang/vi-VN.rc"
126#endif
127#ifdef LANGUAGE_ZH_CN
128    #include "lang/zh-CN.rc"
129#endif
130#ifdef LANGUAGE_ZH_HK
131    #include "lang/zh-HK.rc"
132#endif
133#ifdef LANGUAGE_ZH_TW
134    #include "lang/zh-TW.rc"
135#endif
136