Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 : #ifndef _SVT_APEARCFG_HXX
20 : #define _SVT_APEARCFG_HXX
21 :
22 : #include "svtools/svtdllapi.h"
23 : #include "tools/solar.h"
24 : #include <unotools/configitem.hxx>
25 :
26 : class Application;
27 :
28 : typedef enum {
29 : SnapToButton = 0,
30 : SnapToMiddle,
31 : NoSnap
32 : } SnapType;
33 :
34 : typedef enum { // MUST match the order chosen in ListBox LB_DRAG_MODE in optgdlg.src
35 : DragFullWindow,
36 : DragFrame,
37 : DragSystemDep
38 : } DragMode;
39 :
40 :
41 : class SVT_DLLPUBLIC SvtTabAppearanceCfg : public utl::ConfigItem
42 : {
43 : short nDragMode ;
44 : short nScaleFactor ;
45 : short nSnapMode ;
46 : short nMiddleMouse;
47 : #if defined( UNX )
48 : short nAAMinPixelHeight ;
49 : #endif
50 :
51 : sal_Bool bMenuMouseFollow ;
52 : #if defined( UNX )
53 : sal_Bool bFontAntialiasing ;
54 : #endif
55 :
56 : static sal_Bool bInitialized ;
57 :
58 : SVT_DLLPRIVATE const com::sun::star::uno::Sequence<OUString>& GetPropertyNames();
59 :
60 : public:
61 : SvtTabAppearanceCfg( );
62 : ~SvtTabAppearanceCfg( );
63 :
64 : virtual void Commit();
65 : virtual void Notify( const com::sun::star::uno::Sequence< OUString >& _rPropertyNames);
66 :
67 166 : sal_uInt16 GetDragMode () const { return nDragMode; }
68 :
69 0 : sal_uInt16 GetScaleFactor () const { return nScaleFactor; }
70 : void SetScaleFactor ( sal_uInt16 nSet );
71 :
72 0 : sal_uInt16 GetSnapMode () const { return nSnapMode; }
73 : void SetSnapMode ( sal_uInt16 nSet );
74 :
75 0 : sal_uInt16 GetMiddleMouseButton () const { return nMiddleMouse; }
76 : void SetMiddleMouseButton ( sal_uInt16 nSet );
77 :
78 : void SetApplicationDefaults ( Application* pApp );
79 :
80 : void SetMenuMouseFollow(sal_Bool bSet) {bMenuMouseFollow = bSet; SetModified();}
81 166 : sal_Bool IsMenuMouseFollow() const{return bMenuMouseFollow;}
82 :
83 : #if defined( UNX )
84 0 : void SetFontAntiAliasing( sal_Bool bSet ) { bFontAntialiasing = bSet; SetModified(); }
85 0 : sal_Bool IsFontAntiAliasing() const { return bFontAntialiasing; }
86 :
87 0 : sal_uInt16 GetFontAntialiasingMinPixelHeight( ) const { return nAAMinPixelHeight; }
88 0 : void SetFontAntialiasingMinPixelHeight( sal_uInt16 _nMinHeight ) { nAAMinPixelHeight = _nMinHeight; SetModified(); }
89 : #endif
90 :
91 166 : static sal_Bool IsInitialized() { return bInitialized; }
92 83 : static void SetInitialized() { bInitialized = sal_True; }
93 : };
94 :
95 : #endif // _OFA_APEARCFG_HXX
96 :
97 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|