bump product version to 4.1.6.2
[LibreOffice.git] / extensions / source / propctrlr / taborder.src
blob9560f253a1f57a2d48705e12250c9c378b453275
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  */
20 #include "formresid.hrc"
21 #include "taborder.hrc"
22 #include "propctrlr.hrc"
24 ModalDialog RID_DLG_TABORDER
26     HelpID = "extensions:ModalDialog:RID_DLG_TABORDER";
27     OutputSize = TRUE ;
28     SVLook = TRUE ;
29     Size = MAP_APPFONT ( 168 , 158 ) ;
30     Text [ en-US ] = "Tab Order" ;
31     Moveable = TRUE ;
32     Closeable = TRUE ;
34     FixedText FT_CONTROLS
35     {
36         Pos = MAP_APPFONT ( 6 , 3 ) ;
37         Size = MAP_APPFONT ( 90 , 8 ) ;
38         Text [ en-US ] = "Controls" ;
39     };
41     Control CTRL_TREE
42     {
43         Border              = TRUE;
44         Pos                 = MAP_APPFONT ( 6, 14) ;
45         Size                = MAP_APPFONT ( 90, 136 ) ;
46         TabStop             = TRUE;
47         HelpId              = HID_PROP_TABORDER_CONTROLS;
48     };
50     PushButton PB_MOVE_UP
51     {
52         HelpID = "extensions:PushButton:RID_DLG_TABORDER:PB_MOVE_UP";
53         Pos = MAP_APPFONT ( 102 , 14 ) ;
54         Size = MAP_APPFONT ( 60 , 14 ) ;
55         Text [ en-US ] = "Move Up" ;
56     };
58     PushButton PB_MOVE_DOWN
59     {
60         HelpID = "extensions:PushButton:RID_DLG_TABORDER:PB_MOVE_DOWN";
61         Pos = MAP_APPFONT ( 102 , 32 ) ;
62         Size = MAP_APPFONT ( 60 , 14 ) ;
63         Text [ en-US ] = "Move Down" ;
64     };
66     PushButton PB_AUTO_ORDER
67     {
68         HelpID = "extensions:PushButton:RID_DLG_TABORDER:PB_AUTO_ORDER";
69         Pos = MAP_APPFONT ( 102 , 50 ) ;
70         Size = MAP_APPFONT ( 60 , 14 ) ;
71         Text [ en-US ] = "Automatic Sort" ;
72     };
73     OKButton PB_OK
74     {
75         Pos = MAP_APPFONT ( 102 , 100 ) ;
76         Size = MAP_APPFONT ( 60 , 14 ) ;
77         TabStop = TRUE ;
78         DefButton = TRUE;
79     };
81     CancelButton PB_CANCEL
82     {
83         Pos = MAP_APPFONT ( 102 , 118 ) ;
84         Size = MAP_APPFONT ( 60 , 14 ) ;
85         TabStop = TRUE ;
86     };
88     HelpButton PB_HELP
89     {
90         Pos = MAP_APPFONT ( 102 , 136 ) ;
91         Size = MAP_APPFONT ( 60 , 14 ) ;
92         TabStop = TRUE ;
93     };
96 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */