mirror of https://github.com/bsnes-emu/bsnes.git
18 lines
289 B
C++
Executable File
18 lines
289 B
C++
Executable File
#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
|