xref: /aoo41x/main/extensions/source/scanner/grid.src (revision cdf0e10c)
1/*************************************************************************
2 *
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2000, 2010 Oracle and/or its affiliates.
6 *
7 * OpenOffice.org - a multi-platform office productivity suite
8 *
9 * This file is part of OpenOffice.org.
10 *
11 * OpenOffice.org is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License version 3
13 * only, as published by the Free Software Foundation.
14 *
15 * OpenOffice.org is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License version 3 for more details
19 * (a copy is included in the LICENSE file that accompanied this code).
20 *
21 * You should have received a copy of the GNU Lesser General Public License
22 * version 3 along with OpenOffice.org.  If not, see
23 * <http://www.openoffice.org/license.html>
24 * for a copy of the LGPLv3 License.
25 *
26 ************************************************************************/
27#include <grid.hrc>
28
29ModalDialog GRID_DIALOG
30{
31    HelpID = "extensions:ModalDialog:GRID_DIALOG";
32    OutputSize = TRUE ;
33    SVLook = TRUE ;
34    Pos = MAP_APPFONT ( 10 , 10 ) ;
35    Size = MAP_APPFONT ( 300, 200 ) ;
36    Moveable = TRUE ;
37    Closeable = TRUE ;
38
39	OKButton GRID_DIALOG_OK_BTN
40	{
41		Pos = MAP_APPFONT( 245, 5 );
42		Size = MAP_APPFONT( 50, 15 );
43		DefButton = TRUE;
44	};
45    CancelButton GRID_DIALOG_CANCEL_BTN
46    {
47        Pos = MAP_APPFONT ( 245 , 25 ) ;
48        Size = MAP_APPFONT ( 50 , 15 ) ;
49    };
50	ListBox GRID_DIALOG_TYPE_BOX
51	{
52	    HelpID = "extensions:ListBox:GRID_DIALOG:GRID_DIALOG_TYPE_BOX";
53        Border = TRUE ;
54        Dropdown = TRUE ;
55		Pos = MAP_APPFONT( 245, 45 );
56		Size = MAP_APPFONT( 50, 130 );
57  	};
58	PushButton GRID_DIALOG_RESET_BTN
59	{
60	    HelpID = "extensions:PushButton:GRID_DIALOG:GRID_DIALOG_RESET_BTN";
61		Pos = MAP_APPFONT( 245, 65 );
62		Size = MAP_APPFONT( 50, 15 );
63		Text [ en-US ] = "Set";
64	};
65	Bitmap GRID_DIALOG_HANDLE_BMP
66	{
67		File = "handle.bmp";
68	};
69	String RESET_TYPE_LINEAR_ASCENDING
70	{
71		Text [ en-US ] = "Linear ascending";
72	};
73	String RESET_TYPE_LINEAR_DESCENDING
74	{
75		Text [ en-US ] = "Linear descending";
76	};
77	String RESET_TYPE_RESET
78	{
79		Text [ en-US ] = "Original values";
80	};
81	String RESET_TYPE_EXPONENTIAL
82	{
83		Text [ en-US ] = "Exponential increasing";
84	};
85};
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116