]> git.saurik.com Git - wxWidgets.git/blob - src/msw/menu.cpp
Spiner -> Spinner
[wxWidgets.git] / src / msw / menu.cpp
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
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 // ===========================================================================
13 // declarations
14 // ===========================================================================
15
16 // ---------------------------------------------------------------------------
17 // headers
18 // ---------------------------------------------------------------------------
19
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "menu.h"
22 #endif
23
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
26
27 #ifdef __BORLANDC__
28 #pragma hdrstop
29 #endif
30
31 #if wxUSE_MENUS
32
33 #ifndef WX_PRECOMP
34 #include "wx/frame.h"
35 #include "wx/menu.h"
36 #include "wx/utils.h"
37 #include "wx/intl.h"
38 #include "wx/log.h"
39 #endif
40
41 #if wxUSE_OWNER_DRAWN
42 #include "wx/ownerdrw.h"
43 #endif
44
45 #include "wx/msw/private.h"
46
47 #ifdef __WXWINCE__
48 #include <windows.h>
49 #include <windowsx.h>
50 #include <tchar.h>
51 #include <ole2.h>
52 #include <shellapi.h>
53 #include <commctrl.h>
54 #if (_WIN32_WCE < 400) && !defined(__HANDHELDPC__)
55 #include <aygshell.h>
56 #endif
57
58 #include "wx/msw/wince/missing.h"
59
60 #endif
61
62 // other standard headers
63 #include <string.h>
64
65 // ----------------------------------------------------------------------------
66 // global variables
67 // ----------------------------------------------------------------------------
68
69 extern wxMenu *wxCurrentPopupMenu;
70
71 // ----------------------------------------------------------------------------
72 // constants
73 // ----------------------------------------------------------------------------
74
75 // the (popup) menu title has this special id
76 static const int idMenuTitle = -3;
77
78 // ----------------------------------------------------------------------------
79 // private functions
80 // ----------------------------------------------------------------------------
81
82 // make the given menu item default
83 static void SetDefaultMenuItem(HMENU hmenu, UINT id)
84 {
85 #ifndef __WXWINCE__
86 MENUITEMINFO mii;
87 wxZeroMemory(mii);
88 mii.cbSize = sizeof(MENUITEMINFO);
89 mii.fMask = MIIM_STATE;
90 mii.fState = MFS_DEFAULT;
91
92 if ( !::SetMenuItemInfo(hmenu, id, FALSE, &mii) )
93 {
94 wxLogLastError(wxT("SetMenuItemInfo"));
95 }
96 #else
97 wxUnusedVar(hmenu);
98 wxUnusedVar(id);
99 #endif
100 }
101
102 #ifdef __WXWINCE__
103 UINT GetMenuState(HMENU hMenu, UINT id, UINT flags)
104 {
105 MENUITEMINFO info;
106 wxZeroMemory(info);
107 info.cbSize = sizeof(info);
108 info.fMask = MIIM_STATE;
109 if ( !::GetMenuItemInfo(hMenu, id, flags & MF_BYCOMMAND ? FALSE : TRUE, & info) )
110 wxLogLastError(wxT("GetMenuItemInfo"));
111 return info.fState;
112 }
113 #endif
114
115 // ============================================================================
116 // implementation
117 // ============================================================================
118
119 #include <wx/listimpl.cpp>
120
121 WX_DEFINE_LIST( wxMenuInfoList ) ;
122
123 #if wxUSE_EXTENDED_RTTI
124
125 WX_DEFINE_FLAGS( wxMenuStyle )
126
127 wxBEGIN_FLAGS( wxMenuStyle )
128 wxFLAGS_MEMBER(wxMENU_TEAROFF)
129 wxEND_FLAGS( wxMenuStyle )
130
131 IMPLEMENT_DYNAMIC_CLASS_XTI(wxMenu, wxEvtHandler,"wx/menu.h")
132
133 wxCOLLECTION_TYPE_INFO( wxMenuItem * , wxMenuItemList ) ;
134
135 template<> void wxCollectionToVariantArray( wxMenuItemList const &theList, wxxVariantArray &value)
136 {
137 wxListCollectionToVariantArray<wxMenuItemList::compatibility_iterator>( theList , value ) ;
138 }
139
140 wxBEGIN_PROPERTIES_TABLE(wxMenu)
141 wxEVENT_PROPERTY( Select , wxEVT_COMMAND_MENU_SELECTED , wxCommandEvent)
142 wxPROPERTY( Title, wxString , SetTitle, GetTitle, wxString(), 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
143 wxREADONLY_PROPERTY_FLAGS( MenuStyle , wxMenuStyle , long , GetStyle , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
144 wxPROPERTY_COLLECTION( MenuItems , wxMenuItemList , wxMenuItem* , Append , GetMenuItems , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
145 wxEND_PROPERTIES_TABLE()
146
147 wxBEGIN_HANDLERS_TABLE(wxMenu)
148 wxEND_HANDLERS_TABLE()
149
150 wxDIRECT_CONSTRUCTOR_2( wxMenu , wxString , Title , long , MenuStyle )
151
152 WX_DEFINE_FLAGS( wxMenuBarStyle )
153
154 wxBEGIN_FLAGS( wxMenuBarStyle )
155 wxFLAGS_MEMBER(wxMB_DOCKABLE)
156 wxEND_FLAGS( wxMenuBarStyle )
157
158 // the negative id would lead the window (its superclass !) to vetoe streaming out otherwise
159 bool wxMenuBarStreamingCallback( const wxObject *WXUNUSED(object), wxWriter * , wxPersister * , wxxVariantArray & )
160 {
161 return true ;
162 }
163
164 IMPLEMENT_DYNAMIC_CLASS_XTI_CALLBACK(wxMenuBar, wxWindow ,"wx/menu.h",wxMenuBarStreamingCallback)
165
166 IMPLEMENT_DYNAMIC_CLASS_XTI(wxMenuInfo, wxObject , "wx/menu.h" )
167
168 wxBEGIN_PROPERTIES_TABLE(wxMenuInfo)
169 wxREADONLY_PROPERTY( Menu , wxMenu* , GetMenu , EMPTY_MACROVALUE , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
170 wxREADONLY_PROPERTY( Title , wxString , GetTitle , wxString() , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
171 wxEND_PROPERTIES_TABLE()
172
173 wxBEGIN_HANDLERS_TABLE(wxMenuInfo)
174 wxEND_HANDLERS_TABLE()
175
176 wxCONSTRUCTOR_2( wxMenuInfo , wxMenu* , Menu , wxString , Title )
177
178 wxCOLLECTION_TYPE_INFO( wxMenuInfo * , wxMenuInfoList ) ;
179
180 template<> void wxCollectionToVariantArray( wxMenuInfoList const &theList, wxxVariantArray &value)
181 {
182 wxListCollectionToVariantArray<wxMenuInfoList::compatibility_iterator>( theList , value ) ;
183 }
184
185 wxBEGIN_PROPERTIES_TABLE(wxMenuBar)
186 wxPROPERTY_COLLECTION( MenuInfos , wxMenuInfoList , wxMenuInfo* , Append , GetMenuInfos , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
187 wxEND_PROPERTIES_TABLE()
188
189 wxBEGIN_HANDLERS_TABLE(wxMenuBar)
190 wxEND_HANDLERS_TABLE()
191
192 wxCONSTRUCTOR_DUMMY( wxMenuBar )
193
194 #else
195 IMPLEMENT_DYNAMIC_CLASS(wxMenu, wxEvtHandler)
196 IMPLEMENT_DYNAMIC_CLASS(wxMenuBar, wxWindow)
197 IMPLEMENT_DYNAMIC_CLASS(wxMenuInfo, wxObject)
198 #endif
199
200 const wxMenuInfoList& wxMenuBar::GetMenuInfos() const
201 {
202 wxMenuInfoList* list = const_cast< wxMenuInfoList* >( &m_menuInfos ) ;
203 WX_CLEAR_LIST( wxMenuInfoList , *list ) ;
204 for( size_t i = 0 ; i < GetMenuCount() ; ++i )
205 {
206 wxMenuInfo* info = new wxMenuInfo() ;
207 info->Create( const_cast<wxMenuBar*>(this)->GetMenu(i) , GetLabelTop(i) ) ;
208 list->Append( info ) ;
209 }
210 return m_menuInfos ;
211 }
212
213 // ---------------------------------------------------------------------------
214 // wxMenu construction, adding and removing menu items
215 // ---------------------------------------------------------------------------
216
217 // Construct a menu with optional title (then use append)
218 void wxMenu::Init()
219 {
220 m_doBreak = false;
221 m_startRadioGroup = -1;
222
223 // create the menu
224 m_hMenu = (WXHMENU)CreatePopupMenu();
225 if ( !m_hMenu )
226 {
227 wxLogLastError(wxT("CreatePopupMenu"));
228 }
229
230 // if we have a title, insert it in the beginning of the menu
231 if ( !m_title.IsEmpty() )
232 {
233 Append(idMenuTitle, m_title);
234 AppendSeparator();
235 }
236 }
237
238 // The wxWindow destructor will take care of deleting the submenus.
239 wxMenu::~wxMenu()
240 {
241 // we should free Windows resources only if Windows doesn't do it for us
242 // which happens if we're attached to a menubar or a submenu of another
243 // menu
244 if ( !IsAttached() && !GetParent() )
245 {
246 if ( !::DestroyMenu(GetHmenu()) )
247 {
248 wxLogLastError(wxT("DestroyMenu"));
249 }
250 }
251
252 #if wxUSE_ACCEL
253 // delete accels
254 WX_CLEAR_ARRAY(m_accels);
255 #endif // wxUSE_ACCEL
256 }
257
258 void wxMenu::Break()
259 {
260 // this will take effect during the next call to Append()
261 m_doBreak = true;
262 }
263
264 void wxMenu::Attach(wxMenuBarBase *menubar)
265 {
266 wxMenuBase::Attach(menubar);
267
268 EndRadioGroup();
269 }
270
271 #if wxUSE_ACCEL
272
273 int wxMenu::FindAccel(int id) const
274 {
275 size_t n, count = m_accels.GetCount();
276 for ( n = 0; n < count; n++ )
277 {
278 if ( m_accels[n]->m_command == id )
279 return n;
280 }
281
282 return wxNOT_FOUND;
283 }
284
285 void wxMenu::UpdateAccel(wxMenuItem *item)
286 {
287 if ( item->IsSubMenu() )
288 {
289 wxMenu *submenu = item->GetSubMenu();
290 wxMenuItemList::compatibility_iterator node = submenu->GetMenuItems().GetFirst();
291 while ( node )
292 {
293 UpdateAccel(node->GetData());
294
295 node = node->GetNext();
296 }
297 }
298 else if ( !item->IsSeparator() )
299 {
300 // find the (new) accel for this item
301 wxAcceleratorEntry *accel = wxGetAccelFromString(item->GetText());
302 if ( accel )
303 accel->m_command = item->GetId();
304
305 // find the old one
306 int n = FindAccel(item->GetId());
307 if ( n == wxNOT_FOUND )
308 {
309 // no old, add new if any
310 if ( accel )
311 m_accels.Add(accel);
312 else
313 return; // skipping RebuildAccelTable() below
314 }
315 else
316 {
317 // replace old with new or just remove the old one if no new
318 delete m_accels[n];
319 if ( accel )
320 m_accels[n] = accel;
321 else
322 m_accels.RemoveAt(n);
323 }
324
325 if ( IsAttached() )
326 {
327 GetMenuBar()->RebuildAccelTable();
328 }
329 }
330 //else: it is a separator, they can't have accels, nothing to do
331 }
332
333 #endif // wxUSE_ACCEL
334
335 // append a new item or submenu to the menu
336 bool wxMenu::DoInsertOrAppend(wxMenuItem *pItem, size_t pos)
337 {
338 #if wxUSE_ACCEL
339 UpdateAccel(pItem);
340 #endif // wxUSE_ACCEL
341
342 UINT flags = 0;
343
344 // if "Break" has just been called, insert a menu break before this item
345 // (and don't forget to reset the flag)
346 if ( m_doBreak ) {
347 flags |= MF_MENUBREAK;
348 m_doBreak = false;
349 }
350
351 if ( pItem->IsSeparator() ) {
352 flags |= MF_SEPARATOR;
353 }
354
355 // id is the numeric id for normal menu items and HMENU for submenus as
356 // required by ::AppendMenu() API
357 UINT id;
358 wxMenu *submenu = pItem->GetSubMenu();
359 if ( submenu != NULL ) {
360 wxASSERT_MSG( submenu->GetHMenu(), wxT("invalid submenu") );
361
362 submenu->SetParent(this);
363
364 id = (UINT)submenu->GetHMenu();
365
366 flags |= MF_POPUP;
367 }
368 else {
369 id = pItem->GetId();
370 }
371
372 #ifdef __WXWINCE__
373 wxString strippedString;
374 #endif
375
376 LPCTSTR pData;
377
378 #if wxUSE_OWNER_DRAWN
379 if ( pItem->IsOwnerDrawn() ) { // want to get {Measure|Draw}Item messages?
380 // item draws itself, pass pointer to it in data parameter
381 flags |= MF_OWNERDRAW;
382 pData = (LPCTSTR)pItem;
383 }
384 else
385 #endif
386 {
387 // menu is just a normal string (passed in data parameter)
388 flags |= MF_STRING;
389
390 #ifdef __WXWINCE__
391 strippedString = wxStripMenuCodes(pItem->GetText());
392 pData = (wxChar*)strippedString.c_str();
393 #else
394 pData = (wxChar*)pItem->GetText().c_str();
395 #endif
396 }
397
398 BOOL ok;
399 if ( pos == (size_t)-1 )
400 {
401 ok = ::AppendMenu(GetHmenu(), flags, id, pData);
402 }
403 else
404 {
405 ok = ::InsertMenu(GetHmenu(), pos, flags | MF_BYPOSITION, id, pData);
406 }
407
408 if ( !ok )
409 {
410 wxLogLastError(wxT("Insert or AppendMenu"));
411
412 return false;
413 }
414
415 // if we just appended the title, highlight it
416 #ifdef __WIN32__
417 if ( (int)id == idMenuTitle )
418 {
419 // visually select the menu title
420 SetDefaultMenuItem(GetHmenu(), id);
421 }
422 #endif // __WIN32__
423
424 // if we're already attached to the menubar, we must update it
425 if ( IsAttached() && GetMenuBar()->IsAttached() )
426 {
427 GetMenuBar()->Refresh();
428 }
429
430 return true;
431 }
432
433 void wxMenu::EndRadioGroup()
434 {
435 // we're not inside a radio group any longer
436 m_startRadioGroup = -1;
437 }
438
439 wxMenuItem* wxMenu::DoAppend(wxMenuItem *item)
440 {
441 wxCHECK_MSG( item, NULL, _T("NULL item in wxMenu::DoAppend") );
442
443 bool check = false;
444
445 if ( item->GetKind() == wxITEM_RADIO )
446 {
447 int count = GetMenuItemCount();
448
449 if ( m_startRadioGroup == -1 )
450 {
451 // start a new radio group
452 m_startRadioGroup = count;
453
454 // for now it has just one element
455 item->SetAsRadioGroupStart();
456 item->SetRadioGroupEnd(m_startRadioGroup);
457
458 // ensure that we have a checked item in the radio group
459 check = true;
460 }
461 else // extend the current radio group
462 {
463 // we need to update its end item
464 item->SetRadioGroupStart(m_startRadioGroup);
465 wxMenuItemList::compatibility_iterator node = GetMenuItems().Item(m_startRadioGroup);
466
467 if ( node )
468 {
469 node->GetData()->SetRadioGroupEnd(count);
470 }
471 else
472 {
473 wxFAIL_MSG( _T("where is the radio group start item?") );
474 }
475 }
476 }
477 else // not a radio item
478 {
479 EndRadioGroup();
480 }
481
482 if ( !wxMenuBase::DoAppend(item) || !DoInsertOrAppend(item) )
483 {
484 return NULL;
485 }
486
487 if ( check )
488 {
489 // check the item initially
490 item->Check(true);
491 }
492
493 return item;
494 }
495
496 wxMenuItem* wxMenu::DoInsert(size_t pos, wxMenuItem *item)
497 {
498 if (wxMenuBase::DoInsert(pos, item) && DoInsertOrAppend(item, pos))
499 return item;
500 else
501 return NULL;
502 }
503
504 wxMenuItem *wxMenu::DoRemove(wxMenuItem *item)
505 {
506 // we need to find the items position in the child list
507 size_t pos;
508 wxMenuItemList::compatibility_iterator node = GetMenuItems().GetFirst();
509 for ( pos = 0; node; pos++ )
510 {
511 if ( node->GetData() == item )
512 break;
513
514 node = node->GetNext();
515 }
516
517 // DoRemove() (unlike Remove) can only be called for existing item!
518 wxCHECK_MSG( node, NULL, wxT("bug in wxMenu::Remove logic") );
519
520 #if wxUSE_ACCEL
521 // remove the corresponding accel from the accel table
522 int n = FindAccel(item->GetId());
523 if ( n != wxNOT_FOUND )
524 {
525 delete m_accels[n];
526
527 m_accels.RemoveAt(n);
528 }
529 //else: this item doesn't have an accel, nothing to do
530 #endif // wxUSE_ACCEL
531
532 // remove the item from the menu
533 if ( !::RemoveMenu(GetHmenu(), (UINT)pos, MF_BYPOSITION) )
534 {
535 wxLogLastError(wxT("RemoveMenu"));
536 }
537
538 if ( IsAttached() && GetMenuBar()->IsAttached() )
539 {
540 // otherwise, the chane won't be visible
541 GetMenuBar()->Refresh();
542 }
543
544 // and from internal data structures
545 return wxMenuBase::DoRemove(item);
546 }
547
548 // ---------------------------------------------------------------------------
549 // accelerator helpers
550 // ---------------------------------------------------------------------------
551
552 #if wxUSE_ACCEL
553
554 // create the wxAcceleratorEntries for our accels and put them into provided
555 // array - return the number of accels we have
556 size_t wxMenu::CopyAccels(wxAcceleratorEntry *accels) const
557 {
558 size_t count = GetAccelCount();
559 for ( size_t n = 0; n < count; n++ )
560 {
561 *accels++ = *m_accels[n];
562 }
563
564 return count;
565 }
566
567 #endif // wxUSE_ACCEL
568
569 // ---------------------------------------------------------------------------
570 // set wxMenu title
571 // ---------------------------------------------------------------------------
572
573 void wxMenu::SetTitle(const wxString& label)
574 {
575 bool hasNoTitle = m_title.IsEmpty();
576 m_title = label;
577
578 HMENU hMenu = GetHmenu();
579
580 if ( hasNoTitle )
581 {
582 if ( !label.IsEmpty() )
583 {
584 if ( !::InsertMenu(hMenu, 0u, MF_BYPOSITION | MF_STRING,
585 (unsigned)idMenuTitle, m_title) ||
586 !::InsertMenu(hMenu, 1u, MF_BYPOSITION, (unsigned)-1, NULL) )
587 {
588 wxLogLastError(wxT("InsertMenu"));
589 }
590 }
591 }
592 else
593 {
594 if ( label.IsEmpty() )
595 {
596 // remove the title and the separator after it
597 if ( !RemoveMenu(hMenu, 0, MF_BYPOSITION) ||
598 !RemoveMenu(hMenu, 0, MF_BYPOSITION) )
599 {
600 wxLogLastError(wxT("RemoveMenu"));
601 }
602 }
603 else
604 {
605 // modify the title
606 #ifdef __WXWINCE__
607 MENUITEMINFO info;
608 wxZeroMemory(info);
609 info.cbSize = sizeof(info);
610 info.fMask = MIIM_TYPE;
611 info.fType = MFT_STRING;
612 info.cch = m_title.Length();
613 info.dwTypeData = (LPTSTR) m_title.c_str();
614 if ( !SetMenuItemInfo(hMenu, 0, TRUE, & info) )
615 {
616 wxLogLastError(wxT("SetMenuItemInfo"));
617 }
618 #else
619 if ( !ModifyMenu(hMenu, 0u,
620 MF_BYPOSITION | MF_STRING,
621 (unsigned)idMenuTitle, m_title) )
622 {
623 wxLogLastError(wxT("ModifyMenu"));
624 }
625 #endif
626 }
627 }
628
629 #ifdef __WIN32__
630 // put the title string in bold face
631 if ( !m_title.IsEmpty() )
632 {
633 SetDefaultMenuItem(GetHmenu(), (UINT)idMenuTitle);
634 }
635 #endif // Win32
636 }
637
638 // ---------------------------------------------------------------------------
639 // event processing
640 // ---------------------------------------------------------------------------
641
642 bool wxMenu::MSWCommand(WXUINT WXUNUSED(param), WXWORD id)
643 {
644 // ignore commands from the menu title
645 if ( id != (WXWORD)idMenuTitle )
646 {
647 // get the checked status of the command: notice that menuState is the
648 // old state of the menu, so the test for MF_CHECKED must be inversed
649 UINT menuState = ::GetMenuState(GetHmenu(), id, MF_BYCOMMAND);
650 SendEvent(id, !(menuState & MF_CHECKED));
651 }
652
653 return true;
654 }
655
656 // ---------------------------------------------------------------------------
657 // other
658 // ---------------------------------------------------------------------------
659
660 wxWindow *wxMenu::GetWindow() const
661 {
662 if ( m_invokingWindow != NULL )
663 return m_invokingWindow;
664 else if ( GetMenuBar() != NULL)
665 return GetMenuBar()->GetFrame();
666
667 return NULL;
668 }
669
670 // ---------------------------------------------------------------------------
671 // Menu Bar
672 // ---------------------------------------------------------------------------
673
674 void wxMenuBar::Init()
675 {
676 m_eventHandler = this;
677 m_hMenu = 0;
678 #if wxUSE_TOOLBAR && defined(__WXWINCE__)
679 m_toolBar = NULL;
680 #endif
681 // Not using a combined wxToolBar/wxMenuBar? then use
682 // a commandbar in WinCE .NET just to implement the
683 // menubar.
684 #if defined(WINCE_WITH_COMMANDBAR)
685 m_commandBar = NULL;
686 m_adornmentsAdded = false;
687 #endif
688 }
689
690 wxMenuBar::wxMenuBar()
691 {
692 Init();
693 }
694
695 wxMenuBar::wxMenuBar( long WXUNUSED(style) )
696 {
697 Init();
698 }
699
700 wxMenuBar::wxMenuBar(int count, wxMenu *menus[], const wxString titles[])
701 {
702 Init();
703
704 m_titles.Alloc(count);
705
706 for ( int i = 0; i < count; i++ )
707 {
708 m_menus.Append(menus[i]);
709 m_titles.Add(titles[i]);
710
711 menus[i]->Attach(this);
712 }
713 }
714
715 wxMenuBar::~wxMenuBar()
716 {
717 // In Windows CE (not .NET), the menubar is always associated
718 // with a toolbar, which destroys the menu implicitly.
719 #if defined(WINCE_WITHOUT_COMMANDBAR)
720 if (GetToolBar())
721 GetToolBar()->SetMenuBar(NULL);
722 #else
723 // we should free Windows resources only if Windows doesn't do it for us
724 // which happens if we're attached to a frame
725 if (m_hMenu && !IsAttached())
726 {
727 #if defined(WINCE_WITH_COMMANDBAR)
728 ::DestroyWindow((HWND) m_commandBar);
729 m_commandBar = (WXHWND) NULL;
730 #else
731 ::DestroyMenu((HMENU)m_hMenu);
732 #endif
733 m_hMenu = (WXHMENU)NULL;
734 }
735 #endif
736 }
737
738 // ---------------------------------------------------------------------------
739 // wxMenuBar helpers
740 // ---------------------------------------------------------------------------
741
742 void wxMenuBar::Refresh()
743 {
744 wxCHECK_RET( IsAttached(), wxT("can't refresh unattached menubar") );
745
746 #if defined(WINCE_WITHOUT_COMMANDBAR)
747 if (GetToolBar())
748 {
749 CommandBar_DrawMenuBar((HWND) GetToolBar()->GetHWND(), 0);
750 }
751 #elif defined(WINCE_WITH_COMMANDBAR)
752 if (m_commandBar)
753 DrawMenuBar((HWND) m_commandBar);
754 #else
755 DrawMenuBar(GetHwndOf(GetFrame()));
756 #endif
757 }
758
759 WXHMENU wxMenuBar::Create()
760 {
761 // Note: this totally doesn't work on Smartphone,
762 // since you have to use resources.
763 // We'll have to find another way to add a menu
764 // by changing/adding menu items to an existing menu.
765 #if defined(WINCE_WITHOUT_COMMANDBAR)
766 if ( m_hMenu != 0 )
767 return m_hMenu;
768
769 if (!GetToolBar())
770 return 0;
771
772 HWND hCommandBar = (HWND) GetToolBar()->GetHWND();
773 HMENU hMenu = (HMENU)::SendMessage(hCommandBar, SHCMBM_GETMENU, (WPARAM)0, (LPARAM)0);
774 if (hMenu)
775 {
776 TBBUTTON tbButton;
777 memset(&tbButton, 0, sizeof(TBBUTTON));
778 tbButton.iBitmap = I_IMAGENONE;
779 tbButton.fsState = TBSTATE_ENABLED;
780 tbButton.fsStyle = TBSTYLE_DROPDOWN | TBSTYLE_NO_DROPDOWN_ARROW | TBSTYLE_AUTOSIZE;
781
782 size_t i;
783 for (i = 0; i < GetMenuCount(); i++)
784 {
785 HMENU hPopupMenu = (HMENU) GetMenu(i)->GetHMenu() ;
786 tbButton.dwData = (DWORD)hPopupMenu;
787 wxString label = wxStripMenuCodes(GetLabelTop(i));
788 tbButton.iString = (int) label.c_str();
789
790 int position = i;
791
792 tbButton.idCommand = NewControlId();
793 if (!::SendMessage(hCommandBar, TB_INSERTBUTTON, position, (LPARAM)&tbButton))
794 {
795 wxLogLastError(wxT("TB_INSERTBUTTON"));
796 }
797 }
798 }
799 m_hMenu = (WXHMENU) hMenu;
800 return m_hMenu;
801 #else
802 if ( m_hMenu != 0 )
803 return m_hMenu;
804
805 m_hMenu = (WXHMENU)::CreateMenu();
806
807 if ( !m_hMenu )
808 {
809 wxLogLastError(wxT("CreateMenu"));
810 }
811 else
812 {
813 size_t count = GetMenuCount(), i;
814 wxMenuList::iterator it;
815 for ( i = 0, it = m_menus.begin(); i < count; i++, it++ )
816 {
817 if ( !::AppendMenu((HMENU)m_hMenu, MF_POPUP | MF_STRING,
818 (UINT)(*it)->GetHMenu(),
819 m_titles[i]) )
820 {
821 wxLogLastError(wxT("AppendMenu"));
822 }
823 }
824 }
825
826 return m_hMenu;
827 #endif
828 }
829
830 int wxMenuBar::MSWPositionForWxMenu(wxMenu *menu, int wxpos)
831 {
832 wxASSERT(menu);
833 wxASSERT(menu->GetHMenu());
834 wxASSERT(m_hMenu);
835
836 #if defined(__WXWINCE__)
837 int totalMSWItems = GetMenuCount();
838 #else
839 int totalMSWItems = GetMenuItemCount((HMENU)m_hMenu);
840 #endif
841
842 int i; // For old C++ compatibility
843 for(i=wxpos; i<totalMSWItems; i++)
844 {
845 if(GetSubMenu((HMENU)m_hMenu,i)==(HMENU)menu->GetHMenu())
846 return i;
847 }
848 for(i=0; i<wxpos; i++)
849 {
850 if(GetSubMenu((HMENU)m_hMenu,i)==(HMENU)menu->GetHMenu())
851 return i;
852 }
853 wxFAIL;
854 return -1;
855 }
856
857 // ---------------------------------------------------------------------------
858 // wxMenuBar functions to work with the top level submenus
859 // ---------------------------------------------------------------------------
860
861 // NB: we don't support owner drawn top level items for now, if we do these
862 // functions would have to be changed to use wxMenuItem as well
863
864 void wxMenuBar::EnableTop(size_t pos, bool enable)
865 {
866 wxCHECK_RET( IsAttached(), wxT("doesn't work with unattached menubars") );
867 wxCHECK_RET( pos < GetMenuCount(), wxT("invalid menu index") );
868
869 int flag = enable ? MF_ENABLED : MF_GRAYED;
870
871 EnableMenuItem((HMENU)m_hMenu, MSWPositionForWxMenu(GetMenu(pos),pos), MF_BYPOSITION | flag);
872
873 Refresh();
874 }
875
876 void wxMenuBar::SetLabelTop(size_t pos, const wxString& label)
877 {
878 wxCHECK_RET( pos < GetMenuCount(), wxT("invalid menu index") );
879
880 m_titles[pos] = label;
881
882 if ( !IsAttached() )
883 {
884 return;
885 }
886 //else: have to modify the existing menu
887
888 int mswpos = MSWPositionForWxMenu(GetMenu(pos),pos);
889
890 UINT id;
891 UINT flagsOld = ::GetMenuState((HMENU)m_hMenu, mswpos, MF_BYPOSITION);
892 if ( flagsOld == 0xFFFFFFFF )
893 {
894 wxLogLastError(wxT("GetMenuState"));
895
896 return;
897 }
898
899 if ( flagsOld & MF_POPUP )
900 {
901 // HIBYTE contains the number of items in the submenu in this case
902 flagsOld &= 0xff;
903 id = (UINT)::GetSubMenu((HMENU)m_hMenu, mswpos);
904 }
905 else
906 {
907 id = pos;
908 }
909
910 #ifdef __WXWINCE__
911 MENUITEMINFO info;
912 wxZeroMemory(info);
913 info.cbSize = sizeof(info);
914 info.fMask = MIIM_TYPE;
915 info.fType = MFT_STRING;
916 info.cch = label.Length();
917 info.dwTypeData = (LPTSTR) label.c_str();
918 if ( !SetMenuItemInfo(GetHmenu(), id, TRUE, & info) )
919 {
920 wxLogLastError(wxT("SetMenuItemInfo"));
921 }
922
923 #else
924 if ( ::ModifyMenu(GetHmenu(), mswpos, MF_BYPOSITION | MF_STRING | flagsOld,
925 id, label) == (int)0xFFFFFFFF )
926 {
927 wxLogLastError(wxT("ModifyMenu"));
928 }
929 #endif
930
931 Refresh();
932 }
933
934 wxString wxMenuBar::GetLabelTop(size_t pos) const
935 {
936 wxCHECK_MSG( pos < GetMenuCount(), wxEmptyString,
937 wxT("invalid menu index in wxMenuBar::GetLabelTop") );
938
939 return wxMenuItem::GetLabelFromText(m_titles[pos]);
940 }
941
942 // ---------------------------------------------------------------------------
943 // wxMenuBar construction
944 // ---------------------------------------------------------------------------
945
946 wxMenu *wxMenuBar::Replace(size_t pos, wxMenu *menu, const wxString& title)
947 {
948 wxMenu *menuOld = wxMenuBarBase::Replace(pos, menu, title);
949 if ( !menuOld )
950 return NULL;
951
952 m_titles[pos] = title;
953
954 if ( IsAttached() )
955 {
956 int mswpos = MSWPositionForWxMenu(menuOld,pos);
957
958 // can't use ModifyMenu() because it deletes the submenu it replaces
959 if ( !::RemoveMenu(GetHmenu(), (UINT)mswpos, MF_BYPOSITION) )
960 {
961 wxLogLastError(wxT("RemoveMenu"));
962 }
963
964 if ( !::InsertMenu(GetHmenu(), (UINT)mswpos,
965 MF_BYPOSITION | MF_POPUP | MF_STRING,
966 (UINT)GetHmenuOf(menu), title) )
967 {
968 wxLogLastError(wxT("InsertMenu"));
969 }
970
971 #if wxUSE_ACCEL
972 if ( menuOld->HasAccels() || menu->HasAccels() )
973 {
974 // need to rebuild accell table
975 RebuildAccelTable();
976 }
977 #endif // wxUSE_ACCEL
978
979 Refresh();
980 }
981
982 return menuOld;
983 }
984
985 bool wxMenuBar::Insert(size_t pos, wxMenu *menu, const wxString& title)
986 {
987 // Find out which MSW item before which we'll be inserting before
988 // wxMenuBarBase::Insert is called and GetMenu(pos) is the new menu.
989 // If IsAttached() is false this won't be used anyway
990 int mswpos = (!IsAttached() || (pos == m_menus.GetCount()))
991 ? -1 // append the menu
992 : MSWPositionForWxMenu(GetMenu(pos),pos);
993
994 if ( !wxMenuBarBase::Insert(pos, menu, title) )
995 return false;
996
997 m_titles.Insert(title, pos);
998
999 if ( IsAttached() )
1000 {
1001 #if defined(WINCE_WITHOUT_COMMANDAR)
1002 if (!GetToolBar())
1003 return false;
1004 TBBUTTON tbButton;
1005 memset(&tbButton, 0, sizeof(TBBUTTON));
1006 tbButton.iBitmap = I_IMAGENONE;
1007 tbButton.fsState = TBSTATE_ENABLED;
1008 tbButton.fsStyle = TBSTYLE_DROPDOWN | TBSTYLE_NO_DROPDOWN_ARROW | TBSTYLE_AUTOSIZE;
1009
1010 HMENU hPopupMenu = (HMENU) menu->GetHMenu() ;
1011 tbButton.dwData = (DWORD)hPopupMenu;
1012 wxString label = wxStripMenuCodes(title);
1013 tbButton.iString = (int) label.c_str();
1014
1015 tbButton.idCommand = NewControlId();
1016 if (!::SendMessage((HWND) GetToolBar()->GetHWND(), TB_INSERTBUTTON, pos, (LPARAM)&tbButton))
1017 {
1018 wxLogLastError(wxT("TB_INSERTBUTTON"));
1019 return false;
1020 }
1021 #else
1022 if ( !::InsertMenu(GetHmenu(), mswpos,
1023 MF_BYPOSITION | MF_POPUP | MF_STRING,
1024 (UINT)GetHmenuOf(menu), title) )
1025 {
1026 wxLogLastError(wxT("InsertMenu"));
1027 }
1028 #endif
1029 #if wxUSE_ACCEL
1030 if ( menu->HasAccels() )
1031 {
1032 // need to rebuild accell table
1033 RebuildAccelTable();
1034 }
1035 #endif // wxUSE_ACCEL
1036
1037 Refresh();
1038 }
1039
1040 return true;
1041 }
1042
1043 bool wxMenuBar::Append(wxMenu *menu, const wxString& title)
1044 {
1045 WXHMENU submenu = menu ? menu->GetHMenu() : 0;
1046 wxCHECK_MSG( submenu, false, wxT("can't append invalid menu to menubar") );
1047
1048 if ( !wxMenuBarBase::Append(menu, title) )
1049 return false;
1050
1051 m_titles.Add(title);
1052
1053 if ( IsAttached() )
1054 {
1055 #if defined(WINCE_WITHOUT_COMMANDAR)
1056 if (!GetToolBar())
1057 return false;
1058 TBBUTTON tbButton;
1059 memset(&tbButton, 0, sizeof(TBBUTTON));
1060 tbButton.iBitmap = I_IMAGENONE;
1061 tbButton.fsState = TBSTATE_ENABLED;
1062 tbButton.fsStyle = TBSTYLE_DROPDOWN | TBSTYLE_NO_DROPDOWN_ARROW | TBSTYLE_AUTOSIZE;
1063
1064 size_t pos = GetMenuCount();
1065 HMENU hPopupMenu = (HMENU) menu->GetHMenu() ;
1066 tbButton.dwData = (DWORD)hPopupMenu;
1067 wxString label = wxStripMenuCodes(title);
1068 tbButton.iString = (int) label.c_str();
1069
1070 tbButton.idCommand = NewControlId();
1071 if (!::SendMessage((HWND) GetToolBar()->GetHWND(), TB_INSERTBUTTON, pos, (LPARAM)&tbButton))
1072 {
1073 wxLogLastError(wxT("TB_INSERTBUTTON"));
1074 return false;
1075 }
1076 #else
1077 if ( !::AppendMenu(GetHmenu(), MF_POPUP | MF_STRING,
1078 (UINT)submenu, title) )
1079 {
1080 wxLogLastError(wxT("AppendMenu"));
1081 }
1082 #endif
1083
1084 #if wxUSE_ACCEL
1085 if ( menu->HasAccels() )
1086 {
1087 // need to rebuild accelerator table
1088 RebuildAccelTable();
1089 }
1090 #endif // wxUSE_ACCEL
1091
1092 Refresh();
1093 }
1094
1095 return true;
1096 }
1097
1098 wxMenu *wxMenuBar::Remove(size_t pos)
1099 {
1100 wxMenu *menu = wxMenuBarBase::Remove(pos);
1101 if ( !menu )
1102 return NULL;
1103
1104 if ( IsAttached() )
1105 {
1106 #if defined(WINCE_WITHOUT_COMMANDAR)
1107 if (GetToolBar())
1108 {
1109 if (!::SendMessage((HWND) GetToolBar()->GetHWND(), TB_DELETEBUTTON, (UINT) pos, (LPARAM) 0))
1110 {
1111 wxLogLastError(wxT("TB_DELETEBUTTON"));
1112 }
1113 }
1114 #else
1115 if ( !::RemoveMenu(GetHmenu(), (UINT)MSWPositionForWxMenu(menu,pos), MF_BYPOSITION) )
1116 {
1117 wxLogLastError(wxT("RemoveMenu"));
1118 }
1119 #endif
1120
1121 #if wxUSE_ACCEL
1122 if ( menu->HasAccels() )
1123 {
1124 // need to rebuild accell table
1125 RebuildAccelTable();
1126 }
1127 #endif // wxUSE_ACCEL
1128
1129 Refresh();
1130 }
1131
1132
1133 m_titles.RemoveAt(pos);
1134
1135 return menu;
1136 }
1137
1138 #if wxUSE_ACCEL
1139
1140 void wxMenuBar::RebuildAccelTable()
1141 {
1142 // merge the accelerators of all menus into one accel table
1143 size_t nAccelCount = 0;
1144 size_t i, count = GetMenuCount();
1145 wxMenuList::iterator it;
1146 for ( i = 0, it = m_menus.begin(); i < count; i++, it++ )
1147 {
1148 nAccelCount += (*it)->GetAccelCount();
1149 }
1150
1151 if ( nAccelCount )
1152 {
1153 wxAcceleratorEntry *accelEntries = new wxAcceleratorEntry[nAccelCount];
1154
1155 nAccelCount = 0;
1156 for ( i = 0, it = m_menus.begin(); i < count; i++, it++ )
1157 {
1158 nAccelCount += (*it)->CopyAccels(&accelEntries[nAccelCount]);
1159 }
1160
1161 m_accelTable = wxAcceleratorTable(nAccelCount, accelEntries);
1162
1163 delete [] accelEntries;
1164 }
1165 }
1166
1167 #endif // wxUSE_ACCEL
1168
1169 void wxMenuBar::Attach(wxFrame *frame)
1170 {
1171 wxMenuBarBase::Attach(frame);
1172
1173 #if defined(WINCE_WITH_COMMANDBAR)
1174 if (!m_hMenu)
1175 this->Create();
1176 if (!m_commandBar)
1177 m_commandBar = (WXHWND) CommandBar_Create(wxGetInstance(), (HWND) frame->GetHWND(), NewControlId());
1178 if (m_commandBar)
1179 {
1180 if (m_hMenu)
1181 {
1182 if (!CommandBar_InsertMenubarEx((HWND) m_commandBar, NULL, (LPTSTR) m_hMenu, 0))
1183 {
1184 wxLogLastError(wxT("CommandBar_InsertMenubarEx"));
1185 }
1186 }
1187 }
1188 #endif
1189
1190 #if wxUSE_ACCEL
1191 RebuildAccelTable();
1192 #endif // wxUSE_ACCEL
1193 }
1194
1195 #if defined(WINCE_WITH_COMMANDBAR)
1196 bool wxMenuBar::AddAdornments(long style)
1197 {
1198 if (m_adornmentsAdded || !m_commandBar)
1199 return false;
1200
1201 if (style & wxCLOSE_BOX)
1202 {
1203 if (!CommandBar_AddAdornments((HWND) m_commandBar, 0, 0))
1204 wxLogLastError(wxT("CommandBar_AddAdornments"));
1205 else
1206 return true;
1207 }
1208 return false;
1209 }
1210 #endif
1211
1212 void wxMenuBar::Detach()
1213 {
1214 wxMenuBarBase::Detach();
1215 }
1216
1217 #endif // wxUSE_MENUS