mirror of https://github.com/bsnes-emu/bsnes.git
20 lines
381 B
C++
20 lines
381 B
C++
|
#if defined(Hiro_ListView)
|
||
|
|
||
|
namespace hiro {
|
||
|
|
||
|
struct pListViewCell : pObject {
|
||
|
Declare(ListViewCell, Object)
|
||
|
|
||
|
auto setBackgroundColor(Color color) -> void;
|
||
|
auto setForegroundColor(Color color) -> void;
|
||
|
auto setIcon(const image& icon) -> void;
|
||
|
auto setText(const string& text) -> void;
|
||
|
|
||
|
auto _parent() -> maybe<pListViewItem&>;
|
||
|
auto _setState() -> void;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|