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