X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a6d7030871f1376e727902c93f5537165a305e08..794bcc2dea743ac907b839f54e451847c9ea4b72:/include/wx/generic/sashwin.h diff --git a/include/wx/generic/sashwin.h b/include/wx/generic/sashwin.h index c1023929a2..d1dfdbfefb 100644 --- a/include/wx/generic/sashwin.h +++ b/include/wx/generic/sashwin.h @@ -8,7 +8,7 @@ // Created: 01/02/97 // RCS-ID: $Id$ // Copyright: (c) Julian Smart -// Licence: wxWindows license +// Licence: wxWindows license ///////////////////////////////////////////////////////////////////////////// #ifndef _WX_SASHWIN_H_G_ @@ -18,6 +18,8 @@ #pragma interface "sashwin.h" #endif +#if wxUSE_SASH + #include "wx/defs.h" #include "wx/window.h" #include "wx/string.h" @@ -52,7 +54,9 @@ public: * wxSashWindow flags */ -#define wxSW_3D 0x0004 +#define wxSW_NOBORDER 0x0000 +#define wxSW_3D 0x0010 +#define wxSW_BORDER 0x0020 /* * wxSashWindow allows any of its edges to have a sash which can be dragged @@ -74,23 +78,23 @@ public: // Normal constructor wxSashWindow(wxWindow *parent, wxWindowID id = -1, const wxPoint& pos = wxDefaultPosition, - const wxSize& size = wxDefaultSize, long style = wxSW_3D|wxCLIP_CHILDREN, const wxString& name = "splitter"); + const wxSize& size = wxDefaultSize, long style = wxSW_3D|wxCLIP_CHILDREN, const wxString& name = "sashWindow"); ~wxSashWindow(); // Set whether there's a sash in this position void SetSashVisible(wxSashEdgePosition edge, bool sash); // Get whether there's a sash in this position - inline bool GetSashVisible(wxSashEdgePosition edge) { return m_sashes[edge].m_show; } + inline bool GetSashVisible(wxSashEdgePosition edge) const { return m_sashes[edge].m_show; } // Set whether there's a border in this position inline void SetSashBorder(wxSashEdgePosition edge, bool border) { m_sashes[edge].m_border = border; } // Get whether there's a border in this position - inline bool HasBorder(wxSashEdgePosition edge) { return m_sashes[edge].m_border; } + inline bool HasBorder(wxSashEdgePosition edge) const { return m_sashes[edge].m_border; } // Get border size - inline int GetEdgeMargin(wxSashEdgePosition edge) { return m_sashes[edge].m_margin; } + inline int GetEdgeMargin(wxSashEdgePosition edge) const { return m_sashes[edge].m_margin; } // Sets the default sash border size inline void SetDefaultBorderSize(int width) { m_borderSize = width; } @@ -210,5 +214,7 @@ typedef void (wxEvtHandler::*wxSashEventFunction)(wxSashEvent&); #define EVT_SASH_DRAGGED(id, fn) { wxEVT_SASH_DRAGGED, id, -1, (wxObjectEventFunction) (wxEventFunction) (wxSashEventFunction) & fn, NULL }, #define EVT_SASH_DRAGGED_RANGE(id1, id2, fn) { wxEVT_SASH_DRAGGED, id1, id2, (wxObjectEventFunction) (wxEventFunction) (wxSashEventFunction) & fn, NULL }, +#endif // wxUSE_SASH + #endif // _WX_SASHWIN_H_G_