]>
Commit | Line | Data |
---|---|---|
c801d85f | 1 | ///////////////////////////////////////////////////////////////////////////// |
3cbab641 | 2 | // Name: src/gtk1/choice.cpp |
c801d85f KB |
3 | // Purpose: |
4 | // Author: Robert Roebling | |
dbf858b5 | 5 | // Id: $Id$ |
01111366 | 6 | // Copyright: (c) 1998 Robert Roebling |
65571936 | 7 | // Licence: wxWindows licence |
c801d85f KB |
8 | ///////////////////////////////////////////////////////////////////////////// |
9 | ||
8228b893 | 10 | #include "wx/wxprec.h" |
c801d85f | 11 | |
ce4169a4 RR |
12 | #if wxUSE_CHOICE |
13 | ||
1e6feb95 | 14 | #include "wx/choice.h" |
aaa6d89a WS |
15 | |
16 | #ifndef WX_PRECOMP | |
17 | #include "wx/arrstr.h" | |
18 | #endif | |
1e6feb95 | 19 | |
3cbab641 | 20 | #include "wx/gtk1/private.h" |
83624f79 | 21 | |
acfd422a RR |
22 | //----------------------------------------------------------------------------- |
23 | // idle system | |
24 | //----------------------------------------------------------------------------- | |
25 | ||
26 | extern void wxapp_install_idle_handler(); | |
27 | extern bool g_isIdle; | |
28 | ||
66bd6b93 RR |
29 | //----------------------------------------------------------------------------- |
30 | // data | |
31 | //----------------------------------------------------------------------------- | |
32 | ||
33 | extern bool g_blockEventsOnDrag; | |
34 | ||
c801d85f | 35 | //----------------------------------------------------------------------------- |
e1e955e1 | 36 | // "activate" |
c801d85f KB |
37 | //----------------------------------------------------------------------------- |
38 | ||
865bb325 | 39 | extern "C" { |
66bd6b93 | 40 | static void gtk_choice_clicked_callback( GtkWidget *WXUNUSED(widget), wxChoice *choice ) |
c801d85f | 41 | { |
e01c8145 | 42 | if (g_isIdle) |
4dcaf11a | 43 | wxapp_install_idle_handler(); |
acfd422a | 44 | |
a2053b27 | 45 | if (!choice->m_hasVMT) return; |
29006414 | 46 | |
acfd422a | 47 | if (g_blockEventsOnDrag) return; |
29006414 | 48 | |
5f3565a2 RR |
49 | int selection = wxNOT_FOUND; |
50 | ||
5f3565a2 RR |
51 | GtkMenuShell *menu_shell = GTK_MENU_SHELL( gtk_option_menu_get_menu( GTK_OPTION_MENU(choice->GetHandle()) ) ); |
52 | int count = 0; | |
53 | ||
54 | GList *child = menu_shell->children; | |
55 | while (child) | |
56 | { | |
57 | GtkBin *bin = GTK_BIN( child->data ); | |
58 | if (!bin->child) | |
59 | { | |
914ca1d8 | 60 | selection = count; |
5f3565a2 RR |
61 | break; |
62 | } | |
63 | child = child->next; | |
64 | count++; | |
65 | } | |
3cbab641 | 66 | |
5f3565a2 RR |
67 | choice->m_selection_hack = selection; |
68 | ||
acfd422a | 69 | wxCommandEvent event(wxEVT_COMMAND_CHOICE_SELECTED, choice->GetId() ); |
6c8a980f VZ |
70 | int n = choice->GetSelection(); |
71 | ||
72 | event.SetInt( n ); | |
acfd422a RR |
73 | event.SetString( choice->GetStringSelection() ); |
74 | event.SetEventObject(choice); | |
6c8a980f VZ |
75 | |
76 | if ( choice->HasClientObjectData() ) | |
77 | event.SetClientObject( choice->GetClientObject(n) ); | |
78 | else if ( choice->HasClientUntypedData() ) | |
79 | event.SetClientData( choice->GetClientData(n) ); | |
80 | ||
acfd422a | 81 | choice->GetEventHandler()->ProcessEvent(event); |
6de97a3b | 82 | } |
865bb325 | 83 | } |
c801d85f | 84 | |
e1e955e1 RR |
85 | //----------------------------------------------------------------------------- |
86 | // wxChoice | |
c801d85f KB |
87 | //----------------------------------------------------------------------------- |
88 | ||
7f4dc78d | 89 | IMPLEMENT_DYNAMIC_CLASS(wxChoice,wxControl) |
c801d85f | 90 | |
fd0eed64 | 91 | wxChoice::wxChoice() |
c801d85f | 92 | { |
e01c8145 | 93 | m_strings = (wxSortedArrayString *)NULL; |
6de97a3b | 94 | } |
c801d85f | 95 | |
584ad2a3 MB |
96 | bool wxChoice::Create( wxWindow *parent, wxWindowID id, |
97 | const wxPoint &pos, const wxSize &size, | |
98 | const wxArrayString& choices, | |
99 | long style, const wxValidator& validator, | |
100 | const wxString &name ) | |
101 | { | |
102 | wxCArrayString chs(choices); | |
103 | ||
104 | return Create( parent, id, pos, size, chs.GetCount(), chs.GetStrings(), | |
105 | style, validator, name ); | |
106 | } | |
107 | ||
debe6624 | 108 | bool wxChoice::Create( wxWindow *parent, wxWindowID id, |
fd0eed64 RR |
109 | const wxPoint &pos, const wxSize &size, |
110 | int n, const wxString choices[], | |
111 | long style, const wxValidator& validator, const wxString &name ) | |
c801d85f | 112 | { |
0a164d4c | 113 | m_needParent = true; |
034be888 | 114 | #if (GTK_MINOR_VERSION > 0) |
0a164d4c | 115 | m_acceptsFocus = true; |
034be888 | 116 | #endif |
29006414 | 117 | |
4dcaf11a RR |
118 | if (!PreCreation( parent, pos, size ) || |
119 | !CreateBase( parent, id, pos, size, style, validator, name )) | |
120 | { | |
223d09f6 | 121 | wxFAIL_MSG( wxT("wxChoice creation failed") ); |
0a164d4c | 122 | return false; |
4dcaf11a | 123 | } |
6de97a3b | 124 | |
fd0eed64 | 125 | m_widget = gtk_option_menu_new(); |
29006414 | 126 | |
e01c8145 VZ |
127 | if ( style & wxCB_SORT ) |
128 | { | |
129 | // if our m_strings != NULL, DoAppend() will check for it and insert | |
130 | // items in the correct order | |
131 | m_strings = new wxSortedArrayString; | |
132 | } | |
133 | ||
16edee16 RR |
134 | // begin with no selection |
135 | m_selection_hack = wxNOT_FOUND; | |
136 | ||
fd0eed64 | 137 | GtkWidget *menu = gtk_menu_new(); |
29006414 | 138 | |
3b69b47c | 139 | for (unsigned int i = 0; i < (unsigned int)n; i++) |
fd0eed64 | 140 | { |
243dbf1a | 141 | GtkAddHelper(menu, i, choices[i]); |
fd0eed64 | 142 | } |
e01c8145 | 143 | |
fd0eed64 | 144 | gtk_option_menu_set_menu( GTK_OPTION_MENU(m_widget), menu ); |
29006414 | 145 | |
f03fc89f | 146 | m_parent->DoAddChild( this ); |
29006414 | 147 | |
abdeb9e7 | 148 | PostCreation(size); |
170acdc9 | 149 | SetInitialSize(size); // need this too because this is a wxControlWithItems |
29006414 | 150 | |
0a164d4c | 151 | return true; |
6de97a3b | 152 | } |
29006414 | 153 | |
fd0eed64 RR |
154 | wxChoice::~wxChoice() |
155 | { | |
f5e27805 | 156 | Clear(); |
e01c8145 VZ |
157 | |
158 | delete m_strings; | |
fd0eed64 RR |
159 | } |
160 | ||
9abe166a | 161 | int wxChoice::DoAppend( const wxString &item ) |
fd0eed64 | 162 | { |
2ee3ee1b | 163 | wxCHECK_MSG( m_widget != NULL, -1, wxT("invalid choice control") ); |
29006414 | 164 | |
fd0eed64 | 165 | GtkWidget *menu = gtk_option_menu_get_menu( GTK_OPTION_MENU(m_widget) ); |
29006414 | 166 | |
243dbf1a VZ |
167 | return GtkAddHelper(menu, GetCount(), item); |
168 | } | |
169 | ||
aa61d352 | 170 | int wxChoice::DoInsert( const wxString &item, unsigned int pos ) |
243dbf1a VZ |
171 | { |
172 | wxCHECK_MSG( m_widget != NULL, -1, wxT("invalid choice control") ); | |
8228b893 | 173 | wxCHECK_MSG( IsValidInsert(pos), -1, wxT("invalid index")); |
243dbf1a | 174 | |
aa61d352 | 175 | if (pos == GetCount()) |
243dbf1a VZ |
176 | return DoAppend(item); |
177 | ||
178 | GtkWidget *menu = gtk_option_menu_get_menu( GTK_OPTION_MENU(m_widget) ); | |
179 | ||
16edee16 | 180 | // if the item to insert is at or before the selection, and the selection is valid |
aa61d352 | 181 | if (((int)pos <= m_selection_hack) && (m_selection_hack != wxNOT_FOUND)) |
16edee16 RR |
182 | { |
183 | // move the selection forward one | |
184 | m_selection_hack++; | |
185 | } | |
186 | ||
aa61d352 | 187 | return GtkAddHelper(menu, pos, item); |
fd0eed64 | 188 | } |
f96aa4d9 | 189 | |
aa61d352 | 190 | void wxChoice::DoSetItemClientData(unsigned int n, void* clientData) |
fd0eed64 | 191 | { |
2ee3ee1b | 192 | wxCHECK_RET( m_widget != NULL, wxT("invalid choice control") ); |
29006414 | 193 | |
222ed1d6 | 194 | wxList::compatibility_iterator node = m_clientList.Item( n ); |
6c8a980f | 195 | wxCHECK_RET( node, wxT("invalid index in wxChoice::DoSetItemClientData") ); |
29006414 | 196 | |
f5e27805 | 197 | node->SetData( (wxObject*) clientData ); |
fd0eed64 RR |
198 | } |
199 | ||
aa61d352 | 200 | void* wxChoice::DoGetItemClientData(unsigned int n) const |
fd0eed64 | 201 | { |
2ee3ee1b | 202 | wxCHECK_MSG( m_widget != NULL, NULL, wxT("invalid choice control") ); |
29006414 | 203 | |
222ed1d6 | 204 | wxList::compatibility_iterator node = m_clientList.Item( n ); |
6c8a980f | 205 | wxCHECK_MSG( node, NULL, wxT("invalid index in wxChoice::DoGetItemClientData") ); |
29006414 | 206 | |
b1d4dd7a | 207 | return node->GetData(); |
6de97a3b | 208 | } |
fd0eed64 | 209 | |
aa61d352 | 210 | void wxChoice::DoSetItemClientObject(unsigned int n, wxClientData* clientData) |
fd0eed64 | 211 | { |
2ee3ee1b | 212 | wxCHECK_RET( m_widget != NULL, wxT("invalid choice control") ); |
29006414 | 213 | |
222ed1d6 | 214 | wxList::compatibility_iterator node = m_clientList.Item( n ); |
6c8a980f | 215 | wxCHECK_RET( node, wxT("invalid index in wxChoice::DoSetItemClientObject") ); |
29006414 | 216 | |
edc973b1 | 217 | // wxItemContainer already deletes data for us |
29006414 | 218 | |
fd0eed64 RR |
219 | node->SetData( (wxObject*) clientData ); |
220 | } | |
221 | ||
aa61d352 | 222 | wxClientData* wxChoice::DoGetItemClientObject(unsigned int n) const |
fd0eed64 | 223 | { |
2ee3ee1b | 224 | wxCHECK_MSG( m_widget != NULL, (wxClientData*) NULL, wxT("invalid choice control") ); |
29006414 | 225 | |
222ed1d6 | 226 | wxList::compatibility_iterator node = m_clientList.Item( n ); |
9abe166a | 227 | wxCHECK_MSG( node, (wxClientData *)NULL, |
6c8a980f | 228 | wxT("invalid index in wxChoice::DoGetItemClientObject") ); |
29006414 | 229 | |
b1d4dd7a | 230 | return (wxClientData*) node->GetData(); |
fd0eed64 | 231 | } |
29006414 | 232 | |
fd0eed64 | 233 | void wxChoice::Clear() |
c801d85f | 234 | { |
223d09f6 | 235 | wxCHECK_RET( m_widget != NULL, wxT("invalid choice") ); |
f96aa4d9 | 236 | |
fd0eed64 RR |
237 | gtk_option_menu_remove_menu( GTK_OPTION_MENU(m_widget) ); |
238 | GtkWidget *menu = gtk_menu_new(); | |
239 | gtk_option_menu_set_menu( GTK_OPTION_MENU(m_widget), menu ); | |
29006414 | 240 | |
6c8a980f VZ |
241 | if ( HasClientObjectData() ) |
242 | { | |
243 | // destroy the data (due to Robert's idea of using wxList<wxObject> | |
244 | // and not wxList<wxClientData> we can't just say | |
0a164d4c | 245 | // m_clientList.DeleteContents(true) - this would crash! |
222ed1d6 | 246 | wxList::compatibility_iterator node = m_clientList.GetFirst(); |
6c8a980f VZ |
247 | while ( node ) |
248 | { | |
b1d4dd7a RL |
249 | delete (wxClientData *)node->GetData(); |
250 | node = node->GetNext(); | |
6c8a980f VZ |
251 | } |
252 | } | |
d6538e2c | 253 | m_clientList.Clear(); |
2ee3ee1b VZ |
254 | |
255 | if ( m_strings ) | |
256 | m_strings->Clear(); | |
16edee16 RR |
257 | |
258 | // begin with no selection | |
259 | m_selection_hack = wxNOT_FOUND; | |
6de97a3b | 260 | } |
c801d85f | 261 | |
aa61d352 | 262 | void wxChoice::Delete(unsigned int n) |
2f6407b9 | 263 | { |
645420d8 VZ |
264 | wxCHECK_RET( m_widget != NULL, wxT("invalid choice") ); |
265 | ||
266 | // VZ: apparently GTK+ doesn't have a built-in function to do it (not even | |
e2380ce1 | 267 | // in 2.0), hence this dumb implementation -- still better than nothing |
aa61d352 VZ |
268 | unsigned int i; |
269 | unsigned int count = GetCount(); | |
645420d8 | 270 | |
8228b893 | 271 | wxCHECK_RET( IsValid(n), _T("invalid index in wxChoice::Delete") ); |
645420d8 | 272 | |
16edee16 | 273 | // if the item to delete is before the selection, and the selection is valid |
aa61d352 | 274 | if (((int)n < m_selection_hack) && (m_selection_hack != wxNOT_FOUND)) |
16edee16 RR |
275 | { |
276 | // move the selection back one | |
277 | m_selection_hack--; | |
278 | } | |
aa61d352 | 279 | else if ((int)n == m_selection_hack) |
16edee16 RR |
280 | { |
281 | // invalidate the selection | |
282 | m_selection_hack = wxNOT_FOUND; | |
283 | } | |
284 | ||
e2380ce1 VZ |
285 | const bool hasClientData = m_clientDataItemsType != wxClientData_None; |
286 | const bool hasObjectData = m_clientDataItemsType == wxClientData_Object; | |
287 | ||
288 | wxList::compatibility_iterator node = m_clientList.GetFirst(); | |
289 | ||
645420d8 | 290 | wxArrayString items; |
e2380ce1 | 291 | wxArrayPtrVoid itemsData; |
645420d8 | 292 | items.Alloc(count); |
aa61d352 | 293 | for ( i = 0; i < count; i++ ) |
645420d8 VZ |
294 | { |
295 | if ( i != n ) | |
e2380ce1 | 296 | { |
645420d8 | 297 | items.Add(GetString(i)); |
e2380ce1 VZ |
298 | if ( hasClientData ) |
299 | { | |
300 | // also save the client data | |
301 | itemsData.Add(node->GetData()); | |
302 | } | |
303 | } | |
304 | else // need to delete the client object too | |
305 | { | |
306 | if ( hasObjectData ) | |
307 | { | |
308 | delete (wxClientData *)node->GetData(); | |
309 | } | |
310 | } | |
311 | ||
312 | if ( hasClientData ) | |
313 | { | |
314 | node = node->GetNext(); | |
315 | } | |
316 | } | |
317 | ||
318 | if ( hasObjectData ) | |
319 | { | |
320 | // prevent Clear() from destroying all client data | |
321 | m_clientDataItemsType = wxClientData_None; | |
645420d8 VZ |
322 | } |
323 | ||
324 | Clear(); | |
325 | ||
aa61d352 | 326 | for ( i = 0; i < count - 1; i++ ) |
645420d8 VZ |
327 | { |
328 | Append(items[i]); | |
e2380ce1 VZ |
329 | |
330 | if ( hasObjectData ) | |
331 | SetClientObject(i, (wxClientData *)itemsData[i]); | |
332 | else if ( hasClientData ) | |
f6bc4102 | 333 | SetClientData(i, itemsData[i]); |
645420d8 | 334 | } |
2f6407b9 RR |
335 | } |
336 | ||
11e62fe6 | 337 | int wxChoice::FindString( const wxString &string, bool bCase ) const |
c801d85f | 338 | { |
11e62fe6 | 339 | wxCHECK_MSG( m_widget != NULL, wxNOT_FOUND, wxT("invalid choice") ); |
fd0eed64 RR |
340 | |
341 | // If you read this code once and you think you understand | |
342 | // it, then you are very wrong. Robert Roebling. | |
29006414 | 343 | |
fd0eed64 RR |
344 | GtkMenuShell *menu_shell = GTK_MENU_SHELL( gtk_option_menu_get_menu( GTK_OPTION_MENU(m_widget) ) ); |
345 | int count = 0; | |
346 | GList *child = menu_shell->children; | |
347 | while (child) | |
348 | { | |
349 | GtkBin *bin = GTK_BIN( child->data ); | |
350 | GtkLabel *label = (GtkLabel *) NULL; | |
9e691f46 VZ |
351 | if (bin->child) |
352 | label = GTK_LABEL(bin->child); | |
353 | if (!label) | |
354 | label = GTK_LABEL( BUTTON_CHILD(m_widget) ); | |
29006414 | 355 | |
223d09f6 | 356 | wxASSERT_MSG( label != NULL , wxT("wxChoice: invalid label") ); |
e2380ce1 | 357 | |
2e1d7104 | 358 | wxString tmp( label->label ); |
3cbab641 MR |
359 | |
360 | if (string.IsSameAs( tmp, bCase )) | |
9e691f46 | 361 | return count; |
29006414 | 362 | |
9e691f46 VZ |
363 | child = child->next; |
364 | count++; | |
fd0eed64 | 365 | } |
29006414 | 366 | |
0a164d4c | 367 | return wxNOT_FOUND; |
6de97a3b | 368 | } |
c801d85f | 369 | |
9abe166a | 370 | int wxChoice::GetSelection() const |
c801d85f | 371 | { |
11e62fe6 | 372 | wxCHECK_MSG( m_widget != NULL, wxNOT_FOUND, wxT("invalid choice") ); |
e2380ce1 | 373 | |
16edee16 RR |
374 | return m_selection_hack; |
375 | ||
6de97a3b | 376 | } |
c801d85f | 377 | |
aa61d352 | 378 | void wxChoice::SetString(unsigned int n, const wxString& str ) |
6c8a980f VZ |
379 | { |
380 | wxCHECK_RET( m_widget != NULL, wxT("invalid choice") ); | |
381 | ||
34b5e560 | 382 | GtkMenuShell *menu_shell = GTK_MENU_SHELL( gtk_option_menu_get_menu( GTK_OPTION_MENU(m_widget) ) ); |
aa61d352 | 383 | unsigned int count = 0; |
34b5e560 RR |
384 | GList *child = menu_shell->children; |
385 | while (child) | |
386 | { | |
387 | GtkBin *bin = GTK_BIN( child->data ); | |
388 | if (count == n) | |
389 | { | |
390 | GtkLabel *label = (GtkLabel *) NULL; | |
391 | if (bin->child) | |
392 | label = GTK_LABEL(bin->child); | |
393 | if (!label) | |
394 | label = GTK_LABEL( BUTTON_CHILD(m_widget) ); | |
395 | ||
396 | wxASSERT_MSG( label != NULL , wxT("wxChoice: invalid label") ); | |
397 | ||
0a164d4c WS |
398 | gtk_label_set_text( label, wxGTK_CONV( str ) ); |
399 | ||
34b5e560 RR |
400 | return; |
401 | } | |
402 | child = child->next; | |
403 | count++; | |
404 | } | |
6c8a980f VZ |
405 | } |
406 | ||
aa61d352 | 407 | wxString wxChoice::GetString(unsigned int n) const |
c801d85f | 408 | { |
0a164d4c | 409 | wxCHECK_MSG( m_widget != NULL, wxEmptyString, wxT("invalid choice") ); |
fd0eed64 RR |
410 | |
411 | GtkMenuShell *menu_shell = GTK_MENU_SHELL( gtk_option_menu_get_menu( GTK_OPTION_MENU(m_widget) ) ); | |
aa61d352 | 412 | unsigned int count = 0; |
fd0eed64 RR |
413 | GList *child = menu_shell->children; |
414 | while (child) | |
c801d85f | 415 | { |
fd0eed64 RR |
416 | GtkBin *bin = GTK_BIN( child->data ); |
417 | if (count == n) | |
418 | { | |
419 | GtkLabel *label = (GtkLabel *) NULL; | |
9e691f46 VZ |
420 | if (bin->child) |
421 | label = GTK_LABEL(bin->child); | |
422 | if (!label) | |
423 | label = GTK_LABEL( BUTTON_CHILD(m_widget) ); | |
29006414 | 424 | |
223d09f6 | 425 | wxASSERT_MSG( label != NULL , wxT("wxChoice: invalid label") ); |
29006414 | 426 | |
2e1d7104 | 427 | return wxString( label->label ); |
fd0eed64 RR |
428 | } |
429 | child = child->next; | |
430 | count++; | |
6de97a3b | 431 | } |
29006414 | 432 | |
223d09f6 | 433 | wxFAIL_MSG( wxT("wxChoice: invalid index in GetString()") ); |
29006414 | 434 | |
0a164d4c | 435 | return wxEmptyString; |
6de97a3b | 436 | } |
c801d85f | 437 | |
aa61d352 | 438 | unsigned int wxChoice::GetCount() const |
c801d85f | 439 | { |
223d09f6 | 440 | wxCHECK_MSG( m_widget != NULL, 0, wxT("invalid choice") ); |
fd0eed64 RR |
441 | |
442 | GtkMenuShell *menu_shell = GTK_MENU_SHELL( gtk_option_menu_get_menu( GTK_OPTION_MENU(m_widget) ) ); | |
aa61d352 | 443 | unsigned int count = 0; |
fd0eed64 RR |
444 | GList *child = menu_shell->children; |
445 | while (child) | |
446 | { | |
447 | count++; | |
448 | child = child->next; | |
449 | } | |
450 | return count; | |
6de97a3b | 451 | } |
c801d85f | 452 | |
debe6624 | 453 | void wxChoice::SetSelection( int n ) |
c801d85f | 454 | { |
223d09f6 | 455 | wxCHECK_RET( m_widget != NULL, wxT("invalid choice") ); |
f96aa4d9 | 456 | |
fd0eed64 RR |
457 | int tmp = n; |
458 | gtk_option_menu_set_history( GTK_OPTION_MENU(m_widget), (gint)tmp ); | |
16edee16 RR |
459 | |
460 | // set the local selection variable manually | |
aa61d352 | 461 | if (IsValid((unsigned int)n)) |
16edee16 RR |
462 | { |
463 | // a valid selection has been made | |
464 | m_selection_hack = n; | |
465 | } | |
466 | else if ((n == wxNOT_FOUND) || (GetCount() == 0)) | |
467 | { | |
468 | // invalidates the selection if there are no items | |
469 | // or if it is specifically set to wxNOT_FOUND | |
470 | m_selection_hack = wxNOT_FOUND; | |
471 | } | |
472 | else | |
473 | { | |
474 | // this selects the first item by default if the selection is out of bounds | |
475 | m_selection_hack = 0; | |
476 | } | |
6de97a3b | 477 | } |
c801d85f | 478 | |
f40fdaa3 | 479 | void wxChoice::DoApplyWidgetStyle(GtkRcStyle *style) |
868a2826 | 480 | { |
fd0eed64 | 481 | GtkMenuShell *menu_shell = GTK_MENU_SHELL( gtk_option_menu_get_menu( GTK_OPTION_MENU(m_widget) ) ); |
29006414 | 482 | |
f40fdaa3 VS |
483 | gtk_widget_modify_style( m_widget, style ); |
484 | gtk_widget_modify_style( GTK_WIDGET( menu_shell ), style ); | |
29006414 | 485 | |
fd0eed64 RR |
486 | GList *child = menu_shell->children; |
487 | while (child) | |
488 | { | |
f40fdaa3 | 489 | gtk_widget_modify_style( GTK_WIDGET( child->data ), style ); |
29006414 | 490 | |
fd0eed64 RR |
491 | GtkBin *bin = GTK_BIN( child->data ); |
492 | GtkWidget *label = (GtkWidget *) NULL; | |
9e691f46 VZ |
493 | if (bin->child) |
494 | label = bin->child; | |
495 | if (!label) | |
496 | label = BUTTON_CHILD(m_widget); | |
29006414 | 497 | |
f40fdaa3 | 498 | gtk_widget_modify_style( label, style ); |
29006414 | 499 | |
fd0eed64 RR |
500 | child = child->next; |
501 | } | |
f96aa4d9 RR |
502 | } |
503 | ||
aa61d352 | 504 | int wxChoice::GtkAddHelper(GtkWidget *menu, unsigned int pos, const wxString& item) |
e01c8145 | 505 | { |
8228b893 | 506 | wxCHECK_MSG(pos<=m_clientList.GetCount(), -1, wxT("invalid index")); |
243dbf1a | 507 | |
fab591c5 | 508 | GtkWidget *menu_item = gtk_menu_item_new_with_label( wxGTK_CONV( item ) ); |
e01c8145 VZ |
509 | |
510 | size_t index; | |
511 | if ( m_strings ) | |
512 | { | |
513 | // sorted control, need to insert at the correct index | |
514 | index = m_strings->Add(item); | |
515 | ||
516 | gtk_menu_insert( GTK_MENU(menu), menu_item, index ); | |
517 | ||
518 | if ( index ) | |
519 | { | |
520 | m_clientList.Insert( m_clientList.Item(index - 1), | |
521 | (wxObject*) NULL ); | |
522 | } | |
523 | else | |
524 | { | |
6c8a980f | 525 | m_clientList.Insert( (wxObject*) NULL ); |
e01c8145 VZ |
526 | } |
527 | } | |
528 | else | |
529 | { | |
243dbf1a VZ |
530 | // don't call wxChoice::GetCount() from here because it doesn't work |
531 | // if we're called from ctor (and GtkMenuShell is still NULL) | |
532 | ||
e01c8145 | 533 | // normal control, just append |
035b6a79 | 534 | if (pos == m_clientList.GetCount()) |
243dbf1a | 535 | { |
0a164d4c WS |
536 | gtk_menu_append( GTK_MENU(menu), menu_item ); |
537 | m_clientList.Append( (wxObject*) NULL ); | |
538 | index = m_clientList.GetCount() - 1; | |
243dbf1a VZ |
539 | } |
540 | else | |
541 | { | |
542 | gtk_menu_insert( GTK_MENU(menu), menu_item, pos ); | |
543 | m_clientList.Insert( pos, (wxObject*) NULL ); | |
544 | index = pos; | |
545 | } | |
e01c8145 VZ |
546 | } |
547 | ||
548 | if (GTK_WIDGET_REALIZED(m_widget)) | |
549 | { | |
550 | gtk_widget_realize( menu_item ); | |
551 | gtk_widget_realize( GTK_BIN(menu_item)->child ); | |
552 | ||
f40fdaa3 | 553 | ApplyWidgetStyle(); |
e01c8145 VZ |
554 | } |
555 | ||
9ddf4854 RR |
556 | // The best size of a wxChoice should probably |
557 | // be changed everytime the control has been | |
558 | // changed, but at least after adding an item | |
559 | // it has to change. Adapted from Matt Ownby. | |
560 | InvalidateBestSize(); | |
0a164d4c | 561 | |
58b907f6 | 562 | gtk_signal_connect_after( GTK_OBJECT( menu_item ), "activate", |
e01c8145 VZ |
563 | GTK_SIGNAL_FUNC(gtk_choice_clicked_callback), (gpointer*)this ); |
564 | ||
565 | gtk_widget_show( menu_item ); | |
566 | ||
567 | // return the index of the item in the control | |
568 | return index; | |
569 | } | |
570 | ||
f68586e5 VZ |
571 | wxSize wxChoice::DoGetBestSize() const |
572 | { | |
db434467 | 573 | wxSize ret( wxControl::DoGetBestSize() ); |
29f54b9b VZ |
574 | |
575 | // we know better our horizontal extent: it depends on the longest string | |
576 | // we have | |
577 | ret.x = 0; | |
578 | if ( m_widget ) | |
579 | { | |
60d85ccb | 580 | int width; |
aa61d352 VZ |
581 | unsigned int count = GetCount(); |
582 | for ( unsigned int n = 0; n < count; n++ ) | |
29f54b9b | 583 | { |
aa61d352 | 584 | GetTextExtent(GetString(n), &width, NULL, NULL, NULL ); |
29f54b9b VZ |
585 | if ( width > ret.x ) |
586 | ret.x = width; | |
587 | } | |
588 | ||
df336b7f VZ |
589 | // add extra for the choice "=" button |
590 | ||
591 | // VZ: I don't know how to get the right value, it seems to be in | |
592 | // GtkOptionMenuProps struct from gtkoptionmenu.c but we can't get | |
593 | // to it - maybe we can use gtk_option_menu_size_request() for this | |
594 | // somehow? | |
595 | // | |
596 | // This default value works only for the default GTK+ theme (i.e. | |
597 | // no theme at all) (FIXME) | |
598 | static const int widthChoiceIndicator = 35; | |
599 | ret.x += widthChoiceIndicator; | |
29f54b9b VZ |
600 | } |
601 | ||
602 | // but not less than the minimal width | |
603 | if ( ret.x < 80 ) | |
604 | ret.x = 80; | |
605 | ||
ebbb22bd RR |
606 | // If this request_size is called with no entries then |
607 | // the returned height is wrong. Give it a reasonable | |
608 | // default value. | |
609 | if (ret.y <= 18) | |
610 | ret.y = 8 + GetCharHeight(); | |
9e691f46 | 611 | |
9f884528 | 612 | CacheBestSize(ret); |
db434467 | 613 | return ret; |
f68586e5 VZ |
614 | } |
615 | ||
2b904684 RR |
616 | bool wxChoice::IsOwnGtkWindow( GdkWindow *window ) |
617 | { | |
2b904684 | 618 | return (window == m_widget->window); |
2b904684 RR |
619 | } |
620 | ||
9d522606 RD |
621 | // static |
622 | wxVisualAttributes | |
623 | wxChoice::GetClassDefaultAttributes(wxWindowVariant WXUNUSED(variant)) | |
624 | { | |
625 | return GetDefaultAttributesFromGTKWidget(gtk_option_menu_new); | |
626 | } | |
627 | ||
2b904684 | 628 | |
df336b7f | 629 | #endif // wxUSE_CHOICE |