summaryrefslogtreecommitdiff
path: root/svtools/inc/svtools/apearcfg.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/inc/svtools/apearcfg.hxx')
-rw-r--r--svtools/inc/svtools/apearcfg.hxx24
1 files changed, 2 insertions, 22 deletions
diff --git a/svtools/inc/svtools/apearcfg.hxx b/svtools/inc/svtools/apearcfg.hxx
index bda7e09828b3..b4c2aed65cbf 100644
--- a/svtools/inc/svtools/apearcfg.hxx
+++ b/svtools/inc/svtools/apearcfg.hxx
@@ -37,14 +37,6 @@ class Application;
Beschreibung:
--------------------------------------------------------------------*/
typedef enum {
- LookStardivision = 0,
- LookMotif,
- LookWindows,
- LookOSTwo,
- LookMacintosh
-} SystemLook;
-
-typedef enum {
SnapToButton = 0,
SnapToMiddle,
NoSnap
@@ -59,7 +51,6 @@ typedef enum { // MUST match the order chosen in ListBox LB_DRAG_MODE in optgdlg
class SVT_DLLPUBLIC SvtTabAppearanceCfg : public utl::ConfigItem
{
- short nLookNFeel ;
short nDragMode ;
short nScaleFactor ;
short nSnapMode ;
@@ -69,8 +60,6 @@ class SVT_DLLPUBLIC SvtTabAppearanceCfg : public utl::ConfigItem
#endif
sal_Bool bMenuMouseFollow ;
- sal_Bool bSingleLineTabCtrl ;
- sal_Bool bColoredTabCtrl ;
#if defined( UNX ) || defined ( FS_PRIV_DEBUG )
sal_Bool bFontAntialiasing ;
#endif
@@ -86,11 +75,8 @@ public:
virtual void Commit();
virtual void Notify( const com::sun::star::uno::Sequence< rtl::OUString >& _rPropertyNames);
- sal_uInt16 GetLookNFeel () const { return nLookNFeel; }
- void SetLookNFeel ( sal_uInt16 nSet );
-
- sal_uInt16 GetDragMode () const { return nDragMode; }
- void SetDragMode ( sal_uInt16 nSet );
+ sal_uInt16 GetDragMode () const { return nDragMode; }
+ void SetDragMode ( USHORT nSet );
sal_uInt16 GetScaleFactor () const { return nScaleFactor; }
void SetScaleFactor ( sal_uInt16 nSet );
@@ -106,9 +92,6 @@ public:
void SetMenuMouseFollow(sal_Bool bSet) {bMenuMouseFollow = bSet; SetModified();}
sal_Bool IsMenuMouseFollow() const{return bMenuMouseFollow;}
- void SetSingleLineTabCtrl(sal_Bool bSet) {bSingleLineTabCtrl = bSet; SetModified();}
- sal_Bool IsSingleLineTabCtrl()const {return bSingleLineTabCtrl;}
-
#if defined( UNX ) || defined ( FS_PRIV_DEBUG )
void SetFontAntiAliasing( sal_Bool bSet ) { bFontAntialiasing = bSet; SetModified(); }
sal_Bool IsFontAntiAliasing() const { return bFontAntialiasing; }
@@ -117,9 +100,6 @@ public:
void SetFontAntialiasingMinPixelHeight( sal_uInt16 _nMinHeight ) { nAAMinPixelHeight = _nMinHeight; SetModified(); }
#endif
- void SetColoredTabCtrl(sal_Bool bSet) {bColoredTabCtrl = bSet; SetModified();};
- sal_Bool IsColoredTabCtrl()const {return bColoredTabCtrl;}
-
static sal_Bool IsInitialized() { return bInitialized; }
static void SetInitialized() { bInitialized = sal_True; }
};