xref: /aoo41x/main/dbaccess/source/ui/dlg/adtabdlg.src (revision cdf0e10c)
1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27
28
29#ifndef DBAUI_ADTABDLG_HRC
30#include "adtabdlg.hrc"
31#endif
32#include "dbaccess_helpid.hrc"
33#ifndef _DBU_DLG_HRC_
34#include "dbu_dlg.hrc"
35#endif
36
37ModelessDialog DLG_JOIN_TABADD
38{
39	OutputSize = TRUE ;
40	SVLook = TRUE ;
41	HelpID = HID_DLG_JOIN_TABADD ;
42    Size = MAP_APPFONT ( 178 , 147 ) ;
43	Moveable = TRUE ;
44	Closeable = TRUE ;
45	Hide = TRUE ;
46
47    RadioButton RB_CASE_TABLES
48    {
49        HelpID = "dbaccess:RadioButton:DLG_JOIN_TABADD:RB_CASE_TABLES";
50        Pos = MAP_APPFONT( 6, 6 );
51        Size = MAP_APPFONT( 50, 8 );
52        Text [ en-US ] = "Tables";
53    };
54
55    RadioButton RB_CASE_QUERIES
56    {
57        HelpID = "dbaccess:RadioButton:DLG_JOIN_TABADD:RB_CASE_QUERIES";
58        Pos = MAP_APPFONT( 62, 6 );
59        Size = MAP_APPFONT( 50, 8 );
60        Text [ en-US ] = "Queries";
61    };
62
63	Control LB_TABLE_OR_QUERY
64	{
65		Border = TRUE ;
66		Pos = MAP_APPFONT ( 6 , 18 ) ;
67		Size = MAP_APPFONT ( 106 , 122 ) ;
68		TabStop = TRUE ;
69		Hide = TRUE;
70		Group = TRUE;
71	};
72	PushButton PB_ADDTABLE
73	{
74	    HelpID = "dbaccess:PushButton:DLG_JOIN_TABADD:PB_ADDTABLE";
75		Pos = MAP_APPFONT ( 123 , 6 ) ;
76		Size = MAP_APPFONT ( 50 , 14 ) ;
77		Text [ en-US ] = "~Add" ;
78		TabStop = TRUE ;
79		DefButton = TRUE ;
80	};
81	CancelButton PB_CLOSE
82	{
83		Pos = MAP_APPFONT ( 123 , 22 ) ;
84		Size = MAP_APPFONT ( 50 , 14 ) ;
85		HelpId = HID_JOINSH_ADDTAB_CLOSE;
86		Text [ en-US ] = "~Close" ;
87		TabStop = TRUE ;
88	};
89	HelpButton PB_HELP
90	{
91		Pos = MAP_APPFONT ( 123 , 43 ) ;
92		Size = MAP_APPFONT ( 50 , 14 ) ;
93		TabStop = TRUE ;
94	};
95
96    String STR_ADD_TABLES
97    {
98        Text [ en-US ] = "Add Tables";
99    };
100
101    String STR_ADD_TABLE_OR_QUERY
102    {
103	    Text [ en-US ] = "Add Table or Query" ;
104	};
105};
106