mirror of
https://github.com/Marat-Tanalin/bsnes-mt.git
synced 2025-04-02 10:21:42 -04:00
17 lines
289 B
C++
17 lines
289 B
C++
#if defined(Hiro_IconView)
|
|
|
|
namespace hiro {
|
|
|
|
struct pIconViewItem : pObject {
|
|
Declare(IconViewItem, Object)
|
|
|
|
auto setIcon(const image& icon) -> void;
|
|
auto setSelected(bool selected) -> void;
|
|
auto setText(const string& text) -> void;
|
|
|
|
auto _parent() -> pIconView*;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|