mirror of https://github.com/bsnes-emu/bsnes.git
29 lines
767 B
C++
29 lines
767 B
C++
|
#if defined(Hiro_ListView)
|
||
|
|
||
|
namespace hiro {
|
||
|
|
||
|
struct pListViewColumn : pObject {
|
||
|
Declare(ListViewColumn, Object)
|
||
|
|
||
|
auto setActive() -> void;
|
||
|
auto setBackgroundColor(Color color) -> void;
|
||
|
auto setEditable(bool editable) -> void;
|
||
|
auto setExpandable(bool expandable) -> void;
|
||
|
auto setForegroundColor(Color color) -> void;
|
||
|
auto setHorizontalAlignment(double alignment) -> void;
|
||
|
auto setIcon(const image& icon) -> void;
|
||
|
auto setResizable(bool resizable) -> void;
|
||
|
auto setText(const string& text) -> void;
|
||
|
auto setVerticalAlignment(double alignment) -> void;
|
||
|
auto setWidth(signed width) -> void;
|
||
|
|
||
|
auto _parent() -> maybe<pListView&>;
|
||
|
auto _setState() -> void;
|
||
|
|
||
|
signed _width = 128; //computed width (via ListView::resizeColumns)
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|