1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/collpaneg.cpp
3 // Purpose: wxGenericCollapsiblePane
4 // Author: Francesco Montorsi
8 // Copyright: (c) Francesco Montorsi
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
13 // ----------------------------------------------------------------------------
15 // ----------------------------------------------------------------------------
17 // For compilers that support precompilation, includes "wx.h".
18 #include "wx/wxprec.h"
26 #if wxUSE_COLLPANE && wxUSE_BUTTON && wxUSE_STATLINE
28 #include "wx/collpane.h"
31 #include "wx/toplevel.h"
32 #include "wx/button.h"
37 #include "wx/statline.h"
39 // ----------------------------------------------------------------------------
41 // ----------------------------------------------------------------------------
43 // ============================================================================
45 // ============================================================================
47 const char wxCollapsiblePaneNameStr
[] = "collapsiblePane";
49 //-----------------------------------------------------------------------------
50 // wxGenericCollapsiblePane
51 //-----------------------------------------------------------------------------
53 wxDEFINE_EVENT( wxEVT_COMMAND_COLLPANE_CHANGED
, wxCollapsiblePaneEvent
);
54 IMPLEMENT_DYNAMIC_CLASS(wxGenericCollapsiblePane
, wxControl
)
55 IMPLEMENT_DYNAMIC_CLASS(wxCollapsiblePaneEvent
, wxCommandEvent
)
57 BEGIN_EVENT_TABLE(wxGenericCollapsiblePane
, wxControl
)
58 EVT_BUTTON(wxID_ANY
, wxGenericCollapsiblePane::OnButton
)
59 EVT_SIZE(wxGenericCollapsiblePane::OnSize
)
61 WX_EVENT_TABLE_CONTROL_CONTAINER(wxGenericCollapsiblePane
)
64 WX_DELEGATE_TO_CONTROL_CONTAINER(wxGenericCollapsiblePane
, wxControl
)
66 void wxGenericCollapsiblePane::Init()
68 WX_INIT_CONTROL_CONTAINER();
76 bool wxGenericCollapsiblePane::Create(wxWindow
*parent
,
78 const wxString
& label
,
82 const wxValidator
& val
,
85 if ( !wxControl::Create(parent
, id
, pos
, size
, style
, val
, name
) )
90 // sizer containing the expand button and possibly a static line
91 m_sz
= new wxBoxSizer(wxHORIZONTAL
);
93 #if defined( __WXMAC__ ) && !defined(__WXUNIVERSAL__)
94 // on Mac we use the special disclosure triangle button
96 m_pButton
= new wxDisclosureTriangle(this, wxID_ANY
, GetBtnLabel());
99 // create children and lay them out using a wxBoxSizer
100 // (so that we automatically get RTL features)
101 m_pButton
= new wxButton(this, wxID_ANY
, GetBtnLabel(), wxPoint(0, 0),
102 wxDefaultSize
, wxBU_EXACTFIT
);
103 m_pStaticLine
= new wxStaticLine(this, wxID_ANY
);
105 // on other platforms we put the static line and the button horizontally
106 m_sz
->Add(m_pButton
, 0, wxLEFT
|wxTOP
|wxBOTTOM
, GetBorder());
107 m_sz
->Add(m_pStaticLine
, 1, wxALIGN_CENTER
|wxLEFT
|wxRIGHT
, GetBorder());
110 // FIXME: at least under wxCE and wxGTK1 the background is black if we don't do
111 // this, no idea why...
112 #if defined(__WXWINCE__) || defined(__WXGTK__)
113 SetBackgroundColour(parent
->GetBackgroundColour());
116 // do not set sz as our sizers since we handle the pane window without using sizers
117 m_pPane
= new wxPanel(this, wxID_ANY
, wxDefaultPosition
, wxDefaultSize
,
118 wxTAB_TRAVERSAL
|wxNO_BORDER
, wxT("wxCollapsiblePanePane") );
120 // start as collapsed:
126 wxGenericCollapsiblePane::~wxGenericCollapsiblePane()
129 m_pButton
->SetContainingSizer(NULL
);
132 m_pStaticLine
->SetContainingSizer(NULL
);
134 // our sizer is not deleted automatically since we didn't use SetSizer()!
138 wxSize
wxGenericCollapsiblePane::DoGetBestSize() const
140 // NB: do not use GetSize() but rather GetMinSize()
141 wxSize sz
= m_sz
->GetMinSize();
143 // when expanded, we need more vertical space
146 sz
.SetWidth(wxMax( sz
.GetWidth(), m_pPane
->GetBestSize().x
));
147 sz
.SetHeight(sz
.y
+ GetBorder() + m_pPane
->GetBestSize().y
);
153 wxString
wxGenericCollapsiblePane::GetBtnLabel() const
155 // on mac the triangle indicates the state, no string change
159 return m_strLabel
+ (IsCollapsed() ? wxT(" >>") : wxT(" <<"));
163 void wxGenericCollapsiblePane::OnStateChange(const wxSize
& sz
)
165 // minimal size has priority over the best size so set here our min size
169 if (this->HasFlag(wxCP_NO_TLW_RESIZE
))
171 // the user asked to explicitly handle the resizing itself...
176 wxTopLevelWindow
*top
=
177 wxDynamicCast(wxGetTopLevelParent(this), wxTopLevelWindow
);
181 wxSizer
*sizer
= top
->GetSizer();
185 const wxSize newBestSize
= sizer
->ComputeFittingClientSize(top
);
186 top
->SetMinClientSize(newBestSize
);
188 // we shouldn't attempt to resize a maximized window, whatever happens
189 if ( !top
->IsMaximized() )
190 top
->SetClientSize(newBestSize
);
193 void wxGenericCollapsiblePane::Collapse(bool collapse
)
196 if ( IsCollapsed() == collapse
)
200 m_pPane
->Show(!collapse
);
202 // update button label
203 #if defined( __WXMAC__ ) && !defined(__WXUNIVERSAL__)
204 m_pButton
->SetOpen( !collapse
);
206 // NB: this must be done after updating our "state"
207 m_pButton
->SetLabel(GetBtnLabel());
211 OnStateChange(GetBestSize());
214 void wxGenericCollapsiblePane::SetLabel(const wxString
&label
)
218 m_pButton
->SetLabel(GetBtnLabel());
220 m_pButton
->SetLabel(GetBtnLabel());
221 m_pButton
->SetInitialSize();
227 bool wxGenericCollapsiblePane::Layout()
230 if (!m_pButton
|| !m_pPane
|| !m_sz
)
231 return false; // we need to complete the creation first!
233 if (!m_pButton
|| !m_pStaticLine
|| !m_pPane
|| !m_sz
)
234 return false; // we need to complete the creation first!
237 wxSize
oursz(GetSize());
239 // move & resize the button and the static line
240 m_sz
->SetDimension(0, 0, oursz
.GetWidth(), m_sz
->GetMinSize().GetHeight());
245 // move & resize the container window
246 int yoffset
= m_sz
->GetSize().GetHeight() + GetBorder();
247 m_pPane
->SetSize(0, yoffset
,
248 oursz
.x
, oursz
.y
- yoffset
);
250 // this is very important to make the pane window layout show correctly
257 int wxGenericCollapsiblePane::GetBorder() const
259 #if defined( __WXMAC__ )
261 #elif defined(__WXMSW__)
263 return m_pButton
->ConvertDialogToPixels(wxSize(2, 0)).x
;
271 //-----------------------------------------------------------------------------
272 // wxGenericCollapsiblePane - event handlers
273 //-----------------------------------------------------------------------------
275 void wxGenericCollapsiblePane::OnButton(wxCommandEvent
& event
)
277 if ( event
.GetEventObject() != m_pButton
)
283 Collapse(!IsCollapsed());
285 // this change was generated by the user - send the event
286 wxCollapsiblePaneEvent
ev(this, GetId(), IsCollapsed());
287 GetEventHandler()->ProcessEvent(ev
);
290 void wxGenericCollapsiblePane::OnSize(wxSizeEvent
& WXUNUSED(event
))
292 #if 0 // for debug only
294 dc
.SetPen(*wxBLACK_PEN
);
295 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
296 dc
.DrawRectangle(wxPoint(0,0), GetSize());
297 dc
.SetPen(*wxRED_PEN
);
298 dc
.DrawRectangle(wxPoint(0,0), GetBestSize());
304 #endif // wxUSE_COLLPANE && wxUSE_BUTTON && wxUSE_STATLINE