mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:48:12 +00:00
LibGUI: Add (optional) row headers to GUI::TableView
You can now get row headers in your TableView by simply calling: table_view.row_header().set_visible(true) Note that rows are not yet resizable.
This commit is contained in:
parent
49a5038a1a
commit
447b65bf7b
5 changed files with 92 additions and 18 deletions
|
@ -68,6 +68,9 @@ private:
|
|||
|
||||
Gfx::IntRect section_resize_grabbable_rect(int) const;
|
||||
|
||||
void paint_horizontal(Painter&);
|
||||
void paint_vertical(Painter&);
|
||||
|
||||
Menu& ensure_context_menu();
|
||||
RefPtr<Menu> m_context_menu;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue