1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 10:58:12 +00:00
serenity/Libraries/LibGUI
Andreas Kling 67b91d51a7 WindowServer+LibGUI: Pass the set of mime types being dragged to client
Previously the client would only learn the mime type of what was being
dropped on it once the drop occurred. To enable more sophisticated
filtering of drag & drop, we now pass along the list of mime types being
dragged to the client with each MouseMove event.

(Note that MouseMove is translated to the various Drag* events in LibGUI
on the client side.)
2021-01-09 12:02:07 +01:00
..
AboutDialog.cpp LibGUI: Use String::formatted() and String::number() more 2021-01-03 14:52:50 +01:00
AboutDialog.h LibGUI, About: Implement system-wide W2k-esque About dialog 2020-05-27 11:44:19 +02:00
AbstractButton.cpp LibGUI: Transfer focus when checking exclusive button programmatically 2021-01-01 00:40:12 +01:00
AbstractButton.h LibGUI: Remove some hand-rolled type information from Widget 2021-01-01 16:08:49 +01:00
AbstractSlider.cpp LibGUI: Rename AbstractSlider::on_value_changed => on_change 2020-12-30 15:20:47 +01:00
AbstractSlider.h LibGUI: Make GUI::ScrollBar inherit from AbstractSlider 2020-12-30 15:20:47 +01:00
AbstractTableView.cpp LibGUI: Rewrite layout system in terms of min and max sizes 2020-12-30 01:36:41 +01:00
AbstractTableView.h LibGUI: Remove `AbstractView::did_update_model()' 2020-11-30 12:07:45 +01:00
AbstractView.cpp LibGUI: Enforce the SelectionMode in AbstractView::set_cursor() 2020-12-29 00:43:50 +01:00
AbstractView.h LibGUI: Refactor AbstractView "multi select" mode into "selection mode" 2020-12-28 21:28:40 +01:00
Action.cpp LibGUI: Add CommonActions::make_about_action() 2021-01-04 23:31:42 +01:00
Action.h LibGUI: Add CommonActions::make_about_action() 2021-01-04 23:31:42 +01:00
ActionGroup.cpp LibGUI: Remove leading G from filenames 2020-02-06 20:33:02 +01:00
ActionGroup.h Meta+LibC through LibHTTP: Make clang-format-10 clean 2020-09-25 21:18:17 +02:00
Application.cpp WindowServer+LibGUI: Pass the set of mime types being dragged to client 2021-01-09 12:02:07 +01:00
Application.h WindowServer+LibGUI: Pass the set of mime types being dragged to client 2021-01-09 12:02:07 +01:00
AutocompleteProvider.cpp LibGUI: Make the autocomplete box window a child of its editor's window 2021-01-03 10:47:29 +01:00
AutocompleteProvider.h LibGUI+HackStudio: Add an opt-in autocompletion interface to TextEditor 2020-12-30 12:53:39 +01:00
BoxLayout.cpp LibGUI: Don't include invisible widgets in BoxLayout preferred size 2021-01-04 18:48:41 +01:00
BoxLayout.h LibGUI: Add Widget shrink-to-fit layout flag 2021-01-04 18:17:14 +01:00
BreadcrumbBar.cpp LibGUI: Make BreadcrumbBar report drop events 2021-01-08 19:51:44 +01:00
BreadcrumbBar.h LibGUI: Make BreadcrumbBar report drop events 2021-01-08 19:51:44 +01:00
Button.cpp LibGUI: Move widget registrations to the corresponding cpp file 2021-01-03 10:31:42 +01:00
Button.h LibGUI: Tweak AbstractButton and subclass constructors 2020-12-28 15:53:10 +01:00
Calendar.cpp LibGUI: Use String::formatted() and String::number() more 2021-01-03 14:52:50 +01:00
Calendar.h LibGUI+Calendar: Make Calendar a common widget in LibGUI 2020-08-22 11:54:30 +02:00
CheckBox.cpp LibGUI: Move widget registrations to the corresponding cpp file 2021-01-03 10:31:42 +01:00
CheckBox.h LibGUI: Tweak AbstractButton and subclass constructors 2020-12-28 15:53:10 +01:00
Clipboard.cpp Clipboard: Remove-unused bpp metadata 2020-12-08 09:37:30 +01:00
Clipboard.h AK: Resolve format related circular dependencies properly. 2020-09-23 21:45:28 +02:00
CMakeLists.txt TextEditor+EditingEngine: Add support for the basics of Vim emulation 2021-01-05 00:00:36 +01:00
ColorInput.cpp LibGUI: Move widget registrations to the corresponding cpp file 2021-01-03 10:31:42 +01:00
ColorInput.h LibGfx: Rename Rect,Point,Size => IntRect,IntPoint,IntSize 2020-06-10 10:59:04 +02:00
ColorPicker.cpp LibGUI: Rewrite layout system in terms of min and max sizes 2020-12-30 01:36:41 +01:00
ColorPicker.h LibGUI: Update color widgets when has_alpha is toggled in ColorPicker 2020-09-26 19:55:54 +02:00
ColumnsView.cpp LibGUI: Make selected item tint color based on focused state 2020-12-28 01:14:01 +01:00
ColumnsView.h LibGUI: Remove `AbstractView::did_update_model()' 2020-11-30 12:07:45 +01:00
ComboBox.cpp LibGUI: Move widget registrations to the corresponding cpp file 2021-01-03 10:31:42 +01:00
ComboBox.h LibGUI: Don't change the actual combobox value while hovering it 2020-12-31 10:54:02 +01:00
Command.cpp LibGUI: Remove leading G from filenames 2020-02-06 20:33:02 +01:00
Command.h HackStudio: Add C++ Language Server 2020-09-30 21:46:59 +02:00
ControlBoxButton.cpp LibGUI: Make SpinBox up/down buttons look right when disabled 2020-12-30 16:13:38 +01:00
ControlBoxButton.h LibGUI: Add ControlBoxButton to LibGUI 2020-07-20 21:03:48 +02:00
CppSyntaxHighlighter.cpp LibGfx: Add Gfx::TextAttributes (and use it in GUI::TextDocumentSpan) 2021-01-02 20:57:43 +01:00
CppSyntaxHighlighter.h Meta+LibC through LibHTTP: Make clang-format-10 clean 2020-09-25 21:18:17 +02:00
Desktop.cpp FileManager: Apply wallpaper on startup 2020-08-17 17:47:14 +02:00
Desktop.h FileManager: Apply wallpaper on startup 2020-08-17 17:47:14 +02:00
Dialog.cpp LibCore: Remove some hand-rolled type information from Core::Object 2021-01-01 16:08:49 +01:00
Dialog.h LibGUI: Don't use Core::Object::add() to instantiate dialogs 2020-03-04 21:04:06 +01:00
DisplayLink.cpp WindowServer+LibGUI: Add a way to get notified at display refresh rate 2020-03-22 21:13:23 +01:00
DisplayLink.h WindowServer+LibGUI: Add a way to get notified at display refresh rate 2020-03-22 21:13:23 +01:00
DragOperation.cpp WindowServer+LibGUI: Notify hovered window when drag&drop is cancelled 2021-01-09 12:02:07 +01:00
DragOperation.h LibGUI+WindowServer: Make DragOperation hold a MimeData instance 2020-11-08 21:46:13 +01:00
EditingEngine.cpp TextEditor+EditingEngine: Add support for the basics of Vim emulation 2021-01-05 00:00:36 +01:00
EditingEngine.h TextEditor+EditingEngine: Add support for the basics of Vim emulation 2021-01-05 00:00:36 +01:00
EmojiInputDialog.cpp LibGUI: Add 1px of margin to EmojiPickerDialog 2020-12-31 14:39:23 +01:00
EmojiInputDialog.h LibGUI: Add a simple emoji input dialog activated by Ctrl+Alt+Space :^) 2020-05-17 22:35:25 +02:00
Event.cpp Userspace: Remove a bunch of unnecessary Kernel/API/KeyCode.h includes 2020-07-04 17:25:31 +02:00
Event.h WindowServer+LibGUI: Pass the set of mime types being dragged to client 2021-01-09 12:02:07 +01:00
FileIconProvider.cpp LibGUI: Make GUI::FileIconProvider::icon_for_executable() a public API 2020-12-28 11:41:09 +01:00
FileIconProvider.h LibGUI: Make GUI::FileIconProvider::icon_for_executable() a public API 2020-12-28 11:41:09 +01:00
FilePicker.cpp LibGUI: Use String::formatted() and String::number() more 2021-01-03 14:52:50 +01:00
FilePicker.h LibGUI: Rename ModelClient::on_model_update() => model_did_update() 2020-08-13 20:18:11 +02:00
FileSystemModel.cpp WindowServer+LibGUI: Pass the set of mime types being dragged to client 2021-01-09 12:02:07 +01:00
FileSystemModel.h WindowServer+LibGUI: Pass the set of mime types being dragged to client 2021-01-09 12:02:07 +01:00
FilteringProxyModel.cpp LibGUI: Implement searching/jumping as you type in views 2020-10-22 15:23:45 +02:00
FilteringProxyModel.h LibGUI: Implement searching/jumping as you type in views 2020-10-22 15:23:45 +02:00
FocusSource.h LibGUI: Make focus events more aware of why focus is changing 2020-08-15 00:05:45 +02:00
FontPicker.cpp Applications+LibGUI: Convert all GML consumers to use the LibCore finder 2021-01-01 14:45:09 +01:00
FontPicker.h LibGUI: Make FontPicker correctly select the current font when opened 2020-12-30 20:37:51 +01:00
FontPickerDialog.gml LibGUI: Tweak FontPicker layout 2020-12-30 21:01:28 +01:00
Forward.h TextEditor+EditingEngine: Add support for the basics of Vim emulation 2021-01-05 00:00:36 +01:00
Frame.cpp LibGUI: Move widget registrations to the corresponding cpp file 2021-01-03 10:31:42 +01:00
Frame.h Meta+LibC through LibHTTP: Make clang-format-10 clean 2020-09-25 21:18:17 +02:00
GMLFormatter.cpp LibGUI: Add GMLFormatter 2021-01-03 22:12:08 +01:00
GMLFormatter.h LibGUI: Add GMLFormatter 2021-01-03 22:12:08 +01:00
GMLLexer.cpp LibGUI: Register a whole bunch of properties in various widgets 2020-12-30 12:53:39 +01:00
GMLLexer.h LibGUi: Rework GML parser into a lexer+parser 2020-12-21 18:26:18 +01:00
GMLParser.cpp LibGUI: Allow comment(s) before first class marker in GML parser 2021-01-03 22:12:08 +01:00
GMLParser.h LibGUI: Introduce GML - a simple GUI Markup Language :^) 2020-12-20 11:59:40 +01:00
GMLSyntaxHighlighter.cpp LibGfx: Add Gfx::TextAttributes (and use it in GUI::TextDocumentSpan) 2021-01-02 20:57:43 +01:00
GMLSyntaxHighlighter.h LibGUI+TextEditor+HackStudio: Add GML syntax highlighter :^) 2020-12-21 18:26:18 +01:00
GroupBox.cpp LibGUI: Move widget registrations to the corresponding cpp file 2021-01-03 10:31:42 +01:00
GroupBox.h LibGUI: Remove parent parameter to GUI::Widget constructor 2020-02-23 12:27:53 +01:00
HeaderView.cpp LibGUI: Use String::formatted() and String::number() more 2021-01-03 14:52:50 +01:00
HeaderView.h LibGUI: Make table view row height+padding font-size-relative 2020-10-25 10:12:03 +01:00
Icon.cpp LibGUI: Use String::formatted() and String::number() more 2021-01-03 14:52:50 +01:00
Icon.h LibGUI: Include LibGfx/Bitmap.h in Icon.h 2020-12-27 18:36:43 +01:00
IconView.cpp WindowServer+LibGUI: Pass the set of mime types being dragged to client 2021-01-09 12:02:07 +01:00
IconView.h LibGUI: Support top-to-bottom flow in IconView 2020-12-27 14:48:12 +01:00
ImageWidget.cpp LibGUI: Move widget registrations to the corresponding cpp file 2021-01-03 10:31:42 +01:00
ImageWidget.h LibGUI: Rename GUI::Image => GUI::ImageWidget 2020-07-23 17:31:08 +02:00
INILexer.cpp LibGUI: INI file syntax highlighter 2020-05-01 16:58:18 +02:00
INILexer.h LibGUI: INI file syntax highlighter 2020-05-01 16:58:18 +02:00
INISyntaxHighlighter.cpp LibGfx: Add Gfx::TextAttributes (and use it in GUI::TextDocumentSpan) 2021-01-02 20:57:43 +01:00
INISyntaxHighlighter.h Meta+LibC through LibHTTP: Make clang-format-10 clean 2020-09-25 21:18:17 +02:00
InputBox.cpp LibGUI: Rewrite layout system in terms of min and max sizes 2020-12-30 01:36:41 +01:00
InputBox.h LibGUI: Add InputBox::show with required parent window argument 2020-07-16 16:10:21 +02:00
ItemListModel.h LibGUI: Show font weight names instead of numeric weights in FontPicker 2020-12-31 01:13:52 +01:00
JsonArrayModel.cpp LibGUI: Remove unnecessary type cast in JsonArrayModel. 2020-09-20 21:10:46 +02:00
JsonArrayModel.h LibGUI: Remove unnecessary type cast in JsonArrayModel. 2020-09-20 21:10:46 +02:00
JSSyntaxHighlighter.cpp LibGfx: Add Gfx::TextAttributes (and use it in GUI::TextDocumentSpan) 2021-01-02 20:57:43 +01:00
JSSyntaxHighlighter.h Spreadsheet: Add a syntax highlighter to the cell editor 2020-08-24 19:15:07 +02:00
Label.cpp LibGUI: Move widget registrations to the corresponding cpp file 2021-01-03 10:31:42 +01:00
Label.h LibGUI: Make the LinkLabel widget keyboard-friendly 2020-12-26 16:09:02 +01:00
Layout.cpp AK: Make RefPtr, NonnullRefPtr, WeakPtr thread safe 2020-11-10 19:11:52 +01:00
Layout.h LibGUI: Add Widget shrink-to-fit layout flag 2021-01-04 18:17:14 +01:00
LazyWidget.cpp LibGUI: Remove parent parameter to GUI::Widget constructor 2020-02-23 12:27:53 +01:00
LazyWidget.h LibGUI: Remove parent parameter to GUI::Widget constructor 2020-02-23 12:27:53 +01:00
LinkLabel.cpp LibGUI: Move widget registrations to the corresponding cpp file 2021-01-03 10:31:42 +01:00
LinkLabel.h LibGUI: Set default value of LinkLabel text argument to a null string 2020-12-29 15:42:30 +01:00
ListView.cpp LibGUI: Move widget registrations to the corresponding cpp file 2021-01-03 10:31:42 +01:00
ListView.h LibGUI: Remove `AbstractView::did_update_model()' 2020-11-30 12:07:45 +01:00
Margins.h Meta+LibC through LibHTTP: Make clang-format-10 clean 2020-09-25 21:18:17 +02:00
Menu.cpp AK: Make RefPtr, NonnullRefPtr, WeakPtr thread safe 2020-11-10 19:11:52 +01:00
Menu.h LibGUI: Enable icons for SubMenus 2020-07-28 16:29:44 +02:00
MenuBar.cpp LibGUI: Make MenuBar a Core::Object 2020-04-21 16:19:18 +02:00
MenuBar.h LibGUI: Make MenuBar a Core::Object 2020-04-21 16:19:18 +02:00
MenuItem.cpp WindowServer/LibGUI: Add default menu items and allow default action for context menu 2020-07-11 11:45:49 +02:00
MenuItem.h WindowServer/LibGUI: Add default menu items and allow default action for context menu 2020-07-11 11:45:49 +02:00
MessageBox.cpp LibGUI: Tweak MessageBox layout slightly 2021-01-02 01:36:24 +01:00
MessageBox.h LibWeb: Require parent window argument for MessageBox 2020-07-16 16:10:21 +02:00
Model.cpp WindowServer+LibGUI: Pass the set of mime types being dragged to client 2021-01-09 12:02:07 +01:00
Model.h WindowServer+LibGUI: Pass the set of mime types being dragged to client 2021-01-09 12:02:07 +01:00
ModelEditingDelegate.h LibGUI: Select the edited text by default in StringModelEditingDelegate 2020-12-27 19:08:19 +01:00
ModelIndex.cpp LibGUI: Use String::formatted() and String::number() more 2021-01-03 14:52:50 +01:00
ModelIndex.h AK+Format: Remove TypeErasedFormatParams& from format function. 2020-12-30 20:33:53 +01:00
ModelRole.h LibGUI+WindowServer: Make DragOperation hold a MimeData instance 2020-11-08 21:46:13 +01:00
ModelSelection.cpp LibGUI: Add a ModelSelection::add_all(Vector) API 2020-11-30 12:07:45 +01:00
ModelSelection.h LibGUI: Add a ModelSelection::add_all(Vector) API 2020-11-30 12:07:45 +01:00
MultiView.cpp LibGUI: Hide unnecessary scrollbars in MultiView 2021-01-01 02:12:39 +01:00
MultiView.h LibGUI: Refactor AbstractView "multi select" mode into "selection mode" 2020-12-28 21:28:40 +01:00
Notification.cpp Meta+LibC through LibHTTP: Make clang-format-10 clean 2020-09-25 21:18:17 +02:00
Notification.h Meta: Add missing copyright headers 2020-04-06 11:09:01 +02:00
OpacitySlider.cpp LibGUI: Move widget registrations to the corresponding cpp file 2021-01-03 10:31:42 +01:00
OpacitySlider.h LibGUI: Add a new GUI::OpacitySlider widget :^) 2020-12-31 12:10:01 +01:00
Painter.cpp LibGfx: Add forward declaration header 2020-02-14 23:31:18 +01:00
Painter.h LibGUI: Add forwarding header 2020-02-16 09:41:56 +01:00
ProcessChooser.cpp LibGUI: Rewrite layout system in terms of min and max sizes 2020-12-30 01:36:41 +01:00
ProcessChooser.h Meta+LibC through LibHTTP: Make clang-format-10 clean 2020-09-25 21:18:17 +02:00
ProgressBar.cpp LibGUI: Move widget registrations to the corresponding cpp file 2021-01-03 10:31:42 +01:00
ProgressBar.h LibGUI: Rename ProgressBar property caption => text and expose to GML 2020-12-20 12:29:40 +01:00
RadioButton.cpp LibGUI: Move widget registrations to the corresponding cpp file 2021-01-03 10:31:42 +01:00
RadioButton.h LibGUI: Remove some hand-rolled type information from Widget 2021-01-01 16:08:49 +01:00
RegularEditingEngine.cpp TextEditor+EditingEngine: Add support for the basics of Vim emulation 2021-01-05 00:00:36 +01:00
RegularEditingEngine.h TextEditor+EditingEngine: Add support for the basics of Vim emulation 2021-01-05 00:00:36 +01:00
ResizeCorner.cpp LibGUI: Rewrite layout system in terms of min and max sizes 2020-12-30 01:36:41 +01:00
ResizeCorner.h LibGUI: Use widget override cursors in GUI::ResizeCorner 2020-09-11 14:47:38 +02:00
RunningProcessesModel.cpp LibCore: Report error condition when reading process statistics failed 2021-01-03 22:12:19 +01:00
RunningProcessesModel.h LibGUI: Move GUI::Model::Role to GUI::ModelRole 2020-08-16 16:44:09 +02:00
ScrollableWidget.cpp LibGUI: Make GUI::ScrollBar inherit from AbstractSlider 2020-12-30 15:20:47 +01:00
ScrollableWidget.h LibGUI: Add ScrollableWidget helpers for rect conversion 2020-12-16 19:39:26 +01:00
ScrollBar.cpp LibGUI: Move widget registrations to the corresponding cpp file 2021-01-03 10:31:42 +01:00
ScrollBar.h LibGUI: Make GUI::ScrollBar inherit from AbstractSlider 2020-12-30 15:20:47 +01:00
SeparatorWidget.cpp LibGUI: Move GUI::SeparatorWidget from ToolBar.cpp to its own file 2020-12-30 03:52:27 +01:00
SeparatorWidget.h LibGUI: Move GUI::SeparatorWidget from ToolBar.cpp to its own file 2020-12-30 03:52:27 +01:00
ShellSyntaxHighlighter.cpp LibGfx: Add Gfx::TextAttributes (and use it in GUI::TextDocumentSpan) 2021-01-02 20:57:43 +01:00
ShellSyntaxHighlighter.h LibGUI: Add a Shell syntax highlighter 2020-09-30 20:05:24 +02:00
Shortcut.cpp LibGUI: Use StringBuilder::join() in Shortcut::to_string() 2020-08-19 21:17:02 +02:00
Shortcut.h Meta+LibC through LibHTTP: Make clang-format-10 clean 2020-09-25 21:18:17 +02:00
Slider.cpp LibGUI: Move widget registrations to the corresponding cpp file 2021-01-03 10:31:42 +01:00
Slider.h LibGUI: Add GUI::AbstractSlider and move generic parts of Slider there 2020-12-30 15:20:47 +01:00
SortingProxyModel.cpp LibGUI: Implement searching/jumping as you type in views 2020-10-22 15:23:45 +02:00
SortingProxyModel.h LibGUI: Implement searching/jumping as you type in views 2020-10-22 15:23:45 +02:00
SpinBox.cpp LibGUI: Move widget registrations to the corresponding cpp file 2021-01-03 10:31:42 +01:00
SpinBox.h LibGUI: Use on_up_pressed/on_down_pressed events in SpinBox 2020-09-23 20:44:23 +02:00
Splitter.cpp LibGUI: Move widget registrations to the corresponding cpp file 2021-01-03 10:31:42 +01:00
Splitter.h LibGUI: Splitter should only override cursor if within grabbable area 2020-08-27 10:42:15 +02:00
StackWidget.cpp LibGUI: Add Widget::has_focus_within() 2020-10-30 23:40:23 +01:00
StackWidget.h LibGUI: Remove parent parameter to GUI::Widget constructor 2020-02-23 12:27:53 +01:00
StatusBar.cpp LibGUI: Move widget registrations to the corresponding cpp file 2021-01-03 10:31:42 +01:00
StatusBar.h LibGUI: Hide ResizeCorner in StatusBar when window is maximized 2020-08-31 09:08:26 +02:00
SyntaxHighlighter.cpp LibGfx: Add Gfx::TextAttributes (and use it in GUI::TextDocumentSpan) 2021-01-02 20:57:43 +01:00
SyntaxHighlighter.h LibGUI: Make syntax highlighter communicate boldness instead of font 2020-12-28 15:53:10 +01:00
TableView.cpp LibGUI: Make selected item tint color based on focused state 2020-12-28 01:14:01 +01:00
TableView.h LibGUI: Move selection behavior from TableView up to AbstractView 2020-12-17 00:54:58 +01:00
TabWidget.cpp LibGUI: Move widget registrations to the corresponding cpp file 2021-01-03 10:31:42 +01:00
TabWidget.h LibGUI: Make TabWidget unfocusable when tab-less 2020-10-30 17:03:29 +01:00
TextBox.cpp LibGUI: Move widget registrations to the corresponding cpp file 2021-01-03 10:31:42 +01:00
TextBox.h LibGUI: Add up & down arrow hooks and input history to TextBox 2020-05-27 20:04:52 +02:00
TextDocument.cpp LibGUI: Soft tab expansion should be based on insertion column 2020-12-21 09:26:31 +01:00
TextDocument.h LibGfx: Add Gfx::TextAttributes (and use it in GUI::TextDocumentSpan) 2021-01-02 20:57:43 +01:00
TextEditor.cpp TextEditor+EditingEngine: Add support for the basics of Vim emulation 2021-01-05 00:00:36 +01:00
TextEditor.h TextEditor+EditingEngine: Add support for the basics of Vim emulation 2021-01-05 00:00:36 +01:00
TextPosition.h LibGUI: Use String::formatted() and String::number() more 2021-01-03 14:52:50 +01:00
TextRange.h AK+Format: Remove TypeErasedFormatParams& from format function. 2020-12-30 20:33:53 +01:00
ToolBar.cpp LibGUI: Move widget registrations to the corresponding cpp file 2021-01-03 10:31:42 +01:00
ToolBar.h LibGUI: Move GUI::SeparatorWidget from ToolBar.cpp to its own file 2020-12-30 03:52:27 +01:00
ToolBarContainer.cpp LibGUI: Simplify ToolBarContainer by using shrink-to-fit 2021-01-04 18:21:05 +01:00
ToolBarContainer.h LibGUI: Simplify ToolBarContainer by using shrink-to-fit 2021-01-04 18:21:05 +01:00
TreeView.cpp LibGUI: Move widget registrations to the corresponding cpp file 2021-01-03 10:31:42 +01:00
TreeView.h LibGUI: Remove `AbstractView::did_update_model()' 2020-11-30 12:07:45 +01:00
UndoStack.cpp LibGUI: Fix undo stack 2020-11-22 16:07:00 +01:00
UndoStack.h LibGUI: Fix undo stack 2020-11-22 16:07:00 +01:00
Variant.cpp LibGUI: Use String::formatted() and String::number() more 2021-01-03 14:52:50 +01:00
Variant.h LibGUI: Optimize GUI::Variant move constructor 2020-12-03 21:53:29 +01:00
VimEditingEngine.cpp TextEditor+EditingEngine: Add support for the basics of Vim emulation 2021-01-05 00:00:36 +01:00
VimEditingEngine.h TextEditor+EditingEngine: Add support for the basics of Vim emulation 2021-01-05 00:00:36 +01:00
Widget.cpp WindowServer+LibGUI: Pass the set of mime types being dragged to client 2021-01-09 12:02:07 +01:00
Widget.h LibGUI: Have widgets signal willingness to accept drops 2021-01-09 12:02:07 +01:00
Window.cpp WindowServer+LibGUI: Pass the set of mime types being dragged to client 2021-01-09 12:02:07 +01:00
Window.h LibGUI: Add GUI::Application::active_window() 2021-01-05 17:13:17 +01:00
WindowServerConnection.cpp WindowServer+LibGUI: Pass the set of mime types being dragged to client 2021-01-09 12:02:07 +01:00
WindowServerConnection.h WindowServer: Add accessory windows 2020-07-15 17:15:45 +02:00
WindowType.h WindowServer: Add WindowType::Desktop 2020-04-18 21:10:16 +02:00