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#include <selectdbtabledialog.hrc>
29#include <dbui.hrc>
30#include <helpid.h>
31
32ModalDialog DLG_MM_SELECTDBTABLEDDIALOG
33{
34    OutputSize = TRUE ;
35    SVLook = TRUE ;
36    HelpID = HID_MM_SELECTDBTABLEDDIALOG;
37    Size = MAP_APPFONT ( 250 , 135 ) ;
38    Moveable = TRUE ;
39
40    Text [ en-US ] = "Select Table";
41
42    FixedText       FI_SELECT
43    {
44        Pos = MAP_APPFONT ( 6 , 3 ) ;
45        Size = MAP_APPFONT ( 238 , 24 ) ;
46        WordBreak = TRUE;
47        Text [ en-US ] = "The file you have selected contains more than one table. Please select the table containing the address list you want to use.";
48    };
49    Control LB_TABLE
50    {
51        Pos = MAP_APPFONT ( 6 , 30 ) ;
52        Size = MAP_APPFONT ( 238 , 50 ) ;
53        Border = TRUE;
54    };
55    PushButton      PB_PREVIEW
56    {
57        HelpID = "sw:PushButton:DLG_MM_SELECTDBTABLEDDIALOG:PB_PREVIEW";
58        Pos = MAP_APPFONT ( 6 , 84 ) ;
59        Size = MAP_APPFONT ( 50 , 14 ) ;
60        Text [ en-US ] = "~Preview";
61    };
62    FixedLine FL_SEPARATOR
63    {
64        Pos = MAP_APPFONT ( 6 , 104 ) ;
65        Size = MAP_APPFONT ( 238 , 8 ) ;
66    };
67    OKButton        PB_OK
68    {
69        Pos = MAP_APPFONT ( 85 , 115 ) ;
70        Size = MAP_APPFONT ( 50 , 14 ) ;
71    };
72    CancelButton    PB_CANCEL
73    {
74        Pos = MAP_APPFONT ( 138 , 115 ) ;
75        Size = MAP_APPFONT ( 50 , 14 ) ;
76    };
77    HelpButton      PB_HELP
78    {
79        Pos = MAP_APPFONT ( 194 , 115 ) ;
80        Size = MAP_APPFONT ( 50 , 14 ) ;
81    };
82    String ST_NAME
83    {
84        Text [ en-US ] = "Name";
85    };
86    String ST_TYPE
87    {
88        Text [ en-US ] = "Type";
89    };
90    String ST_TABLE
91    {
92        Text [ en-US ] = "Table";
93    };
94    String ST_QUERY
95    {
96        Text [ en-US ] = "Query";
97    };
98
99};
100