mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-02-25 07:32:28 +01:00
byuu says: Changelog: - fixed major nall/vector/prepend bug - renamed hiro/ListView to hiro/TableView - added new hiro/ListView control which is a simplified abstraction of hiro/TableView - updated higan's cheat database window and icarus' scan dialog to use the new ListView control - compilation works once again on all platforms (Windows, Cocoa, GTK, Qt) - the loki skeleton compiles once again (removed nall/DSP references; updated port/device ID names) Small catch: need to capture layout resize events internally in Windows to call resizeColumns. For now, just resize the icarus window to get it to use the full window width for list view items.
19 lines
348 B
C++
19 lines
348 B
C++
#if defined(Hiro_TableView)
|
|
|
|
namespace hiro {
|
|
|
|
struct pTableViewHeader : pObject {
|
|
Declare(TableViewHeader, Object)
|
|
|
|
auto append(sTableViewColumn column) -> void;
|
|
auto remove(sTableViewColumn column) -> void;
|
|
auto setVisible(bool visible) -> void override;
|
|
|
|
auto _parent() -> maybe<pTableView&>;
|
|
auto _setState() -> void;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|