xref: /aoo42x/main/sw/source/ui/chrdlg/swbreak.src (revision 8660f102)
1*8660f102SAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
3*8660f102SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
4*8660f102SAndrew Rist * or more contributor license agreements.  See the NOTICE file
5*8660f102SAndrew Rist * distributed with this work for additional information
6*8660f102SAndrew Rist * regarding copyright ownership.  The ASF licenses this file
7*8660f102SAndrew Rist * to you under the Apache License, Version 2.0 (the
8*8660f102SAndrew Rist * "License"); you may not use this file except in compliance
9*8660f102SAndrew Rist * with the License.  You may obtain a copy of the License at
10*8660f102SAndrew Rist *
11*8660f102SAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*8660f102SAndrew Rist *
13*8660f102SAndrew Rist * Unless required by applicable law or agreed to in writing,
14*8660f102SAndrew Rist * software distributed under the License is distributed on an
15*8660f102SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*8660f102SAndrew Rist * KIND, either express or implied.  See the License for the
17*8660f102SAndrew Rist * specific language governing permissions and limitations
18*8660f102SAndrew Rist * under the License.
19*8660f102SAndrew Rist *
20*8660f102SAndrew Rist *************************************************************/
21*8660f102SAndrew Rist
22*8660f102SAndrew Rist
23cdf0e10cSrcweir
24cdf0e10cSrcweir#include "chrdlg.hrc"
25cdf0e10cSrcweir#include "break.hrc"
26cdf0e10cSrcweir#include "cmdid.h"
27cdf0e10cSrcweir#include "helpid.h"
28cdf0e10cSrcweir // #define DLG_BREAK 256
29cdf0e10cSrcweirModalDialog DLG_BREAK
30cdf0e10cSrcweir{
31cdf0e10cSrcweir	HelpID = CMD_FN_INSERT_BREAK_DLG ;
32cdf0e10cSrcweir	OutputSize = TRUE ;
33cdf0e10cSrcweir	SVLook = TRUE ;
34cdf0e10cSrcweir	Size = MAP_APPFONT ( 161 , 114 ) ;
35cdf0e10cSrcweir	/* ### ACHTUNG: Neuer Text in Resource? Umbruch einf�gen : Umbruch einf�gen */
36cdf0e10cSrcweir	Text [ en-US ] = "Insert Break" ;
37cdf0e10cSrcweir	Moveable = TRUE ;
38cdf0e10cSrcweir	OKButton BT_OK
39cdf0e10cSrcweir	{
40cdf0e10cSrcweir		Pos = MAP_APPFONT ( 105 , 6 ) ;
41cdf0e10cSrcweir		Size = MAP_APPFONT ( 50 , 14 ) ;
42cdf0e10cSrcweir		TabStop = TRUE ;
43cdf0e10cSrcweir		Group = TRUE ;
44cdf0e10cSrcweir		DefButton = TRUE ;
45cdf0e10cSrcweir	};
46cdf0e10cSrcweir	CancelButton BT_CANCEL
47cdf0e10cSrcweir	{
48cdf0e10cSrcweir		Pos = MAP_APPFONT ( 105 , 23 ) ;
49cdf0e10cSrcweir		Size = MAP_APPFONT ( 50 , 14 ) ;
50cdf0e10cSrcweir		TabStop = TRUE ;
51cdf0e10cSrcweir		Group = TRUE ;
52cdf0e10cSrcweir	};
53cdf0e10cSrcweir	HelpButton BT_HELP
54cdf0e10cSrcweir	{
55cdf0e10cSrcweir		Pos = MAP_APPFONT ( 105 , 43 ) ;
56cdf0e10cSrcweir		Size = MAP_APPFONT ( 50 , 14 ) ;
57cdf0e10cSrcweir		TabStop = TRUE ;
58cdf0e10cSrcweir		Group = TRUE ;
59cdf0e10cSrcweir	};
60cdf0e10cSrcweir	RadioButton RB_LINE
61cdf0e10cSrcweir	{
62cdf0e10cSrcweir	    HelpID = "sw:RadioButton:DLG_BREAK:RB_LINE";
63cdf0e10cSrcweir		Pos = MAP_APPFONT ( 12 , 15 ) ;
64cdf0e10cSrcweir		Size = MAP_APPFONT ( 63 , 10 ) ;
65cdf0e10cSrcweir		Text [ en-US ] = "~Line break" ;
66cdf0e10cSrcweir		TabStop = TRUE ;
67cdf0e10cSrcweir		Group = TRUE ;
68cdf0e10cSrcweir	};
69cdf0e10cSrcweir	RadioButton RB_PAGE
70cdf0e10cSrcweir	{
71cdf0e10cSrcweir	    HelpID = "sw:RadioButton:DLG_BREAK:RB_PAGE";
72cdf0e10cSrcweir		Pos = MAP_APPFONT ( 12 , 39 ) ;
73cdf0e10cSrcweir		Size = MAP_APPFONT ( 63 , 10 ) ;
74cdf0e10cSrcweir		Text [ en-US ] = "~Page break" ;
75cdf0e10cSrcweir		TabStop = TRUE ;
76cdf0e10cSrcweir		Check = TRUE ;
77cdf0e10cSrcweir	};
78cdf0e10cSrcweir	RadioButton RB_COL
79cdf0e10cSrcweir	{
80cdf0e10cSrcweir	    HelpID = "sw:RadioButton:DLG_BREAK:RB_COL";
81cdf0e10cSrcweir		Pos = MAP_APPFONT ( 12 , 27 ) ;
82cdf0e10cSrcweir		Size = MAP_APPFONT ( 69 , 10 ) ;
83cdf0e10cSrcweir		Text [ en-US ] = "~Column break" ;
84cdf0e10cSrcweir		TabStop = TRUE ;
85cdf0e10cSrcweir	};
86cdf0e10cSrcweir    FixedLine FL_BREAK
87cdf0e10cSrcweir	{
88cdf0e10cSrcweir		Pos = MAP_APPFONT ( 6 , 3 ) ;
89cdf0e10cSrcweir        Size = MAP_APPFONT ( 93 , 8 ) ;
90cdf0e10cSrcweir		Text [ en-US ] = "Type" ;
91cdf0e10cSrcweir	};
92cdf0e10cSrcweir	FixedText FT_COLL
93cdf0e10cSrcweir	{
94cdf0e10cSrcweir		Pos = MAP_APPFONT ( 12 , 51 ) ;
95cdf0e10cSrcweir		Size = MAP_APPFONT ( 69 , 8 ) ;
96cdf0e10cSrcweir		Text [ en-US ] = "~Style" ;
97cdf0e10cSrcweir		Group = TRUE ;
98cdf0e10cSrcweir		Left = TRUE ;
99cdf0e10cSrcweir	};
100cdf0e10cSrcweir	ListBox LB_COLL
101cdf0e10cSrcweir	{
102cdf0e10cSrcweir	    HelpID = "sw:ListBox:DLG_BREAK:LB_COLL";
103cdf0e10cSrcweir		Pos = MAP_APPFONT ( 12 , 62 ) ;
104cdf0e10cSrcweir		Size = MAP_APPFONT ( 75 , 50 ) ;
105cdf0e10cSrcweir		TabStop = TRUE ;
106cdf0e10cSrcweir		DropDown = TRUE ;
107cdf0e10cSrcweir		CurPos = 0 ;
108cdf0e10cSrcweir		StringList [ en-US ] =
109cdf0e10cSrcweir		{
110cdf0e10cSrcweir			< "[None]" ; > ;
111cdf0e10cSrcweir		};
112cdf0e10cSrcweir	};
113cdf0e10cSrcweir	CheckBox CB_PAGENUM
114cdf0e10cSrcweir	{
115cdf0e10cSrcweir	    HelpID = "sw:CheckBox:DLG_BREAK:CB_PAGENUM";
116cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12 , 79 ) ;
117cdf0e10cSrcweir		Size = MAP_APPFONT ( 84 , 10 ) ;
118cdf0e10cSrcweir		/* ### ACHTUNG: Neuer Text in Resource? Seitennummer ~�ndern : Seitennummer ~�ndern */
119cdf0e10cSrcweir		Text [ en-US ] = "Change page ~number" ;
120cdf0e10cSrcweir		TabStop = TRUE ;
121cdf0e10cSrcweir	};
122cdf0e10cSrcweir	NumericField ED_PAGENUM
123cdf0e10cSrcweir	{
124cdf0e10cSrcweir	    HelpID = "sw:NumericField:DLG_BREAK:ED_PAGENUM";
125cdf0e10cSrcweir		Border = TRUE ;
126cdf0e10cSrcweir        Pos = MAP_APPFONT ( 12 , 94 ) ;
127cdf0e10cSrcweir		Size = MAP_APPFONT ( 31 , 12 ) ;
128cdf0e10cSrcweir		TabStop = TRUE ;
129cdf0e10cSrcweir		Left = TRUE ;
130cdf0e10cSrcweir		Repeat = TRUE ;
131cdf0e10cSrcweir		Spin = TRUE ;
132cdf0e10cSrcweir		Minimum = 1 ;
133cdf0e10cSrcweir		Maximum = 9999 ;
134cdf0e10cSrcweir		Value = 1 ;
135cdf0e10cSrcweir		First = 1 ;
136cdf0e10cSrcweir		Last = 9999 ;
137cdf0e10cSrcweir	};
138cdf0e10cSrcweir};
139cdf0e10cSrcweir
140cdf0e10cSrcweir
141cdf0e10cSrcweir
142cdf0e10cSrcweir
143cdf0e10cSrcweir
144cdf0e10cSrcweir
145cdf0e10cSrcweir
146cdf0e10cSrcweir
147cdf0e10cSrcweir
148cdf0e10cSrcweir
149cdf0e10cSrcweir
150cdf0e10cSrcweir
151cdf0e10cSrcweir
152cdf0e10cSrcweir
153cdf0e10cSrcweir
154cdf0e10cSrcweir
155cdf0e10cSrcweir
156cdf0e10cSrcweir
157cdf0e10cSrcweir
158cdf0e10cSrcweir
159cdf0e10cSrcweir
160cdf0e10cSrcweir
161cdf0e10cSrcweir
162cdf0e10cSrcweir
163cdf0e10cSrcweir
164cdf0e10cSrcweir
165cdf0e10cSrcweir
166cdf0e10cSrcweir
167cdf0e10cSrcweir
168cdf0e10cSrcweir
169cdf0e10cSrcweir
170cdf0e10cSrcweir
171cdf0e10cSrcweir
172cdf0e10cSrcweir
173cdf0e10cSrcweir
174cdf0e10cSrcweir
175