xref: /AOO41X/main/sw/source/ui/misc/insrule.src (revision 8660f102e0dedad7df9a3fe0f3e5d0f91bcf072b)
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 "insrule.hrc"
25#include "helpid.h"
26ModalDialog DLG_INSERT_RULER
27{
28    HelpID = HID_RULER_DIALOG ;
29    OutputSize = TRUE ;
30    SVLook = TRUE ;
31    Size = MAP_APPFONT ( 242 , 124 ) ;
32    Moveable = TRUE ;
33    FixedLine FL_SEL
34    {
35        Pos = MAP_APPFONT ( 6 , 3 ) ;
36        Size = MAP_APPFONT ( 174 , 8 ) ;
37        Text [ en-US ] = "Selection" ;
38    };
39    Control VS_EXAMPLE
40    {
41        Pos = MAP_APPFONT ( 9 , 14 ) ;
42        Size = MAP_APPFONT ( 168 , 104 ) ;
43        Hide = TRUE ;
44        Border = TRUE ;
45        TabStop = TRUE ;
46        Group = TRUE ;
47    };
48    OKButton PB_OK
49    {
50        Pos = MAP_APPFONT ( 186 , 6 ) ;
51        Size = MAP_APPFONT ( 50 , 14 ) ;
52        TabStop = TRUE ;
53        DefButton = TRUE ;
54        Disable = TRUE ;
55    };
56    CancelButton PB_CANCEL
57    {
58        Pos = MAP_APPFONT ( 186 , 23 ) ;
59        Size = MAP_APPFONT ( 50 , 14 ) ;
60        TabStop = TRUE ;
61    };
62    HelpButton PB_HELP
63    {
64        Pos = MAP_APPFONT ( 186 , 43 ) ;
65        Size = MAP_APPFONT ( 50 , 14 ) ;
66        TabStop = TRUE ;
67    };
68    String ST_SIMPLE
69    {
70        Text [ en-US ] = "Plain" ;
71    };
72    Text [ en-US ] = "Insert Horizontal Rule" ;
73};
74
75
76
77
78
79
80
81
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