summaryrefslogtreecommitdiff
path: root/Libraries/LibGUI/GComboBox.h
AgeCommit message (Collapse)Author
2019-09-22LibCore: Remove ObjectPtr in favor of RefPtrAndreas Kling
Now that CObject is fully ref-counted, just use RefPtr everywhere! :^)
2019-09-21LibGUI: Convert remaining random little things to ObjectPtrAndreas Kling
2019-09-21GButton: Convert most code to using ObjectPtr for GButtonAndreas Kling
2019-09-21LibGUI: Convert GWindow to ObjectPtrAndreas Kling
2019-09-21LibGUI: Convert GComboBox to ObjectPtrAndreas Kling
2019-09-21LibGUI: Convert GTextBox, GTextEditor and GResizeCorner to ObjectPtrAndreas Kling
2019-08-05GComboBox: Include the selected index with the on_change notificationAndreas Kling
This will be useful for clients that need to fetch additional data from the model on selection change.
2019-08-05LibGUI: Allow specifying the model column for GListView and GComboBoxAndreas Kling
These widgets can only display a single column from the underlying data model, and it was previously hard-coded to use column 0. Now you can use any column you like.
2019-07-25LibCore: Introduce a C_OBJECT macro.Andreas Kling
This macro goes at the top of every CObject-derived class like so: class SomeClass : public CObject { C_OBJECT(SomeClass) public: ... At the moment, all it does is create an override for the class_name() getter but in the future this will be used to automatically insert member functions into these classes.
2019-07-04Libraries: Create top level directory for libraries.Andreas Kling
Things were getting a little crowded in the project root, so this patch moves the Lib*/ directories into Libraries/.