xref: /trunk/main/sd/source/ui/dlg/inspagob.src (revision 1ecadb572e7010ff3b3382ad9bf179dbc6efadbb)
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 "helpids.h"
29#include "inspagob.hrc"
30
31ModalDialog DLG_INSERT_PAGES_OBJS
32{
33    HelpID = HID_DLG_INSERT_PAGES_OBJS ;
34    OutputSize = TRUE ;
35    SVLook = TRUE ;
36    Size = MAP_APPFONT ( 200 , 128 ) ;
37    /* ### ACHTUNG: Neuer Text in Resource? Seiten/Objekte einf�gen : Seiten/Objekte einf�gen */
38    Moveable = TRUE ;
39    Text [ en-US ] = "Insert Slides/Objects" ;
40    OKButton BTN_OK
41    {
42        Pos = MAP_APPFONT ( 144 , 6 ) ;
43        Size = MAP_APPFONT ( 50 , 14 ) ;
44        TabStop = TRUE ;
45        DefButton = TRUE ;
46    };
47    CancelButton BTN_CANCEL
48    {
49        Pos = MAP_APPFONT ( 144 , 23 ) ;
50        Size = MAP_APPFONT ( 50 , 14 ) ;
51        TabStop = TRUE ;
52    };
53    HelpButton BTN_HELP
54    {
55        Pos = MAP_APPFONT ( 144 , 46 ) ;
56        Size = MAP_APPFONT ( 50 , 14 ) ;
57        TabStop = TRUE ;
58    };
59    Control LB_TREE
60    {
61        HelpId = HID_SD_PAGEOBJSTLB;
62        Border = TRUE ;
63        Pos = MAP_APPFONT ( 6 , 6 ) ;
64        Size = MAP_APPFONT ( 132 , 88 ) ;
65        TabStop = TRUE ;
66    };
67    CheckBox CBX_LINK
68    {
69        HelpID = "sd:CheckBox:DLG_INSERT_PAGES_OBJS:CBX_LINK";
70        Pos = MAP_APPFONT ( 6 , 100 ) ;
71        Size = MAP_APPFONT ( 140 , 12 ) ;
72        TabStop = TRUE ;
73        Text [ en-US ] = "~Link" ;
74    };
75    CheckBox CBX_CHECK_MASTERS
76    {
77        HelpID = "sd:CheckBox:DLG_INSERT_PAGES_OBJS:CBX_CHECK_MASTERS";
78        Pos = MAP_APPFONT ( 6 , 114 ) ;
79        Size = MAP_APPFONT ( 140 , 12 ) ;
80        TabStop = TRUE ;
81        Text [ en-US ] = "Delete unused backg~rounds";
82    };
83};
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120