Version 4.0.2.1, tag libreoffice-4.0.2.1
[LibreOffice.git] / formula / source / ui / dlg / parawin.src
blob1d8d3600b12f05bbef142b5bf403a4a64c40803f
1 /*
2  * This file is part of the LibreOffice project.
3  *
4  * This Source Code Form is subject to the terms of the Mozilla Public
5  * License, v. 2.0. If a copy of the MPL was not distributed with this
6  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7  *
8  * This file incorporates work covered by the following license notice:
9  *
10  *   Licensed to the Apache Software Foundation (ASF) under one or more
11  *   contributor license agreements. See the NOTICE file distributed
12  *   with this work for additional information regarding copyright
13  *   ownership. The ASF licenses this file to you under the Apache
14  *   License, Version 2.0 (the "License"); you may not use this file
15  *   except in compliance with the License. You may obtain a copy of
16  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
17  */
19 #include "parawin.hrc"
20 #include "ForResId.hrc"
21 #include "helpids.hrc"
23 #define STD_MASKCOLOR Color { Red=0xFFFF; Green=0x0000; Blue=0xFFFF; }
24  //---------------------------------------------------------------------------
26 #define FT_ARGBLOCK( y )                    \
27     Pos = MAP_APPFONT (6 , y ) ; \
28     Size = MAP_APPFONT ( 74 , 8 ) ; \
29     Right = TRUE ;
31 #define FXBUTTONBLOCK( y )              \
32     Pos = MAP_APPFONT (83 , y-1 ) ; \
33     Size = MAP_APPFONT ( 13 , 15 ) ; \
34     TabStop = TRUE ; \
35     ButtonImage = Image\
36     {\
37         ImageBitmap = Bitmap\
38         {\
39             File = "fx.bmp" ; \
40         };\
41         MaskColor = STD_MASKCOLOR;\
42     };
44 #define ED_ARGBLOCK( y )                \
45         Border = TRUE;                  \
46         Pos = MAP_APPFONT( 98, y );     \
47         Size = MAP_APPFONT( 66, 12 );   \
48         TabStop = TRUE;
50 #define RB_ARGBLOCK( y )                \
51     Pos = MAP_APPFONT ( 166 , y-1 ) ; \
52     Size = MAP_APPFONT ( 13 , 15 ) ; \
53     TabStop = FALSE ;   \
54     QuickHelpText [ en-US ] = "Select"; \
56  //---------------------------------------------------------------------------
58  // jetzt alles zusammen
60 TabPage RID_FORMULATAB_PARAMETER
62     HelpID = "formula:TabPage:RID_FORMULATAB_PARAMETER";
63     Border  = FALSE;
64     Size    = MAP_APPFONT( 203, 128 );
65     DialogControl        = TRUE;
66     SVLook               = TRUE;
68     FixedText FT_EDITDESC
69     {
70         Pos = MAP_APPFONT (3 , 6 ) ;
71         Size = MAP_APPFONT ( 198 , 20 ) ;
72         WordBreak = TRUE ;
73         Text [ en-US ] = "Function not known";
74     };
76     FixedText FT_PARNAME
77     {
78         Pos = MAP_APPFONT ( 3, 29) ;
79         Size = MAP_APPFONT ( 198 , 10 ) ;
80     };
81     FixedText FT_PARDESC
82     {
83         Pos = MAP_APPFONT ( 3, 42 ) ;
84         Size = MAP_APPFONT ( 198 , 20 ) ;
85         WordBreak = TRUE ;
86     };
88     FixedText FT_ARG1 { FT_ARGBLOCK (  66 ) };
89     FixedText FT_ARG2 { FT_ARGBLOCK (  81 ) };
90     FixedText FT_ARG3 { FT_ARGBLOCK (  96 ) };
91     FixedText FT_ARG4 { FT_ARGBLOCK ( 111 ) };
93     ImageButton BTN_FX1
94     {
95         HelpId=HID_FORMULA_FAP_BTN_FX1;
96         FXBUTTONBLOCK (  64 )
97     };
98     ImageButton BTN_FX2
99     {
100         HelpId=HID_FORMULA_FAP_BTN_FX2;
101         FXBUTTONBLOCK (  79 )
102     };
104     ImageButton BTN_FX3
105     {
106         HelpId=HID_FORMULA_FAP_BTN_FX3;
107         FXBUTTONBLOCK (  94 )
108     };
109     ImageButton BTN_FX4
110     {
111         HelpId=HID_FORMULA_FAP_BTN_FX4;
112         FXBUTTONBLOCK ( 109 )
113     };
114     Edit ED_ARG1 { ED_ARGBLOCK (  64 )
115         HelpID = "formula:Edit:RID_FORMULATAB_PARAMETER:ED_ARG1";
116     };
117     Edit ED_ARG2 { ED_ARGBLOCK (  79 )
118         HelpID = "formula:Edit:RID_FORMULATAB_PARAMETER:ED_ARG2";
119     };
120     Edit ED_ARG3 { ED_ARGBLOCK (  94 )
121         HelpID = "formula:Edit:RID_FORMULATAB_PARAMETER:ED_ARG3";
122     };
123     Edit ED_ARG4 { ED_ARGBLOCK ( 109 )
124         HelpID = "formula:Edit:RID_FORMULATAB_PARAMETER:ED_ARG4";
125     };
127     ImageButton RB_ARG1
128     {
129         HelpId=HID_FORMULA_FAP_BTN_REF1;
130         RB_ARGBLOCK (  64 )
131     };
133     ImageButton RB_ARG2
134     {
135         HelpId=HID_FORMULA_FAP_BTN_REF2;
136         RB_ARGBLOCK (  79 )
137     };
138     ImageButton RB_ARG3
139     {
140         HelpId=HID_FORMULA_FAP_BTN_REF3;
141         RB_ARGBLOCK (  94 )
142     };
143     ImageButton RB_ARG4
144     {
145         HelpId=HID_FORMULA_FAP_BTN_REF4;
146         RB_ARGBLOCK ( 109 )
147     };
149     ScrollBar WND_SLIDER
150     {
151         Pos = MAP_APPFONT ( 183, 63 ) ;
152         Size = MAP_APPFONT ( 8 , 59 ) ;
153         VScroll = TRUE ;
154     };
156     String STR_OPTIONAL
157     {
158         Text [ en-US ] = "(optional)" ;
159     };
160     String STR_REQUIRED
161     {
162         Text [ en-US ] = "(required)" ;
163     };