35bc8f449b
There are no longer any qt headers included in wx/qt headers. Applications do not need to link with qt librarys anymore, only wxqt libraries. wxWindow and derived widgets only contain one pointer to their qtwidget, no longer carrying both base and derived pointers in parallel as was before.
51 lines
1.3 KiB
C++
51 lines
1.3 KiB
C++
/////////////////////////////////////////////////////////////////////////////
|
|
// Name: wx/qt/menuitem.h
|
|
// Author: Peter Most, Mariano Reingart
|
|
// Copyright: (c) 2010 wxWidgets dev team
|
|
// Licence: wxWindows licence
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef _WX_QT_MENUITEM_H_
|
|
#define _WX_QT_MENUITEM_H_
|
|
|
|
#include "wx/menuitem.h"
|
|
class QAction;
|
|
|
|
class WXDLLIMPEXP_FWD_CORE wxBitmap;
|
|
class WXDLLIMPEXP_FWD_CORE wxMenu;
|
|
|
|
class WXDLLIMPEXP_CORE wxMenuItem : public wxMenuItemBase
|
|
{
|
|
public:
|
|
wxMenuItem(wxMenu *parentMenu = NULL,
|
|
int id = wxID_SEPARATOR,
|
|
const wxString& text = wxEmptyString,
|
|
const wxString& help = wxEmptyString,
|
|
wxItemKind kind = wxITEM_NORMAL,
|
|
wxMenu *subMenu = NULL);
|
|
|
|
virtual void SetItemLabel(const wxString& str);
|
|
virtual void SetCheckable(bool checkable);
|
|
|
|
virtual void Enable(bool enable = true);
|
|
virtual bool IsEnabled() const;
|
|
|
|
virtual void Check(bool check = true);
|
|
virtual bool IsChecked() const;
|
|
|
|
void SetBitmap(const wxBitmap& bitmap);
|
|
const wxBitmap& GetBitmap() const;
|
|
|
|
virtual QAction *GetHandle() const;
|
|
|
|
private:
|
|
// Qt is using an action instead of a menu item.
|
|
QAction *m_qtAction;
|
|
|
|
wxDECLARE_DYNAMIC_CLASS( wxMenuItem );
|
|
};
|
|
|
|
|
|
|
|
#endif // _WX_QT_MENUITEM_H_
|