123456789101112131415161718192021222324252627282930 |
- #if defined(Hiro_TableView)
- namespace hiro {
- struct pTableViewColumn : pObject {
- Declare(TableViewColumn, Object)
- auto setActive() -> void;
- auto setAlignment(Alignment alignment) -> void;
- auto setBackgroundColor(Color color) -> void;
- auto setEditable(bool editable) -> void;
- auto setExpandable(bool expandable) -> void;
- auto setFont(const Font& font) -> void override;
- auto setForegroundColor(Color color) -> void;
- auto setHorizontalAlignment(double) -> void;
- auto setIcon(const image& icon) -> void;
- auto setResizable(bool resizable) -> void;
- auto setSorting(Sort sorting) -> void;
- auto setText(const string& text) -> void;
- auto setVerticalAlignment(double) -> void;
- auto setVisible(bool visible) -> void override;
- auto setWidth(signed width) -> void;
- auto _parent() -> maybe<pTableView&>;
- };
- }
- #endif
|