serenity/Userland/Applications/FileManager
Shannon Booth e2e7c4d574 Everywhere: Use to_number<T> instead of to_{int,uint,float,double}
In a bunch of cases, this actually ends up simplifying the code as
to_number will handle something such as:

```
Optional<I> opt;
if constexpr (IsSigned<I>)
    opt = view.to_int<I>();
else
    opt = view.to_uint<I>();
```

For us.

The main goal here however is to have a single generic number conversion
API between all of the String classes.
2023-12-23 20:41:07 +01:00
..
CMakeLists.txt Meta: Rename compile_gml to stringify_gml 2023-08-11 21:33:48 +02:00
DesktopWidget.cpp Applications: Use default constructors/destructors 2022-02-14 22:06:55 +00:00
DesktopWidget.h Applications: Use default constructors/destructors 2022-02-14 22:06:55 +00:00
DirectoryView.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
DirectoryView.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
FileManagerWindow.gml FileManager: Use PathBreadcrumbbar instead of Breadcrumbbar :^) 2023-02-19 01:09:09 +01:00
FileOperationProgress.gml Userland: Replace empty GUI::Widgets in GML with GUI::Layout::Spacer 2022-09-29 08:31:15 -04:00
FileOperationProgressWidget.cpp Everywhere: Use to_number<T> instead of to_{int,uint,float,double} 2023-12-23 20:41:07 +01:00
FileOperationProgressWidget.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
FileUtils.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
FileUtils.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
main.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
PropertiesWindow.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
PropertiesWindow.h Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
PropertiesWindowArchiveTab.gml FileManager: Add file properties tab for ZIP archives 2023-07-30 22:16:40 +01:00
PropertiesWindowAudioTab.gml FileManager: Add "Audio" tab to File Properties window 2023-07-20 08:02:12 +01:00
PropertiesWindowFontTab.gml FileManager: Add "Font" tab to File Properties window 2023-07-20 08:02:12 +01:00
PropertiesWindowGeneralTab.gml FileManager: Don't wrap long paths on Properties window 2023-07-20 08:02:12 +01:00
PropertiesWindowImageTab.gml FileManager: Add "Image" tab to File Properties window 2023-07-20 08:02:12 +01:00
PropertiesWindowPDFTab.gml FileManager: Add file properties tab for PDF documents 2023-07-30 22:16:40 +01:00