ladybird/Userland/Libraries/LibGUI
Sam Atkins e0fd5beb36 LibGUI+Applications: Default the SpinBox min/max to the full int range
By default, a SpinBox's value should be unlimited, (or as close as we
can get to that,) and then the GML or code can impose a limit if
needed. This saves the developer from entering an arbitrary "big" max
value when they want the value to have no maximum.

I've audited the use of SpinBox and added `min: 0`, and removed a `max`,
where appropriate. All existing SpinBoxes constructed in code have a
range set explicitly as far as I can tell.
2024-01-14 13:46:14 +00:00
..
GML Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Wizards Userland: Use non-fallible EventReceiver::add() where possible 2023-09-25 10:58:31 +02:00
AboutDialog.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
AboutDialog.gml LibGUI: Make AboutDialog Copyright 2018-2024 2024-01-06 16:42:57 +00:00
AboutDialog.h LibGUI+Applications: Use String in make_about_action() 2023-09-16 11:05:49 +02:00
AbstractButton.cpp
AbstractButton.h
AbstractScrollableWidget.cpp LibGfx+Everywhere: Change Gfx::Rect to be endpoint exclusive 2023-05-23 12:35:42 +02:00
AbstractScrollableWidget.h
AbstractSlider.cpp LibGUI: Only redraw sliders after the on_change callback has finished 2023-04-14 12:05:52 +01:00
AbstractSlider.h
AbstractTableView.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
AbstractTableView.h LibGUI: Add a callback when the visible columns of a TableView change 2023-06-14 17:53:59 +02:00
AbstractThemePreview.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
AbstractThemePreview.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
AbstractView.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
AbstractView.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
AbstractZoomPanWidget.cpp
AbstractZoomPanWidget.h
Action.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Action.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
ActionGroup.cpp
ActionGroup.h
Application.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Application.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
AutocompleteProvider.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
AutocompleteProvider.h
BoxLayout.cpp LibGUI: Port rest of the classes to property deserializers 2024-01-06 09:15:37 -07:00
BoxLayout.h
Breadcrumbbar.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Breadcrumbbar.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Button.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Button.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Calendar.cpp Calendar: Move MonthListModel into Calendar.h 2024-01-06 10:37:53 -07:00
Calendar.h Calendar: Move MonthListModel into Calendar.h 2024-01-06 10:37:53 -07:00
CheckBox.cpp LibGfx+Everywhere: Change Gfx::Rect to be endpoint exclusive 2023-05-23 12:35:42 +02:00
CheckBox.h
Clipboard.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
Clipboard.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
CMakeLists.txt LibGUI+PDFViewer: Move NumericInput into LibGUI 2024-01-10 13:13:27 +00:00
ColorFilterer.h
ColorInput.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
ColorInput.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
ColorPicker.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
ColorPicker.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
ColumnsView.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
ColumnsView.h
ComboBox.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
ComboBox.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Command.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
CommandPalette.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
CommandPalette.h
CommonActions.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
CommonLocationsProvider.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
CommonLocationsProvider.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
CommonMenus.cpp LibGUI: Make CommonMenus::make_accessibility_menu() infallible 2023-08-14 14:57:54 +02:00
ConnectionToWindowManagerServer.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
ConnectionToWindowManagerServer.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
ConnectionToWindowServer.cpp Userland: Actually use the correct character map index from KeyEvent 2023-12-29 16:40:59 +01:00
ConnectionToWindowServer.h Userland: Actually use the correct character map index from KeyEvent 2023-12-29 16:40:59 +01:00
DatePicker.cpp LibGUI: Add a date picker dialog 2024-01-06 10:37:53 -07:00
DatePicker.h Calendar: Move MonthListModel into Calendar.h 2024-01-06 10:37:53 -07:00
DatePickerDialog.gml LibGUI: Add a date picker dialog 2024-01-06 10:37:53 -07:00
Desktop.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Desktop.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Dialog.cpp LibGUI: Simplify Dialog::ScreenPosition and allow Dialogs to opt out 2023-05-15 12:15:39 +02:00
Dialog.h LibGUI: Add a MessageBox type to reveal a file 2024-01-06 20:11:12 +00:00
DisplayLink.cpp
DisplayLink.h
DragOperation.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
DragOperation.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
DynamicWidgetContainer.cpp Everywhere: Add deprecated_ prefix to JsonValue::to_byte_string 2024-01-12 17:41:34 -07:00
DynamicWidgetContainer.h LibGUI: Add DynamicWidgetContainter 2023-12-14 09:07:20 -07:00
DynamicWidgetContainerControls.gml LibGUI: Add DynamicWidgetContainter 2023-12-14 09:07:20 -07:00
DynamicWidgetContainerControls.h LibGUI: Add DynamicWidgetContainter 2023-12-14 09:07:20 -07:00
EditingEngine.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
EditingEngine.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
EmojiInputDialog.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
EmojiInputDialog.gml LibGfx+Userland: Merge FrameShape and FrameShadow into FrameStyle 2023-04-30 05:49:46 +02:00
EmojiInputDialog.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Event.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Event.h Userland: Actually use the correct character map index from KeyEvent 2023-12-29 16:40:59 +01:00
FileIconProvider.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
FileIconProvider.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
FilePicker.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
FilePicker.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
FilePickerDialog.gml
FileSystemModel.cpp LibGUI: Render thumbnails out of process 2024-01-07 20:10:22 +01:00
FileSystemModel.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
FileTypeFilter.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
FilteringProxyModel.cpp LibGUI: Display commands on CommandPalette's start up 2023-12-20 12:22:05 +01:00
FilteringProxyModel.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
FocusPolicy.h
FocusSource.h
FontPicker.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
FontPicker.h LibGfx: Convert FontDatabase APIs to use FlyString 2023-09-06 11:29:03 -04:00
FontPickerDialog.gml LibGUI+Applications: Default the SpinBox min/max to the full int range 2024-01-14 13:46:14 +00:00
Forward.h LibGUI: Add a date picker dialog 2024-01-06 10:37:53 -07:00
Frame.cpp LibGUI: Always paint vertical lines for Frames in unmaximized windows 2023-05-07 21:12:35 +02:00
Frame.h LibGfx+Userland: Merge FrameShape and FrameShadow into FrameStyle 2023-04-30 05:49:46 +02:00
GitCommitLexer.cpp
GitCommitLexer.h
GitCommitSyntaxHighlighter.cpp LibSyntax+Userland: Make LibSyntax not depend on LibGUI 2023-08-29 07:57:39 -04:00
GitCommitSyntaxHighlighter.h
GlyphMapWidget.cpp Userland: Draw tooltip over glyph to show UTF-8 code point 2023-10-26 11:12:49 +02:00
GlyphMapWidget.h Userland: Draw tooltip over glyph to show UTF-8 code point 2023-10-26 11:12:49 +02:00
GroupBox.cpp LibGUI: Fix bad title alignment in GroupBox 2023-05-15 14:15:53 +02:00
GroupBox.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
HeaderView.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
HeaderView.h
HorizontalSlider.h LibGUI: Split HorizontalSlider to separate header 2023-12-08 01:06:09 +01:00
Icon.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Icon.h
IconView.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
IconView.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
ImageWidget.cpp LibGfx: Add first_animated_frame_index method to ImageDecoder 2023-05-05 15:20:44 +01:00
ImageWidget.h
IncrementalSearchBanner.cpp Userland: Prefer _string over _short_string 2023-08-08 07:37:21 +02:00
IncrementalSearchBanner.gml
IncrementalSearchBanner.h
INILexer.cpp
INILexer.h
INISyntaxHighlighter.cpp LibSyntax+Userland: Make LibSyntax not depend on LibGUI 2023-08-29 07:57:39 -04:00
INISyntaxHighlighter.h
InputBox.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
InputBox.h LibGUI: Add a numeric input type to InputBox 2023-04-18 10:05:21 +02:00
ItemListModel.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
JsonArrayModel.cpp Everywhere: Add deprecated_ prefix to JsonValue::to_byte_string 2024-01-12 17:41:34 -07:00
JsonArrayModel.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Label.cpp LibGfx+Userland: Merge FrameShape and FrameShadow into FrameStyle 2023-04-30 05:49:46 +02:00
Label.h LibGUI: Remove Label icons and replace instances with ImageWidget 2023-04-30 05:48:14 +02:00
LabelWithEventDispatcher.cpp LibGUI: Add DynamicWidgetContainter 2023-12-14 09:07:20 -07:00
LabelWithEventDispatcher.h LibGUI: Add DynamicWidgetContainter 2023-12-14 09:07:20 -07:00
Layout.cpp LibGUI: Port rest of the classes to property deserializers 2024-01-06 09:15:37 -07:00
Layout.h LibGUI: Remove remaining fallible Layout APIs 2023-08-14 14:57:54 +02:00
LazyWidget.cpp
LazyWidget.h
LinkLabel.cpp Applications: Stop calling set_tooltip_deprecated when we do have String 2023-10-06 08:20:11 +02:00
LinkLabel.h Userland: Prefer non-fallible construction for LibGUI objects 2023-09-18 18:00:45 +02:00
ListView.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
ListView.h LibGUI: Add more customization options to ListView 2023-09-24 20:05:33 -06:00
Margins.h LibGUI: Port rest of the classes to property deserializers 2024-01-06 09:15:37 -07:00
Menu.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Menu.h LibGUI: Make CommonMenus::make_accessibility_menu() infallible 2023-08-14 14:57:54 +02:00
Menubar.cpp LibGUI: Remove Menubar::try_add_menu() 2023-08-14 14:57:54 +02:00
Menubar.h LibGUI: Remove Menubar::try_add_menu() 2023-08-14 14:57:54 +02:00
MenuItem.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
MenuItem.h LibGUI: Allow updating the names of menus and submenus 2023-03-26 21:55:21 +01:00
MessageBox.cpp LibGUI: Add a MessageBox type to reveal a file 2024-01-06 20:11:12 +00:00
MessageBox.h LibGUI: Add a MessageBox type to reveal a file 2024-01-06 20:11:12 +00:00
Model.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Model.h Userland: Port lists of mime types to String 2023-09-29 14:40:21 +01:00
ModelEditingDelegate.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
ModelIndex.cpp Everywhere: Remove unused DeprecatedString includes 2023-04-09 22:00:54 +02:00
ModelIndex.h AK: Rename GenericTraits to DefaultTraits 2023-11-09 10:05:51 -05:00
ModelRole.h
ModelSelection.cpp
ModelSelection.h
MouseTracker.cpp
MouseTracker.h
MultiView.cpp Base+Userland: Apply Human Interface Guidelines to Object text 2023-05-23 05:59:49 +02:00
MultiView.h
Notification.cpp
Notification.h Userland: Migrate to String in notification system 2023-09-01 12:06:08 +02:00
NumericInput.cpp LibGUI: Make NumericInput work well in GML 2024-01-10 13:13:27 +00:00
NumericInput.h LibGUI: Make NumericInput work well in GML 2024-01-10 13:13:27 +00:00
Object.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Object.h LibGUI: Make old register_property a private method of Object 2024-01-06 09:15:37 -07:00
OpacitySlider.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
OpacitySlider.h
Painter.cpp
Painter.h
PasswordInputDialog.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
PasswordInputDialog.gml LibGUI: Remove Label icons and replace instances with ImageWidget 2023-04-30 05:48:14 +02:00
PasswordInputDialog.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
PathBreadcrumbbar.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
PathBreadcrumbbar.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
PersistentModelIndex.cpp
PersistentModelIndex.h AK: Rename GenericTraits to DefaultTraits 2023-11-09 10:05:51 -05:00
Process.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Process.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
ProcessChooser.cpp Userland: Make Window::set_main_widget() non-fallible 2023-09-21 10:20:23 +02:00
ProcessChooser.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Progressbar.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Progressbar.h LibGUI: Add set_text(String) method to ProgressBar 2023-12-27 15:29:50 +01:00
Property.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Property.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
PropertyDeserializer.cpp LibGUI: Port rest of the classes to property deserializers 2024-01-06 09:15:37 -07:00
PropertyDeserializer.h LibGUI: Introduce property deserializers for GML property values 2024-01-06 09:15:37 -07:00
RadioButton.cpp LibGfx+Everywhere: Change Gfx::Rect to be endpoint exclusive 2023-05-23 12:35:42 +02:00
RadioButton.h
RangeSlider.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
RangeSlider.h LibGUI: Add new RangeSlider widget 2023-08-04 12:11:13 +02:00
RegularEditingEngine.cpp LibGUI: Don't call on_escape_pressed from EditingEngines 2023-07-14 06:52:38 +02:00
RegularEditingEngine.h
ResizeCorner.cpp
ResizeCorner.h
ResizeDirection.h
RunningProcessesModel.cpp Userland: Prefer _string over _short_string 2023-08-08 07:37:21 +02:00
RunningProcessesModel.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
ScreenLayout.cpp
ScrollableContainerWidget.cpp Userland: Rename Core::Object to Core::EventReceiver 2023-08-06 20:39:51 +02:00
ScrollableContainerWidget.h
Scrollbar.cpp LibGfx+Everywhere: Change Gfx::Rect to be endpoint exclusive 2023-05-23 12:35:42 +02:00
Scrollbar.h
SeparatorWidget.cpp LibGfx+Everywhere: Change Gfx::Rect to be endpoint exclusive 2023-05-23 12:35:42 +02:00
SeparatorWidget.h
SettingsWindow.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
SettingsWindow.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Shortcut.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Shortcut.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Slider.cpp LibGUI: Split HorizontalSlider to separate header 2023-12-08 01:06:09 +01:00
Slider.h LibGUI: Split HorizontalSlider to separate header 2023-12-08 01:06:09 +01:00
SortingProxyModel.cpp Userland: Port lists of mime types to String 2023-09-29 14:40:21 +01:00
SortingProxyModel.h Userland: Port lists of mime types to String 2023-09-29 14:40:21 +01:00
SpinBox.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
SpinBox.h LibGUI+Applications: Default the SpinBox min/max to the full int range 2024-01-14 13:46:14 +00:00
Splitter.cpp LibGUI: Fix typo in Splitter's resizee Getter/Setter 2023-08-13 05:12:00 +02:00
Splitter.h GMLCompiler: Add enum initializer for opportunistic_resizee property 2023-12-08 01:06:09 +01:00
StackWidget.cpp
StackWidget.h
Statusbar.cpp LibGUI+Userland: Port StatusBar::set_override_text() to String 2023-06-15 13:53:22 +01:00
Statusbar.h LibGUI: Make Statusbar::set_segment_count() public 2023-10-07 11:36:57 +02:00
SystemEffects.h
TableView.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
TableView.h
TabWidget.cpp LibGUI: Port rest of the classes to property deserializers 2024-01-06 09:15:37 -07:00
TabWidget.h LibGfx+Userland: Remove dependency on GUI::TabWidget from StylePainter 2023-10-27 16:51:03 -06:00
TextBox.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
TextBox.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
TextDocument.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
TextDocument.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
TextEditor.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
TextEditor.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
TextPosition.h LibSyntax+Userland: Make LibSyntax not depend on LibGUI 2023-08-29 07:57:39 -04:00
TextRange.h LibSyntax+Userland: Make LibSyntax not depend on LibGUI 2023-08-29 07:57:39 -04:00
Toolbar.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Toolbar.h LibGUI+Userland: Remove Toolbar::try_add_{action,separator}() 2023-08-15 15:56:34 +02:00
ToolbarContainer.cpp LibGfx+Everywhere: Change Gfx::Rect to be endpoint exclusive 2023-05-23 12:35:42 +02:00
ToolbarContainer.h
Tray.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Tray.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
TreeView.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
TreeView.h
TreeViewModel.cpp
TreeViewModel.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
UIDimensions.h LibGUI: Port rest of the classes to property deserializers 2024-01-06 09:15:37 -07:00
UndoStack.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
UndoStack.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
ValueSlider.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
ValueSlider.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Variant.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Variant.h Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
VimEditingEngine.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
VimEditingEngine.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Widget.cpp LibGUI: Port rest of the classes to property deserializers 2024-01-06 09:15:37 -07:00
Widget.h LibGUI: Port rest of the classes to property deserializers 2024-01-06 09:15:37 -07:00
Window.cpp LibGUI: Port rest of the classes to property deserializers 2024-01-06 09:15:37 -07:00
Window.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
WindowMode.h
WindowType.h