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