]>
Commit | Line | Data |
---|---|---|
3c1f8cb1 VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: src/gtk/collpane.cpp | |
3 | // Purpose: wxCollapsiblePane | |
4 | // Author: Francesco Montorsi | |
5 | // Modified By: | |
6 | // Created: 8/10/2006 | |
7 | // Id: $Id$ | |
8 | // Copyright: (c) Francesco Montorsi | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | ||
13 | // ---------------------------------------------------------------------------- | |
14 | // headers | |
15 | // ---------------------------------------------------------------------------- | |
16 | ||
17 | // For compilers that support precompilation, includes "wx.h". | |
18 | #include "wx/wxprec.h" | |
19 | ||
ff654490 | 20 | #if wxUSE_COLLPANE && !defined(__WXUNIVERSAL__) |
3c1f8cb1 VZ |
21 | |
22 | #include "wx/collpane.h" | |
0ccf0043 RR |
23 | #include "wx/toplevel.h" |
24 | #include "wx/sizer.h" | |
4c79f9c1 | 25 | #include "wx/panel.h" |
0ccf0043 | 26 | |
2cbf7014 | 27 | #include "wx/gtk/private.h" |
3c1f8cb1 | 28 | |
ff654490 VZ |
29 | // the lines below duplicate the same definitions in collpaneg.cpp, if we have |
30 | // another implementation of this class we should extract them to a common file | |
31 | ||
23318a53 | 32 | const char wxCollapsiblePaneNameStr[] = "collapsiblePane"; |
ff654490 | 33 | |
9b11752c | 34 | wxDEFINE_EVENT( wxEVT_COMMAND_COLLPANE_CHANGED, wxCollapsiblePaneEvent ); |
ff654490 VZ |
35 | |
36 | IMPLEMENT_DYNAMIC_CLASS(wxCollapsiblePaneEvent, wxCommandEvent) | |
37 | ||
3c1f8cb1 VZ |
38 | // ============================================================================ |
39 | // implementation | |
40 | // ============================================================================ | |
41 | ||
3c1f8cb1 VZ |
42 | //----------------------------------------------------------------------------- |
43 | // "notify::expanded" signal | |
44 | //----------------------------------------------------------------------------- | |
45 | ||
46 | extern "C" { | |
47 | ||
e4161a2a VZ |
48 | static void |
49 | gtk_collapsiblepane_expanded_callback(GObject * WXUNUSED(object), | |
50 | GParamSpec * WXUNUSED(param_spec), | |
51 | wxCollapsiblePane *p) | |
3c1f8cb1 | 52 | { |
b53aea81 | 53 | if (!p->IsCollapsed()) |
3c1f8cb1 | 54 | { |
b53aea81 RR |
55 | if (p->GetPane()->GetSizer()) |
56 | p->GetPane()->GetSizer()->Fit( p->GetPane() ); | |
3c1f8cb1 | 57 | } |
b53aea81 RR |
58 | } |
59 | } | |
3c1f8cb1 | 60 | |
b53aea81 RR |
61 | extern "C" { |
62 | static void | |
63 | gtk_collpane_map_unmap_callback( GtkWidget *WXUNUSED(pane), GdkEvent *WXUNUSED(event), wxCollapsiblePane* p ) | |
64 | { | |
912c3932 VZ |
65 | if (p->HasFlag(wxCP_NO_TLW_RESIZE)) |
66 | { | |
0514c6a2 RD |
67 | // fire an event |
68 | wxCollapsiblePaneEvent ev(p, p->GetId(), p->IsCollapsed()); | |
937013e0 | 69 | p->HandleWindowEvent(ev); |
74ab5f5b | 70 | |
5c234706 | 71 | // the user asked to explicitly handle the resizing itself... |
912c3932 VZ |
72 | return; |
73 | } | |
5c234706 | 74 | |
912c3932 VZ |
75 | wxTopLevelWindow * |
76 | top = wxDynamicCast(wxGetTopLevelParent(p), wxTopLevelWindow); | |
77 | if ( top && top->GetSizer() ) | |
78 | { | |
0ccf0043 | 79 | // 2) recalculate minimal size of the top window |
b53aea81 | 80 | wxSize sz = top->GetSizer()->CalcMin(); |
912c3932 | 81 | |
912c3932 VZ |
82 | if (top->m_mainWidget) |
83 | { | |
2e10110a VS |
84 | // 3) MAGIC HACK: if you ever used GtkExpander in a GTK+ program |
85 | // you know that this magic call is required to make it possible | |
86 | // to shrink the top level window in the expanded->collapsed | |
87 | // transition. This may be sometimes undesired but *is* | |
88 | // necessary and if you look carefully, all GTK+ programs using | |
89 | // GtkExpander perform this trick (e.g. the standard "open file" | |
90 | // dialog of GTK+>=2.4 is not resizeable when the expander is | |
91 | // collapsed!) | |
0ccf0043 RR |
92 | gtk_window_set_resizable (GTK_WINDOW (top->m_widget), p->IsExpanded()); |
93 | ||
cca410b3 | 94 | // 4) set size hints |
2e10110a | 95 | top->SetMinClientSize(sz); |
912c3932 | 96 | |
cca410b3 PC |
97 | // 5) set size |
98 | top->SetClientSize(sz); | |
912c3932 VZ |
99 | } |
100 | } | |
0ccf0043 | 101 | |
550d433e | 102 | if ( p->m_bIgnoreNextChange ) |
3c1f8cb1 VZ |
103 | { |
104 | // change generated programmatically - do not send an event! | |
105 | p->m_bIgnoreNextChange = false; | |
106 | return; | |
107 | } | |
108 | ||
109 | // fire an event | |
110 | wxCollapsiblePaneEvent ev(p, p->GetId(), p->IsCollapsed()); | |
937013e0 | 111 | p->HandleWindowEvent(ev); |
3c1f8cb1 VZ |
112 | } |
113 | } | |
114 | ||
b53aea81 | 115 | |
48200154 | 116 | void wxCollapsiblePane::AddChildGTK(wxWindowGTK* child) |
3c1f8cb1 | 117 | { |
48200154 | 118 | // should be used only once to insert the "pane" into the |
550d433e VZ |
119 | // GtkExpander widget. wxGenericCollapsiblePane::DoAddChild() will check if |
120 | // it has been called only once (and in any case we would get a warning | |
121 | // from the following call as GtkExpander is a GtkBin and can contain only | |
122 | // a single child!). | |
48200154 | 123 | gtk_container_add(GTK_CONTAINER(m_widget), child->m_widget); |
3c1f8cb1 VZ |
124 | } |
125 | ||
3c1f8cb1 VZ |
126 | //----------------------------------------------------------------------------- |
127 | // wxCollapsiblePane | |
128 | //----------------------------------------------------------------------------- | |
129 | ||
ff654490 | 130 | IMPLEMENT_DYNAMIC_CLASS(wxCollapsiblePane, wxControl) |
3c1f8cb1 | 131 | |
ff654490 | 132 | BEGIN_EVENT_TABLE(wxCollapsiblePane, wxCollapsiblePaneBase) |
3c1f8cb1 VZ |
133 | EVT_SIZE(wxCollapsiblePane::OnSize) |
134 | END_EVENT_TABLE() | |
135 | ||
550d433e VZ |
136 | bool wxCollapsiblePane::Create(wxWindow *parent, |
137 | wxWindowID id, | |
138 | const wxString& label, | |
139 | const wxPoint& pos, | |
140 | const wxSize& size, | |
141 | long style, | |
142 | const wxValidator& val, | |
143 | const wxString& name) | |
3c1f8cb1 | 144 | { |
3c1f8cb1 VZ |
145 | m_bIgnoreNextChange = false; |
146 | ||
550d433e VZ |
147 | if ( !PreCreation( parent, pos, size ) || |
148 | !wxControl::CreateBase(parent, id, pos, size, style, val, name) ) | |
3c1f8cb1 VZ |
149 | { |
150 | wxFAIL_MSG( wxT("wxCollapsiblePane creation failed") ); | |
151 | return false; | |
152 | } | |
153 | ||
ff928a27 VZ |
154 | m_widget = |
155 | gtk_expander_new_with_mnemonic(wxGTK_CONV(GTKConvertMnemonics(label))); | |
9ff9d30c | 156 | g_object_ref(m_widget); |
3c1f8cb1 | 157 | |
b53aea81 | 158 | g_signal_connect_after(m_widget, "notify::expanded", |
3c1f8cb1 | 159 | G_CALLBACK(gtk_collapsiblepane_expanded_callback), this); |
5c234706 | 160 | |
3c1f8cb1 | 161 | // this the real "pane" |
037c7b4c | 162 | m_pPane = new wxPanel(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, |
04443021 | 163 | wxTAB_TRAVERSAL|wxNO_BORDER, wxT("wxCollapsiblePanePane") ); |
3c1f8cb1 | 164 | |
10bd1f7d | 165 | gtk_widget_show(m_widget); |
3c1f8cb1 | 166 | m_parent->DoAddChild( this ); |
5c234706 | 167 | |
3c1f8cb1 | 168 | PostCreation(size); |
3c1f8cb1 | 169 | |
5c234706 VZ |
170 | // we should blend into our parent background |
171 | const wxColour bg = parent->GetBackgroundColour(); | |
172 | SetBackgroundColour(bg); | |
173 | m_pPane->SetBackgroundColour(bg); | |
174 | ||
3c1f8cb1 | 175 | // remember the size of this control when it's collapsed |
b53aea81 RR |
176 | GtkRequisition req; |
177 | req.width = 2; | |
178 | req.height = 2; | |
179 | (* GTK_WIDGET_CLASS( GTK_OBJECT_GET_CLASS(m_widget) )->size_request ) | |
180 | (m_widget, &req ); | |
5c234706 | 181 | |
b53aea81 | 182 | m_szCollapsed = wxSize( req.width, req.height ); |
5c234706 | 183 | |
b53aea81 RR |
184 | g_signal_connect (m_pPane->m_widget, "map_event", |
185 | G_CALLBACK (gtk_collpane_map_unmap_callback), this); | |
186 | g_signal_connect (m_pPane->m_widget, "unmap_event", | |
187 | G_CALLBACK (gtk_collpane_map_unmap_callback), this); | |
5c234706 | 188 | |
3c1f8cb1 | 189 | |
3c1f8cb1 VZ |
190 | return true; |
191 | } | |
192 | ||
193 | wxSize wxCollapsiblePane::DoGetBestSize() const | |
194 | { | |
ff654490 | 195 | wxASSERT_MSG( m_widget, wxT("DoGetBestSize called before creation") ); |
3c1f8cb1 | 196 | |
b53aea81 RR |
197 | wxSize sz = m_szCollapsed; |
198 | if ( IsExpanded() ) | |
199 | { | |
200 | wxSize panesz = GetPane()->GetBestSize(); | |
201 | sz.x = wxMax(sz.x, panesz.x); | |
202 | sz.y += gtk_expander_get_spacing(GTK_EXPANDER(m_widget)) + panesz.y; | |
203 | } | |
5c234706 | 204 | |
b53aea81 | 205 | return sz; |
3c1f8cb1 VZ |
206 | } |
207 | ||
69d32caf RR |
208 | GdkWindow *wxCollapsiblePane::GTKGetWindow(wxArrayGdkWindows& windows) const |
209 | { | |
210 | GtkWidget *label = gtk_expander_get_label_widget( GTK_EXPANDER(m_widget) ); | |
211 | windows.Add( label->window ); | |
212 | windows.Add( m_widget->window ); | |
5c234706 | 213 | |
69d32caf RR |
214 | return NULL; |
215 | } | |
216 | ||
3c1f8cb1 VZ |
217 | void wxCollapsiblePane::Collapse(bool collapse) |
218 | { | |
ff654490 VZ |
219 | // optimization |
220 | if (IsCollapsed() == collapse) | |
221 | return; | |
3c1f8cb1 | 222 | |
ff654490 VZ |
223 | // do not send event in next signal handler call |
224 | m_bIgnoreNextChange = true; | |
225 | gtk_expander_set_expanded(GTK_EXPANDER(m_widget), !collapse); | |
3c1f8cb1 VZ |
226 | } |
227 | ||
228 | bool wxCollapsiblePane::IsCollapsed() const | |
229 | { | |
ff654490 | 230 | return !gtk_expander_get_expanded(GTK_EXPANDER(m_widget)); |
3c1f8cb1 VZ |
231 | } |
232 | ||
233 | void wxCollapsiblePane::SetLabel(const wxString &str) | |
234 | { | |
ff654490 | 235 | gtk_expander_set_label(GTK_EXPANDER(m_widget), wxGTK_CONV(str)); |
912c3932 | 236 | |
ff654490 VZ |
237 | // FIXME: we need to update our collapsed width in some way but using GetBestSize() |
238 | // we may get the size of the control with the pane size summed up if we are expanded! | |
239 | //m_szCollapsed.x = GetBestSize().x; | |
3c1f8cb1 VZ |
240 | } |
241 | ||
242 | void wxCollapsiblePane::OnSize(wxSizeEvent &ev) | |
243 | { | |
244 | #if 0 // for debug only | |
245 | wxClientDC dc(this); | |
246 | dc.SetPen(*wxBLACK_PEN); | |
247 | dc.SetBrush(*wxTRANSPARENT_BRUSH); | |
248 | dc.DrawRectangle(wxPoint(0,0), GetSize()); | |
249 | dc.SetPen(*wxRED_PEN); | |
250 | dc.DrawRectangle(wxPoint(0,0), GetBestSize()); | |
251 | #endif | |
252 | ||
3c1f8cb1 | 253 | // here we need to resize the pane window otherwise, even if the GtkExpander container |
5c234706 | 254 | // is expanded or shrunk, the pane window won't be updated! |
912c3932 | 255 | m_pPane->SetSize(ev.GetSize().x, ev.GetSize().y - m_szCollapsed.y); |
3c1f8cb1 | 256 | |
5c234706 | 257 | // we need to explicitly call m_pPane->Layout() or else it won't correctly relayout |
3c1f8cb1 VZ |
258 | // (even if SetAutoLayout(true) has been called on it!) |
259 | m_pPane->Layout(); | |
260 | } | |
261 | ||
ff654490 | 262 | #endif // wxUSE_COLLPANE && !defined(__WXUNIVERSAL__) |
3c1f8cb1 | 263 |