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