xref: /AOO41X/main/svx/source/tbxctrls/grafctrl.src (revision 83137a03adbb58b5b3bdafefefa1e93de35e0011)
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#include "grafctrl.hrc"
25#include <svx/dialogs.hrc>
26#include "helpid.hrc"
27#include <svx/svxids.hrc>
28
29FloatingWindow RID_SVXTBX_GRFFILTER
30{
31    HelpId = HID_GRFFILTER;
32    Moveable = TRUE ;
33    Closeable = TRUE ;
34    Hide = TRUE ;
35    SVLook = TRUE ;
36    Text [ en-US ] = "Filters" ;
37    ToolBox TBX_GRFFILTER
38    {
39        SVLook = TRUE ;
40        MenuStrings = TRUE ;
41        Align = BOXALIGN_TOP;
42        LineCount = 3;
43        ItemList =
44        {
45            ToolBoxItem
46            {
47                Identifier = SID_GRFFILTER_INVERT ;
48                HelpID = HID_GRFFILTER_INVERT ;
49            };
50            ToolBoxItem
51            {
52                Identifier = SID_GRFFILTER_SMOOTH ;
53                HelpID = HID_GRFFILTER_SMOOTH ;
54            };
55            ToolBoxItem
56            {
57                Identifier = SID_GRFFILTER_SHARPEN ;
58                HelpID = HID_GRFFILTER_SHARPEN ;
59            };
60            ToolBoxItem
61            {
62                Identifier = SID_GRFFILTER_REMOVENOISE ;
63                HelpID = HID_GRFFILTER_REMOVENOISE ;
64            };
65            ToolBoxItem
66            {
67                Type = TOOLBOXITEM_BREAK ;
68            };
69            ToolBoxItem
70            {
71                Identifier = SID_GRFFILTER_SOLARIZE ;
72                HelpId = HID_GRFFILTER_SOLARIZE ;
73            };
74            ToolBoxItem
75            {
76                Identifier = SID_GRFFILTER_SEPIA ;
77                HelpId = HID_GRFFILTER_SEPIA ;
78            };
79            ToolBoxItem
80            {
81                Identifier = SID_GRFFILTER_POSTER ;
82                HelpId = HID_GRFFILTER_POSTER ;
83            };
84            ToolBoxItem
85            {
86                Identifier = SID_GRFFILTER_POPART ;
87                HelpId = HID_GRFFILTER_POPART ;
88            };
89            ToolBoxItem
90            {
91                Type = TOOLBOXITEM_BREAK ;
92            };
93            ToolBoxItem
94            {
95                Identifier = SID_GRFFILTER_SOBEL ;
96                HelpId = HID_GRFFILTER_SOBEL ;
97            };
98            ToolBoxItem
99            {
100                Identifier = SID_GRFFILTER_EMBOSS ;
101                HelpId = HID_GRFFILTER_EMBOSS ;
102            };
103            ToolBoxItem
104            {
105                Identifier = SID_GRFFILTER_MOSAIC ;
106                HelpId = HID_GRFFILTER_MOSAIC ;
107            };
108        };
109    };
110};
111
112// -----------
113// - Strings -
114// -----------
115
116String RID_SVXSTR_UNDO_GRAFMODE
117{
118    Text [ en-US ] = "Graphics Mode";
119};
120String RID_SVXSTR_UNDO_GRAFRED
121{
122    Text [ en-US ] = "Red";
123};
124String RID_SVXSTR_UNDO_GRAFGREEN
125{
126    Text [ en-US ] = "Green";
127};
128String RID_SVXSTR_UNDO_GRAFBLUE
129{
130    Text [ en-US ] = "Blue";
131};
132String RID_SVXSTR_UNDO_GRAFLUMINANCE
133{
134    Text [ en-US ] = "Brightness";
135};
136String RID_SVXSTR_UNDO_GRAFCONTRAST
137{
138    Text [ en-US ] = "Contrast";
139};
140String RID_SVXSTR_UNDO_GRAFGAMMA
141{
142    Text [ en-US ] = "Gamma";
143};
144String RID_SVXSTR_UNDO_GRAFTRANSPARENCY
145{
146    Text [ en-US ] = "Transparency";
147};
148String RID_SVXSTR_GRAFCROP
149{
150    Text [ en-US ] = "Crop";
151};
152
153// ********************************************************************** EOF
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189