linphone-desktop/Linphone/tool/CMakeLists.txt
Alexandre Jörgensen d2413f33a9 Accessibility fixs :
* Fix focus on first relevant element after changing page with navbar #LINQT-2202
* Improve focus navigation on call history list #LINQT-2201
* Fix missing accessible button name in dialer #LINQT-2221
* Switch from ScrollView to Flickable in parameters
* Add auto scroll on keyboard navigation in settings #LINQT-2219
* Correct back button in settings #LINQT-2209
* Fix focus when open settings page #LINQT-2208
* Arrow in vertical tab bar now change button focus instead of changing page #LINQT-2194
* Fix focus and accessibility label in magic search bar #LINQT-2205
2026-03-09 10:11:53 +01:00

61 lines
1.5 KiB
CMake

list(APPEND _LINPHONEAPP_SOURCES
tool/Constants.cpp
tool/EnumsToString.cpp
tool/Utils.cpp
tool/UriTools.cpp
tool/QExifImageHeader.cpp
tool/LinphoneEnums.cpp
tool/thread/SafeSharedPointer.hpp
tool/thread/SafeConnection.hpp
tool/thread/Thread.cpp
tool/providers/AvatarProvider.cpp
tool/providers/EmojiProvider.cpp
tool/providers/ExternalImageProvider.cpp
tool/providers/ImageProvider.cpp
tool/providers/ScreenProvider.cpp
tool/providers/ThumbnailProvider.cpp
# tool/providers/VideoFrameGrabber.cpp
tool/native/DesktopTools.hpp
tool/request/RequestDialog.cpp
tool/request/CallbackHelper.cpp
tool/file/FileDownloader.cpp
tool/file/FileExtractor.cpp
tool/file/TemporaryFile.cpp
tool/ui/DashRectangle.cpp
tool/ui/FocusNavigator.cpp
tool/accessibility/AccessibilityHelper.cpp
tool/accessibility/KeyboardShortcuts.cpp
tool/accessibility/FocusHelper.cpp
)
if (APPLE)
list(APPEND _LINPHONEAPP_SOURCES
tool/native/DesktopToolsMacOs.cpp
tool/native/DesktopToolsMacOsNative.mm
tool/native/screen-saver/ScreenSaverMacOs.m
tool/native/state-process/StateProcessMacOs.mm
)
elseif (WIN32)
list(APPEND _LINPHONEAPP_SOURCES
tool/native/DesktopToolsWindows.cpp
)
else ()
list(APPEND _LINPHONEAPP_SOURCES
tool/native/DesktopToolsLinux.cpp
tool/native/screen-saver/ScreenSaverDBus.cpp
tool/native/screen-saver/ScreenSaverXdg.cpp
)
endif ()
if (HAVE_CRASH_HANDLER)
list(APPEND _LINPHONEAPP_SOURCES tool/crash_reporter/CrashReporter.cpp)
endif()
set(_LINPHONEAPP_SOURCES ${_LINPHONEAPP_SOURCES} PARENT_SCOPE)