Version 4.3.0.0.beta1, tag libreoffice-4.3.0.0.beta1
[LibreOffice.git] / svx / source / sidebar / area / AreaPropertyPanel.src
blobb24b1ec1a91503ad7e9016599e9a33fdee6bd064
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  *   Licensed to the Apache Software Foundation (ASF) under one or more
12  *   contributor license agreements. See the NOTICE file distributed
13  *   with this work for additional information regarding copyright
14  *   ownership. The ASF licenses this file to you under the Apache
15  *   License, Version 2.0 (the "License"); you may not use this file
16  *   except in compliance with the License. You may obtain a copy of
17  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
19 #include "AreaPropertyPanel.hrc"
20 #include <sfx2/sidebar/ResourceDefinitions.hrc>
21 #include <svx/dialogs.hrc>
22 #include "helpid.hrc"
24 #define TOOLBOX_WIDTH       50
25 #define TOOLBOX_HEIGHT      17
27 Image IMG_AXIAL
29     ImageBitmap = Bitmap{File = "symphony/axial.png";};
31 Image IMG_ELLI
33     ImageBitmap = Bitmap{File = "symphony/ellipsoid.png";};
35 Image IMG_QUAD
37     ImageBitmap = Bitmap{File = "symphony/Quadratic.png";};
39 Image IMG_RADIAL
41     ImageBitmap = Bitmap{File = "symphony/radial.png";};
43 Image IMG_SQUARE
45     ImageBitmap = Bitmap{File = "symphony/Square.png";};
47 Image IMG_LINEAR
49     ImageBitmap = Bitmap{File = "symphony/linear.png";};
51 Image IMG_COLOR
53     ImageBitmap = Bitmap{File = "symphony/fill_color.png";};
55 Image IMG_ROT_LEFT
57     ImageBitmap = Bitmap{File = "symphony/rotate_left.png";};
59 Image IMG_ROT_RIGHT
61     ImageBitmap = Bitmap{File = "symphony/rotate_right.png";};
64 Control RID_POPUPPANEL_AREAPAGE_TRGR
66     OutputSize = TRUE;
67     DialogControl = TRUE;
68     Border = FALSE;
70     FixedText FT_TRGR_CENTER_X
71     {
72         Size = MAP_APPFONT ( CONTROL_WIDTH , FIXED_TEXT_HEIGHT ) ;
73         Text [ en-US ] = "Center ~X:";
74     };
75     MetricField MTR_TRGR_CENTER_X
76     {
77         Border = TRUE ;
78         Size = MAP_APPFONT ( CONTROL_WIDTH , MBOX_HEIGHT ) ;
79         HelpID = HID_PPROPERTYPANEL_AREA_MTR_TRGR_CENTER_X ;
80         QuickHelpText [ en-US ] = "Specify the horizontal offset percentage from the center for the gradient shading style. 50% is the horizontal center." ;
81         TabStop = TRUE ;
82         Repeat = TRUE ;
83         Spin = TRUE ;
84         Maximum = 100 ;
85         StrictFormat = TRUE ;
86         Unit = FUNIT_PERCENT ;
87         Last = 100 ;
88         SpinSize = 5 ;
89     };
90     FixedText FT_TRGR_CENTER_Y
91     {
92         Size = MAP_APPFONT ( CONTROL_WIDTH + POPUPPANEL_MARGIN_HORIZONTAL, FIXED_TEXT_HEIGHT ) ;//wj
93         Text [ en-US ] = "Center ~Y:";
94     };
95     MetricField MTR_TRGR_CENTER_Y
96     {
97         Border = TRUE ;
98         Size = MAP_APPFONT ( CONTROL_WIDTH , MBOX_HEIGHT ) ;
99         HelpID = HID_PPROPERTYPANEL_AREA_MTR_TRGR_CENTER_Y ;
100         QuickHelpText [ en-US ] = "Specify the vertical offset percentage from the center for the gradient shading style.  50% is the vertical center." ;
101         TabStop = TRUE ;
102         Repeat = TRUE ;
103         Spin = TRUE ;
104         Maximum = 100 ;
105         StrictFormat = TRUE ;
106         Unit = FUNIT_PERCENT ;
107         Last = 100 ;
108         SpinSize = 5 ;
109     };
110     FixedText FT_TRGR_ANGLE
111     {
112         Size = MAP_APPFONT ( CONTROL_WIDTH * 2 + POPUPPANEL_MARGIN_HORIZONTAL + CONTROL_SPACING_HORIZONTAL, FIXED_TEXT_HEIGHT ) ;//wj
113         Text [ en-US ] = "~Angle:";
114     };
115     MetricField MTR_TRGR_ANGLE
116     {
117         Border = TRUE ;
118         Size = MAP_APPFONT ( CONTROL_WIDTH , MBOX_HEIGHT ) ;
119         HelpID = HID_PPROPERTYPANEL_AREA_MTR_TRGR_ANGLE ;
120         QuickHelpText [ en-US ] = "Specify the angle of rotation for the gradient shading style." ;
121         TabStop = FALSE ;
122         Repeat = TRUE ;
123         Spin = TRUE ;
124         Minimum = -9999 ;
125         Maximum = 9999 ;
126         Unit = FUNIT_CUSTOM ;
127         SpinSize = 1 ;
128         CustomUnitText [ en-US ] = " degrees";
129     };
130     FixedText FT_TRGR_START_VALUE
131     {
132         Size = MAP_APPFONT ( CONTROL_WIDTH , FIXED_TEXT_HEIGHT ) ;
133         Text [ en-US ] = "~Start value:";
134     };
135     MetricField MTR_TRGR_START_VALUE
136     {
137         Border = TRUE ;
138         Size = MAP_APPFONT ( CONTROL_WIDTH , MBOX_HEIGHT ) ;
139         HelpID = HID_PPROPERTYPANEL_AREA_MTR_TRGR_SVALUE ;
140         QuickHelpText [ en-US ] = "Enter a transparency value for the beginning point of the gradient, where 0% is fully opaque and 100% is fully transparent." ;
141         TabStop = TRUE ;
142         Repeat = TRUE ;
143         Spin = TRUE ;
144         Maximum = 100 ;
145         StrictFormat = TRUE ;
146         Unit = FUNIT_PERCENT ;
147         Last = 100 ;
148         SpinSize = 5 ;
149     };
150     FixedText FT_TRGR_END_VALUE
151     {
152         Size = MAP_APPFONT (CONTROL_WIDTH + POPUPPANEL_MARGIN_HORIZONTAL, FIXED_TEXT_HEIGHT ) ; //wj
153         Text [ en-US ] = "~End value:";
154     };
155     MetricField MTR_TRGR_END_VALUE
156     {
157         Border = TRUE ;
158         Size = MAP_APPFONT ( CONTROL_WIDTH , MBOX_HEIGHT ) ;
159         HelpID = HID_PPROPERTYPANEL_AREA_MTR_TRGR_EVALUE ;
160         QuickHelpText [ en-US ] = "Enter a transparency value for the endpoint of the gradient, where 0% is fully opaque and 100% is fully transparent." ;
161         TabStop = TRUE ;
162         Repeat = TRUE ;
163         Spin = TRUE ;
164         Maximum = 100 ;
165         StrictFormat = TRUE ;
166         Unit = FUNIT_PERCENT ;
167         Last = 100 ;
168         SpinSize = 5 ;
169     };
170     FixedText FT_TRGR_BORDER
171     {
172         Size = MAP_APPFONT (  CONTROL_WIDTH * 2 + POPUPPANEL_MARGIN_HORIZONTAL + CONTROL_SPACING_HORIZONTAL, FIXED_TEXT_HEIGHT ) ;
173         Text [ en-US ] = "~Border:";
174     };
175     MetricField MTR_TRGR_BORDER
176     {
177         Border = TRUE ;
178         Size = MAP_APPFONT ( CONTROL_WIDTH , MBOX_HEIGHT ) ;
179         HelpID = HID_PPROPERTYPANEL_AREA_MTR_TRGR_BORDER ;
180         QuickHelpText [ en-US ] = "Specify the border value of gradient transparency." ;
181         TabStop = TRUE ;
182         Repeat = TRUE ;
183         Spin = TRUE ;
184         Maximum = 100 ;
185         StrictFormat = TRUE ;
186         Unit = FUNIT_PERCENT ;
187         Last = 100 ;
188         SpinSize = 5 ;
189     };
191     ToolBox BTN_LEFT_SECOND
192     {
193         Border = FALSE ;
194         HelpID = HID_PPROPERTYPANEL_AREA_BTN_LEFT_SECOND ;
195         SVLook = TRUE ;
196         Border = FALSE ;
197         TabStop = TRUE ;
198         Text = "Rotate Left";
199         ItemList =
200         {
201             ToolBoxItem
202             {
203                 Identifier = TBI_LEFT ;
204                 Text = "Rotate Left" ;
205                 ItemBitmap = Bitmap
206                 {
207         //          File = "symphony/rotate_left.png" ;
208                 };
209             };
210         };
211     };
212     ToolBox BTN_RIGHT_FIRST
213     {
214         Border = FALSE ;
215         HelpID = HID_PPROPERTYPANEL_AREA_BTN_RIGHT_FIRST ;
216         SVLook = TRUE ;
217         Border = FALSE ;
218         TabStop = TRUE ;
219         Text = "Rotate Right";
220         ItemList =
221         {
222             ToolBoxItem
223             {
224                 Identifier = TBI_RIGHT ;
225                 Text = "Rotate Right" ;
226                 ItemBitmap = Bitmap
227                 {
228         //          File = "symphony/rotate_right.png" ;
229                 };
230             };
231         };
232     };
233     String STR_HELP_LEFT
234     {
235         Text [ en-US ] = "Rotate counterclockwise by 45 degrees." ;
236     };
237     String STR_HELP_RIGHT
238     {
239         Text [ en-US ] = "Rotate clockwise by 45 degrees." ;
240     };
242 Control RID_POPUPPANEL_AERAPAGE_COLOR
244     OutputSize = TRUE;
245     DialogControl = TRUE;
246     Border = FALSE;
247     Size = MAP_APPFONT(  POPUP_COLOR_PICKER_WIDTH , POPUP_COLOR_PICKER_HEIGHT  );
249     Control VS_COLOR
250     {
251         HelpID = HID_PPROPERTYPANEL_AREA_COLOR_VS;
252         Hide = TRUE ;
253         Pos = MAP_APPFONT ( OFFSET_X , OFFSET_Y );
254         Size = MAP_APPFONT (  POPUP_COLOR_PICKER_WIDTH - OFFSET_X * 2, POPUP_COLOR_PICKER_HEIGHT - OFFSET_Y * 2);
255         TabStop = TRUE ;
256         Text = "Color";
257     };
260 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */