summaryrefslogtreecommitdiff
path: root/Libraries/LibGUI/ComboBox.h
AgeCommit message (Collapse)Author
2020-12-13LibGUI: Simplify ComboBox/TextEditor relationship a bitAndreas Kling
Instead of TextEditor knowing about the ComboBox button on the right hand side, we now make ComboBox inherit from GUI::Frame, and make the inner text editor widget frameless. This allows us to place the button ourselves inside ComboBox without any frame artifacts, and TextEditor no longer needs to keep track of the geometry of that button.
2020-08-21LibGUI: Add ComboBox::selected_index()Andreas Kling
This returns the currently selected index. It was a bit strange that we had set_selected_index() but not a way to read it back. :^)
2020-07-20LibGUI: Use ControlBoxButtons in SpinBox and ComboBoxthankyouverycool
Converts the buttons of these widgets into ControlBoxButtons.
2020-05-12LibGUI: Allow scrolling through a ComboBox with the mouse wheelAndreas Kling
2020-03-29LibGUI: ComboBox, add "set_selected_index" methodHüseyin ASLITÜRK
Easy way to set selected item.
2020-02-23LibGUI: Remove parent parameter to GUI::Widget constructorAndreas Kling
2020-02-23LibGUI: Reduce header dependencies of ComboBoxAndreas Kling
2020-02-16LibGUI: Add forwarding headerAndreas Kling
This patch adds <LibGUI/Forward.h> and uses it a bunch. It also dragged various header dependency reduction changes into it.
2020-02-06LibGUI: Remove leading G from filenamesAndreas Kling