]> git.saurik.com Git - wxWidgets.git/blame - src/msw/menu.cpp
Menu/toolbar event handling now tries the window with the focus first.
[wxWidgets.git] / src / msw / menu.cpp
CommitLineData
2bda0e17
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: menu.cpp
3// Purpose: wxMenu, wxMenuBar, wxMenuItem
4// Author: Julian Smart
5// Modified by: Vadim Zeitlin
6// Created: 04/01/98
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart and Markus Holzem
c626a8b7 9// Licence: wxWindows license
2bda0e17
KB
10/////////////////////////////////////////////////////////////////////////////
11
c2dcfdef
VZ
12// ===========================================================================
13// declarations
14// ===========================================================================
15
16// ---------------------------------------------------------------------------
17// headers
18// ---------------------------------------------------------------------------
19
2bda0e17 20#ifdef __GNUG__
c626a8b7 21 #pragma implementation "menu.h"
2bda0e17
KB
22#endif
23
24// For compilers that support precompilation, includes "wx.h".
25#include "wx/wxprec.h"
26
27#ifdef __BORLANDC__
c626a8b7 28 #pragma hdrstop
2bda0e17
KB
29#endif
30
31#ifndef WX_PRECOMP
c626a8b7
VZ
32 #include "wx/frame.h"
33 #include "wx/menu.h"
34 #include "wx/utils.h"
2bda0e17
KB
35#endif
36
47d67540 37#if wxUSE_OWNER_DRAWN
c626a8b7 38 #include "wx/ownerdrw.h"
2bda0e17
KB
39#endif
40
41#include "wx/msw/private.h"
42#include "wx/msw/menu.h"
43#include "wx/menuitem.h"
44#include "wx/log.h"
45
46// other standard headers
2bda0e17
KB
47#include <string.h>
48
c626a8b7
VZ
49// ----------------------------------------------------------------------------
50// global variables
51// ----------------------------------------------------------------------------
52
53extern wxMenu *wxCurrentPopupMenu;
54
b8d3a4f1
VZ
55// ----------------------------------------------------------------------------
56// constants
57// ----------------------------------------------------------------------------
58
59// the (popup) menu title has this special id
60static const int idMenuTitle = -2;
61
62// ----------------------------------------------------------------------------
c626a8b7 63// macros
b8d3a4f1 64// ----------------------------------------------------------------------------
c626a8b7 65
2bda0e17 66#if !USE_SHARED_LIBRARY
c626a8b7
VZ
67 IMPLEMENT_DYNAMIC_CLASS(wxMenu, wxEvtHandler)
68 IMPLEMENT_DYNAMIC_CLASS(wxMenuBar, wxEvtHandler)
2bda0e17
KB
69#endif
70
c2dcfdef 71// convenience macros
8cd85069
VZ
72#define GetHMENU() ((HMENU)GetHMenu())
73#define GetHMenuOf(menu) ((HMENU)menu->GetHMenu())
c626a8b7 74
2bda0e17
KB
75// ============================================================================
76// implementation
77// ============================================================================
78
c2dcfdef
VZ
79// ---------------------------------------------------------------------------
80// wxMenu construction, adding and removing menu items
81// ---------------------------------------------------------------------------
2bda0e17
KB
82
83// Construct a menu with optional title (then use append)
c626a8b7
VZ
84wxMenu::wxMenu(const wxString& title, const wxFunction func)
85 : m_title(title)
86{
87 m_parent = NULL;
88 m_eventHandler = this;
89 m_pInvokingWindow = NULL;
90 m_doBreak = FALSE ;
91 m_noItems = 0;
92 m_menuBar = NULL;
93 m_hMenu = (WXHMENU) CreatePopupMenu();
94 m_savehMenu = 0 ;
95 m_topLevelMenu = this;
96 m_clientData = (void*) NULL;
97
98 if ( !!m_title )
99 {
100 Append(idMenuTitle, m_title) ;
101 AppendSeparator() ;
102 }
2bda0e17 103
c2dcfdef 104#if WXWIN_COMPATIBILITY
c626a8b7 105 Callback(func);
c2dcfdef 106#endif
2bda0e17
KB
107}
108
109// The wxWindow destructor will take care of deleting the submenus.
b8d3a4f1 110wxMenu::~wxMenu()
2bda0e17 111{
c2dcfdef
VZ
112 // free Windows resources
113 if ( m_hMenu )
114 {
115 ::DestroyMenu((HMENU)m_hMenu);
116 m_hMenu = 0;
117 }
c626a8b7 118
c2dcfdef 119 // delete submenus
c626a8b7 120 wxNode *node = m_menuItems.First();
c2dcfdef 121 while ( node )
c626a8b7
VZ
122 {
123 wxMenuItem *item = (wxMenuItem *)node->Data();
124
125 // Delete child menus.
126 // Beware: they must not be appended to children list!!!
127 // (because order of delete is significant)
c2dcfdef 128 if ( item->IsSubMenu() )
c626a8b7
VZ
129 item->DeleteSubMenu();
130
131 wxNode *next = node->Next();
132 delete item;
133 delete node;
134 node = next;
135 }
2bda0e17
KB
136}
137
b8d3a4f1 138void wxMenu::Break()
2bda0e17 139{
c2dcfdef 140 m_doBreak = TRUE;
2bda0e17
KB
141}
142
143// function appends a new item or submenu to the menu
144void wxMenu::Append(wxMenuItem *pItem)
145{
c626a8b7 146 wxCHECK_RET( pItem != NULL, "can't append NULL item to the menu" );
2bda0e17 147
c626a8b7 148 UINT flags = 0;
2bda0e17 149
c2dcfdef
VZ
150 // if "Break" has just been called, insert a menu break before this item
151 // (and don't forget to reset the flag)
c626a8b7
VZ
152 if ( m_doBreak ) {
153 flags |= MF_MENUBREAK;
154 m_doBreak = FALSE;
155 }
156
157 if ( pItem->IsSeparator() ) {
158 flags |= MF_SEPARATOR;
159 }
2bda0e17 160
c2dcfdef
VZ
161 // id is the numeric id for normal menu items and HMENU for submenus as
162 // required by ::AppendMenu() API
c626a8b7 163 UINT id;
c2dcfdef
VZ
164 wxMenu *submenu = pItem->GetSubMenu();
165 if ( submenu != NULL ) {
166 wxASSERT( submenu->GetHMenu() != (WXHMENU) NULL );
2bda0e17 167
c2dcfdef
VZ
168 id = (UINT)submenu->GetHMenu();
169 submenu->m_topLevelMenu = m_topLevelMenu;
170 submenu->m_parent = this;
171 submenu->m_savehMenu = (WXHMENU)id;
172 submenu->m_hMenu = 0;
2bda0e17 173
c626a8b7
VZ
174 flags |= MF_POPUP;
175 }
176 else {
177 id = pItem->GetId();
178 }
2bda0e17 179
c626a8b7 180 LPCSTR pData;
2bda0e17 181
47d67540 182#if wxUSE_OWNER_DRAWN
c626a8b7
VZ
183 if ( pItem->IsOwnerDrawn() ) { // want to get {Measure|Draw}Item messages?
184 // item draws itself, pass pointer to it in data parameter
185 flags |= MF_OWNERDRAW;
186 pData = (LPCSTR)pItem;
187 }
188 else
2bda0e17 189#endif
c626a8b7
VZ
190 {
191 // menu is just a normal string (passed in data parameter)
192 flags |= MF_STRING;
193 pData = pItem->GetName();
194 }
2bda0e17 195
c626a8b7
VZ
196 // visually select the menu title
197 if ( id == idMenuTitle )
198 {
199 // TODO use SetMenuItemInfo(MFS_DEFAULT) to put it in bold face
200 }
2bda0e17 201
c2dcfdef 202 if ( !::AppendMenu(GetHMENU(), flags, id, pData) )
c626a8b7
VZ
203 {
204 wxLogLastError("AppendMenu");
205 }
c2dcfdef
VZ
206 else
207 {
208 m_menuItems.Append(pItem);
209 m_noItems++;
210 }
2bda0e17
KB
211}
212
b8d3a4f1 213void wxMenu::AppendSeparator()
2bda0e17 214{
c626a8b7 215 Append(new wxMenuItem(this, ID_SEPARATOR));
2bda0e17
KB
216}
217
218// Pullright item
c2dcfdef
VZ
219void wxMenu::Append(int id,
220 const wxString& label,
221 wxMenu *SubMenu,
222 const wxString& helpString)
2bda0e17 223{
8cd85069 224 Append(new wxMenuItem(this, id, label, helpString, FALSE, SubMenu));
2bda0e17
KB
225}
226
227// Ordinary menu item
c2dcfdef
VZ
228void wxMenu::Append(int id,
229 const wxString& label,
230 const wxString& helpString,
231 bool checkable)
2bda0e17 232{
c626a8b7 233 // 'checkable' parameter is useless for Windows.
8cd85069 234 Append(new wxMenuItem(this, id, label, helpString, checkable));
2bda0e17
KB
235}
236
c2dcfdef 237// delete item by id
2bda0e17
KB
238void wxMenu::Delete(int id)
239{
c626a8b7
VZ
240 wxMenuItem *item = NULL;
241 int pos;
242 wxNode *node;
243 for (pos = 0, node = m_menuItems.First(); node; node = node->Next(), pos++)
244 {
245 item = (wxMenuItem *)node->Data();
246 if ( item->GetId() == id )
247 break;
248 }
249
250 wxCHECK_RET( node, "wxMenu::Delete(): item doesn't exist" );
251
252 HMENU menu = GetHMENU();
253
254 wxMenu *pSubMenu = item->GetSubMenu();
255 if ( pSubMenu != NULL ) {
256 RemoveMenu(menu, (UINT)pos, MF_BYPOSITION);
257 pSubMenu->m_hMenu = pSubMenu->m_savehMenu;
258 pSubMenu->m_savehMenu = 0;
259 pSubMenu->m_parent = NULL;
260 // RemoveChild(item->subMenu);
261 pSubMenu->m_topLevelMenu = NULL;
262 // TODO: Why isn't subMenu deleted here???
263 // Will put this in for now. Assuming this is supposed
264 // to delete the menu, not just remove it.
265 item->DeleteSubMenu();
266 }
267 else {
268 DeleteMenu(menu, (UINT)pos, MF_BYPOSITION);
269 }
270
271 m_menuItems.DeleteNode(node);
272 delete item;
2bda0e17
KB
273}
274
c2dcfdef
VZ
275// ---------------------------------------------------------------------------
276// wxMenu functions implemented in wxMenuItem
277// ---------------------------------------------------------------------------
278
8cd85069 279void wxMenu::Enable(int id, bool Flag)
2bda0e17 280{
8cd85069 281 wxMenuItem *item = FindItemForId(id);
c626a8b7 282 wxCHECK_RET( item != NULL, "can't enable non-existing menu item" );
2bda0e17 283
c626a8b7 284 item->Enable(Flag);
2bda0e17
KB
285}
286
8cd85069 287bool wxMenu::IsEnabled(int id) const
2bda0e17 288{
8cd85069
VZ
289 wxMenuItem *item = FindItemForId(id);
290 wxCHECK_MSG( item != NULL, FALSE, "invalid item id" );
2bda0e17 291
c626a8b7 292 return item->IsEnabled();
2bda0e17
KB
293}
294
8cd85069 295void wxMenu::Check(int id, bool Flag)
2bda0e17 296{
8cd85069 297 wxMenuItem *item = FindItemForId(id);
c626a8b7 298 wxCHECK_RET( item != NULL, "can't get status of non-existing menu item" );
2bda0e17 299
c626a8b7 300 item->Check(Flag);
2bda0e17
KB
301}
302
8cd85069 303bool wxMenu::IsChecked(int id) const
2bda0e17 304{
8cd85069
VZ
305 wxMenuItem *item = FindItemForId(id);
306 wxCHECK_MSG( item != NULL, FALSE, "invalid item id" );
2bda0e17 307
c626a8b7 308 return item->IsChecked();
2bda0e17
KB
309}
310
c2dcfdef
VZ
311void wxMenu::SetLabel(int id, const wxString& label)
312{
313 wxMenuItem *item = FindItemForId(id) ;
314 wxCHECK_RET( item, "wxMenu::SetLabel: no such item" );
315
316 item->SetName(label);
317}
318
319wxString wxMenu::GetLabel(int id) const
320{
321 wxString label;
322 wxMenuItem *pItem = FindItemForId(id) ;
323 if (pItem)
324 label = pItem->GetName() ;
325 else
326 wxFAIL_MSG("wxMenu::GetLabel: item doesn't exist");
327
328 return label;
329}
330
331void wxMenu::SetHelpString(int itemId, const wxString& helpString)
332{
333 wxMenuItem *item = FindItemForId (itemId);
334 if (item)
335 item->SetHelp(helpString);
336 else
337 wxFAIL_MSG("wxMenu::SetHelpString: item doesn't exist");
338}
339
340wxString wxMenu::GetHelpString (int itemId) const
341{
342 wxString help;
343 wxMenuItem *item = FindItemForId (itemId);
344 if (item)
345 help = item->GetHelp();
346 else
347 wxFAIL_MSG("wxMenu::GetHelpString: item doesn't exist");
348
349 return help;
350}
351
352// ---------------------------------------------------------------------------
353// wxMenu title
354// ---------------------------------------------------------------------------
355
2bda0e17
KB
356void wxMenu::SetTitle(const wxString& label)
357{
c626a8b7
VZ
358 bool hasNoTitle = m_title.IsEmpty();
359 m_title = label;
b8d3a4f1 360
c626a8b7 361 HMENU hMenu = GetHMENU();
b8d3a4f1 362
c626a8b7 363 if ( hasNoTitle )
b8d3a4f1 364 {
c626a8b7
VZ
365 if ( !label.IsEmpty() )
366 {
367 if ( !InsertMenu(hMenu, 0u, MF_BYPOSITION | MF_STRING,
368 (unsigned)idMenuTitle, m_title) ||
369 !InsertMenu(hMenu, 1u, MF_BYPOSITION, (unsigned)-1, NULL) )
370 {
371 wxLogLastError("InsertMenu");
372 }
373 }
b8d3a4f1
VZ
374 }
375 else
376 {
c626a8b7
VZ
377 if ( label.IsEmpty() )
378 {
379 // remove the title and the separator after it
380 if ( !RemoveMenu(hMenu, 0, MF_BYPOSITION) ||
381 !RemoveMenu(hMenu, 0, MF_BYPOSITION) )
382 {
383 wxLogLastError("RemoveMenu");
384 }
385 }
386 else
387 {
388 // modify the title
389 if ( !ModifyMenu(hMenu, 0u,
390 MF_BYPOSITION | MF_STRING,
391 (unsigned)idMenuTitle, m_title) )
392 {
393 wxLogLastError("ModifyMenu");
394 }
395 }
b8d3a4f1 396 }
b8d3a4f1 397
750b78ba 398#ifndef __WIN16__
c626a8b7
VZ
399 // put the title string in bold face
400 if ( !m_title.IsEmpty() )
a3f4e9e8 401 {
c626a8b7
VZ
402 MENUITEMINFO mii;
403 mii.cbSize = sizeof(mii);
404 mii.fMask = MIIM_STATE;
405 mii.fState = MFS_DEFAULT;
406
407 if ( !SetMenuItemInfo(hMenu, (unsigned)idMenuTitle, FALSE, &mii) )
408 {
409 wxLogLastError("SetMenuItemInfo");
410 }
a3f4e9e8 411 }
750b78ba 412#endif
2bda0e17
KB
413}
414
f7387de5 415const wxString wxMenu::GetTitle() const
2bda0e17 416{
c626a8b7 417 return m_title;
2bda0e17
KB
418}
419
c2dcfdef
VZ
420// ---------------------------------------------------------------------------
421// event processing
422// ---------------------------------------------------------------------------
2bda0e17 423
debe6624 424bool wxMenu::MSWCommand(WXUINT WXUNUSED(param), WXWORD id)
2bda0e17 425{
a3f4e9e8
VZ
426 // ignore commands from the menu title
427
428 // NB: VC++ generates wrong assembler for `if ( id != idMenuTitle )'!!
429 if ( id != (WXWORD)idMenuTitle )
430 {
431 wxCommandEvent event(wxEVT_COMMAND_MENU_SELECTED);
432 event.SetEventObject( this );
433 event.SetId( id );
434 event.SetInt( id );
435 ProcessCommand(event);
436 }
437
438 return TRUE;
2bda0e17
KB
439}
440
c2dcfdef
VZ
441void wxMenu::ProcessCommand(wxCommandEvent & event)
442{
443 bool processed = FALSE;
444
445 // Try a callback
446 if (m_callback)
447 {
448 (void)(*(m_callback))(*this, event);
449 processed = TRUE;
450 }
451
452 // Try the menu's event handler
453 if ( !processed && GetEventHandler())
454 {
455 processed = GetEventHandler()->ProcessEvent(event);
456 }
457
458 // Try the window the menu was popped up from (and up through the
459 // hierarchy)
460 wxWindow *win = GetInvokingWindow();
461 if ( !processed && win )
462 processed = win->GetEventHandler()->ProcessEvent(event);
463}
464
465// ---------------------------------------------------------------------------
466// Item search
467// ---------------------------------------------------------------------------
468
2bda0e17
KB
469// Finds the item id matching the given string, -1 if not found.
470int wxMenu::FindItem (const wxString& itemString) const
471{
c2dcfdef
VZ
472 wxString itemLabel = wxStripMenuCodes(itemString);
473 for ( wxNode *node = m_menuItems.First(); node; node = node->Next() )
2bda0e17 474 {
c2dcfdef
VZ
475 wxMenuItem *item = (wxMenuItem *)node->Data();
476 if ( item->IsSubMenu() )
c626a8b7
VZ
477 {
478 int ans = item->GetSubMenu()->FindItem(itemString);
c2dcfdef 479 if ( ans != wxNOT_FOUND )
c626a8b7
VZ
480 return ans;
481 }
c2dcfdef 482 else if ( !item->IsSeparator() )
c626a8b7 483 {
c2dcfdef
VZ
484 wxString label = wxStripMenuCodes(item->GetName());
485 if ( itemLabel == label )
c626a8b7
VZ
486 return item->GetId();
487 }
2bda0e17
KB
488 }
489
c626a8b7 490 return wxNOT_FOUND;
2bda0e17
KB
491}
492
debe6624 493wxMenuItem *wxMenu::FindItemForId(int itemId, wxMenu ** itemMenu) const
2bda0e17 494{
c2dcfdef 495 if ( itemMenu )
c626a8b7 496 *itemMenu = NULL;
c2dcfdef
VZ
497
498 wxMenuItem *item = NULL;
9a48c2ba 499 for ( wxNode *node = m_menuItems.First(); node && !item; node = node->Next() )
2bda0e17 500 {
c2dcfdef 501 item = (wxMenuItem *)node->Data();
c626a8b7 502
c2dcfdef 503 if ( item->GetId() == itemId )
c626a8b7
VZ
504 {
505 if (itemMenu)
c2dcfdef 506 *itemMenu = (wxMenu *)this;
c626a8b7 507 }
c2dcfdef 508 else if ( item->IsSubMenu() )
c626a8b7 509 {
c2dcfdef 510 item = item->GetSubMenu()->FindItemForId(itemId, itemMenu);
9a48c2ba
VZ
511 }
512 else
513 {
514 // don't exit the loop
515 item = NULL;
c626a8b7 516 }
2bda0e17
KB
517 }
518
c2dcfdef 519 return item;
2bda0e17
KB
520}
521
c2dcfdef
VZ
522// ---------------------------------------------------------------------------
523// other
524// ---------------------------------------------------------------------------
2bda0e17 525
debe6624 526bool wxWindow::PopupMenu(wxMenu *menu, int x, int y)
2bda0e17 527{
c626a8b7
VZ
528 menu->SetInvokingWindow(this);
529 menu->UpdateUI();
2bda0e17 530
c626a8b7 531 HWND hWnd = (HWND) GetHWND();
c2dcfdef 532 HMENU hMenu = (HMENU)menu->GetHMenu();
c626a8b7
VZ
533 POINT point;
534 point.x = x;
535 point.y = y;
536 ::ClientToScreen(hWnd, &point);
537 wxCurrentPopupMenu = menu;
538 ::TrackPopupMenu(hMenu, TPM_RIGHTBUTTON, point.x, point.y, 0, hWnd, NULL);
539 wxYield();
540 wxCurrentPopupMenu = NULL;
2bda0e17 541
c626a8b7 542 menu->SetInvokingWindow(NULL);
2bda0e17 543
c626a8b7 544 return TRUE;
2bda0e17
KB
545}
546
c2dcfdef
VZ
547void wxMenu::Attach(wxMenuBar *menubar)
548{
549 // menu can be in at most one menubar because otherwise they would both
550 // delete the menu pointer
551 wxASSERT_MSG( !m_menuBar, "menu belongs to 2 menubars, expect a crash" );
552
553 m_menuBar = menubar;
554 m_savehMenu = m_hMenu;
555 m_hMenu = 0;
556}
557
558void wxMenu::Detach()
559{
560 wxASSERT_MSG( m_menuBar, "can't detach menu if it's not attached" );
561
562 m_hMenu = m_savehMenu;
563 m_savehMenu = 0;
564}
565
566// ---------------------------------------------------------------------------
2bda0e17 567// Menu Bar
c2dcfdef
VZ
568// ---------------------------------------------------------------------------
569
570void wxMenuBar::Init()
2bda0e17 571{
c626a8b7
VZ
572 m_eventHandler = this;
573 m_menuCount = 0;
574 m_menus = NULL;
575 m_titles = NULL;
576 m_menuBarFrame = NULL;
577 m_hMenu = 0;
cba2db0c 578}
2bda0e17 579
c2dcfdef
VZ
580wxMenuBar::wxMenuBar()
581{
582 Init();
583}
584
cba2db0c
JS
585wxMenuBar::wxMenuBar( long WXUNUSED(style) )
586{
c2dcfdef 587 Init();
2bda0e17
KB
588}
589
c2dcfdef 590wxMenuBar::wxMenuBar(int count, wxMenu *menus[], const wxString titles[])
2bda0e17 591{
c2dcfdef
VZ
592 Init();
593
594 m_menuCount = count;
595 m_menus = menus;
596 m_titles = new wxString[count];
597
c626a8b7 598 int i;
c2dcfdef
VZ
599 for ( i = 0; i < count; i++ )
600 m_titles[i] = titles[i];
2bda0e17 601
c2dcfdef
VZ
602 for ( i = 0; i < count; i++ )
603 m_menus[i]->Attach(this);
2bda0e17
KB
604}
605
b8d3a4f1 606wxMenuBar::~wxMenuBar()
2bda0e17 607{
c2dcfdef
VZ
608 for ( int i = 0; i < m_menuCount; i++ )
609 {
610 delete m_menus[i];
611 }
2bda0e17 612
c2dcfdef
VZ
613 delete[] m_menus;
614 delete[] m_titles;
615}
2bda0e17 616
c2dcfdef
VZ
617// ---------------------------------------------------------------------------
618// wxMenuBar helpers
619// ---------------------------------------------------------------------------
620
621void wxMenuBar::Refresh()
622{
623 wxCHECK_RET( m_menuBarFrame, "can't refresh a menubar withotu a frame" );
624
625 DrawMenuBar((HWND)m_menuBarFrame->GetHWND()) ;
626}
627
628WXHMENU wxMenuBar::Create()
629{
630 wxCHECK_MSG( !m_hMenu, TRUE, "menubar already created" );
631
632 m_hMenu = (WXHMENU)::CreateMenu();
2bda0e17 633
c2dcfdef 634 if ( !m_hMenu )
c626a8b7 635 {
c2dcfdef 636 wxLogLastError("CreateMenu");
c626a8b7 637 }
c2dcfdef 638 else
c626a8b7 639 {
c2dcfdef
VZ
640 for ( int i = 0; i < m_menuCount; i++ )
641 {
642 if ( !::AppendMenu((HMENU)m_hMenu, MF_POPUP | MF_STRING,
643 (UINT)m_menus[i]->GetHMenu(),
644 m_titles[i]) )
645 {
646 wxLogLastError("AppendMenu");
647 }
648 }
c626a8b7 649 }
c626a8b7 650
c2dcfdef 651 return m_hMenu;
2bda0e17
KB
652}
653
c2dcfdef
VZ
654// ---------------------------------------------------------------------------
655// wxMenuBar functions forwarded to wxMenuItem
656// ---------------------------------------------------------------------------
657
2bda0e17
KB
658// Must only be used AFTER menu has been attached to frame,
659// otherwise use individual menus to enable/disable items
8cd85069 660void wxMenuBar::Enable(int id, bool enable)
2bda0e17 661{
c626a8b7 662 wxMenu *itemMenu = NULL;
8cd85069 663 wxMenuItem *item = FindItemForId(id, &itemMenu) ;
2bda0e17 664
c626a8b7 665 wxCHECK_RET( item, "attempt to enable an item which doesn't exist" );
2bda0e17 666
c2dcfdef 667 item->Enable(enable);
2bda0e17
KB
668}
669
c626a8b7 670void wxMenuBar::EnableTop(int pos, bool enable)
2bda0e17 671{
c626a8b7 672 int flag = enable ? MF_ENABLED : MF_GRAYED;;
2bda0e17 673
c626a8b7 674 EnableMenuItem((HMENU)m_hMenu, pos, MF_BYPOSITION | flag);
2bda0e17
KB
675}
676
677// Must only be used AFTER menu has been attached to frame,
678// otherwise use individual menus
8cd85069 679void wxMenuBar::Check(int id, bool check)
c626a8b7
VZ
680{
681 wxMenu *itemMenu = NULL;
8cd85069 682 wxMenuItem *item = FindItemForId(id, &itemMenu) ;
c626a8b7
VZ
683
684 wxCHECK_RET( item, "attempt to check an item which doesn't exist" );
685 wxCHECK_RET( item->IsCheckable(), "attempt to check an uncheckable item" );
2bda0e17 686
c2dcfdef 687 item->Check(check);
c626a8b7
VZ
688}
689
8cd85069 690bool wxMenuBar::IsChecked(int id) const
c626a8b7
VZ
691{
692 wxMenu *itemMenu = NULL;
8cd85069 693 wxMenuItem *item = FindItemForId(id, &itemMenu) ;
2bda0e17 694
c2dcfdef 695 wxCHECK_MSG( item, FALSE, "wxMenuBar::IsChecked(): no such item" );
2bda0e17 696
8cd85069 697 int flag = ::GetMenuState(GetHMenuOf(itemMenu), id, MF_BYCOMMAND);
2bda0e17 698
c626a8b7 699 return (flag & MF_CHECKED) != 0;
2bda0e17
KB
700}
701
8cd85069 702bool wxMenuBar::IsEnabled(int id) const
2bda0e17 703{
c626a8b7 704 wxMenu *itemMenu = NULL;
8cd85069 705 wxMenuItem *item = FindItemForId(id, &itemMenu) ;
2bda0e17 706
c2dcfdef 707 wxCHECK_MSG( item, FALSE, "wxMenuBar::IsEnabled(): no such item" );
2bda0e17 708
8cd85069 709 int flag = ::GetMenuState(GetHMenuOf(itemMenu), id, MF_BYCOMMAND) ;
2bda0e17 710
c626a8b7 711 return (flag & MF_ENABLED) != 0;
2bda0e17
KB
712}
713
8cd85069 714void wxMenuBar::SetLabel(int id, const wxString& label)
2bda0e17 715{
c626a8b7 716 wxMenu *itemMenu = NULL;
8cd85069 717 wxMenuItem *item = FindItemForId(id, &itemMenu) ;
2bda0e17 718
c2dcfdef 719 wxCHECK_RET( item, "wxMenuBar::SetLabel(): no such item" );
2bda0e17 720
c2dcfdef 721 item->SetName(label);
2bda0e17
KB
722}
723
8cd85069 724wxString wxMenuBar::GetLabel(int id) const
2bda0e17 725{
c626a8b7 726 wxMenu *itemMenu = NULL;
8cd85069 727 wxMenuItem *item = FindItemForId(id, &itemMenu) ;
2bda0e17 728
c2dcfdef 729 wxCHECK_MSG( item, "", "wxMenuBar::GetLabel(): no such item" );
2bda0e17 730
c2dcfdef
VZ
731 return item->GetName();
732}
8cd85069 733
c2dcfdef
VZ
734void wxMenuBar::SetHelpString (int id, const wxString& helpString)
735{
736 wxMenu *itemMenu = NULL;
737 wxMenuItem *item = FindItemForId(id, &itemMenu) ;
2bda0e17 738
c2dcfdef
VZ
739 wxCHECK_RET( item, "wxMenuBar::SetHelpString(): no such item" );
740
741 item->SetHelp(helpString);
2bda0e17
KB
742}
743
c2dcfdef
VZ
744wxString wxMenuBar::GetHelpString (int id) const
745{
746 wxMenu *itemMenu = NULL;
747 wxMenuItem *item = FindItemForId(id, &itemMenu) ;
748
749 wxCHECK_MSG( item, "", "wxMenuBar::GetHelpString(): no such item" );
750
751 return item->GetHelp();
752}
753
754// ---------------------------------------------------------------------------
755// wxMenuBar functions to work with the top level submenus
756// ---------------------------------------------------------------------------
757
758// NB: we don't support owner drawn top level items for now, if we do these
759// functions would have to be changed to use wxMenuItem as well
760
debe6624 761void wxMenuBar::SetLabelTop(int pos, const wxString& label)
2bda0e17 762{
8cd85069 763 UINT id;
c2dcfdef
VZ
764 UINT flagsOld = ::GetMenuState((HMENU)m_hMenu, pos, MF_BYPOSITION);
765 if ( flagsOld == 0xFFFFFFFF )
c626a8b7 766 {
c2dcfdef
VZ
767 wxLogLastError("GetMenuState");
768
769 return;
770 }
771
772 if ( flagsOld & MF_POPUP )
773 {
774 // HIBYTE contains the number of items in the submenu in this case
775 flagsOld &= 0xff ;
8cd85069 776 id = (UINT)::GetSubMenu((HMENU)m_hMenu, pos) ;
c626a8b7
VZ
777 }
778 else
8cd85069
VZ
779 {
780 id = pos;
781 }
782
c2dcfdef
VZ
783 if ( ::ModifyMenu(GetHMENU(), pos, MF_BYPOSITION | MF_STRING | flagsOld,
784 id, label) == 0xFFFFFFFF )
785 {
786 wxLogLastError("ModifyMenu");
787 }
2bda0e17
KB
788}
789
debe6624 790wxString wxMenuBar::GetLabelTop(int pos) const
2bda0e17 791{
8cd85069
VZ
792 int len = ::GetMenuString((HMENU)m_hMenu, pos, NULL, 0, MF_BYCOMMAND);
793
794 len++; // for the NUL character
795 wxString label;
c2dcfdef 796 ::GetMenuString(GetHMENU(), pos, label.GetWriteBuf(len), len, MF_BYCOMMAND);
8cd85069
VZ
797 label.UngetWriteBuf();
798
799 return label;
2bda0e17
KB
800}
801
c2dcfdef
VZ
802// ---------------------------------------------------------------------------
803// wxMenuBar notifications
804// ---------------------------------------------------------------------------
805
debe6624 806bool wxMenuBar::OnDelete(wxMenu *a_menu, int pos)
2bda0e17 807{
c2dcfdef 808 if ( !m_menuBarFrame )
c626a8b7 809 return TRUE;
2bda0e17 810
c2dcfdef
VZ
811 if ( ::RemoveMenu((HMENU)m_hMenu, (UINT)pos, MF_BYPOSITION) )
812 {
813 // VZ: I'm not sure about what's going on here, so I leave an assert
814 wxASSERT_MSG( m_menus[pos] == a_menu, "what is this parameter for??" );
2bda0e17 815
c2dcfdef
VZ
816 a_menu->Detach();
817
818 if ( m_menuBarFrame )
819 Refresh();
2bda0e17 820
c626a8b7
VZ
821 return TRUE;
822 }
c2dcfdef
VZ
823 else
824 {
825 wxLogLastError("RemoveMenu");
826 }
2bda0e17 827
c626a8b7 828 return FALSE;
2bda0e17
KB
829}
830
831bool wxMenuBar::OnAppend(wxMenu *a_menu, const char *title)
832{
c2dcfdef
VZ
833 WXHMENU submenu = a_menu->GetHMenu();
834 if ( !submenu )
c626a8b7 835 return FALSE;
2bda0e17 836
c2dcfdef 837 if ( !m_menuBarFrame )
c626a8b7 838 return TRUE;
2bda0e17 839
c2dcfdef 840 a_menu->Attach(this);
2bda0e17 841
c2dcfdef
VZ
842 if ( !::AppendMenu(GetHMENU(), MF_POPUP | MF_STRING,
843 (UINT)submenu, title) )
844 {
845 wxLogLastError("AppendMenu");
846 }
2bda0e17 847
c2dcfdef 848 Refresh();
2bda0e17 849
c626a8b7 850 return TRUE;
2bda0e17
KB
851}
852
c2dcfdef
VZ
853// ---------------------------------------------------------------------------
854// wxMenuBar construction
855// ---------------------------------------------------------------------------
856
2bda0e17
KB
857void wxMenuBar::Append (wxMenu * menu, const wxString& title)
858{
c626a8b7
VZ
859 if (!OnAppend(menu, title))
860 return;
2bda0e17 861
c626a8b7
VZ
862 m_menuCount ++;
863 wxMenu **new_menus = new wxMenu *[m_menuCount];
864 wxString *new_titles = new wxString[m_menuCount];
865 int i;
2bda0e17 866
c626a8b7
VZ
867 for (i = 0; i < m_menuCount - 1; i++)
868 {
869 new_menus[i] = m_menus[i];
870 m_menus[i] = NULL;
871 new_titles[i] = m_titles[i];
872 m_titles[i] = "";
873 }
874 if (m_menus)
875 {
876 delete[]m_menus;
877 delete[]m_titles;
878 }
879 m_menus = new_menus;
880 m_titles = new_titles;
2bda0e17 881
c626a8b7
VZ
882 m_menus[m_menuCount - 1] = (wxMenu *)menu;
883 m_titles[m_menuCount - 1] = title;
2bda0e17 884
c2dcfdef 885 menu->SetParent(this);
2bda0e17
KB
886}
887
debe6624 888void wxMenuBar::Delete(wxMenu * menu, int i)
2bda0e17 889{
c626a8b7
VZ
890 int j;
891 int ii = (int) i;
892
893 if (menu != 0) {
894 for (ii = 0; ii < m_menuCount; ii++) {
895 if (m_menus[ii] == menu)
896 break;
897 }
898 if (ii >= m_menuCount)
899 return;
900 } else {
901 if (ii < 0 || ii >= m_menuCount)
902 return;
903 menu = m_menus[ii];
904 }
2bda0e17 905
c626a8b7
VZ
906 if (!OnDelete(menu, ii))
907 return;
2bda0e17 908
c626a8b7 909 menu->SetParent(NULL);
2bda0e17 910
c626a8b7
VZ
911 -- m_menuCount;
912 for (j = ii; j < m_menuCount; j++) {
913 m_menus[j] = m_menus[j + 1];
914 m_titles[j] = m_titles[j + 1];
915 }
2bda0e17
KB
916}
917
c2dcfdef
VZ
918// ---------------------------------------------------------------------------
919// wxMenuBar searching for menu items
920// ---------------------------------------------------------------------------
921
922// Find the itemString in menuString, and return the item id or wxNOT_FOUND
923int wxMenuBar::FindMenuItem(const wxString& menuString,
924 const wxString& itemString) const
2bda0e17 925{
c2dcfdef
VZ
926 wxString menuLabel = wxStripMenuCodes(menuString);
927 for ( int i = 0; i < m_menuCount; i++ )
2bda0e17 928 {
c2dcfdef
VZ
929 wxString title = wxStripMenuCodes(m_titles[i]);
930 if ( menuString == title )
931 return m_menus[i]->FindItem(itemString);
2bda0e17 932 }
c2dcfdef
VZ
933
934 return wxNOT_FOUND;
2bda0e17
KB
935}
936
c2dcfdef 937wxMenuItem *wxMenuBar::FindItemForId (int id, wxMenu **itemMenu) const
2bda0e17 938{
c2dcfdef 939 if ( itemMenu )
c626a8b7 940 *itemMenu = NULL;
2bda0e17 941
c626a8b7 942 wxMenuItem *item = NULL;
c2dcfdef 943 for ( int i = 0; !item && (i < m_menuCount); i++ )
c626a8b7 944 {
c2dcfdef 945 item = m_menus[i]->FindItemForId(id, itemMenu);
c626a8b7 946 }
2bda0e17 947
c2dcfdef 948 return item;
2bda0e17
KB
949}
950
2bda0e17 951
c626a8b7
VZ
952// ----------------------------------------------------------------------------
953// helper functions
954// ----------------------------------------------------------------------------
955
2bda0e17 956wxWindow *wxMenu::GetWindow() const
c626a8b7
VZ
957{
958 if ( m_pInvokingWindow != NULL )
959 return m_pInvokingWindow;
960 else if ( m_menuBar != NULL)
c2dcfdef 961 return m_menuBar->GetFrame();
c626a8b7
VZ
962
963 return NULL;
2bda0e17
KB
964}
965
966WXHMENU wxMenu::GetHMenu() const
967{
c626a8b7
VZ
968 if ( m_hMenu != 0 )
969 return m_hMenu;
970 else if ( m_savehMenu != 0 )
971 return m_savehMenu;
972
973 wxFAIL_MSG("wxMenu without HMENU");
2bda0e17 974
c626a8b7 975 return 0;
2bda0e17
KB
976}
977
c626a8b7
VZ
978// Update a menu and all submenus recursively. source is the object that has
979// the update event handlers defined for it. If NULL, the menu or associated
980// window will be used.
631f1bfe
JS
981void wxMenu::UpdateUI(wxEvtHandler* source)
982{
c626a8b7
VZ
983 if (!source && GetInvokingWindow())
984 source = GetInvokingWindow()->GetEventHandler();
985 if (!source)
986 source = GetEventHandler();
987 if (!source)
988 source = this;
989
990 wxNode* node = GetItems().First();
991 while (node)
631f1bfe 992 {
c626a8b7
VZ
993 wxMenuItem* item = (wxMenuItem*) node->Data();
994 if ( !item->IsSeparator() )
995 {
996 wxWindowID id = item->GetId();
997 wxUpdateUIEvent event(id);
998 event.SetEventObject( source );
999
1000 if (source->ProcessEvent(event))
1001 {
1002 if (event.GetSetText())
1003 SetLabel(id, event.GetText());
1004 if (event.GetSetChecked())
1005 Check(id, event.GetChecked());
1006 if (event.GetSetEnabled())
1007 Enable(id, event.GetEnabled());
1008 }
1009
1010 if (item->GetSubMenu())
1011 item->GetSubMenu()->UpdateUI(source);
1012 }
1013 node = node->Next();
1014 }
631f1bfe 1015}