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