]> git.saurik.com Git - wxWidgets.git/blame - include/wx/gtk/collpane.h
remove redundant test
[wxWidgets.git] / include / wx / gtk / collpane.h
CommitLineData
3c1f8cb1
VZ
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/gtk/collpane.h
3// Purpose: wxCollapsiblePane
4// Author: Francesco Montorsi
5// Modified by:
6// Created: 8/10/2006
7// RCS-ID: $Id$
8// Copyright: (c) Francesco Montorsi
9// Licence: wxWindows Licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_COLLAPSABLE_PANEL_H_GTK_
13#define _WX_COLLAPSABLE_PANEL_H_GTK_
14
15#include "wx/generic/collpaneg.h"
16
3c1f8cb1
VZ
17// ----------------------------------------------------------------------------
18// wxCollapsiblePane
19// ----------------------------------------------------------------------------
20
3c6fa826 21class WXDLLIMPEXP_CORE wxCollapsiblePane : public wxGenericCollapsiblePane
3c1f8cb1
VZ
22{
23public:
24 wxCollapsiblePane() { Init(); }
25
26 wxCollapsiblePane(wxWindow *parent,
27 wxWindowID winid,
28 const wxString& label,
29 const wxPoint& pos = wxDefaultPosition,
30 const wxSize& size = wxDefaultSize,
037c7b4c 31 long style = wxCP_DEFAULT_STYLE,
3c1f8cb1
VZ
32 const wxValidator& val = wxDefaultValidator,
33 const wxString& name = wxCollapsiblePaneNameStr)
34 {
35 Init();
36
37 Create(parent, winid, label, pos, size, style, val, name);
38 }
39
40 void Init()
41 {
42 m_bIgnoreNextChange = false;
43 }
44
45 bool Create(wxWindow *parent,
46 wxWindowID winid,
47 const wxString& label,
48 const wxPoint& pos = wxDefaultPosition,
49 const wxSize& size = wxDefaultSize,
037c7b4c 50 long style = wxCP_DEFAULT_STYLE,
3c1f8cb1
VZ
51 const wxValidator& val = wxDefaultValidator,
52 const wxString& name = wxCollapsiblePaneNameStr);
53
54public: // public API
55
56 wxSize DoGetBestSize() const;
57 void Collapse(bool collapse = true);
58 bool IsCollapsed() const;
59 void SetLabel(const wxString &str);
60
61 void OnSize(wxSizeEvent&);
62
63public: // used by GTK callbacks
64
65 bool m_bIgnoreNextChange;
66 wxSize m_szCollapsed;
67
68private:
69 DECLARE_DYNAMIC_CLASS(wxCollapsiblePane)
70 DECLARE_EVENT_TABLE()
71};
72
73
74#endif
75 // _WX_COLLAPSABLE_PANEL_H_GTK_