1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/menu.cpp
3 // Purpose: wxMenu, wxMenuBar, wxMenuItem
4 // Author: Julian Smart
5 // Modified by: Vadim Zeitlin
8 // Copyright: (c) Julian Smart
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ===========================================================================
14 // ===========================================================================
16 // ---------------------------------------------------------------------------
18 // ---------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
40 #include "wx/ownerdrw.h"
43 #include "wx/scopedarray.h"
45 #include "wx/msw/private.h"
46 #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly"
54 #if (_WIN32_WCE < 400) && !defined(__HANDHELDPC__)
58 #include "wx/msw/wince/missing.h"
62 // other standard headers
66 #include "wx/dynlib.h"
69 #ifndef MNS_CHECKORBMP
70 #define MNS_CHECKORBMP 0x04000000
73 #define MIM_STYLE 0x00000010
76 // ----------------------------------------------------------------------------
78 // ----------------------------------------------------------------------------
80 // ----------------------------------------------------------------------------
82 // ----------------------------------------------------------------------------
84 // the (popup) menu title has this special id
85 static const int idMenuTitle
= wxID_NONE
;
87 // ----------------------------------------------------------------------------
89 // ----------------------------------------------------------------------------
94 // make the given menu item default
95 void SetDefaultMenuItem(HMENU
WXUNUSED_IN_WINCE(hmenu
),
96 UINT
WXUNUSED_IN_WINCE(id
))
101 mii
.cbSize
= sizeof(MENUITEMINFO
);
102 mii
.fMask
= MIIM_STATE
;
103 mii
.fState
= MFS_DEFAULT
;
105 if ( !::SetMenuItemInfo(hmenu
, id
, FALSE
, &mii
) )
107 wxLogLastError(wxT("SetMenuItemInfo"));
109 #endif // !__WXWINCE__
112 // make the given menu item owner-drawn
113 void SetOwnerDrawnMenuItem(HMENU
WXUNUSED_IN_WINCE(hmenu
),
114 UINT
WXUNUSED_IN_WINCE(id
),
115 ULONG_PTR
WXUNUSED_IN_WINCE(data
),
116 BOOL
WXUNUSED_IN_WINCE(byPositon
= FALSE
))
121 mii
.cbSize
= sizeof(MENUITEMINFO
);
122 mii
.fMask
= MIIM_FTYPE
| MIIM_DATA
;
123 mii
.fType
= MFT_OWNERDRAW
;
124 mii
.dwItemData
= data
;
126 if ( reinterpret_cast<wxMenuItem
*>(data
)->IsSeparator() )
127 mii
.fType
|= MFT_SEPARATOR
;
129 if ( !::SetMenuItemInfo(hmenu
, id
, byPositon
, &mii
) )
131 wxLogLastError(wxT("SetMenuItemInfo"));
133 #endif // !__WXWINCE__
137 UINT
GetMenuState(HMENU hMenu
, UINT id
, UINT flags
)
141 info
.cbSize
= sizeof(info
);
142 info
.fMask
= MIIM_STATE
;
143 // MF_BYCOMMAND is zero so test MF_BYPOSITION
144 if ( !::GetMenuItemInfo(hMenu
, id
, flags
& MF_BYPOSITION
? TRUE
: FALSE
, & info
) )
146 wxLogLastError(wxT("GetMenuItemInfo"));
150 #endif // __WXWINCE__
152 inline bool IsGreaterThanStdSize(const wxBitmap
& bmp
)
154 return bmp
.GetWidth() > ::GetSystemMetrics(SM_CXMENUCHECK
) ||
155 bmp
.GetHeight() > ::GetSystemMetrics(SM_CYMENUCHECK
);
158 } // anonymous namespace
160 // ============================================================================
162 // ============================================================================
164 // ---------------------------------------------------------------------------
165 // wxMenu construction, adding and removing menu items
166 // ---------------------------------------------------------------------------
168 // Construct a menu with optional title (then use append)
172 m_startRadioGroup
= -1;
174 #if wxUSE_OWNER_DRAWN
175 m_ownerDrawn
= false;
176 m_maxBitmapWidth
= 0;
177 m_maxAccelWidth
= -1;
178 #endif // wxUSE_OWNER_DRAWN
181 m_hMenu
= (WXHMENU
)CreatePopupMenu();
184 wxLogLastError(wxT("CreatePopupMenu"));
187 // if we have a title, insert it in the beginning of the menu
188 if ( !m_title
.empty() )
190 const wxString title
= m_title
;
191 m_title
.clear(); // so that SetTitle() knows there was no title before
196 // The wxWindow destructor will take care of deleting the submenus.
199 // we should free Windows resources only if Windows doesn't do it for us
200 // which happens if we're attached to a menubar or a submenu of another
202 if ( !IsAttached() && !GetParent() )
204 if ( !::DestroyMenu(GetHmenu()) )
206 wxLogLastError(wxT("DestroyMenu"));
212 WX_CLEAR_ARRAY(m_accels
);
213 #endif // wxUSE_ACCEL
218 // this will take effect during the next call to Append()
222 void wxMenu::Attach(wxMenuBarBase
*menubar
)
224 wxMenuBase::Attach(menubar
);
231 int wxMenu::FindAccel(int id
) const
233 size_t n
, count
= m_accels
.GetCount();
234 for ( n
= 0; n
< count
; n
++ )
236 if ( m_accels
[n
]->m_command
== id
)
243 void wxMenu::UpdateAccel(wxMenuItem
*item
)
245 if ( item
->IsSubMenu() )
247 wxMenu
*submenu
= item
->GetSubMenu();
248 wxMenuItemList::compatibility_iterator node
= submenu
->GetMenuItems().GetFirst();
251 UpdateAccel(node
->GetData());
253 node
= node
->GetNext();
256 else if ( !item
->IsSeparator() )
258 // recurse upwards: we should only modify m_accels of the top level
259 // menus, not of the submenus as wxMenuBar doesn't look at them
260 // (alternative and arguable cleaner solution would be to recurse
261 // downwards in GetAccelCount() and CopyAccels())
264 GetParent()->UpdateAccel(item
);
268 // find the (new) accel for this item
269 wxAcceleratorEntry
*accel
= wxAcceleratorEntry::Create(item
->GetItemLabel());
271 accel
->m_command
= item
->GetId();
274 int n
= FindAccel(item
->GetId());
275 if ( n
== wxNOT_FOUND
)
277 // no old, add new if any
281 return; // skipping RebuildAccelTable() below
285 // replace old with new or just remove the old one if no new
290 m_accels
.RemoveAt(n
);
295 GetMenuBar()->RebuildAccelTable();
298 ResetMaxAccelWidth();
300 //else: it is a separator, they can't have accels, nothing to do
303 #endif // wxUSE_ACCEL
308 // helper of DoInsertOrAppend(): returns the HBITMAP to use in MENUITEMINFO
309 HBITMAP
GetHBitmapForMenu(wxMenuItem
*pItem
, bool checked
= true)
311 // Under versions of Windows older than Vista we can't pass HBITMAP
312 // directly as hbmpItem for 2 reasons:
313 // 1. We can't draw it with transparency then (this is not
314 // very important now but would be with themed menu bg)
315 // 2. Worse, Windows inverts the bitmap for the selected
316 // item and this looks downright ugly
318 // So we prefer to instead draw it ourselves in MSWOnDrawItem().by using
319 // HBMMENU_CALLBACK when inserting it
321 // However under Vista using HBMMENU_CALLBACK causes the entire menu to be
322 // drawn using the classic theme instead of the current one and it does
323 // handle transparency just fine so do use the real bitmap there
325 if ( wxGetWinVersion() >= wxWinVersion_Vista
)
327 wxBitmap bmp
= pItem
->GetBitmap(checked
);
330 // we must use PARGB DIB for the menu bitmaps so ensure that we do
331 wxImage
img(bmp
.ConvertToImage());
332 if ( !img
.HasAlpha() )
335 pItem
->SetBitmap(img
, checked
);
338 return GetHbitmapOf(pItem
->GetBitmap(checked
));
340 //else: bitmap is not set
344 #endif // wxUSE_IMAGE
346 return HBMMENU_CALLBACK
;
349 } // anonymous namespace
351 // append a new item or submenu to the menu
352 bool wxMenu::DoInsertOrAppend(wxMenuItem
*pItem
, size_t pos
)
356 #endif // wxUSE_ACCEL
358 // we should support disabling the item even prior to adding it to the menu
359 UINT flags
= pItem
->IsEnabled() ? MF_ENABLED
: MF_GRAYED
;
361 // if "Break" has just been called, insert a menu break before this item
362 // (and don't forget to reset the flag)
364 flags
|= MF_MENUBREAK
;
368 if ( pItem
->IsSeparator() ) {
369 flags
|= MF_SEPARATOR
;
372 // id is the numeric id for normal menu items and HMENU for submenus as
373 // required by ::AppendMenu() API
375 wxMenu
*submenu
= pItem
->GetSubMenu();
376 if ( submenu
!= NULL
) {
377 wxASSERT_MSG( submenu
->GetHMenu(), wxT("invalid submenu") );
379 submenu
->SetParent(this);
381 id
= (UINT_PTR
)submenu
->GetHMenu();
386 id
= pItem
->GetMSWId();
390 // prepare to insert the item in the menu
391 wxString itemText
= pItem
->GetItemLabel();
392 LPCTSTR pData
= NULL
;
393 if ( pos
== (size_t)-1 )
395 // append at the end (note that the item is already appended to
396 // internal data structures)
397 pos
= GetMenuItemCount() - 1;
400 // adjust position to account for the title of a popup menu, if any
401 if ( !GetMenuBar() && !m_title
.empty() )
402 pos
+= 2; // for the title itself and its separator
406 #if wxUSE_OWNER_DRAWN
407 // Under older systems mixing owner-drawn and non-owner-drawn items results
408 // in inconsistent margins, so we force this one to be owner-drawn if any
409 // other items already are.
411 pItem
->SetOwnerDrawn(true);
412 #endif // wxUSE_OWNER_DRAWN
414 // check if we have something more than a simple text item
415 #if wxUSE_OWNER_DRAWN
416 if ( pItem
->IsOwnerDrawn() )
420 if ( !m_ownerDrawn
&& !pItem
->IsSeparator() )
422 // MIIM_BITMAP only works under WinME/2000+ so we always use owner
423 // drawn item under the previous versions and we also have to use
424 // them in any case if the item has custom colours or font
425 static const wxWinVersion winver
= wxGetWinVersion();
426 bool mustUseOwnerDrawn
= winver
< wxWinVersion_98
||
427 pItem
->GetTextColour().Ok() ||
428 pItem
->GetBackgroundColour().Ok() ||
429 pItem
->GetFont().Ok();
431 if ( !mustUseOwnerDrawn
)
433 const wxBitmap
& bmpUnchecked
= pItem
->GetBitmap(false),
434 bmpChecked
= pItem
->GetBitmap(true);
436 if ( (bmpUnchecked
.Ok() && IsGreaterThanStdSize(bmpUnchecked
)) ||
437 (bmpChecked
.Ok() && IsGreaterThanStdSize(bmpChecked
)) )
439 mustUseOwnerDrawn
= true;
443 // use InsertMenuItem() if possible as it's guaranteed to look
444 // correct while our owner-drawn code is not
445 if ( !mustUseOwnerDrawn
)
447 WinStruct
<MENUITEMINFO
> mii
;
448 mii
.fMask
= MIIM_STRING
| MIIM_DATA
;
450 // don't set hbmpItem for the checkable items as it would
451 // be used for both checked and unchecked state
452 if ( pItem
->IsCheckable() )
454 mii
.fMask
|= MIIM_CHECKMARKS
;
455 mii
.hbmpChecked
= GetHBitmapForMenu(pItem
, true);
456 mii
.hbmpUnchecked
= GetHBitmapForMenu(pItem
, false);
458 else if ( pItem
->GetBitmap().IsOk() )
460 mii
.fMask
|= MIIM_BITMAP
;
461 mii
.hbmpItem
= GetHBitmapForMenu(pItem
);
464 mii
.cch
= itemText
.length();
465 mii
.dwTypeData
= const_cast<wxChar
*>(itemText
.wx_str());
467 if ( flags
& MF_POPUP
)
469 mii
.fMask
|= MIIM_SUBMENU
;
470 mii
.hSubMenu
= GetHmenuOf(pItem
->GetSubMenu());
474 mii
.fMask
|= MIIM_ID
;
478 mii
.dwItemData
= reinterpret_cast<ULONG_PTR
>(pItem
);
480 ok
= ::InsertMenuItem(GetHmenu(), pos
, TRUE
/* by pos */, &mii
);
483 wxLogLastError(wxT("InsertMenuItem()"));
485 else // InsertMenuItem() ok
487 // we need to remove the extra indent which is reserved for
488 // the checkboxes by default as it looks ugly unless check
489 // boxes are used together with bitmaps and this is not the
491 WinStruct
<MENUINFO
> mi
;
493 // don't call SetMenuInfo() directly, this would prevent
494 // the app from starting up under Windows 95/NT 4
495 typedef BOOL (WINAPI
*SetMenuInfo_t
)(HMENU
, MENUINFO
*);
497 wxDynamicLibrary
dllUser(wxT("user32"));
498 wxDYNLIB_FUNCTION(SetMenuInfo_t
, SetMenuInfo
, dllUser
);
499 if ( pfnSetMenuInfo
)
501 mi
.fMask
= MIM_STYLE
;
502 mi
.dwStyle
= MNS_CHECKORBMP
;
503 if ( !(*pfnSetMenuInfo
)(GetHmenu(), &mi
) )
505 wxLogLastError(wxT("SetMenuInfo(MNS_NOCHECK)"));
509 // tell the item that it's not really owner-drawn but only
510 // needs to draw its bitmap, the rest is done by Windows
511 pItem
->SetOwnerDrawn(false);
519 // item draws itself, pass pointer to it in data parameter
520 flags
|= MF_OWNERDRAW
;
521 pData
= (LPCTSTR
)pItem
;
523 bool updateAllMargins
= false;
525 // get size of bitmap always return valid value (0 for invalid bitmap),
526 // so we don't needed check if bitmap is valid ;)
527 int uncheckedW
= pItem
->GetBitmap(false).GetWidth();
528 int checkedW
= pItem
->GetBitmap(true).GetWidth();
530 if ( m_maxBitmapWidth
< uncheckedW
)
532 m_maxBitmapWidth
= uncheckedW
;
533 updateAllMargins
= true;
536 if ( m_maxBitmapWidth
< checkedW
)
538 m_maxBitmapWidth
= checkedW
;
539 updateAllMargins
= true;
542 // make other item ownerdrawn and update margin width for equals alignment
543 if ( !m_ownerDrawn
|| updateAllMargins
)
545 // we must use position in SetOwnerDrawnMenuItem because
546 // all separators have the same id
548 wxMenuItemList::compatibility_iterator node
= GetMenuItems().GetFirst();
551 wxMenuItem
* item
= node
->GetData();
553 if ( !item
->IsOwnerDrawn())
555 item
->SetOwnerDrawn(true);
556 SetOwnerDrawnMenuItem(GetHmenu(), pos
,
557 reinterpret_cast<ULONG_PTR
>(item
), TRUE
);
560 item
->SetMarginWidth(m_maxBitmapWidth
);
562 node
= node
->GetNext();
566 // set menu as ownerdrawn
569 ResetMaxAccelWidth();
571 // only update our margin for equals alignment to other item
572 else if ( !updateAllMargins
)
574 pItem
->SetMarginWidth(m_maxBitmapWidth
);
579 #endif // wxUSE_OWNER_DRAWN
581 // item is just a normal string (passed in data parameter)
585 itemText
= wxMenuItem::GetLabelText(itemText
);
588 pData
= (wxChar
*)itemText
.wx_str();
591 // item might have already been inserted by InsertMenuItem() above
594 if ( !::InsertMenu(GetHmenu(), pos
, flags
| MF_BYPOSITION
, id
, pData
) )
596 wxLogLastError(wxT("InsertMenu[Item]()"));
603 // if we just appended the title, highlight it
604 if ( id
== (UINT_PTR
)idMenuTitle
)
606 // visually select the menu title
607 SetDefaultMenuItem(GetHmenu(), id
);
610 // if we're already attached to the menubar, we must update it
611 if ( IsAttached() && GetMenuBar()->IsAttached() )
613 GetMenuBar()->Refresh();
619 void wxMenu::EndRadioGroup()
621 // we're not inside a radio group any longer
622 m_startRadioGroup
= -1;
625 wxMenuItem
* wxMenu::DoAppend(wxMenuItem
*item
)
627 wxCHECK_MSG( item
, NULL
, wxT("NULL item in wxMenu::DoAppend") );
631 if ( item
->GetKind() == wxITEM_RADIO
)
633 int count
= GetMenuItemCount();
635 if ( m_startRadioGroup
== -1 )
637 // start a new radio group
638 m_startRadioGroup
= count
;
640 // for now it has just one element
641 item
->SetAsRadioGroupStart();
642 item
->SetRadioGroupEnd(m_startRadioGroup
);
644 // ensure that we have a checked item in the radio group
647 else // extend the current radio group
649 // we need to update its end item
650 item
->SetRadioGroupStart(m_startRadioGroup
);
651 wxMenuItemList::compatibility_iterator node
= GetMenuItems().Item(m_startRadioGroup
);
655 node
->GetData()->SetRadioGroupEnd(count
);
659 wxFAIL_MSG( wxT("where is the radio group start item?") );
663 else // not a radio item
668 if ( !wxMenuBase::DoAppend(item
) || !DoInsertOrAppend(item
) )
675 // check the item initially
682 wxMenuItem
* wxMenu::DoInsert(size_t pos
, wxMenuItem
*item
)
684 if (wxMenuBase::DoInsert(pos
, item
) && DoInsertOrAppend(item
, pos
))
690 wxMenuItem
*wxMenu::DoRemove(wxMenuItem
*item
)
692 // we need to find the item's position in the child list
694 wxMenuItemList::compatibility_iterator node
= GetMenuItems().GetFirst();
695 for ( pos
= 0; node
; pos
++ )
697 if ( node
->GetData() == item
)
700 node
= node
->GetNext();
703 // DoRemove() (unlike Remove) can only be called for an existing item!
704 wxCHECK_MSG( node
, NULL
, wxT("bug in wxMenu::Remove logic") );
707 // remove the corresponding accel from the accel table
708 int n
= FindAccel(item
->GetId());
709 if ( n
!= wxNOT_FOUND
)
713 m_accels
.RemoveAt(n
);
715 ResetMaxAccelWidth();
717 //else: this item doesn't have an accel, nothing to do
718 #endif // wxUSE_ACCEL
720 // remove the item from the menu
721 if ( !::RemoveMenu(GetHmenu(), (UINT
)pos
, MF_BYPOSITION
) )
723 wxLogLastError(wxT("RemoveMenu"));
726 if ( IsAttached() && GetMenuBar()->IsAttached() )
728 // otherwise, the change won't be visible
729 GetMenuBar()->Refresh();
732 // and from internal data structures
733 return wxMenuBase::DoRemove(item
);
736 // ---------------------------------------------------------------------------
737 // accelerator helpers
738 // ---------------------------------------------------------------------------
742 // create the wxAcceleratorEntries for our accels and put them into the provided
743 // array - return the number of accels we have
744 size_t wxMenu::CopyAccels(wxAcceleratorEntry
*accels
) const
746 size_t count
= GetAccelCount();
747 for ( size_t n
= 0; n
< count
; n
++ )
749 *accels
++ = *m_accels
[n
];
755 wxAcceleratorTable
*wxMenu::CreateAccelTable() const
757 const size_t count
= m_accels
.size();
758 wxScopedArray
<wxAcceleratorEntry
> accels(new wxAcceleratorEntry
[count
]);
759 CopyAccels(accels
.get());
761 return new wxAcceleratorTable(count
, accels
.get());
764 #endif // wxUSE_ACCEL
766 // ---------------------------------------------------------------------------
767 // ownerdrawn helpers
768 // ---------------------------------------------------------------------------
770 #if wxUSE_OWNER_DRAWN
772 void wxMenu::CalculateMaxAccelWidth()
774 wxASSERT_MSG( m_maxAccelWidth
== -1, wxT("it's really needed?") );
776 wxMenuItemList::compatibility_iterator node
= GetMenuItems().GetFirst();
779 wxMenuItem
* item
= node
->GetData();
781 if ( item
->IsOwnerDrawn() )
783 int width
= item
->MeasureAccelWidth();
784 if (width
> m_maxAccelWidth
)
785 m_maxAccelWidth
= width
;
788 node
= node
->GetNext();
792 #endif // wxUSE_OWNER_DRAWN
794 // ---------------------------------------------------------------------------
796 // ---------------------------------------------------------------------------
798 void wxMenu::SetTitle(const wxString
& label
)
800 bool hasNoTitle
= m_title
.empty();
803 HMENU hMenu
= GetHmenu();
807 if ( !label
.empty() )
809 if ( !::InsertMenu(hMenu
, 0u, MF_BYPOSITION
| MF_STRING
,
810 (UINT_PTR
)idMenuTitle
, m_title
.wx_str()) ||
811 !::InsertMenu(hMenu
, 1u, MF_BYPOSITION
, (unsigned)-1, NULL
) )
813 wxLogLastError(wxT("InsertMenu"));
821 // remove the title and the separator after it
822 if ( !RemoveMenu(hMenu
, 0, MF_BYPOSITION
) ||
823 !RemoveMenu(hMenu
, 0, MF_BYPOSITION
) )
825 wxLogLastError(wxT("RemoveMenu"));
834 info
.cbSize
= sizeof(info
);
835 info
.fMask
= MIIM_TYPE
;
836 info
.fType
= MFT_STRING
;
837 info
.cch
= m_title
.length();
838 info
.dwTypeData
= const_cast<wxChar
*>(m_title
.wx_str());
839 if ( !SetMenuItemInfo(hMenu
, 0, TRUE
, & info
) )
841 wxLogLastError(wxT("SetMenuItemInfo"));
844 if ( !ModifyMenu(hMenu
, 0u,
845 MF_BYPOSITION
| MF_STRING
,
846 (UINT_PTR
)idMenuTitle
, m_title
.wx_str()) )
848 wxLogLastError(wxT("ModifyMenu"));
855 // put the title string in bold face
856 if ( !m_title
.empty() )
858 SetDefaultMenuItem(GetHmenu(), (UINT_PTR
)idMenuTitle
);
863 // ---------------------------------------------------------------------------
865 // ---------------------------------------------------------------------------
867 bool wxMenu::MSWCommand(WXUINT
WXUNUSED(param
), WXWORD id_
)
869 const int id
= (signed short)id_
;
871 // ignore commands from the menu title
872 if ( id
!= idMenuTitle
)
874 // update the check item when it's clicked
875 wxMenuItem
* const item
= FindItem(id
);
876 if ( item
&& item
->IsCheckable() )
879 // get the status of the menu item: note that it has been just changed
880 // by Toggle() above so here we already get the new state of the item
881 UINT menuState
= ::GetMenuState(GetHmenu(), id
, MF_BYCOMMAND
);
882 SendEvent(id
, menuState
& MF_CHECKED
);
888 // get the menu with given handle (recursively)
889 wxMenu
* wxMenu::MSWGetMenu(WXHMENU hMenu
)
892 if ( GetHMenu() == hMenu
)
895 // recursively query submenus
896 for ( size_t n
= 0 ; n
< GetMenuItemCount(); ++n
)
898 wxMenuItem
* item
= FindItemByPosition(n
);
899 wxMenu
* submenu
= item
->GetSubMenu();
902 submenu
= submenu
->MSWGetMenu(hMenu
);
912 // ---------------------------------------------------------------------------
914 // ---------------------------------------------------------------------------
916 void wxMenuBar::Init()
918 m_eventHandler
= this;
920 #if wxUSE_TOOLBAR && defined(__WXWINCE__)
923 // Not using a combined wxToolBar/wxMenuBar? then use
924 // a commandbar in WinCE .NET just to implement the
926 #if defined(WINCE_WITH_COMMANDBAR)
928 m_adornmentsAdded
= false;
932 wxMenuBar::wxMenuBar()
937 wxMenuBar::wxMenuBar( long WXUNUSED(style
) )
942 wxMenuBar::wxMenuBar(size_t count
, wxMenu
*menus
[], const wxString titles
[], long WXUNUSED(style
))
946 for ( size_t i
= 0; i
< count
; i
++ )
948 // We just want to store the menu title in the menu itself, not to
949 // show it as a dummy item in the menu itself as we do with the popup
950 // menu titles in overridden wxMenu::SetTitle().
951 menus
[i
]->wxMenuBase::SetTitle(titles
[i
]);
952 m_menus
.Append(menus
[i
]);
954 menus
[i
]->Attach(this);
958 wxMenuBar::~wxMenuBar()
960 // In Windows CE (not .NET), the menubar is always associated
961 // with a toolbar, which destroys the menu implicitly.
962 #if defined(WINCE_WITHOUT_COMMANDBAR) && defined(__POCKETPC__)
965 wxToolMenuBar
* toolMenuBar
= wxDynamicCast(GetToolBar(), wxToolMenuBar
);
967 toolMenuBar
->SetMenuBar(NULL
);
970 // we should free Windows resources only if Windows doesn't do it for us
971 // which happens if we're attached to a frame
972 if (m_hMenu
&& !IsAttached())
974 #if defined(WINCE_WITH_COMMANDBAR)
975 ::DestroyWindow((HWND
) m_commandBar
);
976 m_commandBar
= (WXHWND
) NULL
;
978 ::DestroyMenu((HMENU
)m_hMenu
);
980 m_hMenu
= (WXHMENU
)NULL
;
985 // ---------------------------------------------------------------------------
987 // ---------------------------------------------------------------------------
989 void wxMenuBar::Refresh()
994 wxCHECK_RET( IsAttached(), wxT("can't refresh unattached menubar") );
996 #if defined(WINCE_WITHOUT_COMMANDBAR)
999 CommandBar_DrawMenuBar((HWND
) GetToolBar()->GetHWND(), 0);
1001 #elif defined(WINCE_WITH_COMMANDBAR)
1003 DrawMenuBar((HWND
) m_commandBar
);
1005 DrawMenuBar(GetHwndOf(GetFrame()));
1009 WXHMENU
wxMenuBar::Create()
1011 // Note: this doesn't work at all on Smartphone,
1012 // since you have to use resources.
1013 // We'll have to find another way to add a menu
1014 // by changing/adding menu items to an existing menu.
1015 #if defined(WINCE_WITHOUT_COMMANDBAR)
1019 wxToolMenuBar
* const bar
= static_cast<wxToolMenuBar
*>(GetToolBar());
1023 HWND hCommandBar
= GetHwndOf(bar
);
1025 // notify comctl32.dll about the version of the headers we use before using
1026 // any other TB_XXX messages
1027 SendMessage(hCommandBar
, TB_BUTTONSTRUCTSIZE
, sizeof(TBBUTTON
), 0);
1030 wxZeroMemory(tbButton
);
1031 tbButton
.iBitmap
= I_IMAGENONE
;
1032 tbButton
.fsState
= TBSTATE_ENABLED
;
1033 tbButton
.fsStyle
= TBSTYLE_DROPDOWN
|
1034 TBSTYLE_NO_DROPDOWN_ARROW
|
1037 for ( unsigned i
= 0; i
< GetMenuCount(); i
++ )
1039 HMENU hPopupMenu
= (HMENU
) GetMenu(i
)->GetHMenu();
1040 tbButton
.dwData
= (DWORD
)hPopupMenu
;
1041 wxString label
= wxStripMenuCodes(GetMenuLabel(i
));
1042 tbButton
.iString
= (int) label
.wx_str();
1044 tbButton
.idCommand
= NewControlId();
1045 if ( !::SendMessage(hCommandBar
, TB_INSERTBUTTON
, i
, (LPARAM
)&tbButton
) )
1047 wxLogLastError(wxT("TB_INSERTBUTTON"));
1051 m_hMenu
= bar
->GetHMenu();
1053 #else // !__WXWINCE__
1057 m_hMenu
= (WXHMENU
)::CreateMenu();
1061 wxLogLastError(wxT("CreateMenu"));
1065 for ( wxMenuList::iterator it
= m_menus
.begin();
1066 it
!= m_menus
.end();
1069 if ( !::AppendMenu((HMENU
)m_hMenu
, MF_POPUP
| MF_STRING
,
1070 (UINT_PTR
)(*it
)->GetHMenu(),
1071 (*it
)->GetTitle().wx_str()) )
1073 wxLogLastError(wxT("AppendMenu"));
1079 #endif // __WXWINCE__/!__WXWINCE__
1082 int wxMenuBar::MSWPositionForWxMenu(wxMenu
*menu
, int wxpos
)
1085 wxASSERT(menu
->GetHMenu());
1088 #if defined(__WXWINCE__)
1089 int totalMSWItems
= GetMenuCount();
1091 int totalMSWItems
= GetMenuItemCount((HMENU
)m_hMenu
);
1094 int i
; // For old C++ compatibility
1095 for(i
=wxpos
; i
<totalMSWItems
; i
++)
1097 if(GetSubMenu((HMENU
)m_hMenu
,i
)==(HMENU
)menu
->GetHMenu())
1100 for(i
=0; i
<wxpos
; i
++)
1102 if(GetSubMenu((HMENU
)m_hMenu
,i
)==(HMENU
)menu
->GetHMenu())
1109 // ---------------------------------------------------------------------------
1110 // wxMenuBar functions to work with the top level submenus
1111 // ---------------------------------------------------------------------------
1113 // NB: we don't support owner drawn top level items for now, if we do these
1114 // functions would have to be changed to use wxMenuItem as well
1116 void wxMenuBar::EnableTop(size_t pos
, bool enable
)
1118 wxCHECK_RET( IsAttached(), wxT("doesn't work with unattached menubars") );
1119 wxCHECK_RET( pos
< GetMenuCount(), wxT("invalid menu index") );
1121 int flag
= enable
? MF_ENABLED
: MF_GRAYED
;
1123 EnableMenuItem((HMENU
)m_hMenu
, MSWPositionForWxMenu(GetMenu(pos
),pos
), MF_BYPOSITION
| flag
);
1128 void wxMenuBar::SetMenuLabel(size_t pos
, const wxString
& label
)
1130 wxCHECK_RET( pos
< GetMenuCount(), wxT("invalid menu index") );
1132 m_menus
[pos
]->wxMenuBase::SetTitle(label
);
1134 if ( !IsAttached() )
1138 //else: have to modify the existing menu
1140 int mswpos
= MSWPositionForWxMenu(GetMenu(pos
),pos
);
1143 UINT flagsOld
= ::GetMenuState((HMENU
)m_hMenu
, mswpos
, MF_BYPOSITION
);
1144 if ( flagsOld
== 0xFFFFFFFF )
1146 wxLogLastError(wxT("GetMenuState"));
1151 if ( flagsOld
& MF_POPUP
)
1153 // HIBYTE contains the number of items in the submenu in this case
1155 id
= (UINT_PTR
)::GetSubMenu((HMENU
)m_hMenu
, mswpos
);
1165 info
.cbSize
= sizeof(info
);
1166 info
.fMask
= MIIM_TYPE
;
1167 info
.fType
= MFT_STRING
;
1168 info
.cch
= label
.length();
1169 info
.dwTypeData
= const_cast<wxChar
*>(label
.wx_str());
1170 if ( !SetMenuItemInfo(GetHmenu(), id
, TRUE
, &info
) )
1172 wxLogLastError(wxT("SetMenuItemInfo"));
1176 if ( ::ModifyMenu(GetHmenu(), mswpos
, MF_BYPOSITION
| MF_STRING
| flagsOld
,
1177 id
, label
.wx_str()) == (int)0xFFFFFFFF )
1179 wxLogLastError(wxT("ModifyMenu"));
1186 wxString
wxMenuBar::GetMenuLabel(size_t pos
) const
1188 wxCHECK_MSG( pos
< GetMenuCount(), wxEmptyString
,
1189 wxT("invalid menu index in wxMenuBar::GetMenuLabel") );
1191 return m_menus
[pos
]->GetTitle();
1194 // ---------------------------------------------------------------------------
1195 // wxMenuBar construction
1196 // ---------------------------------------------------------------------------
1198 wxMenu
*wxMenuBar::Replace(size_t pos
, wxMenu
*menu
, const wxString
& title
)
1200 wxMenu
*menuOld
= wxMenuBarBase::Replace(pos
, menu
, title
);
1204 menu
->wxMenuBase::SetTitle(title
);
1206 #if defined(WINCE_WITHOUT_COMMANDBAR)
1212 int mswpos
= MSWPositionForWxMenu(menuOld
,pos
);
1214 // can't use ModifyMenu() because it deletes the submenu it replaces
1215 if ( !::RemoveMenu(GetHmenu(), (UINT
)mswpos
, MF_BYPOSITION
) )
1217 wxLogLastError(wxT("RemoveMenu"));
1220 if ( !::InsertMenu(GetHmenu(), (UINT
)mswpos
,
1221 MF_BYPOSITION
| MF_POPUP
| MF_STRING
,
1222 (UINT_PTR
)GetHmenuOf(menu
), title
.wx_str()) )
1224 wxLogLastError(wxT("InsertMenu"));
1228 if ( menuOld
->HasAccels() || menu
->HasAccels() )
1230 // need to rebuild accell table
1231 RebuildAccelTable();
1233 #endif // wxUSE_ACCEL
1242 bool wxMenuBar::Insert(size_t pos
, wxMenu
*menu
, const wxString
& title
)
1244 // Find out which MSW item before which we'll be inserting before
1245 // wxMenuBarBase::Insert is called and GetMenu(pos) is the new menu.
1246 // If IsAttached() is false this won't be used anyway
1248 #if defined(WINCE_WITHOUT_COMMANDBAR)
1254 int mswpos
= (!isAttached
|| (pos
== m_menus
.GetCount()))
1255 ? -1 // append the menu
1256 : MSWPositionForWxMenu(GetMenu(pos
),pos
);
1258 if ( !wxMenuBarBase::Insert(pos
, menu
, title
) )
1261 menu
->wxMenuBase::SetTitle(title
);
1265 #if defined(WINCE_WITHOUT_COMMANDBAR)
1269 memset(&tbButton
, 0, sizeof(TBBUTTON
));
1270 tbButton
.iBitmap
= I_IMAGENONE
;
1271 tbButton
.fsState
= TBSTATE_ENABLED
;
1272 tbButton
.fsStyle
= TBSTYLE_DROPDOWN
| TBSTYLE_NO_DROPDOWN_ARROW
| TBSTYLE_AUTOSIZE
;
1274 HMENU hPopupMenu
= (HMENU
) menu
->GetHMenu() ;
1275 tbButton
.dwData
= (DWORD
)hPopupMenu
;
1276 wxString label
= wxStripMenuCodes(title
);
1277 tbButton
.iString
= (int) label
.wx_str();
1279 tbButton
.idCommand
= NewControlId();
1280 if (!::SendMessage((HWND
) GetToolBar()->GetHWND(), TB_INSERTBUTTON
, pos
, (LPARAM
)&tbButton
))
1282 wxLogLastError(wxT("TB_INSERTBUTTON"));
1285 wxUnusedVar(mswpos
);
1287 if ( !::InsertMenu(GetHmenu(), mswpos
,
1288 MF_BYPOSITION
| MF_POPUP
| MF_STRING
,
1289 (UINT_PTR
)GetHmenuOf(menu
), title
.wx_str()) )
1291 wxLogLastError(wxT("InsertMenu"));
1295 if ( menu
->HasAccels() )
1297 // need to rebuild accell table
1298 RebuildAccelTable();
1300 #endif // wxUSE_ACCEL
1309 bool wxMenuBar::Append(wxMenu
*menu
, const wxString
& title
)
1311 WXHMENU submenu
= menu
? menu
->GetHMenu() : 0;
1312 wxCHECK_MSG( submenu
, false, wxT("can't append invalid menu to menubar") );
1314 if ( !wxMenuBarBase::Append(menu
, title
) )
1317 menu
->wxMenuBase::SetTitle(title
);
1319 #if defined(WINCE_WITHOUT_COMMANDBAR)
1325 #if defined(WINCE_WITHOUT_COMMANDBAR)
1329 memset(&tbButton
, 0, sizeof(TBBUTTON
));
1330 tbButton
.iBitmap
= I_IMAGENONE
;
1331 tbButton
.fsState
= TBSTATE_ENABLED
;
1332 tbButton
.fsStyle
= TBSTYLE_DROPDOWN
| TBSTYLE_NO_DROPDOWN_ARROW
| TBSTYLE_AUTOSIZE
;
1334 size_t pos
= GetMenuCount();
1335 HMENU hPopupMenu
= (HMENU
) menu
->GetHMenu() ;
1336 tbButton
.dwData
= (DWORD
)hPopupMenu
;
1337 wxString label
= wxStripMenuCodes(title
);
1338 tbButton
.iString
= (int) label
.wx_str();
1340 tbButton
.idCommand
= NewControlId();
1341 if (!::SendMessage((HWND
) GetToolBar()->GetHWND(), TB_INSERTBUTTON
, pos
, (LPARAM
)&tbButton
))
1343 wxLogLastError(wxT("TB_INSERTBUTTON"));
1347 if ( !::AppendMenu(GetHmenu(), MF_POPUP
| MF_STRING
,
1348 (UINT_PTR
)submenu
, title
.wx_str()) )
1350 wxLogLastError(wxT("AppendMenu"));
1355 if ( menu
->HasAccels() )
1357 // need to rebuild accelerator table
1358 RebuildAccelTable();
1360 #endif // wxUSE_ACCEL
1369 wxMenu
*wxMenuBar::Remove(size_t pos
)
1371 wxMenu
*menu
= wxMenuBarBase::Remove(pos
);
1375 #if defined(WINCE_WITHOUT_COMMANDBAR)
1381 #if defined(WINCE_WITHOUT_COMMANDBAR)
1384 if (!::SendMessage((HWND
) GetToolBar()->GetHWND(), TB_DELETEBUTTON
, (UINT
) pos
, (LPARAM
) 0))
1386 wxLogLastError(wxT("TB_DELETEBUTTON"));
1390 if ( !::RemoveMenu(GetHmenu(), (UINT
)MSWPositionForWxMenu(menu
,pos
), MF_BYPOSITION
) )
1392 wxLogLastError(wxT("RemoveMenu"));
1397 if ( menu
->HasAccels() )
1399 // need to rebuild accell table
1400 RebuildAccelTable();
1402 #endif // wxUSE_ACCEL
1413 void wxMenuBar::RebuildAccelTable()
1415 // merge the accelerators of all menus into one accel table
1416 size_t nAccelCount
= 0;
1417 size_t i
, count
= GetMenuCount();
1418 wxMenuList::iterator it
;
1419 for ( i
= 0, it
= m_menus
.begin(); i
< count
; i
++, it
++ )
1421 nAccelCount
+= (*it
)->GetAccelCount();
1426 wxAcceleratorEntry
*accelEntries
= new wxAcceleratorEntry
[nAccelCount
];
1429 for ( i
= 0, it
= m_menus
.begin(); i
< count
; i
++, it
++ )
1431 nAccelCount
+= (*it
)->CopyAccels(&accelEntries
[nAccelCount
]);
1434 SetAcceleratorTable(wxAcceleratorTable(nAccelCount
, accelEntries
));
1436 delete [] accelEntries
;
1440 #endif // wxUSE_ACCEL
1442 void wxMenuBar::Attach(wxFrame
*frame
)
1444 wxMenuBarBase::Attach(frame
);
1446 #if defined(WINCE_WITH_COMMANDBAR)
1450 m_commandBar
= (WXHWND
) CommandBar_Create(wxGetInstance(), (HWND
) frame
->GetHWND(), NewControlId());
1455 if (!CommandBar_InsertMenubarEx((HWND
) m_commandBar
, NULL
, (LPTSTR
) m_hMenu
, 0))
1457 wxLogLastError(wxT("CommandBar_InsertMenubarEx"));
1464 RebuildAccelTable();
1465 #endif // wxUSE_ACCEL
1468 #if defined(WINCE_WITH_COMMANDBAR)
1469 bool wxMenuBar::AddAdornments(long style
)
1471 if (m_adornmentsAdded
|| !m_commandBar
)
1474 if (style
& wxCLOSE_BOX
)
1476 if (!CommandBar_AddAdornments((HWND
) m_commandBar
, 0, 0))
1478 wxLogLastError(wxT("CommandBar_AddAdornments"));
1489 void wxMenuBar::Detach()
1491 wxMenuBarBase::Detach();
1494 // get the menu with given handle (recursively)
1495 wxMenu
* wxMenuBar::MSWGetMenu(WXHMENU hMenu
)
1497 wxCHECK_MSG( GetHMenu() != hMenu
, NULL
,
1498 wxT("wxMenuBar::MSWGetMenu(): menu handle is wxMenuBar, not wxMenu") );
1501 for ( size_t n
= 0 ; n
< GetMenuCount(); ++n
)
1503 wxMenu
* menu
= GetMenu(n
)->MSWGetMenu(hMenu
);
1512 #endif // wxUSE_MENUS