bsnes/hiro/gtk/widget/table-view-item.hpp
byuu 903d1e4012 v107.8
* GB: integrated SameBoy v0.12.1 by Lior Halphon
* SFC: added HG51B169 (Cx4) math tables into bsnes binary
2019-07-17 21:11:46 +09:00

24 lines
528 B
C++
Executable file

#if defined(Hiro_TableView)
namespace hiro {
struct pTableViewItem : pObject {
Declare(TableViewItem, Object)
auto append(sTableViewCell cell) -> void;
auto remove(sTableViewCell cell) -> void;
auto setAlignment(Alignment alignment) -> void;
auto setBackgroundColor(Color color) -> void;
auto setFocused() -> void;
auto setForegroundColor(Color color) -> void;
auto setSelected(bool selected) -> void;
auto _parent() -> maybe<pTableView&>;
auto _setState() -> void;
GtkTreeIter gtkIter;
};
}
#endif