old-hiro/qt/action/menu-check-item.hpp

19 lines
303 B
C++
Raw Normal View History

2016-05-15 10:45:15 +00:00
#if defined(Hiro_MenuCheckItem)
namespace hiro {
struct pMenuCheckItem : pAction {
Declare(MenuCheckItem, Action)
auto setChecked(bool checked) -> void;
auto setText(const string& text) -> void;
auto _setState() -> void override;
QtMenuCheckItem* qtMenuCheckItem = nullptr;
};
}
#endif