Andreas Kling 03c91fce74 LibGUI: Highlight interactive area of hovered CheckBox and RadioButton 5 年之前
..
AboutDialog.cpp 317a0d666b LibGUI: AboutDialog now inherits the icon of its parent window 5 年之前
AboutDialog.h b29ff7b821 LibGUI: Don't use Core::Object::add() to instantiate dialogs 5 年之前
AbstractButton.cpp 57fe4d19ac LibGUI: Remove unnecessary is_enabled() checks in mouse event handlers 5 年之前
AbstractButton.h 6a3b12664a LibGUI: Move Icon and FontDatabase into the GUI namespace 5 年之前
AbstractTableView.cpp ebabce30bd LibGUI: Display hidden columns as hidden 5 年之前
AbstractTableView.h 8e4751a963 LibGUI: Add a way for models to update without invalidating indexes 5 年之前
AbstractView.cpp e0a16f8752 FileManager+LibGUI: Allow drop on entire DirectoryView 5 年之前
AbstractView.h 55ff392835 LibGUI: Remove unneeded access rights 5 年之前
Action.cpp 45a932a600 Base: New "cut" action icon 5 年之前
Action.h 705cee528a LibGUI: Make it easier to create checkable GUI::Actions 5 年之前
ActionGroup.cpp 6a9cc66b97 LibGUI: Remove leading G from filenames 5 年之前
ActionGroup.h 2143da6434 LibGUI: Add forwarding header 5 年之前
Application.cpp 52a250cb61 LibGUI: Make MenuBar a Core::Object 5 年之前
Application.h 52a250cb61 LibGUI: Make MenuBar a Core::Object 5 年之前
BoxLayout.cpp 849fdc1c0b LibGUI: Make Layout a Core::Object and add basic serialization 5 年之前
BoxLayout.h 849fdc1c0b LibGUI: Make Layout a Core::Object and add basic serialization 5 年之前
Button.cpp add93bf593 LibGUI: Brighten buttons when hovering over them :^) 5 年之前
Button.h a26b63a958 LibGUI: Remove Button& parameter from Button::on_click hook 5 年之前
CheckBox.cpp 03c91fce74 LibGUI: Highlight interactive area of hovered CheckBox and RadioButton 5 年之前
CheckBox.h c5d913970a LibGUI: Remove parent parameter to GUI::Widget constructor 5 年之前
Clipboard.cpp f72e5bbb17 Kernel+LibC: Rename shared buffer syscalls to use a prefix 5 年之前
Clipboard.h 2143da6434 LibGUI: Add forwarding header 5 年之前
ColorInput.cpp cdbc252190 LibGUI: Require a full click on ColorInput's color rect to open picker 5 年之前
ColorInput.h cdbc252190 LibGUI: Require a full click on ColorInput's color rect to open picker 5 年之前
ColorPicker.cpp 77916f030f LibGUI: Use "OK, Cancel" button order in ColorPicker 5 年之前
ColorPicker.h f8069418e1 LibGUI: Transfer "color has alpha channel" state 5 年之前
ColumnsView.cpp 8e4751a963 LibGUI: Add a way for models to update without invalidating indexes 5 年之前
ColumnsView.h 8e4751a963 LibGUI: Add a way for models to update without invalidating indexes 5 年之前
ComboBox.cpp 828aee9932 LibGUI: Make ComboBox list pop-up windows frameless 5 年之前
ComboBox.h 7194b4823e LibGUI: ComboBox, add "set_selected_index" method 5 年之前
Command.cpp 6a9cc66b97 LibGUI: Remove leading G from filenames 5 年之前
Command.h 6a9cc66b97 LibGUI: Remove leading G from filenames 5 年之前
CppLexer.cpp 37af1d74cc LibGUI: Fix CppLexer assertion on incomplete #include statements 5 年之前
CppLexer.h d8a73dd979 LibGUI: Parse #include statements separately 5 年之前
CppSyntaxHighlighter.cpp 2b162ef794 LibGUI: Use themes for syntax highlighting 5 年之前
CppSyntaxHighlighter.h 2b162ef794 LibGUI: Use themes for syntax highlighting 5 年之前
Desktop.cpp f88b90f6fd LibGUI: Desktop, add methods for set background color and wallpaper mode 5 年之前
Desktop.h f88b90f6fd LibGUI: Desktop, add methods for set background color and wallpaper mode 5 年之前
Dialog.cpp b29ff7b821 LibGUI: Don't use Core::Object::add() to instantiate dialogs 5 年之前
Dialog.h b29ff7b821 LibGUI: Don't use Core::Object::add() to instantiate dialogs 5 年之前
DisplayLink.cpp 424a3f5ac3 WindowServer+LibGUI: Add a way to get notified at display refresh rate 5 年之前
DisplayLink.h 424a3f5ac3 WindowServer+LibGUI: Add a way to get notified at display refresh rate 5 年之前
DragOperation.cpp 7cfe712f4d LibGfx+LibIPC: Add Gfx::ShareableBitmap, a bitmap for easy IPC usage 5 年之前
DragOperation.h 2143da6434 LibGUI: Add forwarding header 5 年之前
Event.cpp 5884ef8425 LibGUI: Add missing Event.cpp file 5 年之前
Event.h 67b92a7d5f WindowServer+LibGUI: Support the 4th and 5th mouse buttons 5 年之前
FilePicker.cpp 9dbab2d05e Misc: Replace "String(string_view)" with "string_view.to_string()" 5 年之前
FilePicker.h c45e16f605 LibCore: Add StandardPaths thing to retrieve various standard locations 5 年之前
FileSystemModel.cpp c9c1d1fae0 LibGUI: Create thumnail for gif files 5 年之前
FileSystemModel.h 5267ccbc22 LibGUI: Icon for INI file type 5 年之前
FontDatabase.cpp cebf6a7039 LibGUI: Skip non-font files in the FontDatabase constructor 5 年之前
FontDatabase.h 6a3b12664a LibGUI: Move Icon and FontDatabase into the GUI namespace 5 年之前
Forward.h ef433cb367 LibGUI: The UI calls it 'Icon view', fix the name in the code 5 年之前
Frame.cpp 42f0b2522b LibGUI: Introduce widget content margins + improve splitters 5 年之前
Frame.h 42f0b2522b LibGUI: Introduce widget content margins + improve splitters 5 年之前
GroupBox.cpp c5d913970a LibGUI: Remove parent parameter to GUI::Widget constructor 5 年之前
GroupBox.h c5d913970a LibGUI: Remove parent parameter to GUI::Widget constructor 5 年之前
INILexer.cpp 5c022ac939 LibGUI: INI file syntax highlighter 5 年之前
INILexer.h 5c022ac939 LibGUI: INI file syntax highlighter 5 年之前
INISyntaxHighlighter.cpp 5c022ac939 LibGUI: INI file syntax highlighter 5 年之前
INISyntaxHighlighter.h 5c022ac939 LibGUI: INI file syntax highlighter 5 年之前
Icon.cpp 9dbab2d05e Misc: Replace "String(string_view)" with "string_view.to_string()" 5 年之前
Icon.h 6a3b12664a LibGUI: Move Icon and FontDatabase into the GUI namespace 5 年之前
IconView.cpp ef433cb367 LibGUI: The UI calls it 'Icon view', fix the name in the code 5 年之前
IconView.h ef433cb367 LibGUI: The UI calls it 'Icon view', fix the name in the code 5 年之前
InputBox.cpp 9f32d71782 LibGUI: Use "OK, Cancel" button order in InputBox 5 年之前
InputBox.h b29ff7b821 LibGUI: Don't use Core::Object::add() to instantiate dialogs 5 年之前
JSSyntaxHighlighter.cpp a2e1f1a872 LibJS: Implement exponentiation assignment operator (**=) 5 年之前
JSSyntaxHighlighter.h 7571e9e460 LibGUI: Rename SyntaxLanguage::{Javascript -> JavaScript} 5 年之前
JsonArrayModel.cpp 4d50398f02 LibGUI: Add store(), add() and remove() methods to JsonArrayModel 5 年之前
JsonArrayModel.h 4d50398f02 LibGUI: Add store(), add() and remove() methods to JsonArrayModel 5 年之前
Label.cpp ae9fe60412 LibGUI: Make Label::set_icon() take a const Gfx::Bitmap* 5 年之前
Label.h ae9fe60412 LibGUI: Make Label::set_icon() take a const Gfx::Bitmap* 5 年之前
Layout.cpp b1058b33fb AK: Add global FlatPtr typedef. It's u32 or u64, based on sizeof(void*) 5 年之前
Layout.h 849fdc1c0b LibGUI: Make Layout a Core::Object and add basic serialization 5 年之前
LazyWidget.cpp c5d913970a LibGUI: Remove parent parameter to GUI::Widget constructor 5 年之前
LazyWidget.h c5d913970a LibGUI: Remove parent parameter to GUI::Widget constructor 5 年之前
ListView.cpp d17b42b28d LibGUI: Make view widgets fill background by default 5 年之前
ListView.h 8e4751a963 LibGUI: Add a way for models to update without invalidating indexes 5 年之前
Makefile ef433cb367 LibGUI: The UI calls it 'Icon view', fix the name in the code 5 年之前
Margins.h 6a9cc66b97 LibGUI: Remove leading G from filenames 5 年之前
Menu.cpp f0cde70c18 LibGUI: Simplify submenu construction 5 年之前
Menu.h f0cde70c18 LibGUI: Simplify submenu construction 5 年之前
MenuBar.cpp 52a250cb61 LibGUI: Make MenuBar a Core::Object 5 年之前
MenuBar.h 52a250cb61 LibGUI: Make MenuBar a Core::Object 5 年之前
MenuItem.cpp f0cde70c18 LibGUI: Simplify submenu construction 5 年之前
MenuItem.h f0cde70c18 LibGUI: Simplify submenu construction 5 年之前
MessageBox.cpp 74cc0560e8 LibGUI: MessageBox min width control for show messages 5 年之前
MessageBox.h b29ff7b821 LibGUI: Don't use Core::Object::add() to instantiate dialogs 5 年之前
Model.cpp 8e4751a963 LibGUI: Add a way for models to update without invalidating indexes 5 年之前
Model.h 8e4751a963 LibGUI: Add a way for models to update without invalidating indexes 5 年之前
ModelEditingDelegate.h ca110a6e54 LibGUI: Make the ModelEditingDelegate constructor protected 5 年之前
ModelIndex.cpp 2143da6434 LibGUI: Add forwarding header 5 年之前
ModelIndex.h 2143da6434 LibGUI: Add forwarding header 5 年之前
ModelSelection.cpp a06548eaf7 LibGUI: Keep still-valid indexes in selection after a model update 5 年之前
ModelSelection.h a06548eaf7 LibGUI: Keep still-valid indexes in selection after a model update 5 年之前
MultiView.cpp 1b140d1b5b LibGUI: FilePicker: Make icon view button initially checked 5 年之前
MultiView.h 1b140d1b5b LibGUI: FilePicker: Make icon view button initially checked 5 年之前
Notification.cpp e323246517 Meta: Add missing copyright headers 5 年之前
Notification.h e323246517 Meta: Add missing copyright headers 5 年之前
Painter.cpp 3fe2640c8c LibGfx: Add forward declaration header 5 年之前
Painter.h 2143da6434 LibGUI: Add forwarding header 5 年之前
ProgressBar.cpp c5d913970a LibGUI: Remove parent parameter to GUI::Widget constructor 5 年之前
ProgressBar.h c5d913970a LibGUI: Remove parent parameter to GUI::Widget constructor 5 年之前
RadioButton.cpp 03c91fce74 LibGUI: Highlight interactive area of hovered CheckBox and RadioButton 5 年之前
RadioButton.h c5d913970a LibGUI: Remove parent parameter to GUI::Widget constructor 5 年之前
ResizeCorner.cpp 5b6c2f3bd6 LibGUI: Make sure the ResizeCorner aligns nicely inside StatusBar 5 年之前
ResizeCorner.h c5d913970a LibGUI: Remove parent parameter to GUI::Widget constructor 5 年之前
ScrollBar.cpp 933cf365e8 LibGUI: Tweak default ScrollBar size to make arrow icons centered :^) 5 年之前
ScrollBar.h c5d913970a LibGUI: Remove parent parameter to GUI::Widget constructor 5 年之前
ScrollableWidget.cpp b6bea3d25b LibGUI: Fix off-by-one in ScrollableWidget 5 年之前
ScrollableWidget.h 8fae4ee931 LibGUI: Add ScrollableWidget::viewport_rect_in_content_coordinates() 5 年之前
Shortcut.cpp ceec1a7d38 AK: Make Vector use size_t for its size and capacity 5 年之前
Shortcut.h 2143da6434 LibGUI: Add forwarding header 5 年之前
Slider.cpp 57fe4d19ac LibGUI: Remove unnecessary is_enabled() checks in mouse event handlers 5 年之前
Slider.h c5d913970a LibGUI: Remove parent parameter to GUI::Widget constructor 5 年之前
SortingProxyModel.cpp 8e4751a963 LibGUI: Add a way for models to update without invalidating indexes 5 年之前
SortingProxyModel.h 6a9cc66b97 LibGUI: Remove leading G from filenames 5 年之前
SpinBox.cpp 0f0d73d1b5 LibGUI: Make the "enabled" widget state propagate to child widgets 5 年之前
SpinBox.h 0f0d73d1b5 LibGUI: Make the "enabled" widget state propagate to child widgets 5 年之前
Splitter.cpp 344e66caaa LibGUI: Shrink GUI::Splitter by 1 pixel to make it look just right 5 年之前
Splitter.h c5d913970a LibGUI: Remove parent parameter to GUI::Widget constructor 5 年之前
StackWidget.cpp a2bdcfabc9 LibGUI: Grant focus when activating a new stack/tab child widget 5 年之前
StackWidget.h c5d913970a LibGUI: Remove parent parameter to GUI::Widget constructor 5 年之前
StatusBar.cpp 108c08eb49 LibGUI: Make StatusBar 2px shorter vertically for a snugger fit 5 年之前
StatusBar.h c5d913970a LibGUI: Remove parent parameter to GUI::Widget constructor 5 年之前
SyntaxHighlighter.cpp b4381be0ba LibGUI: Add missing copyright headers 5 年之前
SyntaxHighlighter.h 7571e9e460 LibGUI: Rename SyntaxLanguage::{Javascript -> JavaScript} 5 年之前
TabWidget.cpp 8fc6ff94fe LibGUI: Scale TabWidget tabs according to available space 5 年之前
TabWidget.h f2cdef5c47 LibGUI: Cycle through TabWidget tabs with Ctrl+Tab / Ctrl+Shift+Tab 5 年之前
TableView.cpp d17b42b28d LibGUI: Make view widgets fill background by default 5 年之前
TableView.h c5d913970a LibGUI: Remove parent parameter to GUI::Widget constructor 5 年之前
TextBox.cpp c5d913970a LibGUI: Remove parent parameter to GUI::Widget constructor 5 年之前
TextBox.h c5d913970a LibGUI: Remove parent parameter to GUI::Widget constructor 5 年之前
TextDocument.cpp 0d17e3bfa6 LibGUI: Fix null-termination of TextDocumentLine 5 年之前
TextDocument.h 9570efa698 LibGUI: Remove friend classes of TextDocumentLine 5 年之前
TextEditor.cpp be8dc41b9c LibGUI: Paint TextEditor background same as widget's if it's not enabled 5 年之前
TextEditor.h 393560d8a2 HackStudio: GUI support for setting breakpoints on source code lines 5 年之前
TextPosition.h 30964ba7d0 LibGUI: Remove remaining G prefixes 5 年之前
TextRange.h 30964ba7d0 LibGUI: Remove remaining G prefixes 5 年之前
ToolBar.cpp ab336e895f LibGUI: Add a ToolBarContainer widget and put most ToolBars in one 5 年之前
ToolBar.h c5d913970a LibGUI: Remove parent parameter to GUI::Widget constructor 5 年之前
ToolBarContainer.cpp 1887dc6de4 LibGUI: Make ToolBarContainer better at reacting to child events 5 年之前
ToolBarContainer.h 7670e5ccf0 LibCore+LibHTTP: Move out the HTTP handler and add HTTPS 5 年之前
TreeView.cpp b478c5f86c LibGUI: Properly draw the background of the selected TreeView line 5 年之前
TreeView.h 8e4751a963 LibGUI: Add a way for models to update without invalidating indexes 5 年之前
UndoStack.cpp ceec1a7d38 AK: Make Vector use size_t for its size and capacity 5 年之前
UndoStack.h ceec1a7d38 AK: Make Vector use size_t for its size and capacity 5 年之前
Variant.cpp 154dcd1ed6 AK: Allow %m.nf specifier for double/float in printf to set fraction with 5 年之前
Variant.h 7f8dc347b5 LibGUI: Allow constructing Variant from FlyString 5 年之前
Widget.cpp 0f0d73d1b5 LibGUI: Make the "enabled" widget state propagate to child widgets 5 年之前
Widget.h 42f0b2522b LibGUI: Introduce widget content margins + improve splitters 5 年之前
Window.cpp e347d6bdb8 LibGUI: Properly remove auto-destroyed child windows from reified_windows. 5 年之前
Window.h 745b0b27fd WindowServer+LibGUI: Automatically close child windows with parent 5 年之前
WindowServerConnection.cpp 67b92a7d5f WindowServer+LibGUI: Support the 4th and 5th mouse buttons 5 年之前
WindowServerConnection.h 5326eebb1b WindowServer+LibGUI: Notify DisplayLinks at 60 fps no matter what 5 年之前
WindowType.h 3d31f2e44b WindowServer: Add WindowType::Desktop 5 年之前