update credits
[LibreOffice.git] / extensions / source / scanner / grid.src
blob1f275aacb0c19c80e9e926cfd14691751349f999
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3  * This file is part of the LibreOffice project.
4  *
5  * This Source Code Form is subject to the terms of the Mozilla Public
6  * License, v. 2.0. If a copy of the MPL was not distributed with this
7  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8  *
9  * This file incorporates work covered by the following license notice:
10  *
11  *   Licensed to the Apache Software Foundation (ASF) under one or more
12  *   contributor license agreements. See the NOTICE file distributed
13  *   with this work for additional information regarding copyright
14  *   ownership. The ASF licenses this file to you under the Apache
15  *   License, Version 2.0 (the "License"); you may not use this file
16  *   except in compliance with the License. You may obtain a copy of
17  *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
18  */
19 #include <grid.hrc>
21 ModalDialog GRID_DIALOG
23     HelpID = "extensions:ModalDialog:GRID_DIALOG";
24     OutputSize = TRUE ;
25     SVLook = TRUE ;
26     Pos = MAP_APPFONT ( 10 , 10 ) ;
27     Size = MAP_APPFONT ( 300, 200 ) ;
28     Moveable = TRUE ;
29     Closeable = TRUE ;
31     OKButton GRID_DIALOG_OK_BTN
32     {
33         Pos = MAP_APPFONT( 245, 5 );
34         Size = MAP_APPFONT( 50, 15 );
35         DefButton = TRUE;
36     };
37     CancelButton GRID_DIALOG_CANCEL_BTN
38     {
39         Pos = MAP_APPFONT ( 245 , 25 ) ;
40         Size = MAP_APPFONT ( 50 , 15 ) ;
41     };
42     ListBox GRID_DIALOG_TYPE_BOX
43     {
44         HelpID = "extensions:ListBox:GRID_DIALOG:GRID_DIALOG_TYPE_BOX";
45         Border = TRUE ;
46         Dropdown = TRUE ;
47         Pos = MAP_APPFONT( 245, 45 );
48         Size = MAP_APPFONT( 50, 130 );
49       };
50     PushButton GRID_DIALOG_RESET_BTN
51     {
52         HelpID = "extensions:PushButton:GRID_DIALOG:GRID_DIALOG_RESET_BTN";
53         Pos = MAP_APPFONT( 245, 65 );
54         Size = MAP_APPFONT( 50, 15 );
55         Text [ en-US ] = "Set";
56     };
57     Bitmap GRID_DIALOG_HANDLE_BMP
58     {
59         File = "handle.bmp";
60     };
61     String RESET_TYPE_LINEAR_ASCENDING
62     {
63         Text [ en-US ] = "Linear ascending";
64     };
65     String RESET_TYPE_LINEAR_DESCENDING
66     {
67         Text [ en-US ] = "Linear descending";
68     };
69     String RESET_TYPE_RESET
70     {
71         Text [ en-US ] = "Original values";
72     };
73     String RESET_TYPE_EXPONENTIAL
74     {
75         Text [ en-US ] = "Exponential increasing";
76     };
79 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */