update dev300-m58
[ooovba.git] / formula / source / ui / dlg / parawin.src
blobd74ef6a1b77cd172f402a9fd32c76ae289ad290d
1 /*************************************************************************
2  *
3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4  * 
5  * Copyright 2008 by Sun Microsystems, Inc.
6  *
7  * OpenOffice.org - a multi-platform office productivity suite
8  *
9  * $RCSfile: parawin.src,v $
10  * $Revision: 1.30 $
11  *
12  * This file is part of OpenOffice.org.
13  *
14  * OpenOffice.org is free software: you can redistribute it and/or modify
15  * it under the terms of the GNU Lesser General Public License version 3
16  * only, as published by the Free Software Foundation.
17  *
18  * OpenOffice.org is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU Lesser General Public License version 3 for more details
22  * (a copy is included in the LICENSE file that accompanied this code).
23  *
24  * You should have received a copy of the GNU Lesser General Public License
25  * version 3 along with OpenOffice.org.  If not, see
26  * <http://www.openoffice.org/license.html>
27  * for a copy of the LGPLv3 License.
28  *
29  ************************************************************************/
31 #include "parawin.hrc"
32 #include "ForResId.hrc"
33 #include "helpids.hrc"
35 #define STD_MASKCOLOR Color { Red=0xFFFF; Green=0x0000; Blue=0xFFFF; }
36  //---------------------------------------------------------------------------
38 #define FT_ARGBLOCK( y )                                        \
39     Pos = MAP_APPFONT (6 , y ) ; \
40     Size = MAP_APPFONT ( 74 , 8 ) ; \
41     Right = TRUE ;
43 #define FXBUTTONBLOCK( y )                              \
44     Pos = MAP_APPFONT (83 , y-1 ) ; \
45     Size = MAP_APPFONT ( 13 , 15 ) ; \
46     TabStop = TRUE ; \
47     ButtonImage = Image\
48     {\
49         ImageBitmap = Bitmap\
50         {\
51             File = "fx.bmp" ; \
52         };\
53         MaskColor = STD_MASKCOLOR;\
54     };
56 #define ED_ARGBLOCK( y )                                \
57         Border = TRUE;                                  \
58         Pos = MAP_APPFONT( 98, y );             \
59         Size = MAP_APPFONT( 66, 12 );   \
60         TabStop = TRUE;
62 #define RB_ARGBLOCK( y )                                \
63     Pos = MAP_APPFONT ( 166 , y-1 ) ; \
64     Size = MAP_APPFONT ( 13 , 15 ) ; \
65     TabStop = FALSE ;   \
66     QuickHelpText [ en-US ] = "Select"; \
68  //---------------------------------------------------------------------------
70  //     jetzt alles zusammen
72 TabPage RID_FORMULATAB_PARAMETER
74     Border      = FALSE;
75     Size        = MAP_APPFONT( 203, 128 );
76     DialogControl        = TRUE;
77     SVLook               = TRUE;
79     FixedText FT_EDITDESC
80     {
81         Pos = MAP_APPFONT (3 , 6 ) ;
82         Size = MAP_APPFONT ( 198 , 20 ) ;
83         WordBreak = TRUE ;
84         Text [ en-US ] = "Function not known";
85     };
87     FixedText FT_PARNAME
88     {
89         Pos = MAP_APPFONT ( 3, 29) ;
90         Size = MAP_APPFONT ( 198 , 10 ) ;
91     };
92     FixedText FT_PARDESC
93     {
94         Pos = MAP_APPFONT ( 3, 42 ) ;
95         Size = MAP_APPFONT ( 198 , 20 ) ;
96         WordBreak = TRUE ;
97     };
99     FixedText FT_ARG1 { FT_ARGBLOCK (  66 ) };
100     FixedText FT_ARG2 { FT_ARGBLOCK (  81 ) };
101     FixedText FT_ARG3 { FT_ARGBLOCK (  96 ) };
102     FixedText FT_ARG4 { FT_ARGBLOCK ( 111 ) };
104     ImageButton BTN_FX1
105     {
106         HelpId=HID_FORMULA_FAP_BTN_FX1;
107         FXBUTTONBLOCK (  64 )
108     };
109     ImageButton BTN_FX2
110     {
111         HelpId=HID_FORMULA_FAP_BTN_FX2;
112         FXBUTTONBLOCK (  79 )
113     };
115     ImageButton BTN_FX3
116     {
117         HelpId=HID_FORMULA_FAP_BTN_FX3;
118         FXBUTTONBLOCK (  94 )
119     };
120     ImageButton BTN_FX4
121     {
122         HelpId=HID_FORMULA_FAP_BTN_FX4;
123         FXBUTTONBLOCK ( 109 )
124     };
125     Edit ED_ARG1 { ED_ARGBLOCK (  64 ) };
126     Edit ED_ARG2 { ED_ARGBLOCK (  79 ) };
127     Edit ED_ARG3 { ED_ARGBLOCK (  94 ) };
128     Edit ED_ARG4 { ED_ARGBLOCK ( 109 ) };
130     ImageButton RB_ARG1
131     {
132         HelpId=HID_FORMULA_FAP_BTN_REF1;
133         RB_ARGBLOCK (  64 )
134     };
136     ImageButton RB_ARG2
137     {
138         HelpId=HID_FORMULA_FAP_BTN_REF2;
139         RB_ARGBLOCK (  79 )
140     };
141     ImageButton RB_ARG3
142     {
143         HelpId=HID_FORMULA_FAP_BTN_REF3;
144         RB_ARGBLOCK (  94 )
145     };
146     ImageButton RB_ARG4
147     {
148         HelpId=HID_FORMULA_FAP_BTN_REF4;
149         RB_ARGBLOCK ( 109 )
150     };
152     ScrollBar WND_SLIDER
153     {
154         Pos = MAP_APPFONT ( 183, 63 ) ;
155         Size = MAP_APPFONT ( 8 , 59 ) ;
156         VScroll = TRUE ;
157     };
159     String STR_OPTIONAL
160     {
161         Text [ en-US ] = "(optional)" ;
162     };
163     String STR_REQUIRED
164     {
165         Text [ en-US ] = "(required)" ;
166     };
168     Image IMG_FX_H
169     {
170         ImageBitmap = Bitmap { File = "fx_h.bmp" ; };
171         MaskColor = STD_MASKCOLOR;
172     };
173