added missing getters to wxAuiToolBar (#10182)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59854 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -249,8 +249,11 @@ public:
|
|||||||
|
|
||||||
virtual wxAuiToolBarArt* Clone() = 0;
|
virtual wxAuiToolBarArt* Clone() = 0;
|
||||||
virtual void SetFlags(unsigned int flags) = 0;
|
virtual void SetFlags(unsigned int flags) = 0;
|
||||||
|
virtual unsigned int GetFlags() = 0;
|
||||||
virtual void SetFont(const wxFont& font) = 0;
|
virtual void SetFont(const wxFont& font) = 0;
|
||||||
|
virtual wxFont GetFont() = 0;
|
||||||
virtual void SetTextOrientation(int orientation) = 0;
|
virtual void SetTextOrientation(int orientation) = 0;
|
||||||
|
virtual int GetTextOrientation() = 0;
|
||||||
|
|
||||||
virtual void DrawBackground(
|
virtual void DrawBackground(
|
||||||
wxDC& dc,
|
wxDC& dc,
|
||||||
@@ -327,8 +330,11 @@ public:
|
|||||||
|
|
||||||
virtual wxAuiToolBarArt* Clone();
|
virtual wxAuiToolBarArt* Clone();
|
||||||
virtual void SetFlags(unsigned int flags);
|
virtual void SetFlags(unsigned int flags);
|
||||||
|
virtual unsigned int GetFlags();
|
||||||
virtual void SetFont(const wxFont& font);
|
virtual void SetFont(const wxFont& font);
|
||||||
|
virtual wxFont GetFont();
|
||||||
virtual void SetTextOrientation(int orientation);
|
virtual void SetTextOrientation(int orientation);
|
||||||
|
virtual int GetTextOrientation();
|
||||||
|
|
||||||
virtual void DrawBackground(
|
virtual void DrawBackground(
|
||||||
wxDC& dc,
|
wxDC& dc,
|
||||||
|
@@ -227,6 +227,21 @@ void wxAuiDefaultToolBarArt::SetTextOrientation(int orientation)
|
|||||||
m_text_orientation = orientation;
|
m_text_orientation = orientation;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
unsigned int wxAuiDefaultToolBarArt::GetFlags()
|
||||||
|
{
|
||||||
|
return m_flags;
|
||||||
|
}
|
||||||
|
|
||||||
|
wxFont wxAuiDefaultToolBarArt::GetFont()
|
||||||
|
{
|
||||||
|
return m_font;
|
||||||
|
}
|
||||||
|
|
||||||
|
int wxAuiDefaultToolBarArt::GetTextOrientation()
|
||||||
|
{
|
||||||
|
return m_text_orientation;
|
||||||
|
}
|
||||||
|
|
||||||
void wxAuiDefaultToolBarArt::DrawBackground(
|
void wxAuiDefaultToolBarArt::DrawBackground(
|
||||||
wxDC& dc,
|
wxDC& dc,
|
||||||
wxWindow* WXUNUSED(wnd),
|
wxWindow* WXUNUSED(wnd),
|
||||||
|
Reference in New Issue
Block a user