xref: /AOO41X/main/dbaccess/source/ui/dlg/dlgsave.src (revision 81d089ae0b6b164818efbaaff21440338527721c)
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#ifndef DBAUI_DLGSAVE_HRC
25#include "dlgsave.hrc"
26#endif
27#ifndef _DBU_DLG_HRC_
28#include "dbu_dlg.hrc"
29#endif
30#ifndef _DBA_DBACCESS_HELPID_HRC_
31#include "dbaccess_helpid.hrc"
32#endif
33
34ModalDialog DLG_SAVE_AS
35{
36    OutputSize = TRUE ;
37    SVLook = TRUE ;
38    HelpId = HID_DLG_SAVE_AS ;
39    Size = MAP_APPFONT ( 174 , 75 ) ;
40    Moveable = TRUE ;
41    Closeable = TRUE ;
42    Text [ en-US ] = "Save As" ;
43
44    FixedText FT_DESCRIPTION
45    {
46        Pos = MAP_APPFONT ( 6 , 6 ) ;
47        Size = MAP_APPFONT ( 174 - 12 , 16 ) ;
48        WordBreak=TRUE;
49        Text [ en-US ] = "Please enter a name for the object to be created:";
50    };
51
52    FixedText FT_CATALOG
53    {
54        Pos = MAP_APPFONT ( 6 , 26 ) ;
55        Size = MAP_APPFONT ( 70 , 10 ) ;
56        Text [ en-US ] = "~Catalog";
57    };
58    ComboBox ET_CATALOG
59    {
60        HelpID = "dbaccess:ComboBox:DLG_SAVE_AS:ET_CATALOG";
61        Border = TRUE ;
62        Pos = MAP_APPFONT ( 77 , 25 ) ;
63        Size = MAP_APPFONT ( 89 , 12 ) ;
64        SVLook      = TRUE ;
65        TabStop     = TRUE ;
66        DropDown    = TRUE ;
67        AutoHScroll = TRUE ;
68    };
69    FixedText FT_SCHEMA
70    {
71        Pos = MAP_APPFONT ( 6 , 43 ) ;
72        Size = MAP_APPFONT ( 70 , 10 ) ;
73        Text [ en-US ] = "~Schema";
74    };
75    ComboBox ET_SCHEMA
76    {
77        HelpID = "dbaccess:ComboBox:DLG_SAVE_AS:ET_SCHEMA";
78        Border = TRUE ;
79        Pos = MAP_APPFONT ( 77 , 42 ) ;
80        Size = MAP_APPFONT ( 89 , 12 ) ;
81        SVLook      = TRUE ;
82        TabStop     = TRUE ;
83        DropDown    = TRUE ;
84        AutoHScroll = TRUE ;
85    };
86    FixedText FT_TITLE
87    {
88        Pos = MAP_APPFONT ( 6 , 60 ) ;
89        Size = MAP_APPFONT ( 70 , 10 ) ;
90    };
91    Edit ET_TITLE
92    {
93        HelpID = "dbaccess:Edit:DLG_SAVE_AS:ET_TITLE";
94        Border = TRUE ;
95        Pos = MAP_APPFONT ( 77 , 59 ) ;
96        Size = MAP_APPFONT ( 89 , 12 ) ;
97        TabStop = TRUE ;
98    };
99    OKButton PB_OK
100    {
101        Pos = MAP_APPFONT ( 6 , 77 ) ;
102        Size = MAP_APPFONT ( 50 , 14 ) ;
103        TabStop = TRUE ;
104        DefButton = TRUE ;
105    };
106    CancelButton PB_CANCEL
107    {
108        Pos = MAP_APPFONT ( 62 , 77 ) ;
109        Size = MAP_APPFONT ( 50 , 14 ) ;
110        TabStop = TRUE ;
111    };
112    HelpButton PB_HELP
113    {
114        Pos = MAP_APPFONT ( 118 , 77 ) ;
115        Size = MAP_APPFONT ( 50 , 14 ) ;
116        TabStop = TRUE ;
117    };
118     // String Resourcen ------------------------------------------------------------------
119    String STR_TBL_LABEL
120    {
121        Text [ en-US ] = "~Table Name" ;
122    };
123    String STR_VW_LABEL
124    {
125        Text [ en-US ] = "~Name of table view" ;
126    };
127    String STR_QRY_LABEL
128    {
129        Text [ en-US ] = "~Query name" ;
130    };
131    String STR_TITLE_RENAME
132    {
133        Text [ en-US ] = "Rename to";
134    };
135    String STR_TITLE_PASTE_AS
136    {
137        Text [ en-US ] = "Insert as";
138    };
139};
140
141