projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
default values for option and flag (TODO: preferences dialog)
[wxWidgets.git]
/
src
/
univ
/
menu.cpp
diff --git
a/src/univ/menu.cpp
b/src/univ/menu.cpp
index e25a936355256ba230bb8fa73d1e7157ad918ba0..2d3fa88a55101453f890433e4a03cf8a24a7f44f 100644
(file)
--- a/
src/univ/menu.cpp
+++ b/
src/univ/menu.cpp
@@
-26,6
+26,7
@@
#if wxUSE_MENUS
#include "wx/menu.h"
#if wxUSE_MENUS
#include "wx/menu.h"
+#include "wx/stockitem.h"
#ifndef WX_PRECOMP
#include "wx/dynarray.h"
#ifndef WX_PRECOMP
#include "wx/dynarray.h"
@@
-122,7
+123,7
@@
class wxPopupMenuWindow : public wxPopupTransientWindow
public:
wxPopupMenuWindow(wxWindow *parent, wxMenu *menu);
public:
wxPopupMenuWindow(wxWindow *parent, wxMenu *menu);
- ~wxPopupMenuWindow();
+
virtual
~wxPopupMenuWindow();
// override the base class version to select the first item initially
virtual void Popup(wxWindow *focus = NULL);
// override the base class version to select the first item initially
virtual void Popup(wxWindow *focus = NULL);
@@
-346,7
+347,7
@@
void wxPopupMenuWindow::SetCurrentItem(wxMenuItemIter node)
void wxPopupMenuWindow::ChangeCurrent(wxMenuItemIter node)
{
void wxPopupMenuWindow::ChangeCurrent(wxMenuItemIter node)
{
- if ( !m_nodeCurrent || (node != m_nodeCurrent) )
+ if ( !m_nodeCurrent ||
!node ||
(node != m_nodeCurrent) )
{
wxMenuItemIter nodeOldCurrent = m_nodeCurrent;
{
wxMenuItemIter nodeOldCurrent = m_nodeCurrent;
@@
-987,7
+988,7
@@
bool wxPopupMenuWindow::ProcessKeyDown(int key)
int idxAccel = item->GetAccelIndex();
if ( idxAccel != -1 &&
int idxAccel = item->GetAccelIndex();
if ( idxAccel != -1 &&
- wxTolower(item->GetLabel()[(size_t)idxAccel])
+
(wxChar)
wxTolower(item->GetLabel()[(size_t)idxAccel])
== chAccel )
{
// ok, found an item with this accel
== chAccel )
{
// ok, found an item with this accel
@@
-1542,6
+1543,7
@@
void wxMenuItem::SetText(const wxString& text)
if ( text != m_text )
{
// first call the base class version to change m_text
if ( text != m_text )
{
// first call the base class version to change m_text
+ // (and also check if we don't have a stock menu item)
wxMenuItemBase::SetText(text);
UpdateAccelInfo();
wxMenuItemBase::SetText(text);
UpdateAccelInfo();
@@
-2328,8
+2330,7
@@
int wxMenuBar::FindNextItemForAccel(int idxStart, int key, bool *unique) const
int idxAccel = info.GetAccelIndex();
if ( idxAccel != -1 &&
int idxAccel = info.GetAccelIndex();
if ( idxAccel != -1 &&
- wxTolower(info.GetLabel()[(size_t)idxAccel])
- == chAccel )
+ (wxChar)wxTolower(info.GetLabel()[(size_t)idxAccel]) == chAccel )
{
// ok, found an item with this accel
if ( idxFound == -1 )
{
// ok, found an item with this accel
if ( idxFound == -1 )