1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 14:27:34 +00:00

FileManager: Add "Image" tab to File Properties window

We don't yet expose most image metadata yet, so most of this is ICC
profile data since we do have a way to access that.
This commit is contained in:
Sam Atkins 2023-07-18 19:28:30 +01:00 committed by Sam Atkins
parent 835dada3d3
commit 50b6ed2aa3
4 changed files with 238 additions and 0 deletions

View file

@ -9,6 +9,7 @@ compile_gml(FileManagerWindow.gml FileManagerWindowGML.h file_manager_window_gml
compile_gml(FileOperationProgress.gml FileOperationProgressGML.h file_operation_progress_gml)
compile_gml(PropertiesWindowAudioTab.gml PropertiesWindowAudioTabGML.h properties_window_audio_tab_gml)
compile_gml(PropertiesWindowGeneralTab.gml PropertiesWindowGeneralTabGML.h properties_window_general_tab_gml)
compile_gml(PropertiesWindowImageTab.gml PropertiesWindowImageTabGML.h properties_window_image_tab_gml)
set(SOURCES
DesktopWidget.cpp
@ -24,6 +25,7 @@ set(GENERATED_SOURCES
FileOperationProgressGML.h
PropertiesWindowAudioTabGML.h
PropertiesWindowGeneralTabGML.h
PropertiesWindowImageTabGML.h
)
serenity_app(FileManager ICON app-file-manager)