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