xref: /trunk/main/extensions/source/scanner/grid.src (revision 2db73460ee52b94cd9bc823f716e7bfe18436044)
180fe9c7bSAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
380fe9c7bSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
480fe9c7bSAndrew Rist * or more contributor license agreements.  See the NOTICE file
580fe9c7bSAndrew Rist * distributed with this work for additional information
680fe9c7bSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
780fe9c7bSAndrew Rist * to you under the Apache License, Version 2.0 (the
880fe9c7bSAndrew Rist * "License"); you may not use this file except in compliance
980fe9c7bSAndrew Rist * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir *
1180fe9c7bSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir *
1380fe9c7bSAndrew Rist * Unless required by applicable law or agreed to in writing,
1480fe9c7bSAndrew Rist * software distributed under the License is distributed on an
1580fe9c7bSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1680fe9c7bSAndrew Rist * KIND, either express or implied.  See the License for the
1780fe9c7bSAndrew Rist * specific language governing permissions and limitations
1880fe9c7bSAndrew Rist * under the License.
19cdf0e10cSrcweir *
2080fe9c7bSAndrew Rist *************************************************************/
2180fe9c7bSAndrew Rist
2280fe9c7bSAndrew Rist
23*2db73460Smseidel
24cdf0e10cSrcweir#include <grid.hrc>
25cdf0e10cSrcweir
26cdf0e10cSrcweirModalDialog GRID_DIALOG
27cdf0e10cSrcweir{
28cdf0e10cSrcweir    HelpID = "extensions:ModalDialog:GRID_DIALOG" ;
29cdf0e10cSrcweir    OutputSize = TRUE ;
30cdf0e10cSrcweir    SVLook = TRUE ;
31cdf0e10cSrcweir    Pos = MAP_APPFONT ( 10, 10 ) ;
32cdf0e10cSrcweir    Size = MAP_APPFONT ( 300, 200 ) ;
33cdf0e10cSrcweir    Moveable = TRUE ;
34cdf0e10cSrcweir    Closeable = TRUE ;
35cdf0e10cSrcweir
36cdf0e10cSrcweir    OKButton GRID_DIALOG_OK_BTN
37cdf0e10cSrcweir    {
38cdf0e10cSrcweir        Pos = MAP_APPFONT ( 245, 5 ) ;
39cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 15 ) ;
40cdf0e10cSrcweir        DefButton = TRUE ;
41cdf0e10cSrcweir    };
42cdf0e10cSrcweir    CancelButton GRID_DIALOG_CANCEL_BTN
43cdf0e10cSrcweir    {
44cdf0e10cSrcweir        Pos = MAP_APPFONT ( 245, 25 ) ;
45cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 15 ) ;
46cdf0e10cSrcweir    };
47cdf0e10cSrcweir    ListBox GRID_DIALOG_TYPE_BOX
48cdf0e10cSrcweir    {
49cdf0e10cSrcweir        HelpID = "extensions:ListBox:GRID_DIALOG:GRID_DIALOG_TYPE_BOX" ;
50cdf0e10cSrcweir        Border = TRUE ;
51cdf0e10cSrcweir        Dropdown = TRUE ;
52cdf0e10cSrcweir        Pos = MAP_APPFONT ( 245, 45 ) ;
53cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 130 ) ;
54cdf0e10cSrcweir    };
55cdf0e10cSrcweir    PushButton GRID_DIALOG_RESET_BTN
56cdf0e10cSrcweir    {
57cdf0e10cSrcweir        HelpID = "extensions:PushButton:GRID_DIALOG:GRID_DIALOG_RESET_BTN" ;
58cdf0e10cSrcweir        Pos = MAP_APPFONT ( 245, 65 ) ;
59cdf0e10cSrcweir        Size = MAP_APPFONT ( 50, 15 ) ;
60cdf0e10cSrcweir        Text [ en-US ] = "Set" ;
61cdf0e10cSrcweir    };
62cdf0e10cSrcweir    Bitmap GRID_DIALOG_HANDLE_BMP
63cdf0e10cSrcweir    {
64*2db73460Smseidel        File = "handle.png" ;
65cdf0e10cSrcweir    };
66cdf0e10cSrcweir    String RESET_TYPE_LINEAR_ASCENDING
67cdf0e10cSrcweir    {
68cdf0e10cSrcweir        Text [ en-US ] = "Linear ascending" ;
69cdf0e10cSrcweir    };
70cdf0e10cSrcweir    String RESET_TYPE_LINEAR_DESCENDING
71cdf0e10cSrcweir    {
72cdf0e10cSrcweir        Text [ en-US ] = "Linear descending" ;
73cdf0e10cSrcweir    };
74cdf0e10cSrcweir    String RESET_TYPE_RESET
75cdf0e10cSrcweir    {
76cdf0e10cSrcweir        Text [ en-US ] = "Original values" ;
77cdf0e10cSrcweir    };
78cdf0e10cSrcweir    String RESET_TYPE_EXPONENTIAL
79cdf0e10cSrcweir    {
80cdf0e10cSrcweir        Text [ en-US ] = "Exponential increasing" ;
81cdf0e10cSrcweir    };
82cdf0e10cSrcweir};
83cdf0e10cSrcweir
84*2db73460Smseidel// ******************************************************************* EOF
85