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