xref: /trunk/main/sw/source/ui/chrdlg/ccoll.src (revision c27bd345)
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// #pragma ******************************************************************
25
26// #include *****************************************************************
27#include "globals.hrc"
28#include "chrdlg.hrc"
29#include "ccoll.hrc"
30#include "helpid.h"
31// TabPage ******************************************************************
32TabPage TP_CONDCOLL
33{
34	HelpID = HID_COND_COLL ;
35	Size = MAP_APPFONT ( 260, 185 ) ;
36	Hide = TRUE ;
37	FixedLine FL_CONDITION
38	{
39		Pos = MAP_APPFONT ( 6, 3 ) ;
40		Size = MAP_APPFONT ( 248, 8 ) ;
41		Text [ en-US ] = "Options" ;
42	};
43	CheckBox CB_CONDITION
44	{
45		HelpID = "sw:CheckBox:TP_CONDCOLL:CB_CONDITION" ;
46		Pos = MAP_APPFONT ( 12, 14 ) ;
47		Size = MAP_APPFONT ( 100, 10 ) ;
48		TabStop = TRUE ;
49		Disable = TRUE ;
50		Text [ en-US ] = "~Conditional Style" ;
51	};
52	FixedText FT_CONTEXT
53	{
54		Pos = MAP_APPFONT ( 12, 28 ) ;
55		Size = MAP_APPFONT ( 50, 8 ) ;
56		Disable = TRUE ;
57		Text [ en-US ] = "Conte~xt" ;
58	};
59	FixedText FT_USED
60	{
61		Pos = MAP_APPFONT ( 100, 28 ) ;
62		Size = MAP_APPFONT ( 80, 8 ) ;
63		Disable = TRUE ;
64		Text [ en-US ] = "Applied Styles" ;
65	};
66	Control TB_CONDCOLLS
67	{
68		Border = TRUE ;
69		Pos = MAP_APPFONT ( 12, 39 ) ;
70		Size = MAP_APPFONT ( 173, 123 ) ;
71		TabStop = TRUE ;
72		ClipChildren = TRUE ;
73		Disable = TRUE ;
74		Border = TRUE ;
75	};
76	FixedText FT_STYLE
77	{
78		Pos = MAP_APPFONT ( 190, 28 ) ;
79		Size = MAP_APPFONT ( 58, 8 ) ;
80		Disable = TRUE ;
81		Text [ en-US ] = "~Paragraph Styles" ;
82	};
83	ListBox LB_STYLE
84	{
85		HelpID = "sw:ListBox:TP_CONDCOLL:LB_STYLE" ;
86		Pos = MAP_APPFONT ( 188, 39 ) ;
87		Size = MAP_APPFONT ( 60, 108 ) ;
88		TabStop = TRUE ;
89		Border = TRUE ;
90		Sort = TRUE ;
91		Disable = TRUE ;
92		HScroll = TRUE ;
93	};
94	ListBox LB_FILTER
95	{
96		HelpID = "sw:ListBox:TP_CONDCOLL:LB_FILTER" ;
97		Pos = MAP_APPFONT ( 188, 150 ) ;
98		Size = MAP_APPFONT ( 60, 50 ) ;
99		DropDown = TRUE ;
100		TabStop = TRUE ;
101		Border = TRUE ;
102		Disable = TRUE ;
103		HScroll = TRUE ;
104	};
105	PushButton PB_REMOVE
106	{
107		HelpID = "sw:PushButton:TP_CONDCOLL:PB_REMOVE" ;
108		Pos = MAP_APPFONT ( 129, 165 ) ;
109		Size = MAP_APPFONT ( 50, 12 ) ;
110		TabStop = TRUE ;
111		Disable = TRUE ;
112		Text [ en-US ] = "Re~move" ;
113	};
114	PushButton PB_ASSIGN
115	{
116		HelpID = "sw:PushButton:TP_CONDCOLL:PB_ASSIGN" ;
117		Pos = MAP_APPFONT ( 185, 165 ) ;
118		Size = MAP_APPFONT ( 50, 12 ) ;
119		TabStop = TRUE ;
120		Disable = TRUE ;
121		Text [ en-US ] = "~Apply" ;
122	};
123	StringArray STR_REGIONS
124	{
125		ItemList [ en-US ] =
126		{
127			< "Table Header" ;			> ;
128			< "Table" ;					> ;
129			< "Frame" ;					> ;
130			< "Section" ;				> ;
131			< "Footnote" ;				> ;
132			< "Endnote" ;				> ;
133			< "Header" ;				> ;
134			< "Footer" ;				> ;
135			< " 1st Outline Level" ;	> ;
136			< " 2nd Outline Level" ;	> ;
137			< " 3rd Outline Level" ;	> ;
138			< " 4th Outline Level" ;	> ;
139			< " 5th Outline Level" ;	> ;
140			< " 6th Outline Level" ;	> ;
141			< " 7th Outline Level" ;	> ;
142			< " 8th Outline Level" ;	> ;
143			< " 9th Outline Level" ;	> ;
144			< "10th Outline Level" ;	> ;
145			< " 1st Numbering Level" ;	> ;
146			< " 2nd Numbering Level" ;	> ;
147			< " 3rd Numbering Level" ;	> ;
148			< " 4th Numbering Level" ;	> ;
149			< " 5th Numbering Level" ;	> ;
150			< " 6th Numbering Level" ;	> ;
151			< " 7th Numbering Level" ;	> ;
152			< " 8th Numbering Level" ;	> ;
153			< " 9th Numbering Level" ;	> ;
154			< "10th Numbering Level" ;	> ;
155		};
156	};
157	String STR_NOTEMPL
158	{
159		Text [ en-US ] = "<none>" ;
160	};
161};
162
163// ********************************************************************** EOF
164