diff options
author | Noel Grandin <noel@peralex.com> | 2015-07-14 11:27:52 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-14 10:21:55 +0000 |
commit | 06ea347b939895d3091ce747c26de58f4d4a766a (patch) | |
tree | e93a25d2aadc36c263a8ccd8b593449b37fb8b6b /include/svtools/tabbar.hxx | |
parent | 9be8c4f21200aeec5b334d9536b3b7a0b72c24fa (diff) |
loplugin:unusedmethods svtools
Change-Id: I04ad31055c04a247faddf4311943ca769051473c
Reviewed-on: https://gerrit.libreoffice.org/17032
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/svtools/tabbar.hxx')
-rw-r--r-- | include/svtools/tabbar.hxx | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/include/svtools/tabbar.hxx b/include/svtools/tabbar.hxx index 9d0ee92437c4..664738fbc857 100644 --- a/include/svtools/tabbar.hxx +++ b/include/svtools/tabbar.hxx @@ -315,8 +315,6 @@ class SVT_DLLPUBLIC TabBar : public vcl::Window private: std::unique_ptr<TabBar_Impl> mpImpl; - ImplTabBarList* mpItemList; - OUString maEditText; Color maSelColor; Color maSelTextColor; @@ -419,7 +417,6 @@ public: Color GetTabBgColor( sal_uInt16 nPageId ) const; void SetTabBgColor( sal_uInt16 nPageId, const Color& aTabBgColor ); - bool IsDefaultTabBgColor( sal_uInt16 nPageId ); void Clear(); @@ -440,22 +437,15 @@ public: sal_uInt16 GetCurPageId() const { return mnCurPageId; } void SetFirstPageId( sal_uInt16 nPageId ); - sal_uInt16 GetFirstPageId() const { return GetPageId( mnFirstPos ); } void MakeVisible( sal_uInt16 nPageId ); void SelectPage( sal_uInt16 nPageId, bool bSelect = true ); sal_uInt16 GetSelectPageCount() const; bool IsPageSelected( sal_uInt16 nPageId ) const; - void EnableAutoMaxPageWidth( bool bEnable = true ) { mbAutoMaxWidth = bEnable; } - bool IsAutoMaxPageWidthEnabled() const { return mbAutoMaxWidth; } void SetMaxPageWidth( long nMaxWidth ); - long GetMaxPageWidth() const { return mnMaxPageWidth; } - void ResetMaxPageWidth() { SetMaxPageWidth( 0 ); } - bool IsMaxPageWidth() const { return mnMaxPageWidth != 0; } void EnableEditMode( bool bEnable = true ) { mbAutoEditMode = bEnable; } - bool IsEditModeEnabled() const { return mbAutoEditMode; } bool StartEditMode( sal_uInt16 nPageId ); void EndEditMode( bool bCancel = false ); void SetEditText( const OUString& rText ) { maEditText = rText; } @@ -485,12 +475,6 @@ public: void HideDropPos(); bool SwitchPage( const Point& rPos ); void EndSwitchPage(); - bool IsInSwitching() { return mbInSwitching; } - - const Color& GetSelectColor() const { return maSelColor; } - bool IsSelectColor() const { return mbSelColor; } - const Color& GetSelectTextColor() const { return maSelTextColor; } - bool IsSelectTextColor() const { return mbSelTextColor; } void SetPageText( sal_uInt16 nPageId, const OUString& rText ); OUString GetPageText( sal_uInt16 nPageId ) const; |