Moved various DLLs to dlls/
[wine] / dlls / shell32 / shres.rc
1 /*
2  * Top level resource file for Common Dialogs
3  *
4  */
5
6 #include "winuser.h"
7 #include "winnls.h"
8 #include "shlobj.h"
9
10 /*--------------------- FIXME --------------------------
11  *
12  * These must be seperated into the language files
13  * and translated. The language 0,0 is a hack to get it
14  * loaded properly for all languages by pretending that
15  * they are neutral.
16  * The menus are not jet properly implemented.
17  * Don't localize it yet. (js)
18  */
19
20 LANGUAGE 0,0
21
22 MENU_001 MENU DISCARDABLE
23 BEGIN
24         MENUITEM "Lar&ge Icons",        FCIDM_SHVIEW_BIGICON
25         MENUITEM "S&mall Icons",        FCIDM_SHVIEW_SMALLICON
26         MENUITEM "&List",               FCIDM_SHVIEW_LISTVIEW
27         MENUITEM "&Details",            FCIDM_SHVIEW_REPORTVIEW
28 END
29
30 MENU_002 MENU DISCARDABLE
31 BEGIN
32         POPUP""
33         BEGIN
34           POPUP "&View"
35           BEGIN
36             MENUITEM "Lar&ge Icons",    FCIDM_SHVIEW_BIGICON
37             MENUITEM "S&mall Icons",    FCIDM_SHVIEW_SMALLICON
38             MENUITEM "&List",           FCIDM_SHVIEW_LISTVIEW
39             MENUITEM "&Details",        FCIDM_SHVIEW_REPORTVIEW
40           END
41           MENUITEM SEPARATOR
42           POPUP "Arrange &Icons"
43           BEGIN
44             MENUITEM "By &Name",        0x30    /* column 0 */
45             MENUITEM "By &Type",        0x32    /* column 2 */
46             MENUITEM "By &Size",        0x31    /* ... */
47             MENUITEM "By &Date",        0x33
48             MENUITEM SEPARATOR
49             MENUITEM "&Auto Arrange",   FCIDM_SHVIEW_AUTOARRANGE
50           END
51           MENUITEM "Lin&e up Icons",    FCIDM_SHVIEW_SNAPTOGRID
52         END
53 END
54
55 SHBRSFORFOLDER_MSGBOX DIALOG 15, 40, 128, 152
56 STYLE DS_MODALFRAME | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMENU
57 CAPTION "Choose a Directory:"
58 FONT 8, "Helv"
59 {
60  DEFPUSHBUTTON "OK", 1, 4, 132, 50, 12
61  PUSHBUTTON "Cancel", 2, 58, 132, 50, 12
62  CONTROL "Tree1",99,"SysTreeView32",
63         TVS_HASBUTTONS | TVS_HASLINES | TVS_LINESATROOT |
64         WS_BORDER | WS_TABSTOP, 
65         4, 4, 120, 120
66 }
67
68 /*--------------------- END FIXME ------------------------*/
69
70 /*
71  * Everything that does not depend on language,
72  * like textless bitmaps etc, go into the
73  * neutral language. This will prevent them from
74  * being duplicated for each language.
75  */
76 #include "shell32_xx.rc"
77
78 /*
79  * Everything specific to any language goes
80  * in one of the specific files.
81  * Note that you can and may override resources
82  * which also have a neutral version. This is to
83  * get localized bitmaps for example.
84  */
85 #include "shell32_Ca.rc"
86 #include "shell32_Cs.rc"
87 #include "shell32_Da.rc"
88 #include "shell32_De.rc"
89 #include "shell32_En.rc"
90 #include "shell32_Eo.rc"
91 #include "shell32_Es.rc"
92 #include "shell32_Fi.rc"
93 #include "shell32_Fr.rc"
94 #include "shell32_Hu.rc"
95 #include "shell32_It.rc"
96 #include "shell32_Ko.rc"
97 #include "shell32_Nl.rc"
98 #include "shell32_No.rc"
99 #include "shell32_Pl.rc"
100 #include "shell32_Pt.rc"
101 #include "shell32_Ru.rc"
102 #include "shell32_Sv.rc"
103 #include "shell32_Wa.rc"