mirror of https://github.com/bsnes-emu/bsnes.git
24 lines
565 B
C++
24 lines
565 B
C++
#if defined(Hiro_TableView)
|
|
|
|
namespace hiro {
|
|
|
|
struct pTableViewCell : pObject {
|
|
Declare(TableViewCell, Object)
|
|
|
|
auto setAlignment(Alignment alignment) -> void;
|
|
auto setBackgroundColor(Color color) -> void;
|
|
auto setCheckable(bool checkable) -> void;
|
|
auto setChecked(bool checked) -> void;
|
|
auto setFont(const string& font) -> void;
|
|
auto setForegroundColor(Color color) -> void;
|
|
auto setIcon(const image& icon) -> void;
|
|
auto setText(const string& text) -> void;
|
|
|
|
auto _parent() -> maybe<pTableViewItem&>;
|
|
auto _setState() -> void;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|