bump product version to 5.0.4.1
[LibreOffice.git] / cui / source / options / optaccessibility.hxx
blob16e4c3a97bd3dff6a47c336b7c5acaea48073366
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
19 #ifndef INCLUDED_CUI_SOURCE_OPTIONS_OPTACCESSIBILITY_HXX
20 #define INCLUDED_CUI_SOURCE_OPTIONS_OPTACCESSIBILITY_HXX
22 #include <sfx2/tabdlg.hxx>
23 #include <vcl/fixed.hxx>
24 #include <vcl/field.hxx>
25 struct SvxAccessibilityOptionsTabPage_Impl;
26 class SvxAccessibilityOptionsTabPage : public SfxTabPage
28 VclPtr<CheckBox> m_pAccessibilityTool;
29 VclPtr<CheckBox> m_pTextSelectionInReadonly;
30 VclPtr<CheckBox> m_pAnimatedGraphics;
31 VclPtr<CheckBox> m_pAnimatedTexts;
32 VclPtr<CheckBox> m_pTipHelpCB;
33 VclPtr<NumericField> m_pTipHelpNF;
34 VclPtr<CheckBox> m_pAutoDetectHC;
35 VclPtr<CheckBox> m_pAutomaticFontColor;
36 VclPtr<CheckBox> m_pPagePreviews;
38 DECL_LINK(TipHelpHdl, CheckBox*);
39 void EnableTipHelp(bool bCheck);
41 SvxAccessibilityOptionsTabPage_Impl* m_pImpl;
43 public:
44 SvxAccessibilityOptionsTabPage( vcl::Window* pParent, const SfxItemSet& rSet );
45 virtual ~SvxAccessibilityOptionsTabPage();
46 virtual void dispose() SAL_OVERRIDE;
48 static VclPtr<SfxTabPage> Create( vcl::Window* pParent, const SfxItemSet* rAttrSet );
49 virtual bool FillItemSet( SfxItemSet* rSet ) SAL_OVERRIDE;
50 virtual void Reset( const SfxItemSet* rSet ) SAL_OVERRIDE;
53 #endif
55 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */