1/**************************************************************
2 *
3 * Licensed to the Apache Software Foundation (ASF) under one
4 * or more contributor license agreements.  See the NOTICE file
5 * distributed with this work for additional information
6 * regarding copyright ownership.  The ASF licenses this file
7 * to you under the Apache License, Version 2.0 (the
8 * "License"); you may not use this file except in compliance
9 * with the License.  You may obtain a copy of the License at
10 *
11 *   http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing,
14 * software distributed under the License is distributed on an
15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16 * KIND, either express or implied.  See the License for the
17 * specific language governing permissions and limitations
18 * under the License.
19 *
20 *************************************************************/
21
22
23
24#include "ucbexplorer.hrc"
25
26Menu MENU_MAIN
27{
28    ItemList =
29
30    {
31        MenuItem
32        {
33            Identifier = MENU_FILE ;
34            Text [ en-US ] = "~File" ;
35            SubMenu = Menu
36            {
37                ItemList =
38
39                {
40                    MenuItem
41                    {
42                        Identifier = MENU_EXIT ;
43                        Text [ en-US ] = "~Exit" ;
44                        AccelKey = KeyCode
45                        {
46                            Function = KEYFUNC_QUIT ;
47                        };
48                    };
49                };
50            };
51        };
52    };
53};
54
55Menu MENU_POPUP
56{
57    ItemList =
58
59    {
60        MenuItem
61        {
62            Identifier = MENU_NEW ;
63            Text [ en-US ] = "~New" ;
64        };
65        MenuItem
66        {
67            Identifier = MENU_RENAME ;
68            Text [ en-US ] = "~Rename" ;
69        };
70        MenuItem
71        {
72            Identifier = MENU_DELETE ;
73            Text [ en-US ] = "~Delete" ;
74        };
75    };
76};
77
78/*
79Bitmap BMP_FOLDER_CLOSED
80{
81    File = "bmp/fldclose.bmp" ;
82};
83Bitmap BMP_FOLDER_OPENED
84{
85    File = "bmp/fldopen.bmp" ;
86};
87Bitmap BMP_DOCUMENT
88{
89    File = "bmp/document.bmp" ;
90};
91Bitmap BMP_LINK
92{
93    File = "bmp/link.bmp" ;
94};
95*/
96
97ModalDialog DLG_STRINGINPUT
98{
99    HelpID = "ucbhelper:ModalDialog:DLG_STRINGINPUT";
100    Border = TRUE ;
101    Moveable = TRUE ;
102    OutputSize = TRUE ;
103    SVLook = TRUE ;
104    Size = MAP_APPFONT ( 218 , 44 ) ;
105    FixedText FT_STRINGINPUT_DLG_NAME
106    {
107        Pos = MAP_APPFONT ( 12 , 18 ) ;
108        Size = MAP_APPFONT ( 28 , 10 ) ;
109        Text [ en-US ] = "~Value" ;
110    };
111    Edit ED_STRINGINPUT_DLG_NAME
112    {
113        HelpID = "ucbhelper:Edit:DLG_STRINGINPUT:ED_STRINGINPUT_DLG_NAME";
114        Pos = MAP_APPFONT ( 40 , 16 ) ;
115        Size = MAP_APPFONT ( 110 , 12 ) ;
116        Border = TRUE ;
117        Left = TRUE ;
118    };
119    GroupBox GB_STRINGINPUT_DLG_NAME
120    {
121        Group = TRUE ;
122        Pos = MAP_APPFONT ( 6 , 3 ) ;
123        Size = MAP_APPFONT ( 150 , 36 ) ;
124    };
125    OKButton BT_STRINGINPUT_DLG_OK
126    {
127        Pos = MAP_APPFONT ( 162 , 6 ) ;
128        Size = MAP_APPFONT ( 50 , 14 ) ;
129        DefButton = TRUE ;
130    };
131    CancelButton BT_STRINGINPUT_DLG_CANCEL
132    {
133        Pos = MAP_APPFONT ( 162 , 23 ) ;
134        Size = MAP_APPFONT ( 50 , 14 ) ;
135    };
136    HelpButton BT_STRINGINPUT_DLG_HELP
137    {
138        Pos = MAP_APPFONT ( 162 , 200 ) ;
139        Size = MAP_APPFONT ( 50 , 14 ) ;
140    };
141};
142
143String TEXT_TITLEBAR
144{
145    Text [ en-US ] = "UCB Explorer" ;
146};
147
148