initial commit
Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
58
libs/wxWidgets-3.3.1/include/wx/qt/menuitem.h
Normal file
58
libs/wxWidgets-3.3.1/include/wx/qt/menuitem.h
Normal file
@@ -0,0 +1,58 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// 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"
|
||||
#include "wx/bitmap.h"
|
||||
|
||||
class QAction;
|
||||
|
||||
class WXDLLIMPEXP_FWD_CORE wxMenu;
|
||||
|
||||
class WXDLLIMPEXP_CORE wxMenuItem : public wxMenuItemBase
|
||||
{
|
||||
public:
|
||||
wxMenuItem(wxMenu *parentMenu = nullptr,
|
||||
int id = wxID_SEPARATOR,
|
||||
const wxString& text = wxEmptyString,
|
||||
const wxString& help = wxEmptyString,
|
||||
wxItemKind kind = wxITEM_NORMAL,
|
||||
wxMenu *subMenu = nullptr);
|
||||
|
||||
virtual void SetItemLabel(const wxString& str) override;
|
||||
virtual void SetCheckable(bool checkable) override;
|
||||
|
||||
virtual void Enable(bool enable = true) override;
|
||||
virtual bool IsEnabled() const override;
|
||||
|
||||
virtual void Check(bool check = true) override;
|
||||
virtual bool IsChecked() const override;
|
||||
|
||||
virtual QAction *GetHandle() const;
|
||||
|
||||
virtual void SetFont(const wxFont& font);
|
||||
|
||||
#if wxUSE_ACCEL
|
||||
virtual void AddExtraAccel(const wxAcceleratorEntry& accel) override;
|
||||
virtual void ClearExtraAccels() override;
|
||||
#endif // wxUSE_ACCEL
|
||||
|
||||
// implementation
|
||||
void QtCreateAction(wxMenu* parentMenu);
|
||||
|
||||
private:
|
||||
// Qt is using an action instead of a menu item.
|
||||
QAction *m_qtAction = nullptr;
|
||||
|
||||
wxDECLARE_DYNAMIC_CLASS( wxMenuItem );
|
||||
};
|
||||
|
||||
|
||||
|
||||
#endif // _WX_QT_MENUITEM_H_
|
||||
Reference in New Issue
Block a user