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