update credits
[LibreOffice.git] / formula / source / ui / dlg / parawin.src
blob44ebc5c345100005491a76adb77c281cc5fc6f75
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  */
20 #include "parawin.hrc"
21 #include "ForResId.hrc"
22 #include "helpids.hrc"
24 #define STD_MASKCOLOR Color { Red=0xFFFF; Green=0x0000; Blue=0xFFFF; }
25  //---------------------------------------------------------------------------
27 #define FT_ARGBLOCK( y )                    \
28     Pos = MAP_APPFONT (6 , y ) ; \
29     Size = MAP_APPFONT ( 74 , 8 ) ; \
30     Right = TRUE ;
32 #define FXBUTTONBLOCK( y )              \
33     Pos = MAP_APPFONT (83 , y-1 ) ; \
34     Size = MAP_APPFONT ( 13 , 15 ) ; \
35     TabStop = TRUE ; \
36     ButtonImage = Image\
37     {\
38         ImageBitmap = Bitmap\
39         {\
40             File = "fx.bmp" ; \
41         };\
42         MaskColor = STD_MASKCOLOR;\
43     };
45 #define ED_ARGBLOCK( y )                \
46         Border = TRUE;                  \
47         Pos = MAP_APPFONT( 98, y );     \
48         Size = MAP_APPFONT( 66, 12 );   \
49         TabStop = TRUE;
51 #define RB_ARGBLOCK( y )                \
52     Pos = MAP_APPFONT ( 166 , y-1 ) ; \
53     Size = MAP_APPFONT ( 13 , 15 ) ; \
54     TabStop = FALSE ;   \
55     QuickHelpText [ en-US ] = "Select"; \
57  //---------------------------------------------------------------------------
59  // jetzt alles zusammen
61 TabPage RID_FORMULATAB_PARAMETER
63     HelpID = "formula:TabPage:RID_FORMULATAB_PARAMETER";
64     Border  = FALSE;
65     Size    = MAP_APPFONT( 203, 128 );
66     DialogControl        = TRUE;
67     SVLook               = TRUE;
69     FixedText FT_EDITDESC
70     {
71         Pos = MAP_APPFONT (3 , 6 ) ;
72         Size = MAP_APPFONT ( 198 , 20 ) ;
73         WordBreak = TRUE ;
74         Text [ en-US ] = "Function not known";
75     };
77     FixedText FT_PARNAME
78     {
79         Pos = MAP_APPFONT ( 3, 29) ;
80         Size = MAP_APPFONT ( 198 , 10 ) ;
81     };
82     FixedText FT_PARDESC
83     {
84         Pos = MAP_APPFONT ( 3, 42 ) ;
85         Size = MAP_APPFONT ( 198 , 20 ) ;
86         WordBreak = TRUE ;
87     };
89     FixedText FT_ARG1 { FT_ARGBLOCK (  66 ) };
90     FixedText FT_ARG2 { FT_ARGBLOCK (  81 ) };
91     FixedText FT_ARG3 { FT_ARGBLOCK (  96 ) };
92     FixedText FT_ARG4 { FT_ARGBLOCK ( 111 ) };
94     ImageButton BTN_FX1
95     {
96         HelpId=HID_FORMULA_FAP_BTN_FX1;
97         FXBUTTONBLOCK (  64 )
98     };
99     ImageButton BTN_FX2
100     {
101         HelpId=HID_FORMULA_FAP_BTN_FX2;
102         FXBUTTONBLOCK (  79 )
103     };
105     ImageButton BTN_FX3
106     {
107         HelpId=HID_FORMULA_FAP_BTN_FX3;
108         FXBUTTONBLOCK (  94 )
109     };
110     ImageButton BTN_FX4
111     {
112         HelpId=HID_FORMULA_FAP_BTN_FX4;
113         FXBUTTONBLOCK ( 109 )
114     };
115     Edit ED_ARG1 { ED_ARGBLOCK (  64 )
116         HelpID = "formula:Edit:RID_FORMULATAB_PARAMETER:ED_ARG1";
117     };
118     Edit ED_ARG2 { ED_ARGBLOCK (  79 )
119         HelpID = "formula:Edit:RID_FORMULATAB_PARAMETER:ED_ARG2";
120     };
121     Edit ED_ARG3 { ED_ARGBLOCK (  94 )
122         HelpID = "formula:Edit:RID_FORMULATAB_PARAMETER:ED_ARG3";
123     };
124     Edit ED_ARG4 { ED_ARGBLOCK ( 109 )
125         HelpID = "formula:Edit:RID_FORMULATAB_PARAMETER:ED_ARG4";
126     };
128     ImageButton RB_ARG1
129     {
130         HelpId=HID_FORMULA_FAP_BTN_REF1;
131         RB_ARGBLOCK (  64 )
132     };
134     ImageButton RB_ARG2
135     {
136         HelpId=HID_FORMULA_FAP_BTN_REF2;
137         RB_ARGBLOCK (  79 )
138     };
139     ImageButton RB_ARG3
140     {
141         HelpId=HID_FORMULA_FAP_BTN_REF3;
142         RB_ARGBLOCK (  94 )
143     };
144     ImageButton RB_ARG4
145     {
146         HelpId=HID_FORMULA_FAP_BTN_REF4;
147         RB_ARGBLOCK ( 109 )
148     };
150     ScrollBar WND_SLIDER
151     {
152         Pos = MAP_APPFONT ( 183, 63 ) ;
153         Size = MAP_APPFONT ( 8 , 59 ) ;
154         VScroll = TRUE ;
155     };
157     String STR_OPTIONAL
158     {
159         Text [ en-US ] = "(optional)" ;
160     };
161     String STR_REQUIRED
162     {
163         Text [ en-US ] = "(required)" ;
164     };
167 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */