ladybird/Userland/Libraries/LibGUI
Daniel Bertalan 4296425bd8 Everywhere: Remove redundant inequality comparison operators
C++20 can automatically synthesize `operator!=` from `operator==`, so
there is no point in writing such functions by hand if all they do is
call through to `operator==`.

This fixes a compile error with compilers that implement P2468 (Clang
16 currently). This paper restores the C++17 behavior that if both
`T::operator==(U)` and `T::operator!=(U)` exist, `U == T` won't be
rewritten in reverse to call `T::operator==(U)`. Removing `!=` operators
makes the rewriting possible again.
See https://reviews.llvm.org/D134529#3853062
2022-11-06 10:25:08 -07:00
..
GML
Wizards
AboutDialog.cpp Userland+LibCore: Remove legacy SERENITY_VERSION from Core::Version 2022-10-14 13:45:33 +02:00
AboutDialog.h Userland+LibCore: Remove legacy SERENITY_VERSION from Core::Version 2022-10-14 13:45:33 +02:00
AbstractButton.cpp Everywhere: Use my very shiny serenityos.org email :^) 2022-09-12 15:13:12 +01:00
AbstractButton.h
AbstractScrollableWidget.cpp LibGUI: Implement calculated_min_size() for AbstractScrollableWidget 2022-09-24 22:59:12 +02:00
AbstractScrollableWidget.h LibGUI: Implement calculated_min_size() for AbstractScrollableWidget 2022-09-24 22:59:12 +02:00
AbstractSlider.cpp
AbstractSlider.h
AbstractTableView.cpp LibGUI: Programatically draw table header sorting arrows 2022-08-15 17:17:54 +02:00
AbstractTableView.h Everywhere: Use my very shiny serenityos.org email :^) 2022-09-12 15:13:12 +01:00
AbstractThemePreview.cpp LibGfx+LibGUI+WindowServer+Apps+Demos: Replace ToolWindows 2022-08-25 13:28:50 +02:00
AbstractThemePreview.h
AbstractView.cpp LibGUI: Don't accept drag events in AbstractView if it's not editable 2022-08-31 17:29:44 +01:00
AbstractView.h
AbstractZoomPanWidget.cpp
AbstractZoomPanWidget.h
Action.cpp LibGUI: Update buttons' text/tooltips in Action::set_text 2022-10-30 23:54:12 +01:00
Action.h LibGUI: Add CommonActions::make_command_palette_action() 2022-10-25 10:21:18 +01:00
ActionGroup.cpp
ActionGroup.h
Application.cpp WindowServer+LibGUI: Change cursor icon if DragEnter event was accepted 2022-08-31 17:29:44 +01:00
Application.h
AutocompleteProvider.cpp LibGUI: Make sure combobox list windows can't be moved 2022-10-26 17:02:00 +02:00
AutocompleteProvider.h
BoxLayout.cpp
BoxLayout.h
Breadcrumbbar.cpp LibGUI: Make Breadcrumbbar resizable below current size 2022-10-06 12:17:38 +01:00
Breadcrumbbar.h LibGUI: Add on_segment_change handler to Breadcrumbbar 2022-08-22 12:48:11 +02:00
Button.cpp LibGUI: Update buttons' text/tooltips in Action::set_text 2022-10-30 23:54:12 +01:00
Button.h LibGUI: Update buttons' text/tooltips in Action::set_text 2022-10-30 23:54:12 +01:00
Calendar.cpp LibGUI: Shade Weekends in a slightly different background color 2022-10-04 12:13:54 -04:00
Calendar.h LibGUI: Shade Weekends in a slightly different background color 2022-10-04 12:13:54 -04:00
CheckBox.cpp
CheckBox.h LibGUI: Make Checkbox constructor protected 2022-07-25 15:25:13 +02:00
Clipboard.cpp Base: Launch Clipboard at session start-up 2022-10-14 11:37:11 +02:00
Clipboard.h
CMakeLists.txt Everywhere: Mark dependencies of most targets as PRIVATE 2022-11-01 14:49:09 +00:00
ColorInput.cpp
ColorInput.h
ColorPicker.cpp
ColorPicker.h
ColumnsView.cpp Everywhere: Use my very shiny serenityos.org email :^) 2022-09-12 15:13:12 +01:00
ColumnsView.h LibGUI: Implement basic rubber band selections in ColumnsView 2022-09-05 09:23:36 +01:00
ComboBox.cpp LibGUI: Make sure combobox list windows can't be moved 2022-10-26 17:02:00 +02:00
ComboBox.h LibGUI: Allow setting max visible items for ComboBoxes 2022-09-22 21:37:26 +02:00
Command.h
CommandPalette.cpp LibGUI: Don't show the command palette action in the command palette 2022-10-25 10:21:18 +01:00
CommandPalette.h
CommonActions.cpp LibGUI: Add CommonActions::make_command_palette_action() 2022-10-25 10:21:18 +01:00
CommonLocationsProvider.cpp
CommonLocationsProvider.h
ConnectionToWindowManagerServer.cpp LibGUI+Taskbar+WindowServer: Prevent minimization when blocked 2022-08-26 12:48:05 +02:00
ConnectionToWindowManagerServer.h LibGUI+Taskbar+WindowServer: Prevent minimization when blocked 2022-08-26 12:48:05 +02:00
ConnectionToWindowServer.cpp LibGUI+WindowServer: Create and broadcast an event when a window moves 2022-11-01 21:16:50 +00:00
ConnectionToWindowServer.h LibGUI+WindowServer: Create and broadcast an event when a window moves 2022-11-01 21:16:50 +00:00
Desktop.cpp WindowServer+LibGUI: Remove awkward roundtrip for set wallpaper response 2022-08-02 04:04:08 +00:00
Desktop.h LibGUI: Let Desktop:the() manage SystemEffects inside LibGUI 2022-08-09 12:08:21 +02:00
Dialog.cpp LibGUI: Only react on KeyDown when escaping a Dialog 2022-09-08 23:21:54 +01:00
Dialog.h
DisplayLink.cpp
DisplayLink.h
DragOperation.cpp LibGUI: Put DragOperation dbgln() behind DRAG_DEBUG 2022-08-16 16:43:27 +02:00
DragOperation.h
EditingEngine.cpp LibGUI: Fix EditingEngine Shift + Up/Down highlight behavior 2022-10-25 18:35:53 +01:00
EditingEngine.h
EmojiInputDialog.cpp LibGUI: Remove Window::set_blocks_command_palette() 2022-10-25 10:21:18 +01:00
EmojiInputDialog.gml LibGUI: Set EmojiInputDialog's FrameShape to "Window" 2022-09-09 11:27:38 -04:00
EmojiInputDialog.h LibGUI: Insert first displayed emoji on return 2022-10-19 14:05:42 -04:00
Event.cpp
Event.h LibGUI+WindowServer: Create and broadcast an event when a window moves 2022-11-01 21:16:50 +00:00
FileIconProvider.cpp Base+LibGUI: Add Git folder icons 2022-09-06 07:38:09 +01:00
FileIconProvider.h Base+LibGUI: Add Git folder icons 2022-09-06 07:38:09 +01:00
FilePicker.cpp LibGUI: Remove useless frame members from Toolbar 2022-08-04 02:56:17 +02:00
FilePicker.h
FilePickerDialog.gml
FileSystemModel.cpp Base+LibGUI: Add Git folder icons 2022-09-06 07:38:09 +01:00
FileSystemModel.h FileManager: Navigate to parent dir when current location is removed 2022-08-31 10:32:41 +01:00
FilteringProxyModel.cpp
FilteringProxyModel.h
FocusPolicy.h
FocusSource.h
FontPicker.cpp
FontPicker.h
FontPickerDialog.gml Userland: Replace empty GUI::Widgets in GML with GUI::Layout::Spacer 2022-09-29 08:31:15 -04:00
Forward.h
Frame.cpp
Frame.h
GitCommitLexer.cpp
GitCommitLexer.h
GitCommitSyntaxHighlighter.cpp
GitCommitSyntaxHighlighter.h
GlyphMapWidget.cpp LibGUI: Allow GlyphMapWidget to highlight modified glyphs 2022-08-14 13:59:19 +01:00
GlyphMapWidget.h LibGUI: Allow GlyphMapWidget to highlight modified glyphs 2022-08-14 13:59:19 +01:00
GroupBox.cpp
GroupBox.h
HeaderView.cpp LibGUI: Programatically draw table header sorting arrows 2022-08-15 17:17:54 +02:00
HeaderView.h LibGUI: Programatically draw table header sorting arrows 2022-08-15 17:17:54 +02:00
Icon.cpp
Icon.h
IconView.cpp LibGUI: Properly limit the icon view rubber band rect to the widget 2022-09-11 21:39:32 +01:00
IconView.h
ImageWidget.cpp LibGUI: Register "bitmap" GML property for ImageWidget 2022-08-05 13:55:13 +02:00
ImageWidget.h
INILexer.cpp
INILexer.h
INISyntaxHighlighter.cpp
INISyntaxHighlighter.h
InputBox.cpp Everywhere: Use my very shiny serenityos.org email :^) 2022-09-12 15:13:12 +01:00
InputBox.h Everywhere: Use my very shiny serenityos.org email :^) 2022-09-12 15:13:12 +01:00
ItemListModel.h
JsonArrayModel.cpp
JsonArrayModel.h
Label.cpp
Label.h
Layout.cpp
Layout.h
LazyWidget.cpp
LazyWidget.h
LinkLabel.cpp
LinkLabel.h
ListView.cpp LibGUI: Implement calculated_min_size() for ListView 2022-09-24 22:59:12 +02:00
ListView.h LibGUI: Implement calculated_min_size() for ListView 2022-09-24 22:59:12 +02:00
Margins.h
Menu.cpp Browser+LibGUI+WindowServer: Open Button menus uniformly 2022-09-08 10:17:27 +01:00
Menu.h Browser+LibGUI+WindowServer: Open Button menus uniformly 2022-09-08 10:17:27 +01:00
Menubar.cpp
Menubar.h
MenuItem.cpp
MenuItem.h
MessageBox.cpp
MessageBox.h
Model.cpp
Model.h LibGUI: Add Model::unsafe_create_index() 2022-09-25 12:16:12 +02:00
ModelEditingDelegate.h
ModelIndex.cpp
ModelIndex.h Everywhere: Remove redundant inequality comparison operators 2022-11-06 10:25:08 -07:00
ModelRole.h
ModelSelection.cpp
ModelSelection.h
MouseTracker.cpp
MouseTracker.h
MultiView.cpp
MultiView.h
Notification.cpp SystemServer+LoginServer+Userland: Switch to sid-based sockets 2022-10-03 11:11:29 +02:00
Notification.h
OpacitySlider.cpp
OpacitySlider.h
Painter.cpp
Painter.h
PasswordInputDialog.cpp
PasswordInputDialog.gml Userland: Replace empty GUI::Widgets in GML with GUI::Layout::Spacer 2022-09-29 08:31:15 -04:00
PasswordInputDialog.h
PersistentModelIndex.cpp
PersistentModelIndex.h
Process.cpp
Process.h
ProcessChooser.cpp
ProcessChooser.h
Progressbar.cpp
Progressbar.h
RadioButton.cpp
RadioButton.h
RegularEditingEngine.cpp
RegularEditingEngine.h
ResizeCorner.cpp WindowServer+LibGUI: Shrink window edge resize hot-spots 2022-10-11 17:48:48 +02:00
ResizeCorner.h
ResizeDirection.h WindowServer+LibGUI: Shrink window edge resize hot-spots 2022-10-11 17:48:48 +02:00
RunningProcessesModel.cpp
RunningProcessesModel.h
ScreenLayout.cpp
ScrollableContainerWidget.cpp
ScrollableContainerWidget.h
Scrollbar.cpp LibGUI: Include scrubber and gutter in Scrollbar's calculated_min_size() 2022-09-24 22:59:12 +02:00
Scrollbar.h
SeparatorWidget.cpp
SeparatorWidget.h
SettingsWindow.cpp LibGUI: Initially disable the "Apply" button in SettingsWindow 2022-08-14 23:33:28 +02:00
SettingsWindow.h
Shortcut.cpp
Shortcut.h
Slider.cpp
Slider.h
SortingProxyModel.cpp
SortingProxyModel.h
SpinBox.cpp LibGUI: Update {in,de}crement buttons when setting a new spin box range 2022-09-06 17:37:44 +01:00
SpinBox.h
Splitter.cpp LibGUI+LibGfx: Let Desktop::the() set widget effects 2022-08-09 12:08:21 +02:00
Splitter.h LibGUI+Applications: Govern Splitter resizing by opportunistic growth 2022-08-05 13:54:18 +02:00
StackWidget.cpp LibGUI: Implement calculated_min_size() for StackWidget 2022-09-24 22:59:12 +02:00
StackWidget.h LibGUI: Implement calculated_min_size() for StackWidget 2022-09-24 22:59:12 +02:00
Statusbar.cpp Browser+LibGUI+WindowServer: Open Button menus uniformly 2022-09-08 10:17:27 +01:00
Statusbar.h LibGUI: Add Widgets before the ResizeCorner by default in Statusbar 2022-09-04 20:01:43 +01:00
SystemEffects.h LibGUI+WindowServer: Add a SystemEffects wrapper and helpers 2022-08-09 12:08:21 +02:00
TableView.cpp Everywhere: Use my very shiny serenityos.org email :^) 2022-09-12 15:13:12 +01:00
TableView.h LibGUI: Implement rubber band selection in table view 2022-09-11 21:39:32 +01:00
TabWidget.cpp LibGUI+LibGfx: Let Desktop::the() set widget effects 2022-08-09 12:08:21 +02:00
TabWidget.h
TextBox.cpp
TextBox.h
TextDocument.cpp
TextDocument.h
TextEditor.cpp LibGUI: Update calculated_min_size() for TextEditor 2022-09-24 22:59:12 +02:00
TextEditor.h LibGUI+LibVT: Notify widgets of emoji selection with a callback 2022-09-11 20:33:57 +01:00
TextPosition.h
TextRange.h
Toolbar.cpp LibGUI: Update buttons' text/tooltips in Action::set_text 2022-10-30 23:54:12 +01:00
Toolbar.h LibGUI: Add option to move Toolbar items to overflow menu in groups 2022-10-06 12:17:38 +01:00
ToolbarContainer.cpp
ToolbarContainer.h
Tray.cpp LibGUI: Blit brightened icon when try item is hovered 2022-09-10 20:40:05 +01:00
Tray.h
TreeView.cpp LibGUI: Hold down Alt when clicking TreeView to expand full subtree 2022-11-05 14:49:22 +01:00
TreeView.h LibGUI: Hold down Alt when clicking TreeView to expand full subtree 2022-11-05 14:49:22 +01:00
TreeViewModel.cpp
TreeViewModel.h
UIDimensions.h
UndoStack.cpp
UndoStack.h
ValueSlider.cpp
ValueSlider.h
Variant.cpp
Variant.h
VimEditingEngine.cpp LibGUI: Delete from current position to end of line in VimEditingEngine 2022-10-12 09:46:18 -06:00
VimEditingEngine.h LibGUI: Add visual line mode to VimEditingEngine 2022-08-26 12:50:30 +02:00
Widget.cpp LibGUI: Fire Show/Hide events when adding/removing widget from tree 2022-09-20 10:32:13 +02:00
Widget.h LibCore+LibGUI: Make it fast to check if a Core::Object is a Widget 2022-09-30 18:00:55 +02:00
Window.cpp LibGUI+WindowServer: Allow programatically minimizing windows 2022-11-02 15:41:19 +00:00
Window.h LibGUI+WindowServer: Allow programatically minimizing windows 2022-11-02 15:41:19 +00:00
WindowMode.h LibGUI+WindowServer: Notify Windows on input preemption 2022-09-08 23:21:54 +01:00
WindowType.h