xref: /trunk/main/sd/source/ui/dlg/ins_paste.src (revision cdf0e10c4e3984b49a9502b011690b615761d4a3)
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 "ins_paste.hrc"
29
30ModalDialog DLG_INSERT_PASTE
31{
32    HelpID = "sd:ModalDialog:DLG_INSERT_PASTE";
33    OutputSize = TRUE ;
34    SVLook = TRUE ;
35    Size = MAP_APPFONT ( 148 , 90 ) ;
36    Moveable = TRUE ;
37    OKButton BTN_OK
38    {
39        Pos = MAP_APPFONT ( 92 , 6 ) ;
40        Size = MAP_APPFONT ( 50 , 14 ) ;
41        TabStop = TRUE ;
42        DefButton = TRUE ;
43    };
44    CancelButton BTN_CANCEL
45    {
46        Pos = MAP_APPFONT ( 92 , 23 ) ;
47        Size = MAP_APPFONT ( 50 , 14 ) ;
48        TabStop = TRUE ;
49    };
50    HelpButton BTN_HELP
51    {
52        Pos = MAP_APPFONT ( 92 , 43 ) ;
53        Size = MAP_APPFONT ( 50 , 14 ) ;
54        TabStop = TRUE ;
55    };
56
57    FixedLine FL_POSITION
58    {
59        Pos = MAP_APPFONT ( 6 , 3 ) ;
60        Size = MAP_APPFONT ( 80 , 8 ) ;
61        Text [ en-US ] = "Position";
62    };
63    RadioButton RB_BEFORE
64    {
65        HelpID = "sd:RadioButton:DLG_INSERT_PASTE:RB_BEFORE";
66        Pos = MAP_APPFONT ( 12 , 14 ) ;
67        Size = MAP_APPFONT ( 80, 10 ) ;
68        Text [ en-US ] = "~Before" ;
69        TabStop = TRUE ;
70    };
71    RadioButton RB_AFTER
72    {
73        HelpID = "sd:RadioButton:DLG_INSERT_PASTE:RB_AFTER";
74        Pos = MAP_APPFONT ( 12, 27 ) ;
75        Size = MAP_APPFONT ( 80, 10 ) ;
76        Text [ en-US ] = "A~fter" ;
77        TabStop = TRUE ;
78        Check = TRUE ;
79    };
80    Text [ en-US ] = "Insert Slides";
81};
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102