xref: /trunk/main/cui/source/options/optaccessibility.src (revision facded3995fcb6372087bb00c852e9f66b23e018)
10e2af6afSAndrew Rist/**************************************************************
2cdf0e10cSrcweir *
30e2af6afSAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one
40e2af6afSAndrew Rist * or more contributor license agreements.  See the NOTICE file
50e2af6afSAndrew Rist * distributed with this work for additional information
60e2af6afSAndrew Rist * regarding copyright ownership.  The ASF licenses this file
70e2af6afSAndrew Rist * to you under the Apache License, Version 2.0 (the
80e2af6afSAndrew Rist * "License"); you may not use this file except in compliance
90e2af6afSAndrew Rist * with the License.  You may obtain a copy of the License at
10cdf0e10cSrcweir *
110e2af6afSAndrew Rist *   http://www.apache.org/licenses/LICENSE-2.0
12cdf0e10cSrcweir *
130e2af6afSAndrew Rist * Unless required by applicable law or agreed to in writing,
140e2af6afSAndrew Rist * software distributed under the License is distributed on an
150e2af6afSAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
160e2af6afSAndrew Rist * KIND, either express or implied.  See the License for the
170e2af6afSAndrew Rist * specific language governing permissions and limitations
180e2af6afSAndrew Rist * under the License.
19cdf0e10cSrcweir *
200e2af6afSAndrew Rist *************************************************************/
210e2af6afSAndrew Rist
220e2af6afSAndrew Rist
23cdf0e10cSrcweir
24036294fdSdamjan#include "optaccessibility.hrc"
25cdf0e10cSrcweir#include <sfx2/sfx.hrc>
26cdf0e10cSrcweir#include "helpid.hrc"
27cdf0e10cSrcweir#include <cuires.hrc>
28cdf0e10cSrcweir
29cdf0e10cSrcweirTabPage RID_SVXPAGE_ACCESSIBILITYCONFIG
30cdf0e10cSrcweir{
31cdf0e10cSrcweir    HelpId = HID_OPTIONS_ACCESSIBILITYCONFIG ;
32cdf0e10cSrcweir    Size = MAP_APPFONT ( 260, WHOLE_HEIGHT ) ;
33cdf0e10cSrcweir    SVLook = TRUE ;
34cdf0e10cSrcweir    Hide = TRUE ;
35cdf0e10cSrcweir    FixedLine FL_MISCELLANEOUS
36cdf0e10cSrcweir    {
37cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL0, ROWA_0 ) ;
38cdf0e10cSrcweir        Size = MAP_APPFONT ( GB_WIDTH, RSC_CD_FIXEDLINE_HEIGHT ) ;
39cdf0e10cSrcweir        Text [ en-US ] = "Miscellaneous options" ;
40cdf0e10cSrcweir    };
41cdf0e10cSrcweir    CheckBox CB_ACCESSIBILITY_TOOL
42cdf0e10cSrcweir    {
43cdf0e10cSrcweir        HelpID = "cui:CheckBox:RID_SVXPAGE_ACCESSIBILITYCONFIG:CB_ACCESSIBILITY_TOOL" ;
44cdf0e10cSrcweir        TabStop = TRUE ;
45cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL1, ROWA_1 ) ;
46cdf0e10cSrcweir        Size = MAP_APPFONT ( CB_WIDTH, RSC_CD_CHECKBOX_HEIGHT ) ;
47cdf0e10cSrcweir        WordBreak = TRUE ;
48cdf0e10cSrcweir        Text [ en-US ] = "Support ~assistive technology tools (program restart required)" ;
49cdf0e10cSrcweir    };
50cdf0e10cSrcweir    CheckBox CB_TEXTSELECTION
51cdf0e10cSrcweir    {
52cdf0e10cSrcweir        HelpID = "cui:CheckBox:RID_SVXPAGE_ACCESSIBILITYCONFIG:CB_TEXTSELECTION" ;
53cdf0e10cSrcweir        TabStop = TRUE ;
54cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL1, ROWA_2 ) ;
55cdf0e10cSrcweir        Size = MAP_APPFONT ( CB_WIDTH, RSC_CD_CHECKBOX_HEIGHT ) ;
56cdf0e10cSrcweir        Text [ en-US ] = "Use te~xt selection cursor in read-only text documents" ;
57cdf0e10cSrcweir    };
58cdf0e10cSrcweir    CheckBox CB_ANIMATED_GRAPHICS
59cdf0e10cSrcweir    {
60cdf0e10cSrcweir        HelpID = "cui:CheckBox:RID_SVXPAGE_ACCESSIBILITYCONFIG:CB_ANIMATED_GRAPHICS" ;
61cdf0e10cSrcweir        TabStop = TRUE ;
62cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL1, ROWA_3 ) ;
63cdf0e10cSrcweir        Size = MAP_APPFONT ( CB_WIDTH, RSC_CD_CHECKBOX_HEIGHT ) ;
64cdf0e10cSrcweir        Text [ en-US ] = "Allow animated ~graphics" ;
65cdf0e10cSrcweir    };
66cdf0e10cSrcweir    CheckBox CB_ANIMATED_TEXTS
67cdf0e10cSrcweir    {
68cdf0e10cSrcweir        HelpID = "cui:CheckBox:RID_SVXPAGE_ACCESSIBILITYCONFIG:CB_ANIMATED_TEXTS" ;
69cdf0e10cSrcweir        TabStop = TRUE ;
70cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL1, ROWA_4 ) ;
71cdf0e10cSrcweir        Size = MAP_APPFONT ( CB_WIDTH, RSC_CD_CHECKBOX_HEIGHT ) ;
72cdf0e10cSrcweir        Text [ en-US ] = "Allow animated ~text" ;
73cdf0e10cSrcweir    };
74cdf0e10cSrcweir    CheckBox CB_TIPHELP
75cdf0e10cSrcweir    {
76cdf0e10cSrcweir        HelpID = "cui:CheckBox:RID_SVXPAGE_ACCESSIBILITYCONFIG:CB_TIPHELP" ;
77cdf0e10cSrcweir        TabStop = TRUE ;
78cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL1, OFFS_TEXTBOX_FIXEDTEXT( ROWA_5 ) ) ;
79cdf0e10cSrcweir        Size = MAP_APPFONT ( DIFF(COL2,COL3), RSC_CD_CHECKBOX_HEIGHT ) ;
80cdf0e10cSrcweir        Text [ en-US ] = "~Help tips disappear after " ;
81cdf0e10cSrcweir    };
82cdf0e10cSrcweir    NumericField NF_TIPHELP
83cdf0e10cSrcweir    {
84cdf0e10cSrcweir        HelpID = "cui:NumericField:RID_SVXPAGE_ACCESSIBILITYCONFIG:NF_TIPHELP" ;
85cdf0e10cSrcweir        TabStop = TRUE ;
86cdf0e10cSrcweir        Border = TRUE ;
87cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL3, ROWA_5 ) ;
88cdf0e10cSrcweir        Size = MAP_APPFONT ( EDIT_WIDTH, RSC_CD_TEXTBOX_HEIGHT ) ;
89cdf0e10cSrcweir        Minimum = 1 ;
90cdf0e10cSrcweir        Maximum = 99 ;
91cdf0e10cSrcweir        First = 1 ;
92cdf0e10cSrcweir        Last = 99 ;
93cdf0e10cSrcweir        Spin = TRUE ;
94cdf0e10cSrcweir        Repeat = TRUE ;
95cdf0e10cSrcweir    };
96cdf0e10cSrcweir    FixedText FT_TIPHELP
97cdf0e10cSrcweir    {
98cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL4, OFFS_TEXTBOX_FIXEDTEXT( ROWA_5 ) ) ;
99cdf0e10cSrcweir        Size = MAP_APPFONT ( UNIT_WIDTH, RSC_CD_FIXEDTEXT_HEIGHT ) ;
100cdf0e10cSrcweir        Text [ en-US ] = "seconds" ;
101cdf0e10cSrcweir    };
102cdf0e10cSrcweir    FixedLine FL_HC_OPTIONS
103cdf0e10cSrcweir    {
104cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL0, ROWB_0 ) ;
105cdf0e10cSrcweir        Size = MAP_APPFONT ( GB_WIDTH, RSC_CD_FIXEDLINE_HEIGHT ) ;
106cdf0e10cSrcweir        Text [ en-US ] = "Options for high contrast appearance" ;
107cdf0e10cSrcweir    };
108cdf0e10cSrcweir    CheckBox CB_AUTO_DETECT_HC
109cdf0e10cSrcweir    {
110cdf0e10cSrcweir        HelpID = "cui:CheckBox:RID_SVXPAGE_ACCESSIBILITYCONFIG:CB_AUTO_DETECT_HC" ;
111cdf0e10cSrcweir        TabStop = TRUE ;
112cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL1, ROWB_1 ) ;
113cdf0e10cSrcweir        Size = MAP_APPFONT ( CB_WIDTH, RSC_CD_CHECKBOX_HEIGHT ) ;
114cdf0e10cSrcweir        Text [ en-US ] = "Automatically ~detect high contrast mode of operating system" ;
115cdf0e10cSrcweir    };
116cdf0e10cSrcweir    CheckBox CB_AUTOMATIC_FONT_COLOR
117cdf0e10cSrcweir    {
118cdf0e10cSrcweir        HelpID = "cui:CheckBox:RID_SVXPAGE_ACCESSIBILITYCONFIG:CB_AUTOMATIC_FONT_COLOR" ;
119cdf0e10cSrcweir        TabStop = TRUE ;
120cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL1, ROWB_2 ) ;
121cdf0e10cSrcweir        Size = MAP_APPFONT ( CB_WIDTH, RSC_CD_CHECKBOX_HEIGHT ) ;
122cdf0e10cSrcweir        Text [ en-US ] = "Use automatic font ~color for screen display" ;
123cdf0e10cSrcweir    };
124cdf0e10cSrcweir    CheckBox CB_PAGE_PREVIEWS
125cdf0e10cSrcweir    {
126cdf0e10cSrcweir        HelpID = "cui:CheckBox:RID_SVXPAGE_ACCESSIBILITYCONFIG:CB_PAGE_PREVIEWS" ;
127cdf0e10cSrcweir        TabStop = TRUE ;
128cdf0e10cSrcweir        Pos = MAP_APPFONT ( COL1, ROWB_3 ) ;
129cdf0e10cSrcweir        Size = MAP_APPFONT ( CB_WIDTH, RSC_CD_CHECKBOX_HEIGHT ) ;
130cdf0e10cSrcweir        Text [ en-US ] = "~Use system colors for page previews" ;
131cdf0e10cSrcweir    };
132cdf0e10cSrcweir};
133cdf0e10cSrcweir
134*facded39Smseidel// ******************************************************************* EOF
135