1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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_SVTOOLS_APEARCFG_HXX
20 #define INCLUDED_SVTOOLS_APEARCFG_HXX
22 #include <svtools/svtdllapi.h>
23 #include <unotools/configitem.hxx>
26 enum class MouseMiddleButtonAction
;
34 typedef enum { // MUST match the order chosen in ListBox LB_DRAG_MODE in optgdlg.src
41 class SVT_DLLPUBLIC SvtTabAppearanceCfg
: public utl::ConfigItem
46 MouseMiddleButtonAction nMiddleMouse
;
48 short nAAMinPixelHeight
;
51 bool bMenuMouseFollow
;
53 bool bFontAntialiasing
;
56 static bool bInitialized
;
58 SVT_DLLPRIVATE
const com::sun::star::uno::Sequence
<OUString
>& GetPropertyNames();
59 virtual void ImplCommit() SAL_OVERRIDE
;
62 SvtTabAppearanceCfg( );
63 virtual ~SvtTabAppearanceCfg( );
65 virtual void Notify( const com::sun::star::uno::Sequence
< OUString
>& _rPropertyNames
) SAL_OVERRIDE
;
67 sal_uInt16
GetDragMode () const { return nDragMode
; }
69 sal_uInt16
GetScaleFactor () const { return nScaleFactor
; }
70 void SetScaleFactor ( sal_uInt16 nSet
);
72 sal_uInt16
GetSnapMode () const { return nSnapMode
; }
73 void SetSnapMode ( sal_uInt16 nSet
);
75 MouseMiddleButtonAction
GetMiddleMouseButton () const { return nMiddleMouse
; }
76 void SetMiddleMouseButton ( MouseMiddleButtonAction nSet
);
78 void SetApplicationDefaults ( Application
* pApp
);
80 void SetMenuMouseFollow(bool bSet
) {bMenuMouseFollow
= bSet
; SetModified();}
81 bool IsMenuMouseFollow() const{return bMenuMouseFollow
;}
84 void SetFontAntiAliasing( bool bSet
) { bFontAntialiasing
= bSet
; SetModified(); }
85 bool IsFontAntiAliasing() const { return bFontAntialiasing
; }
87 sal_uInt16
GetFontAntialiasingMinPixelHeight( ) const { return nAAMinPixelHeight
; }
88 void SetFontAntialiasingMinPixelHeight( sal_uInt16 _nMinHeight
) { nAAMinPixelHeight
= _nMinHeight
; SetModified(); }
91 static bool IsInitialized() { return bInitialized
; }
92 static void SetInitialized() { bInitialized
= true; }
95 #endif // _OFA_APEARCFG_HXX
97 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */