Move more stuff to settings module

This commit is contained in:
James Graham
2025-04-16 20:16:59 +01:00
parent c104c0b7d0
commit f57004601d
9 changed files with 7 additions and 8 deletions

View File

@@ -12,6 +12,7 @@ add_subdirectory(login)
add_subdirectory(rooms) add_subdirectory(rooms)
add_subdirectory(timeline) add_subdirectory(timeline)
add_subdirectory(spaces) add_subdirectory(spaces)
add_subdirectory(settings)
add_subdirectory(devtools) add_subdirectory(devtools)
add_library(neochat STATIC add_library(neochat STATIC
@@ -50,8 +51,6 @@ add_library(neochat STATIC
foreigntypes.h foreigntypes.h
identityserverhelper.cpp identityserverhelper.cpp
identityserverhelper.h identityserverhelper.h
models/roomsortparametermodel.cpp
models/roomsortparametermodel.h
models/commonroomsmodel.cpp models/commonroomsmodel.cpp
models/commonroomsmodel.h models/commonroomsmodel.h
) )
@@ -93,15 +92,12 @@ ecm_add_qml_module(neochat URI org.kde.neochat GENERATE_PLUGIN_SOURCE
qml/OpenFileDialog.qml qml/OpenFileDialog.qml
qml/KeyVerificationDialog.qml qml/KeyVerificationDialog.qml
qml/ConfirmLogoutDialog.qml qml/ConfirmLogoutDialog.qml
qml/PowerLevelDialog.qml
qml/VerificationMessage.qml qml/VerificationMessage.qml
qml/EmojiItem.qml qml/EmojiItem.qml
qml/EmojiRow.qml qml/EmojiRow.qml
qml/EmojiSas.qml qml/EmojiSas.qml
qml/ConfirmDeactivateAccountDialog.qml
qml/VerificationCanceled.qml qml/VerificationCanceled.qml
qml/MessageSourceSheet.qml qml/MessageSourceSheet.qml
qml/ConfirmEncryptionDialog.qml
qml/RoomSearchPage.qml qml/RoomSearchPage.qml
qml/RoomPinnedMessagesPage.qml qml/RoomPinnedMessagesPage.qml
qml/LocationChooser.qml qml/LocationChooser.qml
@@ -120,9 +116,7 @@ ecm_add_qml_module(neochat URI org.kde.neochat GENERATE_PLUGIN_SOURCE
qml/RoomMedia.qml qml/RoomMedia.qml
qml/ChooseRoomDialog.qml qml/ChooseRoomDialog.qml
qml/RemoveChildDialog.qml qml/RemoveChildDialog.qml
qml/SelectParentDialog.qml
qml/QrCodeMaximizeComponent.qml qml/QrCodeMaximizeComponent.qml
qml/SelectSpacesDialog.qml
qml/NotificationsView.qml qml/NotificationsView.qml
qml/SearchPage.qml qml/SearchPage.qml
qml/ServerComboBox.qml qml/ServerComboBox.qml
@@ -158,7 +152,6 @@ ecm_add_qml_module(neochat URI org.kde.neochat GENERATE_PLUGIN_SOURCE
org.kde.neochat.chatbar org.kde.neochat.chatbar
) )
add_subdirectory(settings)
add_subdirectory(chatbar) add_subdirectory(chatbar)
if(NOT ANDROID AND NOT WIN32) if(NOT ANDROID AND NOT WIN32)

View File

@@ -31,6 +31,8 @@ ecm_add_qml_module(Settings GENERATE_PLUGIN_SOURCE
RoomGeneralPage.qml RoomGeneralPage.qml
RoomSecurityPage.qml RoomSecurityPage.qml
ColorScheme.qml ColorScheme.qml
ConfirmDeactivateAccountDialog.qml
ConfirmEncryptionDialog.qml
DevicesCard.qml DevicesCard.qml
DeviceDelegate.qml DeviceDelegate.qml
EmoticonFormCard.qml EmoticonFormCard.qml
@@ -38,6 +40,9 @@ ecm_add_qml_module(Settings GENERATE_PLUGIN_SOURCE
IgnoredUsersDialog.qml IgnoredUsersDialog.qml
NotificationRuleItem.qml NotificationRuleItem.qml
PasswordSheet.qml PasswordSheet.qml
PowerLevelDialog.qml
SelectParentDialog.qml
SelectSpacesDialog.qml
ThemeRadioButton.qml ThemeRadioButton.qml
ThreePIdCard.qml ThreePIdCard.qml
ImportKeysDialog.qml ImportKeysDialog.qml
@@ -54,6 +59,7 @@ ecm_add_qml_module(Settings GENERATE_PLUGIN_SOURCE
models/emoticonfiltermodel.cpp models/emoticonfiltermodel.cpp
models/permissionsmodel.cpp models/permissionsmodel.cpp
models/pushrulemodel.cpp models/pushrulemodel.cpp
models/roomsortparametermodel.cpp
models/threepidmodel.cpp models/threepidmodel.cpp
) )