diff options
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/button.hxx | 9 | ||||
-rw-r--r-- | include/vcl/toolbox.hxx | 3 | ||||
-rw-r--r-- | include/vcl/vclmedit.hxx | 2 |
3 files changed, 0 insertions, 14 deletions
diff --git a/include/vcl/button.hxx b/include/vcl/button.hxx index c078c921a35a..3aca65e5f039 100644 --- a/include/vcl/button.hxx +++ b/include/vcl/button.hxx @@ -87,7 +87,6 @@ public: void EnableImageDisplay( bool bEnable ); void EnableTextDisplay( bool bEnable ); - void SetFocusRect( const tools::Rectangle& rFocusRect ); bool IsSmallSymbol() const; void SetSmallSymbol(); virtual bool set_property(const OString &rKey, const OUString &rValue) override; @@ -319,13 +318,6 @@ protected: virtual const Color& GetCanonicalTextColor( const StyleSettings& _rStyle ) const override; - void SetMouseRect( const tools::Rectangle& _rMouseRect ) { maMouseRect = _rMouseRect; } - void SetStateRect( const tools::Rectangle& _rStateRect ) { maStateRect = _rStateRect; } - - // draws the radio button (the knob image), in its current state (pressed/checked) - // at the usual location, which can be overridden with SetStateRect - void DrawRadioButtonState(vcl::RenderContext& rRenderContext); - public: explicit RadioButton( vcl::Window* pParent, WinBits nWinStyle = 0 ); virtual ~RadioButton() override; @@ -352,7 +344,6 @@ public: bool IsRadioCheckEnabled() const { return mbRadioCheck; } void SetModeRadioImage( const Image& rImage ); - const Image& GetModeRadioImage( ) const { return maImage;} void SetState( bool bCheck ); void Check( bool bCheck = true ); diff --git a/include/vcl/toolbox.hxx b/include/vcl/toolbox.hxx index 574501825879..115b9e32261d 100644 --- a/include/vcl/toolbox.hxx +++ b/include/vcl/toolbox.hxx @@ -343,9 +343,6 @@ public: void SetLineCount( ImplToolItems::size_type nNewLines ); void ShowLine( bool bNext ); - // Used to enable/disable scrolling one page at a time for toolbar - void SetPageScroll( bool b ); - ImplToolItems::size_type GetItemCount() const; ToolBoxItemType GetItemType( ImplToolItems::size_type nPos ) const; ImplToolItems::size_type GetItemPos( sal_uInt16 nItemId ) const; diff --git a/include/vcl/vclmedit.hxx b/include/vcl/vclmedit.hxx index 0c5b0c403e95..d52d040d028e 100644 --- a/include/vcl/vclmedit.hxx +++ b/include/vcl/vclmedit.hxx @@ -163,8 +163,6 @@ public: void Draw( OutputDevice* pDev, const Point& rPos, const Size& rSize, DrawFlags nFlags ) override; - void SetLeftMargin( sal_uInt16 n ); - void DisableSelectionOnFocus(); void EnableCursor( bool bEnable ); |