1 /////////////////////////////////////////////////////////////////////////////
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 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "menu.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
42 #include "wx/ownerdrw.h"
45 #include "wx/msw/private.h"
54 #if (_WIN32_WCE < 400) && !defined(__HANDHELDPC__)
58 #include "wx/msw/wince/missing.h"
62 // other standard headers
65 // ----------------------------------------------------------------------------
67 // ----------------------------------------------------------------------------
69 extern wxMenu
*wxCurrentPopupMenu
;
71 // ----------------------------------------------------------------------------
73 // ----------------------------------------------------------------------------
75 // the (popup) menu title has this special id
76 static const int idMenuTitle
= -3;
78 // ----------------------------------------------------------------------------
80 // ----------------------------------------------------------------------------
82 // make the given menu item default
83 static void SetDefaultMenuItem(HMENU hmenu
, UINT id
)
88 mii
.cbSize
= sizeof(MENUITEMINFO
);
89 mii
.fMask
= MIIM_STATE
;
90 mii
.fState
= MFS_DEFAULT
;
92 if ( !::SetMenuItemInfo(hmenu
, id
, FALSE
, &mii
) )
94 wxLogLastError(wxT("SetMenuItemInfo"));
103 UINT
GetMenuState(HMENU hMenu
, UINT id
, UINT flags
)
107 info
.cbSize
= sizeof(info
);
108 info
.fMask
= MIIM_STATE
;
109 // MF_BYCOMMAND is zero so test MF_BYPOSITION
110 if ( !::GetMenuItemInfo(hMenu
, id
, flags
& MF_BYPOSITION
? TRUE
: FALSE
, & info
) )
111 wxLogLastError(wxT("GetMenuItemInfo"));
116 // ============================================================================
118 // ============================================================================
120 #include <wx/listimpl.cpp>
122 WX_DEFINE_LIST( wxMenuInfoList
) ;
124 #if wxUSE_EXTENDED_RTTI
126 WX_DEFINE_FLAGS( wxMenuStyle
)
128 wxBEGIN_FLAGS( wxMenuStyle
)
129 wxFLAGS_MEMBER(wxMENU_TEAROFF
)
130 wxEND_FLAGS( wxMenuStyle
)
132 IMPLEMENT_DYNAMIC_CLASS_XTI(wxMenu
, wxEvtHandler
,"wx/menu.h")
134 wxCOLLECTION_TYPE_INFO( wxMenuItem
* , wxMenuItemList
) ;
136 template<> void wxCollectionToVariantArray( wxMenuItemList
const &theList
, wxxVariantArray
&value
)
138 wxListCollectionToVariantArray
<wxMenuItemList::compatibility_iterator
>( theList
, value
) ;
141 wxBEGIN_PROPERTIES_TABLE(wxMenu
)
142 wxEVENT_PROPERTY( Select
, wxEVT_COMMAND_MENU_SELECTED
, wxCommandEvent
)
143 wxPROPERTY( Title
, wxString
, SetTitle
, GetTitle
, wxString(), 0 /*flags*/ , wxT("Helpstring") , wxT("group") )
144 wxREADONLY_PROPERTY_FLAGS( MenuStyle
, wxMenuStyle
, long , GetStyle
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
145 wxPROPERTY_COLLECTION( MenuItems
, wxMenuItemList
, wxMenuItem
* , Append
, GetMenuItems
, 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
146 wxEND_PROPERTIES_TABLE()
148 wxBEGIN_HANDLERS_TABLE(wxMenu
)
149 wxEND_HANDLERS_TABLE()
151 wxDIRECT_CONSTRUCTOR_2( wxMenu
, wxString
, Title
, long , MenuStyle
)
153 WX_DEFINE_FLAGS( wxMenuBarStyle
)
155 wxBEGIN_FLAGS( wxMenuBarStyle
)
156 wxFLAGS_MEMBER(wxMB_DOCKABLE
)
157 wxEND_FLAGS( wxMenuBarStyle
)
159 // the negative id would lead the window (its superclass !) to vetoe streaming out otherwise
160 bool wxMenuBarStreamingCallback( const wxObject
*WXUNUSED(object
), wxWriter
* , wxPersister
* , wxxVariantArray
& )
165 IMPLEMENT_DYNAMIC_CLASS_XTI_CALLBACK(wxMenuBar
, wxWindow
,"wx/menu.h",wxMenuBarStreamingCallback
)
167 IMPLEMENT_DYNAMIC_CLASS_XTI(wxMenuInfo
, wxObject
, "wx/menu.h" )
169 wxBEGIN_PROPERTIES_TABLE(wxMenuInfo
)
170 wxREADONLY_PROPERTY( Menu
, wxMenu
* , GetMenu
, EMPTY_MACROVALUE
, 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
171 wxREADONLY_PROPERTY( Title
, wxString
, GetTitle
, wxString() , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
172 wxEND_PROPERTIES_TABLE()
174 wxBEGIN_HANDLERS_TABLE(wxMenuInfo
)
175 wxEND_HANDLERS_TABLE()
177 wxCONSTRUCTOR_2( wxMenuInfo
, wxMenu
* , Menu
, wxString
, Title
)
179 wxCOLLECTION_TYPE_INFO( wxMenuInfo
* , wxMenuInfoList
) ;
181 template<> void wxCollectionToVariantArray( wxMenuInfoList
const &theList
, wxxVariantArray
&value
)
183 wxListCollectionToVariantArray
<wxMenuInfoList::compatibility_iterator
>( theList
, value
) ;
186 wxBEGIN_PROPERTIES_TABLE(wxMenuBar
)
187 wxPROPERTY_COLLECTION( MenuInfos
, wxMenuInfoList
, wxMenuInfo
* , Append
, GetMenuInfos
, 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
188 wxEND_PROPERTIES_TABLE()
190 wxBEGIN_HANDLERS_TABLE(wxMenuBar
)
191 wxEND_HANDLERS_TABLE()
193 wxCONSTRUCTOR_DUMMY( wxMenuBar
)
196 IMPLEMENT_DYNAMIC_CLASS(wxMenu
, wxEvtHandler
)
197 IMPLEMENT_DYNAMIC_CLASS(wxMenuBar
, wxWindow
)
198 IMPLEMENT_DYNAMIC_CLASS(wxMenuInfo
, wxObject
)
201 const wxMenuInfoList
& wxMenuBar::GetMenuInfos() const
203 wxMenuInfoList
* list
= const_cast< wxMenuInfoList
* >( &m_menuInfos
) ;
204 WX_CLEAR_LIST( wxMenuInfoList
, *list
) ;
205 for( size_t i
= 0 ; i
< GetMenuCount() ; ++i
)
207 wxMenuInfo
* info
= new wxMenuInfo() ;
208 info
->Create( const_cast<wxMenuBar
*>(this)->GetMenu(i
) , GetLabelTop(i
) ) ;
209 list
->Append( info
) ;
214 // ---------------------------------------------------------------------------
215 // wxMenu construction, adding and removing menu items
216 // ---------------------------------------------------------------------------
218 // Construct a menu with optional title (then use append)
222 m_startRadioGroup
= -1;
225 m_hMenu
= (WXHMENU
)CreatePopupMenu();
228 wxLogLastError(wxT("CreatePopupMenu"));
231 // if we have a title, insert it in the beginning of the menu
232 if ( !m_title
.IsEmpty() )
234 Append(idMenuTitle
, m_title
);
239 // The wxWindow destructor will take care of deleting the submenus.
242 // we should free Windows resources only if Windows doesn't do it for us
243 // which happens if we're attached to a menubar or a submenu of another
245 if ( !IsAttached() && !GetParent() )
247 if ( !::DestroyMenu(GetHmenu()) )
249 wxLogLastError(wxT("DestroyMenu"));
255 WX_CLEAR_ARRAY(m_accels
);
256 #endif // wxUSE_ACCEL
261 // this will take effect during the next call to Append()
265 void wxMenu::Attach(wxMenuBarBase
*menubar
)
267 wxMenuBase::Attach(menubar
);
274 int wxMenu::FindAccel(int id
) const
276 size_t n
, count
= m_accels
.GetCount();
277 for ( n
= 0; n
< count
; n
++ )
279 if ( m_accels
[n
]->m_command
== id
)
286 void wxMenu::UpdateAccel(wxMenuItem
*item
)
288 if ( item
->IsSubMenu() )
290 wxMenu
*submenu
= item
->GetSubMenu();
291 wxMenuItemList::compatibility_iterator node
= submenu
->GetMenuItems().GetFirst();
294 UpdateAccel(node
->GetData());
296 node
= node
->GetNext();
299 else if ( !item
->IsSeparator() )
301 // find the (new) accel for this item
302 wxAcceleratorEntry
*accel
= wxGetAccelFromString(item
->GetText());
304 accel
->m_command
= item
->GetId();
307 int n
= FindAccel(item
->GetId());
308 if ( n
== wxNOT_FOUND
)
310 // no old, add new if any
314 return; // skipping RebuildAccelTable() below
318 // replace old with new or just remove the old one if no new
323 m_accels
.RemoveAt(n
);
328 GetMenuBar()->RebuildAccelTable();
331 //else: it is a separator, they can't have accels, nothing to do
334 #endif // wxUSE_ACCEL
336 // append a new item or submenu to the menu
337 bool wxMenu::DoInsertOrAppend(wxMenuItem
*pItem
, size_t pos
)
341 #endif // wxUSE_ACCEL
345 // if "Break" has just been called, insert a menu break before this item
346 // (and don't forget to reset the flag)
348 flags
|= MF_MENUBREAK
;
352 if ( pItem
->IsSeparator() ) {
353 flags
|= MF_SEPARATOR
;
356 // id is the numeric id for normal menu items and HMENU for submenus as
357 // required by ::AppendMenu() API
359 wxMenu
*submenu
= pItem
->GetSubMenu();
360 if ( submenu
!= NULL
) {
361 wxASSERT_MSG( submenu
->GetHMenu(), wxT("invalid submenu") );
363 submenu
->SetParent(this);
365 id
= (UINT
)submenu
->GetHMenu();
374 // prepare to insert the item in the menu
375 wxString itemText
= pItem
->GetText();
376 LPCTSTR pData
= NULL
;
377 if ( pos
== (size_t)-1 )
380 pos
= ::GetMenuItemCount(GetHmenu());
385 // check if we have something more than a simple text item
386 #if wxUSE_OWNER_DRAWN
387 if ( pItem
->IsOwnerDrawn() )
389 // is the item owner-drawn just because of the bitmap?
390 if ( pItem
->GetBitmap().Ok() &&
391 !pItem
->GetTextColour().Ok() &&
392 !pItem
->GetBackgroundColour().Ok() &&
393 !pItem
->GetFont().Ok() )
395 // try to use InsertMenuItem() as it's guaranteed to look correctly
396 // while our owner-drawning code is not
398 // first compile-time check
400 WinStruct
<MENUITEMINFO
> mii
;
402 // now run-time one: MIIM_BITMAP only works under WinME/2000+
403 if ( wxGetWinVersion() >= wxWinVersion_5
)
405 mii
.fMask
= MIIM_ID
| MIIM_STRING
| MIIM_DATA
| MIIM_BITMAP
;
407 mii
.cch
= itemText
.length();
408 mii
.dwTypeData
= wx_const_cast(wxChar
*, itemText
.c_str());
410 // we can't pass HBITMAP directly as hbmpItem for 2 reasons:
411 // 1. we can't draw it with transparency then (this is not
412 // very important now but would be with themed menu bg)
413 // 2. worse, Windows inverses the bitmap for the selected
414 // item and this looks downright ugly
416 // so instead draw it ourselves in MSWOnDrawItem()
417 mii
.dwItemData
= wx_reinterpret_cast(ULONG_PTR
, pItem
);
418 mii
.hbmpItem
= HBMMENU_CALLBACK
;
420 ok
= ::InsertMenuItem(GetHmenu(), pos
, TRUE
/* by pos */, &mii
);
423 wxLogLastError(wxT("InsertMenuItem()"));
425 else // InsertMenuItem() ok
427 // we need to remove the extra indent which is reserved for
428 // the checkboxes by default as it looks ugly unless check
429 // boxes are used together with bitmaps and this is not the
431 WinStruct
<MENUINFO
> mi
;
433 mi
.fMask
= MIM_STYLE
;
434 mi
.dwStyle
= MNS_CHECKORBMP
;
435 if ( !::SetMenuInfo(GetHmenu(), &mi
) )
436 wxLogLastError(_T("SetMenuInfo(MNS_NOCHECK)"));
438 // tell the item that it's not really owner-drawn but only
439 // needs to draw its bitmap, the rest is done by Windows
440 pItem
->ResetOwnerDrawn();
443 #endif // MIIM_BITMAP
448 // item draws itself, pass pointer to it in data parameter
449 flags
|= MF_OWNERDRAW
;
450 pData
= (LPCTSTR
)pItem
;
454 #endif // wxUSE_OWNER_DRAWN
456 // menu is just a normal string (passed in data parameter)
460 itemText
= wxMenuItem::GetLabelFromText(itemText
);
463 pData
= (wxChar
*)itemText
.c_str();
466 // item might have been already inserted by InsertMenuItem() above
469 if ( !::InsertMenu(GetHmenu(), pos
, flags
| MF_BYPOSITION
, id
, pData
) )
471 wxLogLastError(wxT("InsertMenu[Item]()"));
478 // if we just appended the title, highlight it
479 if ( (int)id
== idMenuTitle
)
481 // visually select the menu title
482 SetDefaultMenuItem(GetHmenu(), id
);
485 // if we're already attached to the menubar, we must update it
486 if ( IsAttached() && GetMenuBar()->IsAttached() )
488 GetMenuBar()->Refresh();
494 void wxMenu::EndRadioGroup()
496 // we're not inside a radio group any longer
497 m_startRadioGroup
= -1;
500 wxMenuItem
* wxMenu::DoAppend(wxMenuItem
*item
)
502 wxCHECK_MSG( item
, NULL
, _T("NULL item in wxMenu::DoAppend") );
506 if ( item
->GetKind() == wxITEM_RADIO
)
508 int count
= GetMenuItemCount();
510 if ( m_startRadioGroup
== -1 )
512 // start a new radio group
513 m_startRadioGroup
= count
;
515 // for now it has just one element
516 item
->SetAsRadioGroupStart();
517 item
->SetRadioGroupEnd(m_startRadioGroup
);
519 // ensure that we have a checked item in the radio group
522 else // extend the current radio group
524 // we need to update its end item
525 item
->SetRadioGroupStart(m_startRadioGroup
);
526 wxMenuItemList::compatibility_iterator node
= GetMenuItems().Item(m_startRadioGroup
);
530 node
->GetData()->SetRadioGroupEnd(count
);
534 wxFAIL_MSG( _T("where is the radio group start item?") );
538 else // not a radio item
543 if ( !wxMenuBase::DoAppend(item
) || !DoInsertOrAppend(item
) )
550 // check the item initially
557 wxMenuItem
* wxMenu::DoInsert(size_t pos
, wxMenuItem
*item
)
559 if (wxMenuBase::DoInsert(pos
, item
) && DoInsertOrAppend(item
, pos
))
565 wxMenuItem
*wxMenu::DoRemove(wxMenuItem
*item
)
567 // we need to find the items position in the child list
569 wxMenuItemList::compatibility_iterator node
= GetMenuItems().GetFirst();
570 for ( pos
= 0; node
; pos
++ )
572 if ( node
->GetData() == item
)
575 node
= node
->GetNext();
578 // DoRemove() (unlike Remove) can only be called for existing item!
579 wxCHECK_MSG( node
, NULL
, wxT("bug in wxMenu::Remove logic") );
582 // remove the corresponding accel from the accel table
583 int n
= FindAccel(item
->GetId());
584 if ( n
!= wxNOT_FOUND
)
588 m_accels
.RemoveAt(n
);
590 //else: this item doesn't have an accel, nothing to do
591 #endif // wxUSE_ACCEL
593 // remove the item from the menu
594 if ( !::RemoveMenu(GetHmenu(), (UINT
)pos
, MF_BYPOSITION
) )
596 wxLogLastError(wxT("RemoveMenu"));
599 if ( IsAttached() && GetMenuBar()->IsAttached() )
601 // otherwise, the chane won't be visible
602 GetMenuBar()->Refresh();
605 // and from internal data structures
606 return wxMenuBase::DoRemove(item
);
609 // ---------------------------------------------------------------------------
610 // accelerator helpers
611 // ---------------------------------------------------------------------------
615 // create the wxAcceleratorEntries for our accels and put them into provided
616 // array - return the number of accels we have
617 size_t wxMenu::CopyAccels(wxAcceleratorEntry
*accels
) const
619 size_t count
= GetAccelCount();
620 for ( size_t n
= 0; n
< count
; n
++ )
622 *accels
++ = *m_accels
[n
];
628 #endif // wxUSE_ACCEL
630 // ---------------------------------------------------------------------------
632 // ---------------------------------------------------------------------------
634 void wxMenu::SetTitle(const wxString
& label
)
636 bool hasNoTitle
= m_title
.IsEmpty();
639 HMENU hMenu
= GetHmenu();
643 if ( !label
.IsEmpty() )
645 if ( !::InsertMenu(hMenu
, 0u, MF_BYPOSITION
| MF_STRING
,
646 (unsigned)idMenuTitle
, m_title
) ||
647 !::InsertMenu(hMenu
, 1u, MF_BYPOSITION
, (unsigned)-1, NULL
) )
649 wxLogLastError(wxT("InsertMenu"));
655 if ( label
.IsEmpty() )
657 // remove the title and the separator after it
658 if ( !RemoveMenu(hMenu
, 0, MF_BYPOSITION
) ||
659 !RemoveMenu(hMenu
, 0, MF_BYPOSITION
) )
661 wxLogLastError(wxT("RemoveMenu"));
670 info
.cbSize
= sizeof(info
);
671 info
.fMask
= MIIM_TYPE
;
672 info
.fType
= MFT_STRING
;
673 info
.cch
= m_title
.Length();
674 info
.dwTypeData
= (LPTSTR
) m_title
.c_str();
675 if ( !SetMenuItemInfo(hMenu
, 0, TRUE
, & info
) )
677 wxLogLastError(wxT("SetMenuItemInfo"));
680 if ( !ModifyMenu(hMenu
, 0u,
681 MF_BYPOSITION
| MF_STRING
,
682 (unsigned)idMenuTitle
, m_title
) )
684 wxLogLastError(wxT("ModifyMenu"));
691 // put the title string in bold face
692 if ( !m_title
.IsEmpty() )
694 SetDefaultMenuItem(GetHmenu(), (UINT
)idMenuTitle
);
699 // ---------------------------------------------------------------------------
701 // ---------------------------------------------------------------------------
703 bool wxMenu::MSWCommand(WXUINT
WXUNUSED(param
), WXWORD id
)
705 // ignore commands from the menu title
706 if ( id
!= (WXWORD
)idMenuTitle
)
708 // get the checked status of the command: notice that menuState is the
709 // old state of the menu, so the test for MF_CHECKED must be inverted
710 UINT menuState
= ::GetMenuState(GetHmenu(), id
, MF_BYCOMMAND
);
711 SendEvent(id
, !(menuState
& MF_CHECKED
));
717 // ---------------------------------------------------------------------------
719 // ---------------------------------------------------------------------------
721 wxWindow
*wxMenu::GetWindow() const
723 if ( m_invokingWindow
!= NULL
)
724 return m_invokingWindow
;
725 else if ( GetMenuBar() != NULL
)
726 return GetMenuBar()->GetFrame();
731 // ---------------------------------------------------------------------------
733 // ---------------------------------------------------------------------------
735 void wxMenuBar::Init()
737 m_eventHandler
= this;
739 #if wxUSE_TOOLBAR && defined(__WXWINCE__)
742 // Not using a combined wxToolBar/wxMenuBar? then use
743 // a commandbar in WinCE .NET just to implement the
745 #if defined(WINCE_WITH_COMMANDBAR)
747 m_adornmentsAdded
= false;
751 wxMenuBar::wxMenuBar()
756 wxMenuBar::wxMenuBar( long WXUNUSED(style
) )
761 wxMenuBar::wxMenuBar(size_t count
, wxMenu
*menus
[], const wxString titles
[], long WXUNUSED(style
))
765 m_titles
.Alloc(count
);
767 for ( size_t i
= 0; i
< count
; i
++ )
769 m_menus
.Append(menus
[i
]);
770 m_titles
.Add(titles
[i
]);
772 menus
[i
]->Attach(this);
776 wxMenuBar::~wxMenuBar()
778 // In Windows CE (not .NET), the menubar is always associated
779 // with a toolbar, which destroys the menu implicitly.
780 #if defined(WINCE_WITHOUT_COMMANDBAR) && defined(__POCKETPC__)
783 wxToolMenuBar
* toolMenuBar
= wxDynamicCast(GetToolBar(), wxToolMenuBar
);
785 toolMenuBar
->SetMenuBar(NULL
);
788 // we should free Windows resources only if Windows doesn't do it for us
789 // which happens if we're attached to a frame
790 if (m_hMenu
&& !IsAttached())
792 #if defined(WINCE_WITH_COMMANDBAR)
793 ::DestroyWindow((HWND
) m_commandBar
);
794 m_commandBar
= (WXHWND
) NULL
;
796 ::DestroyMenu((HMENU
)m_hMenu
);
798 m_hMenu
= (WXHMENU
)NULL
;
803 // ---------------------------------------------------------------------------
805 // ---------------------------------------------------------------------------
807 void wxMenuBar::Refresh()
809 wxCHECK_RET( IsAttached(), wxT("can't refresh unattached menubar") );
811 #if defined(WINCE_WITHOUT_COMMANDBAR)
814 CommandBar_DrawMenuBar((HWND
) GetToolBar()->GetHWND(), 0);
816 #elif defined(WINCE_WITH_COMMANDBAR)
818 DrawMenuBar((HWND
) m_commandBar
);
820 DrawMenuBar(GetHwndOf(GetFrame()));
824 WXHMENU
wxMenuBar::Create()
826 // Note: this totally doesn't work on Smartphone,
827 // since you have to use resources.
828 // We'll have to find another way to add a menu
829 // by changing/adding menu items to an existing menu.
830 #if defined(WINCE_WITHOUT_COMMANDBAR)
837 HWND hCommandBar
= (HWND
) GetToolBar()->GetHWND();
838 HMENU hMenu
= (HMENU
)::SendMessage(hCommandBar
, SHCMBM_GETMENU
, (WPARAM
)0, (LPARAM
)0);
842 memset(&tbButton
, 0, sizeof(TBBUTTON
));
843 tbButton
.iBitmap
= I_IMAGENONE
;
844 tbButton
.fsState
= TBSTATE_ENABLED
;
845 tbButton
.fsStyle
= TBSTYLE_DROPDOWN
| TBSTYLE_NO_DROPDOWN_ARROW
| TBSTYLE_AUTOSIZE
;
848 for (i
= 0; i
< GetMenuCount(); i
++)
850 HMENU hPopupMenu
= (HMENU
) GetMenu(i
)->GetHMenu() ;
851 tbButton
.dwData
= (DWORD
)hPopupMenu
;
852 wxString label
= wxStripMenuCodes(GetLabelTop(i
));
853 tbButton
.iString
= (int) label
.c_str();
857 tbButton
.idCommand
= NewControlId();
858 if (!::SendMessage(hCommandBar
, TB_INSERTBUTTON
, position
, (LPARAM
)&tbButton
))
860 wxLogLastError(wxT("TB_INSERTBUTTON"));
864 m_hMenu
= (WXHMENU
) hMenu
;
870 m_hMenu
= (WXHMENU
)::CreateMenu();
874 wxLogLastError(wxT("CreateMenu"));
878 size_t count
= GetMenuCount(), i
;
879 wxMenuList::iterator it
;
880 for ( i
= 0, it
= m_menus
.begin(); i
< count
; i
++, it
++ )
882 if ( !::AppendMenu((HMENU
)m_hMenu
, MF_POPUP
| MF_STRING
,
883 (UINT
)(*it
)->GetHMenu(),
886 wxLogLastError(wxT("AppendMenu"));
895 int wxMenuBar::MSWPositionForWxMenu(wxMenu
*menu
, int wxpos
)
898 wxASSERT(menu
->GetHMenu());
901 #if defined(__WXWINCE__)
902 int totalMSWItems
= GetMenuCount();
904 int totalMSWItems
= GetMenuItemCount((HMENU
)m_hMenu
);
907 int i
; // For old C++ compatibility
908 for(i
=wxpos
; i
<totalMSWItems
; i
++)
910 if(GetSubMenu((HMENU
)m_hMenu
,i
)==(HMENU
)menu
->GetHMenu())
913 for(i
=0; i
<wxpos
; i
++)
915 if(GetSubMenu((HMENU
)m_hMenu
,i
)==(HMENU
)menu
->GetHMenu())
922 // ---------------------------------------------------------------------------
923 // wxMenuBar functions to work with the top level submenus
924 // ---------------------------------------------------------------------------
926 // NB: we don't support owner drawn top level items for now, if we do these
927 // functions would have to be changed to use wxMenuItem as well
929 void wxMenuBar::EnableTop(size_t pos
, bool enable
)
931 wxCHECK_RET( IsAttached(), wxT("doesn't work with unattached menubars") );
932 wxCHECK_RET( pos
< GetMenuCount(), wxT("invalid menu index") );
934 int flag
= enable
? MF_ENABLED
: MF_GRAYED
;
936 EnableMenuItem((HMENU
)m_hMenu
, MSWPositionForWxMenu(GetMenu(pos
),pos
), MF_BYPOSITION
| flag
);
941 void wxMenuBar::SetLabelTop(size_t pos
, const wxString
& label
)
943 wxCHECK_RET( pos
< GetMenuCount(), wxT("invalid menu index") );
945 m_titles
[pos
] = label
;
951 //else: have to modify the existing menu
953 int mswpos
= MSWPositionForWxMenu(GetMenu(pos
),pos
);
956 UINT flagsOld
= ::GetMenuState((HMENU
)m_hMenu
, mswpos
, MF_BYPOSITION
);
957 if ( flagsOld
== 0xFFFFFFFF )
959 wxLogLastError(wxT("GetMenuState"));
964 if ( flagsOld
& MF_POPUP
)
966 // HIBYTE contains the number of items in the submenu in this case
968 id
= (UINT
)::GetSubMenu((HMENU
)m_hMenu
, mswpos
);
978 info
.cbSize
= sizeof(info
);
979 info
.fMask
= MIIM_TYPE
;
980 info
.fType
= MFT_STRING
;
981 info
.cch
= label
.Length();
982 info
.dwTypeData
= (LPTSTR
) label
.c_str();
983 if ( !SetMenuItemInfo(GetHmenu(), id
, TRUE
, & info
) )
985 wxLogLastError(wxT("SetMenuItemInfo"));
989 if ( ::ModifyMenu(GetHmenu(), mswpos
, MF_BYPOSITION
| MF_STRING
| flagsOld
,
990 id
, label
) == (int)0xFFFFFFFF )
992 wxLogLastError(wxT("ModifyMenu"));
999 wxString
wxMenuBar::GetLabelTop(size_t pos
) const
1001 wxCHECK_MSG( pos
< GetMenuCount(), wxEmptyString
,
1002 wxT("invalid menu index in wxMenuBar::GetLabelTop") );
1004 return wxMenuItem::GetLabelFromText(m_titles
[pos
]);
1007 // ---------------------------------------------------------------------------
1008 // wxMenuBar construction
1009 // ---------------------------------------------------------------------------
1011 wxMenu
*wxMenuBar::Replace(size_t pos
, wxMenu
*menu
, const wxString
& title
)
1013 wxMenu
*menuOld
= wxMenuBarBase::Replace(pos
, menu
, title
);
1017 m_titles
[pos
] = title
;
1021 int mswpos
= MSWPositionForWxMenu(menuOld
,pos
);
1023 // can't use ModifyMenu() because it deletes the submenu it replaces
1024 if ( !::RemoveMenu(GetHmenu(), (UINT
)mswpos
, MF_BYPOSITION
) )
1026 wxLogLastError(wxT("RemoveMenu"));
1029 if ( !::InsertMenu(GetHmenu(), (UINT
)mswpos
,
1030 MF_BYPOSITION
| MF_POPUP
| MF_STRING
,
1031 (UINT
)GetHmenuOf(menu
), title
) )
1033 wxLogLastError(wxT("InsertMenu"));
1037 if ( menuOld
->HasAccels() || menu
->HasAccels() )
1039 // need to rebuild accell table
1040 RebuildAccelTable();
1042 #endif // wxUSE_ACCEL
1050 bool wxMenuBar::Insert(size_t pos
, wxMenu
*menu
, const wxString
& title
)
1052 // Find out which MSW item before which we'll be inserting before
1053 // wxMenuBarBase::Insert is called and GetMenu(pos) is the new menu.
1054 // If IsAttached() is false this won't be used anyway
1055 int mswpos
= (!IsAttached() || (pos
== m_menus
.GetCount()))
1056 ? -1 // append the menu
1057 : MSWPositionForWxMenu(GetMenu(pos
),pos
);
1059 if ( !wxMenuBarBase::Insert(pos
, menu
, title
) )
1062 m_titles
.Insert(title
, pos
);
1066 #if defined(WINCE_WITHOUT_COMMANDAR)
1070 memset(&tbButton
, 0, sizeof(TBBUTTON
));
1071 tbButton
.iBitmap
= I_IMAGENONE
;
1072 tbButton
.fsState
= TBSTATE_ENABLED
;
1073 tbButton
.fsStyle
= TBSTYLE_DROPDOWN
| TBSTYLE_NO_DROPDOWN_ARROW
| TBSTYLE_AUTOSIZE
;
1075 HMENU hPopupMenu
= (HMENU
) menu
->GetHMenu() ;
1076 tbButton
.dwData
= (DWORD
)hPopupMenu
;
1077 wxString label
= wxStripMenuCodes(title
);
1078 tbButton
.iString
= (int) label
.c_str();
1080 tbButton
.idCommand
= NewControlId();
1081 if (!::SendMessage((HWND
) GetToolBar()->GetHWND(), TB_INSERTBUTTON
, pos
, (LPARAM
)&tbButton
))
1083 wxLogLastError(wxT("TB_INSERTBUTTON"));
1087 if ( !::InsertMenu(GetHmenu(), mswpos
,
1088 MF_BYPOSITION
| MF_POPUP
| MF_STRING
,
1089 (UINT
)GetHmenuOf(menu
), title
) )
1091 wxLogLastError(wxT("InsertMenu"));
1095 if ( menu
->HasAccels() )
1097 // need to rebuild accell table
1098 RebuildAccelTable();
1100 #endif // wxUSE_ACCEL
1108 bool wxMenuBar::Append(wxMenu
*menu
, const wxString
& title
)
1110 WXHMENU submenu
= menu
? menu
->GetHMenu() : 0;
1111 wxCHECK_MSG( submenu
, false, wxT("can't append invalid menu to menubar") );
1113 if ( !wxMenuBarBase::Append(menu
, title
) )
1116 m_titles
.Add(title
);
1120 #if defined(WINCE_WITHOUT_COMMANDAR)
1124 memset(&tbButton
, 0, sizeof(TBBUTTON
));
1125 tbButton
.iBitmap
= I_IMAGENONE
;
1126 tbButton
.fsState
= TBSTATE_ENABLED
;
1127 tbButton
.fsStyle
= TBSTYLE_DROPDOWN
| TBSTYLE_NO_DROPDOWN_ARROW
| TBSTYLE_AUTOSIZE
;
1129 size_t pos
= GetMenuCount();
1130 HMENU hPopupMenu
= (HMENU
) menu
->GetHMenu() ;
1131 tbButton
.dwData
= (DWORD
)hPopupMenu
;
1132 wxString label
= wxStripMenuCodes(title
);
1133 tbButton
.iString
= (int) label
.c_str();
1135 tbButton
.idCommand
= NewControlId();
1136 if (!::SendMessage((HWND
) GetToolBar()->GetHWND(), TB_INSERTBUTTON
, pos
, (LPARAM
)&tbButton
))
1138 wxLogLastError(wxT("TB_INSERTBUTTON"));
1142 if ( !::AppendMenu(GetHmenu(), MF_POPUP
| MF_STRING
,
1143 (UINT
)submenu
, title
) )
1145 wxLogLastError(wxT("AppendMenu"));
1150 if ( menu
->HasAccels() )
1152 // need to rebuild accelerator table
1153 RebuildAccelTable();
1155 #endif // wxUSE_ACCEL
1163 wxMenu
*wxMenuBar::Remove(size_t pos
)
1165 wxMenu
*menu
= wxMenuBarBase::Remove(pos
);
1171 #if defined(WINCE_WITHOUT_COMMANDAR)
1174 if (!::SendMessage((HWND
) GetToolBar()->GetHWND(), TB_DELETEBUTTON
, (UINT
) pos
, (LPARAM
) 0))
1176 wxLogLastError(wxT("TB_DELETEBUTTON"));
1180 if ( !::RemoveMenu(GetHmenu(), (UINT
)MSWPositionForWxMenu(menu
,pos
), MF_BYPOSITION
) )
1182 wxLogLastError(wxT("RemoveMenu"));
1187 if ( menu
->HasAccels() )
1189 // need to rebuild accell table
1190 RebuildAccelTable();
1192 #endif // wxUSE_ACCEL
1198 m_titles
.RemoveAt(pos
);
1205 void wxMenuBar::RebuildAccelTable()
1207 // merge the accelerators of all menus into one accel table
1208 size_t nAccelCount
= 0;
1209 size_t i
, count
= GetMenuCount();
1210 wxMenuList::iterator it
;
1211 for ( i
= 0, it
= m_menus
.begin(); i
< count
; i
++, it
++ )
1213 nAccelCount
+= (*it
)->GetAccelCount();
1218 wxAcceleratorEntry
*accelEntries
= new wxAcceleratorEntry
[nAccelCount
];
1221 for ( i
= 0, it
= m_menus
.begin(); i
< count
; i
++, it
++ )
1223 nAccelCount
+= (*it
)->CopyAccels(&accelEntries
[nAccelCount
]);
1226 m_accelTable
= wxAcceleratorTable(nAccelCount
, accelEntries
);
1228 delete [] accelEntries
;
1232 #endif // wxUSE_ACCEL
1234 void wxMenuBar::Attach(wxFrame
*frame
)
1236 wxMenuBarBase::Attach(frame
);
1238 #if defined(WINCE_WITH_COMMANDBAR)
1242 m_commandBar
= (WXHWND
) CommandBar_Create(wxGetInstance(), (HWND
) frame
->GetHWND(), NewControlId());
1247 if (!CommandBar_InsertMenubarEx((HWND
) m_commandBar
, NULL
, (LPTSTR
) m_hMenu
, 0))
1249 wxLogLastError(wxT("CommandBar_InsertMenubarEx"));
1256 RebuildAccelTable();
1257 #endif // wxUSE_ACCEL
1260 #if defined(WINCE_WITH_COMMANDBAR)
1261 bool wxMenuBar::AddAdornments(long style
)
1263 if (m_adornmentsAdded
|| !m_commandBar
)
1266 if (style
& wxCLOSE_BOX
)
1268 if (!CommandBar_AddAdornments((HWND
) m_commandBar
, 0, 0))
1269 wxLogLastError(wxT("CommandBar_AddAdornments"));
1277 void wxMenuBar::Detach()
1279 wxMenuBarBase::Detach();
1282 #endif // wxUSE_MENUS