xref: /trunk/main/extensions/source/scanner/grid.src (revision 2db73460)
180fe9c7bSAndrew Rist/**************************************************************
2*2db73460Smseidel *
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
10*2db73460Smseidel *
1180fe9c7bSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12*2db73460Smseidel *
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.
19*2db73460Smseidel *
2080fe9c7bSAndrew Rist *************************************************************/
2180fe9c7bSAndrew Rist
2280fe9c7bSAndrew Rist
23*2db73460Smseidel
24cdf0e10cSrcweir#include <grid.hrc>
25cdf0e10cSrcweir
26cdf0e10cSrcweirModalDialog GRID_DIALOG
27cdf0e10cSrcweir{
28*2db73460Smseidel	HelpID = "extensions:ModalDialog:GRID_DIALOG" ;
29*2db73460Smseidel	OutputSize = TRUE ;
30*2db73460Smseidel	SVLook = TRUE ;
31*2db73460Smseidel	Pos = MAP_APPFONT ( 10, 10 ) ;
32*2db73460Smseidel	Size = MAP_APPFONT ( 300, 200 ) ;
33*2db73460Smseidel	Moveable = TRUE ;
34*2db73460Smseidel	Closeable = TRUE ;
35cdf0e10cSrcweir
36cdf0e10cSrcweir	OKButton GRID_DIALOG_OK_BTN
37cdf0e10cSrcweir	{
38*2db73460Smseidel		Pos = MAP_APPFONT ( 245, 5 ) ;
39*2db73460Smseidel		Size = MAP_APPFONT ( 50, 15 ) ;
40*2db73460Smseidel		DefButton = TRUE ;
41*2db73460Smseidel	};
42*2db73460Smseidel	CancelButton GRID_DIALOG_CANCEL_BTN
43*2db73460Smseidel	{
44*2db73460Smseidel		Pos = MAP_APPFONT ( 245, 25 ) ;
45*2db73460Smseidel		Size = MAP_APPFONT ( 50, 15 ) ;
46cdf0e10cSrcweir	};
47cdf0e10cSrcweir	ListBox GRID_DIALOG_TYPE_BOX
48cdf0e10cSrcweir	{
49*2db73460Smseidel		HelpID = "extensions:ListBox:GRID_DIALOG:GRID_DIALOG_TYPE_BOX" ;
50*2db73460Smseidel		Border = TRUE ;
51*2db73460Smseidel		Dropdown = TRUE ;
52*2db73460Smseidel		Pos = MAP_APPFONT ( 245, 45 ) ;
53*2db73460Smseidel		Size = MAP_APPFONT ( 50, 130 ) ;
54*2db73460Smseidel	};
55cdf0e10cSrcweir	PushButton GRID_DIALOG_RESET_BTN
56cdf0e10cSrcweir	{
57*2db73460Smseidel		HelpID = "extensions:PushButton:GRID_DIALOG:GRID_DIALOG_RESET_BTN" ;
58*2db73460Smseidel		Pos = MAP_APPFONT ( 245, 65 ) ;
59*2db73460Smseidel		Size = MAP_APPFONT ( 50, 15 ) ;
60*2db73460Smseidel		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	{
68*2db73460Smseidel		Text [ en-US ] = "Linear ascending" ;
69cdf0e10cSrcweir	};
70cdf0e10cSrcweir	String RESET_TYPE_LINEAR_DESCENDING
71cdf0e10cSrcweir	{
72*2db73460Smseidel		Text [ en-US ] = "Linear descending" ;
73cdf0e10cSrcweir	};
74cdf0e10cSrcweir	String RESET_TYPE_RESET
75cdf0e10cSrcweir	{
76*2db73460Smseidel		Text [ en-US ] = "Original values" ;
77cdf0e10cSrcweir	};
78cdf0e10cSrcweir	String RESET_TYPE_EXPONENTIAL
79cdf0e10cSrcweir	{
80*2db73460Smseidel		Text [ en-US ] = "Exponential increasing" ;
81cdf0e10cSrcweir	};
82cdf0e10cSrcweir};
83cdf0e10cSrcweir
84*2db73460Smseidel// ******************************************************************* EOF
85