xref: /AOO41X/main/extensions/source/propctrlr/taborder.src (revision 14d89e6d7e8ff90a682e6d512a6ade05b6ea0df6)
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#ifndef _EXTENSIONS_FORMCTRLR_PROPRESID_HRC_
23#include "formresid.hrc"
24#endif
25#ifndef EXTENSIONS_SOURCE_PROPCTRLR_TABORDER_HRC
26#include "taborder.hrc"
27#endif
28#include "propctrlr.hrc"
29
30ModalDialog RID_DLG_TABORDER
31{
32    HelpID = "extensions:ModalDialog:RID_DLG_TABORDER" ;
33    OutputSize = TRUE ;
34    SVLook = TRUE ;
35    Size = MAP_APPFONT ( 168, 158 ) ;
36    Text [ en-US ] = "Tab Order" ;
37    Moveable = TRUE ;
38    Closeable = TRUE ;
39
40    FixedText FT_CONTROLS
41    {
42        Pos = MAP_APPFONT ( 6, 3 ) ;
43        Size = MAP_APPFONT ( 90, 8 ) ;
44        Text [ en-US ] = "Controls" ;
45    };
46
47    Control CTRL_TREE
48    {
49        Border = TRUE ;
50        Pos = MAP_APPFONT ( 6, 14) ;
51        Size = MAP_APPFONT ( 90, 136 ) ;
52        TabStop = TRUE ;
53        HelpId = HID_PROP_TABORDER_CONTROLS ;
54    };
55
56    PushButton PB_MOVE_UP
57    {
58        HelpID = "extensions:PushButton:RID_DLG_TABORDER:PB_MOVE_UP" ;
59        Pos = MAP_APPFONT ( 102, 14 ) ;
60        Size = MAP_APPFONT ( 60, 14 ) ;
61        Text [ en-US ] = "Move Up" ;
62    };
63
64    PushButton PB_MOVE_DOWN
65    {
66        HelpID = "extensions:PushButton:RID_DLG_TABORDER:PB_MOVE_DOWN" ;
67        Pos = MAP_APPFONT ( 102, 32 ) ;
68        Size = MAP_APPFONT ( 60, 14 ) ;
69        Text [ en-US ] = "Move Down" ;
70    };
71
72    PushButton PB_AUTO_ORDER
73    {
74        HelpID = "extensions:PushButton:RID_DLG_TABORDER:PB_AUTO_ORDER" ;
75        Pos = MAP_APPFONT ( 102, 50 ) ;
76        Size = MAP_APPFONT ( 60, 14 ) ;
77        Text [ en-US ] = "Automatic Sort" ;
78    };
79    OKButton PB_OK
80    {
81        Pos = MAP_APPFONT ( 102, 100 ) ;
82        Size = MAP_APPFONT ( 60, 14 ) ;
83        TabStop = TRUE ;
84        DefButton = TRUE ;
85    };
86
87    CancelButton PB_CANCEL
88    {
89        Pos = MAP_APPFONT ( 102, 118 ) ;
90        Size = MAP_APPFONT ( 60, 14 ) ;
91        TabStop = TRUE ;
92    };
93
94    HelpButton PB_HELP
95    {
96        Pos = MAP_APPFONT ( 102, 136 ) ;
97        Size = MAP_APPFONT ( 60, 14 ) ;
98        TabStop = TRUE ;
99    };
100};
101
102// ********************************************************************** EOF
103