Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-03-28 | LibGUI: Use GFrame to draw the frames around GItemView and GTableView. | Andreas Kling | |
2019-03-25 | GItemView: Some improvements to keyboard navigation. | Andreas Kling | |
2019-03-25 | GItemView: Hide the horizontal scrollbar since we never need it. | Andreas Kling | |
This view always relayouts the content to fit the available width, so we don't need a horizontal scrollbar. :^) | |||
2019-03-25 | GItemView: Add slightly more horizontal padding to the icon labels. | Andreas Kling | |
2019-03-25 | LibGUI: Add GWidget::doubleclick_event(). | Andreas Kling | |
Now double-clicking an item in a GTableView or GItemView will activate it. | |||
2019-03-24 | LibGUI+FileManager: Add a GIcon class to support multi-size icons. | Andreas Kling | |
A GIcon can contain any number of bitmaps internally, and will give you the best fitting icon when you call bitmap_for_size(). | |||
2019-03-23 | GItemView: Implement up/down/left/right keyboard navigation. | Andreas Kling | |
2019-03-23 | LibGUI: Add a GItemView class. | Andreas Kling | |
This is a GAbstractView subclass that implements a icon-based view onto a GModel. It still need a bunch of work, but it's in basic usable shape. |