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
23
24#include "internationaloptions.hrc"
25#include "helpid.hrc"
26#include <cuires.hrc>
27#include <svx/dialogs.hrc>
28
29TabPage RID_OFA_TP_INTERNATIONAL
30{
31    HelpID = "cui:TabPage:RID_OFA_TP_INTERNATIONAL";
32	OutputSize = TRUE ;
33	Size = MAP_APPFONT ( PAGE_SIZE_X, PAGE_SIZE_Y ) ;
34	SVLook = TRUE ;
35	Hide = TRUE ;
36
37	FixedLine FL_DEFTXTDIRECTION
38	{
39		Pos = MAP_APPFONT( COL_0, ROW_0 );
40		Size = MAP_APPFONT( WIDTH2END( COL_0 ), HEIGHT_FL );
41		Text [ en-US ] = "Default text direction";
42	};
43
44	RadioButton RB_TXTDIR_LEFT2RIGHT
45	{
46	    HelpID = "cui:RadioButton:RID_OFA_TP_INTERNATIONAL:RB_TXTDIR_LEFT2RIGHT";
47		Pos = MAP_APPFONT( COL_1, ROW_1 );
48		Size = MAP_APPFONT( WIDTH2END( COL_1 ), HEIGHT_RB );
49		Group = TRUE;
50		Text [ en-US ] = "~Left-to-right";
51	};
52
53	RadioButton RB_TXTDIR_RIGHT2LEFT
54	{
55	    HelpID = "cui:RadioButton:RID_OFA_TP_INTERNATIONAL:RB_TXTDIR_RIGHT2LEFT";
56		Pos = MAP_APPFONT( COL_1, ROW_2 );
57		Size = MAP_APPFONT( WIDTH2END( COL_1 ), HEIGHT_RB );
58		Text [ en-US ] = "~Right-to-left";
59	};
60
61	FixedLine FL_SHEETVIEW
62	{
63		Pos = MAP_APPFONT( COL_0, ROW_3 );
64		Size = MAP_APPFONT( WIDTH2END( COL_0 ), HEIGHT_FL );
65		Text [ en-US ] = "Sheet view";
66	};
67
68	CheckBox CB_SHTVW_RIGHT2LEFT
69	{
70	    HelpID = "cui:CheckBox:RID_OFA_TP_INTERNATIONAL:CB_SHTVW_RIGHT2LEFT";
71		Pos = MAP_APPFONT( COL_1, ROW_4 );
72		Size = MAP_APPFONT( WIDTH2END( COL_1 ), HEIGHT_CB );
73		Text [ en-US ] = "Right-~to-left";
74	};
75
76	CheckBox CB_SHTVW_CURRENTDOCONLY
77	{
78	    HelpID = "cui:CheckBox:RID_OFA_TP_INTERNATIONAL:CB_SHTVW_CURRENTDOCONLY";
79		Pos = MAP_APPFONT( COL_2, ROW_5 );
80		Size = MAP_APPFONT( WIDTH2END( COL_2 ), HEIGHT_CB );
81		Text [ en-US ] = "~Current document only";
82	};
83};
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105