1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/menu.cpp
3 // Purpose: wxMenu, wxMenuBar, wxMenuItem
4 // Author: Julian Smart
5 // Modified by: Vadim Zeitlin
7 // Copyright: (c) Julian Smart
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // ===========================================================================
13 // ===========================================================================
15 // ---------------------------------------------------------------------------
17 // ---------------------------------------------------------------------------
19 // For compilers that support precompilation, includes "wx.h".
20 #include "wx/wxprec.h"
39 #include "wx/ownerdrw.h"
42 #include "wx/scopedarray.h"
43 #include "wx/vector.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 // ----------------------------------------------------------------------------
88 // private helper classes and functions
89 // ----------------------------------------------------------------------------
91 // Contains the data about the radio items groups in the given menu.
92 class wxMenuRadioItemsData
95 wxMenuRadioItemsData() { }
97 // Default copy ctor, assignment operator and dtor are all ok.
99 // Find the start and end of the group containing the given position or
100 // return false if it's not inside any range.
101 bool GetGroupRange(int pos
, int *start
, int *end
) const
103 // We use a simple linear search here because there are not that many
104 // items in a menu and hence even fewer radio items ranges anyhow, so
105 // normally there is no need to do anything fancy (like keeping the
106 // array sorted and using binary search).
107 for ( Ranges::const_iterator it
= m_ranges
.begin();
108 it
!= m_ranges
.end();
111 const Range
& r
= *it
;
113 if ( r
.start
<= pos
&& pos
<= r
.end
)
127 // Take into account the new radio item about to be added at the given
130 // Returns true if this item starts a new radio group, false if it extends
132 bool UpdateOnInsert(int pos
)
134 bool inExistingGroup
= false;
136 for ( Ranges::iterator it
= m_ranges
.begin();
137 it
!= m_ranges
.end();
144 // Item is inserted before this range, update its indices.
148 else if ( pos
<= r
.end
+ 1 )
150 // Item is inserted in the middle of this range or immediately
151 // after it in which case it extends this range so make it span
152 // one more item in any case.
155 inExistingGroup
= true;
157 //else: Item is inserted after this range, nothing to do for it.
160 if ( inExistingGroup
)
163 // Make a new range for the group this item will belong to.
167 m_ranges
.push_back(r
);
173 // Contains the inclusive positions of the range start and end.
180 typedef wxVector
<Range
> Ranges
;
187 // make the given menu item default
188 void SetDefaultMenuItem(HMENU
WXUNUSED_IN_WINCE(hmenu
),
189 UINT
WXUNUSED_IN_WINCE(id
))
192 WinStruct
<MENUITEMINFO
> mii
;
193 mii
.fMask
= MIIM_STATE
;
194 mii
.fState
= MFS_DEFAULT
;
196 if ( !::SetMenuItemInfo(hmenu
, id
, FALSE
, &mii
) )
198 wxLogLastError(wxT("SetMenuItemInfo"));
200 #endif // !__WXWINCE__
203 // make the given menu item owner-drawn
204 void SetOwnerDrawnMenuItem(HMENU
WXUNUSED_IN_WINCE(hmenu
),
205 UINT
WXUNUSED_IN_WINCE(id
),
206 ULONG_PTR
WXUNUSED_IN_WINCE(data
),
207 BOOL
WXUNUSED_IN_WINCE(byPositon
= FALSE
))
210 WinStruct
<MENUITEMINFO
> mii
;
211 mii
.fMask
= MIIM_FTYPE
| MIIM_DATA
;
212 mii
.fType
= MFT_OWNERDRAW
;
213 mii
.dwItemData
= data
;
215 if ( reinterpret_cast<wxMenuItem
*>(data
)->IsSeparator() )
216 mii
.fType
|= MFT_SEPARATOR
;
218 if ( !::SetMenuItemInfo(hmenu
, id
, byPositon
, &mii
) )
220 wxLogLastError(wxT("SetMenuItemInfo"));
222 #endif // !__WXWINCE__
226 UINT
GetMenuState(HMENU hMenu
, UINT id
, UINT flags
)
228 WinStruct
<MENUITEMINFO
> info
;
229 info
.fMask
= MIIM_STATE
;
230 // MF_BYCOMMAND is zero so test MF_BYPOSITION
231 if ( !::GetMenuItemInfo(hMenu
, id
, flags
& MF_BYPOSITION
? TRUE
: FALSE
, & info
) )
233 wxLogLastError(wxT("GetMenuItemInfo"));
237 #endif // __WXWINCE__
239 inline bool IsGreaterThanStdSize(const wxBitmap
& bmp
)
241 return bmp
.GetWidth() > ::GetSystemMetrics(SM_CXMENUCHECK
) ||
242 bmp
.GetHeight() > ::GetSystemMetrics(SM_CYMENUCHECK
);
245 } // anonymous namespace
247 // ============================================================================
249 // ============================================================================
251 // ---------------------------------------------------------------------------
252 // wxMenu construction, adding and removing menu items
253 // ---------------------------------------------------------------------------
255 // Construct a menu with optional title (then use append)
256 void wxMenu::InitNoCreate()
261 #if wxUSE_OWNER_DRAWN
262 m_ownerDrawn
= false;
263 m_maxBitmapWidth
= 0;
264 m_maxAccelWidth
= -1;
265 #endif // wxUSE_OWNER_DRAWN
273 m_hMenu
= (WXHMENU
)CreatePopupMenu();
276 wxLogLastError(wxT("CreatePopupMenu"));
279 // if we have a title, insert it in the beginning of the menu
280 if ( !m_title
.empty() )
282 const wxString title
= m_title
;
283 m_title
.clear(); // so that SetTitle() knows there was no title before
288 wxMenu::wxMenu(WXHMENU hMenu
)
294 // Ensure that our internal idea of how many items we have corresponds to
295 // the real number of items in the menu.
297 // We could also retrieve the real labels of the items here but it doesn't
298 // seem to be worth the trouble.
299 const int numExistingItems
= ::GetMenuItemCount(m_hMenu
);
300 for ( int n
= 0; n
< numExistingItems
; n
++ )
302 wxMenuBase::DoAppend(wxMenuItem::New(this, wxID_SEPARATOR
));
306 // The wxWindow destructor will take care of deleting the submenus.
309 // we should free Windows resources only if Windows doesn't do it for us
310 // which happens if we're attached to a menubar or a submenu of another
312 if ( !IsAttached() && !GetParent() )
314 if ( !::DestroyMenu(GetHmenu()) )
316 wxLogLastError(wxT("DestroyMenu"));
322 WX_CLEAR_ARRAY(m_accels
);
323 #endif // wxUSE_ACCEL
330 // this will take effect during the next call to Append()
336 int wxMenu::FindAccel(int id
) const
338 size_t n
, count
= m_accels
.GetCount();
339 for ( n
= 0; n
< count
; n
++ )
341 if ( m_accels
[n
]->m_command
== id
)
348 void wxMenu::UpdateAccel(wxMenuItem
*item
)
350 if ( item
->IsSubMenu() )
352 wxMenu
*submenu
= item
->GetSubMenu();
353 wxMenuItemList::compatibility_iterator node
= submenu
->GetMenuItems().GetFirst();
356 UpdateAccel(node
->GetData());
358 node
= node
->GetNext();
361 else if ( !item
->IsSeparator() )
363 // recurse upwards: we should only modify m_accels of the top level
364 // menus, not of the submenus as wxMenuBar doesn't look at them
365 // (alternative and arguable cleaner solution would be to recurse
366 // downwards in GetAccelCount() and CopyAccels())
369 GetParent()->UpdateAccel(item
);
373 // find the (new) accel for this item
374 wxAcceleratorEntry
*accel
= wxAcceleratorEntry::Create(item
->GetItemLabel());
376 accel
->m_command
= item
->GetId();
379 int n
= FindAccel(item
->GetId());
380 if ( n
== wxNOT_FOUND
)
382 // no old, add new if any
386 return; // skipping RebuildAccelTable() below
390 // replace old with new or just remove the old one if no new
395 m_accels
.RemoveAt(n
);
400 GetMenuBar()->RebuildAccelTable();
403 #if wxUSE_OWNER_DRAWN
404 ResetMaxAccelWidth();
407 //else: it is a separator, they can't have accels, nothing to do
410 #endif // wxUSE_ACCEL
415 // helper of DoInsertOrAppend(): returns the HBITMAP to use in MENUITEMINFO
416 HBITMAP
GetHBitmapForMenu(wxMenuItem
*pItem
, bool checked
= true)
418 // Under versions of Windows older than Vista we can't pass HBITMAP
419 // directly as hbmpItem for 2 reasons:
420 // 1. We can't draw it with transparency then (this is not
421 // very important now but would be with themed menu bg)
422 // 2. Worse, Windows inverts the bitmap for the selected
423 // item and this looks downright ugly
425 // So we prefer to instead draw it ourselves in MSWOnDrawItem().by using
426 // HBMMENU_CALLBACK when inserting it
428 // However under Vista using HBMMENU_CALLBACK causes the entire menu to be
429 // drawn using the classic theme instead of the current one and it does
430 // handle transparency just fine so do use the real bitmap there
432 if ( wxGetWinVersion() >= wxWinVersion_Vista
)
434 #if wxUSE_OWNER_DRAWN
435 wxBitmap bmp
= pItem
->GetBitmap(checked
);
438 // we must use PARGB DIB for the menu bitmaps so ensure that we do
439 wxImage
img(bmp
.ConvertToImage());
440 if ( !img
.HasAlpha() )
443 pItem
->SetBitmap(img
, checked
);
446 return GetHbitmapOf(pItem
->GetBitmap(checked
));
448 #endif // wxUSE_OWNER_DRAWN
449 //else: bitmap is not set
453 #endif // wxUSE_IMAGE
455 return HBMMENU_CALLBACK
;
458 } // anonymous namespace
460 bool wxMenu::MSWGetRadioGroupRange(int pos
, int *start
, int *end
) const
462 return m_radioData
&& m_radioData
->GetGroupRange(pos
, start
, end
);
465 // append a new item or submenu to the menu
466 bool wxMenu::DoInsertOrAppend(wxMenuItem
*pItem
, size_t pos
)
470 #endif // wxUSE_ACCEL
472 // we should support disabling the item even prior to adding it to the menu
473 UINT flags
= pItem
->IsEnabled() ? MF_ENABLED
: MF_GRAYED
;
475 // if "Break" has just been called, insert a menu break before this item
476 // (and don't forget to reset the flag)
478 flags
|= MF_MENUBREAK
;
482 if ( pItem
->IsSeparator() ) {
483 flags
|= MF_SEPARATOR
;
486 // id is the numeric id for normal menu items and HMENU for submenus as
487 // required by ::AppendMenu() API
489 wxMenu
*submenu
= pItem
->GetSubMenu();
490 if ( submenu
!= NULL
) {
491 wxASSERT_MSG( submenu
->GetHMenu(), wxT("invalid submenu") );
493 submenu
->SetParent(this);
495 id
= (UINT_PTR
)submenu
->GetHMenu();
500 id
= pItem
->GetMSWId();
504 // prepare to insert the item in the menu
505 wxString itemText
= pItem
->GetItemLabel();
506 LPCTSTR pData
= NULL
;
507 if ( pos
== (size_t)-1 )
509 // append at the end (note that the item is already appended to
510 // internal data structures)
511 pos
= GetMenuItemCount() - 1;
514 // Update radio groups data if we're inserting a new radio item.
516 // NB: If we supported inserting non-radio items in the middle of existing
517 // radio groups to break them into two subgroups, we'd need to update
518 // m_radioData in this case too but currently this is not supported.
519 bool checkInitially
= false;
520 if ( pItem
->GetKind() == wxITEM_RADIO
)
523 m_radioData
= new wxMenuRadioItemsData
;
525 if ( m_radioData
->UpdateOnInsert(pos
) )
526 checkInitially
= true;
529 // adjust position to account for the title of a popup menu, if any
530 if ( !GetMenuBar() && !m_title
.empty() )
531 pos
+= 2; // for the title itself and its separator
535 #if wxUSE_OWNER_DRAWN
536 // Under older systems mixing owner-drawn and non-owner-drawn items results
537 // in inconsistent margins, so we force this one to be owner-drawn if any
538 // other items already are.
540 pItem
->SetOwnerDrawn(true);
541 #endif // wxUSE_OWNER_DRAWN
543 // check if we have something more than a simple text item
544 #if wxUSE_OWNER_DRAWN
545 bool makeItemOwnerDrawn
= false;
546 if ( pItem
->IsOwnerDrawn() )
550 if ( !m_ownerDrawn
&& !pItem
->IsSeparator() )
552 // MIIM_BITMAP only works under WinME/2000+ so we always use owner
553 // drawn item under the previous versions and we also have to use
554 // them in any case if the item has custom colours or font
555 static const wxWinVersion winver
= wxGetWinVersion();
556 bool mustUseOwnerDrawn
= winver
< wxWinVersion_98
||
557 pItem
->GetTextColour().IsOk() ||
558 pItem
->GetBackgroundColour().IsOk() ||
559 pItem
->GetFont().IsOk();
561 if ( !mustUseOwnerDrawn
)
563 const wxBitmap
& bmpUnchecked
= pItem
->GetBitmap(false),
564 bmpChecked
= pItem
->GetBitmap(true);
566 if ( (bmpUnchecked
.IsOk() && IsGreaterThanStdSize(bmpUnchecked
)) ||
567 (bmpChecked
.IsOk() && IsGreaterThanStdSize(bmpChecked
)) )
569 mustUseOwnerDrawn
= true;
573 // use InsertMenuItem() if possible as it's guaranteed to look
574 // correct while our owner-drawn code is not
575 if ( !mustUseOwnerDrawn
)
577 WinStruct
<MENUITEMINFO
> mii
;
578 mii
.fMask
= MIIM_STRING
| MIIM_DATA
;
580 // don't set hbmpItem for the checkable items as it would
581 // be used for both checked and unchecked state
582 if ( pItem
->IsCheckable() )
584 mii
.fMask
|= MIIM_CHECKMARKS
;
585 mii
.hbmpChecked
= GetHBitmapForMenu(pItem
, true);
586 mii
.hbmpUnchecked
= GetHBitmapForMenu(pItem
, false);
588 else if ( pItem
->GetBitmap().IsOk() )
590 mii
.fMask
|= MIIM_BITMAP
;
591 mii
.hbmpItem
= GetHBitmapForMenu(pItem
);
594 mii
.cch
= itemText
.length();
595 mii
.dwTypeData
= wxMSW_CONV_LPTSTR(itemText
);
597 if ( flags
& MF_POPUP
)
599 mii
.fMask
|= MIIM_SUBMENU
;
600 mii
.hSubMenu
= GetHmenuOf(pItem
->GetSubMenu());
604 mii
.fMask
|= MIIM_ID
;
608 mii
.dwItemData
= reinterpret_cast<ULONG_PTR
>(pItem
);
610 ok
= ::InsertMenuItem(GetHmenu(), pos
, TRUE
/* by pos */, &mii
);
613 wxLogLastError(wxT("InsertMenuItem()"));
615 else // InsertMenuItem() ok
617 // we need to remove the extra indent which is reserved for
618 // the checkboxes by default as it looks ugly unless check
619 // boxes are used together with bitmaps and this is not the
621 WinStruct
<MENUINFO
> mi
;
623 // don't call SetMenuInfo() directly, this would prevent
624 // the app from starting up under Windows 95/NT 4
625 typedef BOOL (WINAPI
*SetMenuInfo_t
)(HMENU
, MENUINFO
*);
627 wxDynamicLibrary
dllUser(wxT("user32"));
628 wxDYNLIB_FUNCTION(SetMenuInfo_t
, SetMenuInfo
, dllUser
);
629 if ( pfnSetMenuInfo
)
631 mi
.fMask
= MIM_STYLE
;
632 mi
.dwStyle
= MNS_CHECKORBMP
;
633 if ( !(*pfnSetMenuInfo
)(GetHmenu(), &mi
) )
635 wxLogLastError(wxT("SetMenuInfo(MNS_NOCHECK)"));
639 // tell the item that it's not really owner-drawn but only
640 // needs to draw its bitmap, the rest is done by Windows
641 pItem
->SetOwnerDrawn(false);
649 // item draws itself, pass pointer to it in data parameter
650 flags
|= MF_OWNERDRAW
;
651 pData
= (LPCTSTR
)pItem
;
653 bool updateAllMargins
= false;
655 // get size of bitmap always return valid value (0 for invalid bitmap),
656 // so we don't needed check if bitmap is valid ;)
657 int uncheckedW
= pItem
->GetBitmap(false).GetWidth();
658 int checkedW
= pItem
->GetBitmap(true).GetWidth();
660 if ( m_maxBitmapWidth
< uncheckedW
)
662 m_maxBitmapWidth
= uncheckedW
;
663 updateAllMargins
= true;
666 if ( m_maxBitmapWidth
< checkedW
)
668 m_maxBitmapWidth
= checkedW
;
669 updateAllMargins
= true;
672 // make other item ownerdrawn and update margin width for equals alignment
673 if ( !m_ownerDrawn
|| updateAllMargins
)
675 // we must use position in SetOwnerDrawnMenuItem because
676 // all separators have the same id
678 wxMenuItemList::compatibility_iterator node
= GetMenuItems().GetFirst();
681 wxMenuItem
* item
= node
->GetData();
683 if ( !item
->IsOwnerDrawn())
685 item
->SetOwnerDrawn(true);
686 SetOwnerDrawnMenuItem(GetHmenu(), pos
,
687 reinterpret_cast<ULONG_PTR
>(item
), TRUE
);
690 item
->SetMarginWidth(m_maxBitmapWidth
);
692 node
= node
->GetNext();
696 // set menu as ownerdrawn
699 // also ensure that the new item itself is made owner drawn
700 makeItemOwnerDrawn
= true;
702 ResetMaxAccelWidth();
704 // only update our margin for equals alignment to other item
705 else if ( !updateAllMargins
)
707 pItem
->SetMarginWidth(m_maxBitmapWidth
);
712 #endif // wxUSE_OWNER_DRAWN
714 // item is just a normal string (passed in data parameter)
718 itemText
= wxMenuItem::GetLabelText(itemText
);
721 pData
= itemText
.t_str();
724 // item might have already been inserted by InsertMenuItem() above
727 if ( !::InsertMenu(GetHmenu(), pos
, flags
| MF_BYPOSITION
, id
, pData
) )
729 wxLogLastError(wxT("InsertMenu[Item]()"));
734 if ( makeItemOwnerDrawn
)
736 SetOwnerDrawnMenuItem(GetHmenu(), pos
,
737 reinterpret_cast<ULONG_PTR
>(pItem
), TRUE
);
742 // Check the item if it should be initially checked.
743 if ( checkInitially
)
746 // if we just appended the title, highlight it
747 if ( id
== (UINT_PTR
)idMenuTitle
)
749 // visually select the menu title
750 SetDefaultMenuItem(GetHmenu(), id
);
753 // if we're already attached to the menubar, we must update it
754 if ( IsAttached() && GetMenuBar()->IsAttached() )
756 GetMenuBar()->Refresh();
762 wxMenuItem
* wxMenu::DoAppend(wxMenuItem
*item
)
764 return wxMenuBase::DoAppend(item
) && DoInsertOrAppend(item
) ? item
: NULL
;
767 wxMenuItem
* wxMenu::DoInsert(size_t pos
, wxMenuItem
*item
)
769 if (wxMenuBase::DoInsert(pos
, item
) && DoInsertOrAppend(item
, pos
))
775 wxMenuItem
*wxMenu::DoRemove(wxMenuItem
*item
)
777 // we need to find the item's position in the child list
779 wxMenuItemList::compatibility_iterator node
= GetMenuItems().GetFirst();
780 for ( pos
= 0; node
; pos
++ )
782 if ( node
->GetData() == item
)
785 node
= node
->GetNext();
788 // DoRemove() (unlike Remove) can only be called for an existing item!
789 wxCHECK_MSG( node
, NULL
, wxT("bug in wxMenu::Remove logic") );
792 // remove the corresponding accel from the accel table
793 int n
= FindAccel(item
->GetId());
794 if ( n
!= wxNOT_FOUND
)
798 m_accels
.RemoveAt(n
);
800 #if wxUSE_OWNER_DRAWN
801 ResetMaxAccelWidth();
804 //else: this item doesn't have an accel, nothing to do
805 #endif // wxUSE_ACCEL
807 // remove the item from the menu
808 if ( !::RemoveMenu(GetHmenu(), (UINT
)pos
, MF_BYPOSITION
) )
810 wxLogLastError(wxT("RemoveMenu"));
813 if ( IsAttached() && GetMenuBar()->IsAttached() )
815 // otherwise, the change won't be visible
816 GetMenuBar()->Refresh();
819 // and from internal data structures
820 return wxMenuBase::DoRemove(item
);
823 // ---------------------------------------------------------------------------
824 // accelerator helpers
825 // ---------------------------------------------------------------------------
829 // create the wxAcceleratorEntries for our accels and put them into the provided
830 // array - return the number of accels we have
831 size_t wxMenu::CopyAccels(wxAcceleratorEntry
*accels
) const
833 size_t count
= GetAccelCount();
834 for ( size_t n
= 0; n
< count
; n
++ )
836 *accels
++ = *m_accels
[n
];
842 wxAcceleratorTable
*wxMenu::CreateAccelTable() const
844 const size_t count
= m_accels
.size();
845 wxScopedArray
<wxAcceleratorEntry
> accels(new wxAcceleratorEntry
[count
]);
846 CopyAccels(accels
.get());
848 return new wxAcceleratorTable(count
, accels
.get());
851 #endif // wxUSE_ACCEL
853 // ---------------------------------------------------------------------------
854 // ownerdrawn helpers
855 // ---------------------------------------------------------------------------
857 #if wxUSE_OWNER_DRAWN
859 void wxMenu::CalculateMaxAccelWidth()
861 wxASSERT_MSG( m_maxAccelWidth
== -1, wxT("it's really needed?") );
863 wxMenuItemList::compatibility_iterator node
= GetMenuItems().GetFirst();
866 wxMenuItem
* item
= node
->GetData();
868 if ( item
->IsOwnerDrawn() )
870 int width
= item
->MeasureAccelWidth();
871 if (width
> m_maxAccelWidth
)
872 m_maxAccelWidth
= width
;
875 node
= node
->GetNext();
879 #endif // wxUSE_OWNER_DRAWN
881 // ---------------------------------------------------------------------------
883 // ---------------------------------------------------------------------------
885 void wxMenu::SetTitle(const wxString
& label
)
887 bool hasNoTitle
= m_title
.empty();
890 HMENU hMenu
= GetHmenu();
894 if ( !label
.empty() )
896 if ( !::InsertMenu(hMenu
, 0u, MF_BYPOSITION
| MF_STRING
,
897 (UINT_PTR
)idMenuTitle
, m_title
.t_str()) ||
898 !::InsertMenu(hMenu
, 1u, MF_BYPOSITION
, (unsigned)-1, NULL
) )
900 wxLogLastError(wxT("InsertMenu"));
908 // remove the title and the separator after it
909 if ( !RemoveMenu(hMenu
, 0, MF_BYPOSITION
) ||
910 !RemoveMenu(hMenu
, 0, MF_BYPOSITION
) )
912 wxLogLastError(wxT("RemoveMenu"));
919 WinStruct
<MENUITEMINFO
> info
;
920 info
.fMask
= MIIM_TYPE
;
921 info
.fType
= MFT_STRING
;
922 info
.cch
= m_title
.length();
923 info
.dwTypeData
= wxMSW_CONV_LPTSTR(m_title
);
924 if ( !SetMenuItemInfo(hMenu
, 0, TRUE
, & info
) )
926 wxLogLastError(wxT("SetMenuItemInfo"));
929 if ( !ModifyMenu(hMenu
, 0u,
930 MF_BYPOSITION
| MF_STRING
,
931 (UINT_PTR
)idMenuTitle
, m_title
.t_str()) )
933 wxLogLastError(wxT("ModifyMenu"));
940 // put the title string in bold face
941 if ( !m_title
.empty() )
943 SetDefaultMenuItem(GetHmenu(), (UINT
)idMenuTitle
);
948 // ---------------------------------------------------------------------------
950 // ---------------------------------------------------------------------------
952 bool wxMenu::MSWCommand(WXUINT
WXUNUSED(param
), WXWORD id_
)
954 const int id
= (signed short)id_
;
956 // ignore commands from the menu title
957 if ( id
!= idMenuTitle
)
959 // Default value for uncheckable items.
962 // update the check item when it's clicked
963 wxMenuItem
* const item
= FindItem(id
);
964 if ( item
&& item
->IsCheckable() )
968 // Get the status of the menu item: note that it has been just changed
969 // by Toggle() above so here we already get the new state of the item.
971 // Also notice that we must pass unsigned id_ and not sign-extended id
972 // to ::GetMenuState() as this is what it expects.
973 UINT menuState
= ::GetMenuState(GetHmenu(), id_
, MF_BYCOMMAND
);
974 checked
= (menuState
& MF_CHECKED
) != 0;
977 SendEvent(id
, checked
);
983 // get the menu with given handle (recursively)
984 #if wxUSE_OWNER_DRAWN
985 wxMenu
* wxMenu::MSWGetMenu(WXHMENU hMenu
)
988 if ( GetHMenu() == hMenu
)
991 // recursively query submenus
992 for ( size_t n
= 0 ; n
< GetMenuItemCount(); ++n
)
994 wxMenuItem
* item
= FindItemByPosition(n
);
995 wxMenu
* submenu
= item
->GetSubMenu();
998 submenu
= submenu
->MSWGetMenu(hMenu
);
1007 #endif // wxUSE_OWNER_DRAWN
1009 // ---------------------------------------------------------------------------
1011 // ---------------------------------------------------------------------------
1013 void wxMenuBar::Init()
1015 m_eventHandler
= this;
1017 #if wxUSE_TOOLBAR && defined(__WXWINCE__)
1020 // Not using a combined wxToolBar/wxMenuBar? then use
1021 // a commandbar in WinCE .NET just to implement the
1023 #if defined(WINCE_WITH_COMMANDBAR)
1024 m_commandBar
= NULL
;
1025 m_adornmentsAdded
= false;
1029 wxMenuBar::wxMenuBar()
1034 wxMenuBar::wxMenuBar( long WXUNUSED(style
) )
1039 wxMenuBar::wxMenuBar(size_t count
, wxMenu
*menus
[], const wxString titles
[], long WXUNUSED(style
))
1043 for ( size_t i
= 0; i
< count
; i
++ )
1045 // We just want to store the menu title in the menu itself, not to
1046 // show it as a dummy item in the menu itself as we do with the popup
1047 // menu titles in overridden wxMenu::SetTitle().
1048 menus
[i
]->wxMenuBase::SetTitle(titles
[i
]);
1049 m_menus
.Append(menus
[i
]);
1051 menus
[i
]->Attach(this);
1055 wxMenuBar::~wxMenuBar()
1057 // In Windows CE (not .NET), the menubar is always associated
1058 // with a toolbar, which destroys the menu implicitly.
1059 #if defined(WINCE_WITHOUT_COMMANDBAR) && defined(__POCKETPC__)
1062 wxToolMenuBar
* toolMenuBar
= wxDynamicCast(GetToolBar(), wxToolMenuBar
);
1064 toolMenuBar
->SetMenuBar(NULL
);
1067 // we should free Windows resources only if Windows doesn't do it for us
1068 // which happens if we're attached to a frame
1069 if (m_hMenu
&& !IsAttached())
1071 #if defined(WINCE_WITH_COMMANDBAR)
1072 ::DestroyWindow((HWND
) m_commandBar
);
1073 m_commandBar
= (WXHWND
) NULL
;
1075 ::DestroyMenu((HMENU
)m_hMenu
);
1077 m_hMenu
= (WXHMENU
)NULL
;
1082 // ---------------------------------------------------------------------------
1083 // wxMenuBar helpers
1084 // ---------------------------------------------------------------------------
1086 void wxMenuBar::Refresh()
1091 wxCHECK_RET( IsAttached(), wxT("can't refresh unattached menubar") );
1093 #if defined(WINCE_WITHOUT_COMMANDBAR)
1096 CommandBar_DrawMenuBar((HWND
) GetToolBar()->GetHWND(), 0);
1098 #elif defined(WINCE_WITH_COMMANDBAR)
1100 DrawMenuBar((HWND
) m_commandBar
);
1102 DrawMenuBar(GetHwndOf(GetFrame()));
1106 WXHMENU
wxMenuBar::Create()
1108 // Note: this doesn't work at all on Smartphone,
1109 // since you have to use resources.
1110 // We'll have to find another way to add a menu
1111 // by changing/adding menu items to an existing menu.
1112 #if defined(WINCE_WITHOUT_COMMANDBAR)
1116 wxToolMenuBar
* const bar
= static_cast<wxToolMenuBar
*>(GetToolBar());
1120 HWND hCommandBar
= GetHwndOf(bar
);
1122 // notify comctl32.dll about the version of the headers we use before using
1123 // any other TB_XXX messages
1124 SendMessage(hCommandBar
, TB_BUTTONSTRUCTSIZE
, sizeof(TBBUTTON
), 0);
1127 wxZeroMemory(tbButton
);
1128 tbButton
.iBitmap
= I_IMAGENONE
;
1129 tbButton
.fsState
= TBSTATE_ENABLED
;
1130 tbButton
.fsStyle
= TBSTYLE_DROPDOWN
|
1131 TBSTYLE_NO_DROPDOWN_ARROW
|
1134 for ( unsigned i
= 0; i
< GetMenuCount(); i
++ )
1136 HMENU hPopupMenu
= (HMENU
) GetMenu(i
)->GetHMenu();
1137 tbButton
.dwData
= (DWORD
)hPopupMenu
;
1138 wxString label
= wxStripMenuCodes(GetMenuLabel(i
));
1139 tbButton
.iString
= (int) wxMSW_CONV_LPCTSTR(label
);
1141 tbButton
.idCommand
= NewControlId();
1142 if ( !::SendMessage(hCommandBar
, TB_INSERTBUTTON
, i
, (LPARAM
)&tbButton
) )
1144 wxLogLastError(wxT("TB_INSERTBUTTON"));
1148 m_hMenu
= bar
->GetHMenu();
1150 #else // !__WXWINCE__
1154 m_hMenu
= (WXHMENU
)::CreateMenu();
1158 wxLogLastError(wxT("CreateMenu"));
1162 for ( wxMenuList::iterator it
= m_menus
.begin();
1163 it
!= m_menus
.end();
1166 if ( !::AppendMenu((HMENU
)m_hMenu
, MF_POPUP
| MF_STRING
,
1167 (UINT_PTR
)(*it
)->GetHMenu(),
1168 (*it
)->GetTitle().t_str()) )
1170 wxLogLastError(wxT("AppendMenu"));
1176 #endif // __WXWINCE__/!__WXWINCE__
1179 int wxMenuBar::MSWPositionForWxMenu(wxMenu
*menu
, int wxpos
)
1182 wxASSERT(menu
->GetHMenu());
1185 #if defined(__WXWINCE__)
1186 int totalMSWItems
= GetMenuCount();
1188 int totalMSWItems
= GetMenuItemCount((HMENU
)m_hMenu
);
1191 int i
; // For old C++ compatibility
1192 for(i
=wxpos
; i
<totalMSWItems
; i
++)
1194 if(GetSubMenu((HMENU
)m_hMenu
,i
)==(HMENU
)menu
->GetHMenu())
1197 for(i
=0; i
<wxpos
; i
++)
1199 if(GetSubMenu((HMENU
)m_hMenu
,i
)==(HMENU
)menu
->GetHMenu())
1206 // ---------------------------------------------------------------------------
1207 // wxMenuBar functions to work with the top level submenus
1208 // ---------------------------------------------------------------------------
1210 // NB: we don't support owner drawn top level items for now, if we do these
1211 // functions would have to be changed to use wxMenuItem as well
1213 void wxMenuBar::EnableTop(size_t pos
, bool enable
)
1215 wxCHECK_RET( IsAttached(), wxT("doesn't work with unattached menubars") );
1216 wxCHECK_RET( pos
< GetMenuCount(), wxT("invalid menu index") );
1218 int flag
= enable
? MF_ENABLED
: MF_GRAYED
;
1220 EnableMenuItem((HMENU
)m_hMenu
, MSWPositionForWxMenu(GetMenu(pos
),pos
), MF_BYPOSITION
| flag
);
1225 bool wxMenuBar::IsEnabledTop(size_t pos
) const
1227 wxCHECK_MSG( pos
< GetMenuCount(), false, wxS("invalid menu index") );
1228 WinStruct
<MENUITEMINFO
> mii
;
1229 mii
.fMask
= MIIM_STATE
;
1230 if ( !::GetMenuItemInfo(GetHmenu(), pos
, TRUE
, &mii
) )
1232 wxLogLastError(wxS("GetMenuItemInfo(menubar)"));
1235 return !(mii
.fState
& MFS_GRAYED
);
1238 void wxMenuBar::SetMenuLabel(size_t pos
, const wxString
& label
)
1240 wxCHECK_RET( pos
< GetMenuCount(), wxT("invalid menu index") );
1242 m_menus
[pos
]->wxMenuBase::SetTitle(label
);
1244 if ( !IsAttached() )
1248 //else: have to modify the existing menu
1250 int mswpos
= MSWPositionForWxMenu(GetMenu(pos
),pos
);
1253 UINT flagsOld
= ::GetMenuState((HMENU
)m_hMenu
, mswpos
, MF_BYPOSITION
);
1254 if ( flagsOld
== 0xFFFFFFFF )
1256 wxLogLastError(wxT("GetMenuState"));
1261 if ( flagsOld
& MF_POPUP
)
1263 // HIBYTE contains the number of items in the submenu in this case
1265 id
= (UINT_PTR
)::GetSubMenu((HMENU
)m_hMenu
, mswpos
);
1273 WinStruct
<MENUITEMINFO
> info
;
1274 info
.fMask
= MIIM_TYPE
;
1275 info
.fType
= MFT_STRING
;
1276 info
.cch
= label
.length();
1277 info
.dwTypeData
= wxMSW_CONV_LPTSTR(label
);
1278 if ( !SetMenuItemInfo(GetHmenu(), id
, TRUE
, &info
) )
1280 wxLogLastError(wxT("SetMenuItemInfo"));
1284 if ( ::ModifyMenu(GetHmenu(), mswpos
, MF_BYPOSITION
| MF_STRING
| flagsOld
,
1285 id
, label
.t_str()) == (int)0xFFFFFFFF )
1287 wxLogLastError(wxT("ModifyMenu"));
1294 wxString
wxMenuBar::GetMenuLabel(size_t pos
) const
1296 wxCHECK_MSG( pos
< GetMenuCount(), wxEmptyString
,
1297 wxT("invalid menu index in wxMenuBar::GetMenuLabel") );
1299 return m_menus
[pos
]->GetTitle();
1302 // ---------------------------------------------------------------------------
1303 // wxMenuBar construction
1304 // ---------------------------------------------------------------------------
1306 wxMenu
*wxMenuBar::Replace(size_t pos
, wxMenu
*menu
, const wxString
& title
)
1308 wxMenu
*menuOld
= wxMenuBarBase::Replace(pos
, menu
, title
);
1312 menu
->wxMenuBase::SetTitle(title
);
1314 #if defined(WINCE_WITHOUT_COMMANDBAR)
1320 int mswpos
= MSWPositionForWxMenu(menuOld
,pos
);
1322 // can't use ModifyMenu() because it deletes the submenu it replaces
1323 if ( !::RemoveMenu(GetHmenu(), (UINT
)mswpos
, MF_BYPOSITION
) )
1325 wxLogLastError(wxT("RemoveMenu"));
1328 if ( !::InsertMenu(GetHmenu(), (UINT
)mswpos
,
1329 MF_BYPOSITION
| MF_POPUP
| MF_STRING
,
1330 (UINT_PTR
)GetHmenuOf(menu
), title
.t_str()) )
1332 wxLogLastError(wxT("InsertMenu"));
1336 if ( menuOld
->HasAccels() || menu
->HasAccels() )
1338 // need to rebuild accell table
1339 RebuildAccelTable();
1341 #endif // wxUSE_ACCEL
1350 bool wxMenuBar::Insert(size_t pos
, wxMenu
*menu
, const wxString
& title
)
1352 // Find out which MSW item before which we'll be inserting before
1353 // wxMenuBarBase::Insert is called and GetMenu(pos) is the new menu.
1354 // If IsAttached() is false this won't be used anyway
1356 #if defined(WINCE_WITHOUT_COMMANDBAR)
1362 int mswpos
= (!isAttached
|| (pos
== m_menus
.GetCount()))
1363 ? -1 // append the menu
1364 : MSWPositionForWxMenu(GetMenu(pos
),pos
);
1366 if ( !wxMenuBarBase::Insert(pos
, menu
, title
) )
1369 menu
->wxMenuBase::SetTitle(title
);
1373 #if defined(WINCE_WITHOUT_COMMANDBAR)
1377 memset(&tbButton
, 0, sizeof(TBBUTTON
));
1378 tbButton
.iBitmap
= I_IMAGENONE
;
1379 tbButton
.fsState
= TBSTATE_ENABLED
;
1380 tbButton
.fsStyle
= TBSTYLE_DROPDOWN
| TBSTYLE_NO_DROPDOWN_ARROW
| TBSTYLE_AUTOSIZE
;
1382 HMENU hPopupMenu
= (HMENU
) menu
->GetHMenu() ;
1383 tbButton
.dwData
= (DWORD
)hPopupMenu
;
1384 wxString label
= wxStripMenuCodes(title
);
1385 tbButton
.iString
= (int) wxMSW_CONV_LPCTSTR(label
);
1387 tbButton
.idCommand
= NewControlId();
1388 if (!::SendMessage((HWND
) GetToolBar()->GetHWND(), TB_INSERTBUTTON
, pos
, (LPARAM
)&tbButton
))
1390 wxLogLastError(wxT("TB_INSERTBUTTON"));
1393 wxUnusedVar(mswpos
);
1395 if ( !::InsertMenu(GetHmenu(), mswpos
,
1396 MF_BYPOSITION
| MF_POPUP
| MF_STRING
,
1397 (UINT_PTR
)GetHmenuOf(menu
), title
.t_str()) )
1399 wxLogLastError(wxT("InsertMenu"));
1403 if ( menu
->HasAccels() )
1405 // need to rebuild accell table
1406 RebuildAccelTable();
1408 #endif // wxUSE_ACCEL
1417 bool wxMenuBar::Append(wxMenu
*menu
, const wxString
& title
)
1419 WXHMENU submenu
= menu
? menu
->GetHMenu() : 0;
1420 wxCHECK_MSG( submenu
, false, wxT("can't append invalid menu to menubar") );
1422 if ( !wxMenuBarBase::Append(menu
, title
) )
1425 menu
->wxMenuBase::SetTitle(title
);
1427 #if defined(WINCE_WITHOUT_COMMANDBAR)
1433 #if defined(WINCE_WITHOUT_COMMANDBAR)
1437 memset(&tbButton
, 0, sizeof(TBBUTTON
));
1438 tbButton
.iBitmap
= I_IMAGENONE
;
1439 tbButton
.fsState
= TBSTATE_ENABLED
;
1440 tbButton
.fsStyle
= TBSTYLE_DROPDOWN
| TBSTYLE_NO_DROPDOWN_ARROW
| TBSTYLE_AUTOSIZE
;
1442 size_t pos
= GetMenuCount();
1443 HMENU hPopupMenu
= (HMENU
) menu
->GetHMenu() ;
1444 tbButton
.dwData
= (DWORD
)hPopupMenu
;
1445 wxString label
= wxStripMenuCodes(title
);
1446 tbButton
.iString
= (int) wxMSW_CONV_LPCTSTR(label
);
1448 tbButton
.idCommand
= NewControlId();
1449 if (!::SendMessage((HWND
) GetToolBar()->GetHWND(), TB_INSERTBUTTON
, pos
, (LPARAM
)&tbButton
))
1451 wxLogLastError(wxT("TB_INSERTBUTTON"));
1455 if ( !::AppendMenu(GetHmenu(), MF_POPUP
| MF_STRING
,
1456 (UINT_PTR
)submenu
, title
.t_str()) )
1458 wxLogLastError(wxT("AppendMenu"));
1463 if ( menu
->HasAccels() )
1465 // need to rebuild accelerator table
1466 RebuildAccelTable();
1468 #endif // wxUSE_ACCEL
1477 wxMenu
*wxMenuBar::Remove(size_t pos
)
1479 wxMenu
*menu
= wxMenuBarBase::Remove(pos
);
1483 #if defined(WINCE_WITHOUT_COMMANDBAR)
1489 #if defined(WINCE_WITHOUT_COMMANDBAR)
1492 if (!::SendMessage((HWND
) GetToolBar()->GetHWND(), TB_DELETEBUTTON
, (UINT
) pos
, (LPARAM
) 0))
1494 wxLogLastError(wxT("TB_DELETEBUTTON"));
1498 if ( !::RemoveMenu(GetHmenu(), (UINT
)MSWPositionForWxMenu(menu
,pos
), MF_BYPOSITION
) )
1500 wxLogLastError(wxT("RemoveMenu"));
1505 if ( menu
->HasAccels() )
1507 // need to rebuild accell table
1508 RebuildAccelTable();
1510 #endif // wxUSE_ACCEL
1521 void wxMenuBar::RebuildAccelTable()
1523 // merge the accelerators of all menus into one accel table
1524 size_t nAccelCount
= 0;
1525 size_t i
, count
= GetMenuCount();
1526 wxMenuList::iterator it
;
1527 for ( i
= 0, it
= m_menus
.begin(); i
< count
; i
++, it
++ )
1529 nAccelCount
+= (*it
)->GetAccelCount();
1534 wxAcceleratorEntry
*accelEntries
= new wxAcceleratorEntry
[nAccelCount
];
1537 for ( i
= 0, it
= m_menus
.begin(); i
< count
; i
++, it
++ )
1539 nAccelCount
+= (*it
)->CopyAccels(&accelEntries
[nAccelCount
]);
1542 SetAcceleratorTable(wxAcceleratorTable(nAccelCount
, accelEntries
));
1544 delete [] accelEntries
;
1546 else // No (more) accelerators.
1548 SetAcceleratorTable(wxAcceleratorTable());
1552 #endif // wxUSE_ACCEL
1554 void wxMenuBar::Attach(wxFrame
*frame
)
1556 wxMenuBarBase::Attach(frame
);
1558 #if defined(WINCE_WITH_COMMANDBAR)
1562 m_commandBar
= (WXHWND
) CommandBar_Create(wxGetInstance(), (HWND
) frame
->GetHWND(), NewControlId());
1567 if (!CommandBar_InsertMenubarEx((HWND
) m_commandBar
, NULL
, (LPTSTR
) m_hMenu
, 0))
1569 wxLogLastError(wxT("CommandBar_InsertMenubarEx"));
1576 RebuildAccelTable();
1577 #endif // wxUSE_ACCEL
1580 #if defined(WINCE_WITH_COMMANDBAR)
1581 bool wxMenuBar::AddAdornments(long style
)
1583 if (m_adornmentsAdded
|| !m_commandBar
)
1586 if (style
& wxCLOSE_BOX
)
1588 if (!CommandBar_AddAdornments((HWND
) m_commandBar
, 0, 0))
1590 wxLogLastError(wxT("CommandBar_AddAdornments"));
1601 void wxMenuBar::Detach()
1603 wxMenuBarBase::Detach();
1606 // get the menu with given handle (recursively)
1607 wxMenu
* wxMenuBar::MSWGetMenu(WXHMENU hMenu
)
1609 wxCHECK_MSG( GetHMenu() != hMenu
, NULL
,
1610 wxT("wxMenuBar::MSWGetMenu(): menu handle is wxMenuBar, not wxMenu") );
1612 #if wxUSE_OWNER_DRAWN
1614 for ( size_t n
= 0 ; n
< GetMenuCount(); ++n
)
1616 wxMenu
* menu
= GetMenu(n
)->MSWGetMenu(hMenu
);
1626 #endif // wxUSE_MENUS