master c687c0da264b cached
1114 files
20.1 MB
5.3M tokens
1276 symbols
1 requests
Copy disabled (too large) Download .txt
Showing preview only (21,708K chars total). Download the full file to get everything.
Repository: linuxdeepin/dde-control-center
Branch: master
Commit: c687c0da264b
Files: 1114
Total size: 20.1 MB

Directory structure:
gitextract_nl82i_9z/

├── .clang-format
├── .editorconfig
├── .github/
│   ├── copilot-instructions.md
│   └── workflows/
│       ├── backup-to-gitlab.yml
│       ├── call-auto-tag.yml
│       ├── call-build-distribution.yml
│       ├── call-chatOps.yml
│       ├── call-clacheck.yml
│       ├── call-commitlint.yml
│       ├── call-deploy-dev-doc.yml
│       ├── call-license-check.yml
│       └── cppcheck.yml
├── .gitignore
├── .obs/
│   └── workflows.yml
├── .reuse/
│   └── dep5
├── .tx/
│   ├── config
│   ├── deepin.conf
│   └── transifex.yaml
├── CMakeLists.txt
├── LICENSE
├── LICENSES/
│   ├── CC-BY-4.0.txt
│   ├── CC0-1.0.txt
│   ├── GPL-3.0-or-later.txt
│   ├── LGPL-3.0-or-later.txt
│   └── MIT.txt
├── README.md
├── README.zh_CN.md
├── archlinux/
│   └── PKGBUILD
├── debian/
│   ├── changelog
│   ├── control
│   ├── copyright
│   ├── dde-control-center-dev.install
│   ├── dde-control-center.install
│   ├── preinst
│   ├── rules
│   └── source/
│       ├── format
│       └── lintian-overrides
├── docs/
│   ├── CMakeLists.txt
│   ├── v23-dcc-interface.zh_CN.md
│   └── v25-dcc-interface.zh_CN.md
├── examples/
│   ├── CMakeLists.txt
│   └── plugin-example/
│       ├── CMakeLists.txt
│       ├── qml/
│       │   ├── Example.qml
│       │   ├── ExampleMain.qml
│       │   ├── ExamplePage1.qml
│       │   ├── ExamplePage2.qml
│       │   ├── ExamplePage3.qml
│       │   └── dcc_example.dci
│       ├── src/
│       │   ├── pluginexample.cpp
│       │   └── pluginexample.h
│       └── translations/
│           ├── example.ts
│           ├── example_az.ts
│           ├── example_bo.ts
│           ├── example_ca.ts
│           ├── example_es.ts
│           ├── example_fi.ts
│           ├── example_fr.ts
│           ├── example_hu.ts
│           ├── example_it.ts
│           ├── example_ja.ts
│           ├── example_ko.ts
│           ├── example_nb_NO.ts
│           ├── example_pl.ts
│           ├── example_pt_BR.ts
│           ├── example_ru.ts
│           ├── example_uk.ts
│           ├── example_zh_CN.ts
│           ├── example_zh_HK.ts
│           ├── example_zh_TW.ts
│           ├── examples.ts
│           ├── examples_az.ts
│           ├── examples_bo.ts
│           ├── examples_ca.ts
│           ├── examples_es.ts
│           ├── examples_fi.ts
│           ├── examples_fr.ts
│           ├── examples_hu.ts
│           ├── examples_it.ts
│           ├── examples_ja.ts
│           ├── examples_ko.ts
│           ├── examples_nb_NO.ts
│           ├── examples_pl.ts
│           ├── examples_pt_BR.ts
│           ├── examples_ru.ts
│           ├── examples_uk.ts
│           ├── examples_zh_CN.ts
│           ├── examples_zh_HK.ts
│           └── examples_zh_TW.ts
├── include/
│   └── dccfactory.h
├── misc/
│   ├── DdeControlCenterConfig.cmake.in
│   ├── DdeControlCenterConfigOld.cmake.in
│   ├── DdeControlCenterPluginMacros.cmake
│   ├── configs/
│   │   ├── common/
│   │   │   └── org.deepin.region-format.json
│   │   ├── org.deepin.dde.control-center.accounts.json
│   │   ├── org.deepin.dde.control-center.commoninfo.json
│   │   ├── org.deepin.dde.control-center.datetime.json
│   │   ├── org.deepin.dde.control-center.display.json
│   │   ├── org.deepin.dde.control-center.json
│   │   ├── org.deepin.dde.control-center.personalization.json
│   │   ├── org.deepin.dde.control-center.power.json
│   │   └── org.deepin.dde.control-center.sound.json
│   ├── deepin-debug-config/
│   │   └── org.deepin.dde.control-center.json
│   ├── deepin-log-config/
│   │   └── org.deepin.dde.control-center.json
│   ├── developdocument.html
│   ├── gen_report.sh
│   ├── org.deepin.dde-grand-search.dde-control-center-setting.conf
│   ├── org.deepin.dde.ControlCenter1.service.in
│   ├── org.deepin.dde.control-center.desktop
│   ├── org.deepin.dde.controlcenter.metainfo.xml
│   ├── systemd/
│   │   └── dde-control-center.service.in
│   ├── translate_desktop2ts.sh
│   ├── translate_generation.sh
│   └── translate_ts2desktop.sh
├── src/
│   ├── dde-control-center/
│   │   ├── CMakeLists.txt
│   │   ├── controlcenterdbusadaptor.cpp
│   │   ├── controlcenterdbusadaptor.h
│   │   ├── dccmanager.cpp
│   │   ├── dccmanager.h
│   │   ├── main.cpp
│   │   ├── navigationmodel.cpp
│   │   ├── navigationmodel.h
│   │   ├── plugin/
│   │   │   ├── CMakeLists.txt
│   │   │   ├── Crumb.qml
│   │   │   ├── DccCheckIcon.qml
│   │   │   ├── DccEditorItem.qml
│   │   │   ├── DccGroupView.qml
│   │   │   ├── DccItem.qml
│   │   │   ├── DccItemBackground.qml
│   │   │   ├── DccLabel.qml
│   │   │   ├── DccLoader.qml
│   │   │   ├── DccMenuEditorItem.qml
│   │   │   ├── DccMenuItem.qml
│   │   │   ├── DccRightView.qml
│   │   │   ├── DccRowView.qml
│   │   │   ├── DccSettingsObject.qml
│   │   │   ├── DccSettingsView.qml
│   │   │   ├── DccTimeRange.qml
│   │   │   ├── DccTitleObject.qml
│   │   │   ├── DccUtils.js
│   │   │   ├── DccWindow.qml
│   │   │   ├── HomePage.qml
│   │   │   ├── SearchBar.qml
│   │   │   ├── SecondPage.qml
│   │   │   ├── control-loading.dci
│   │   │   ├── dccapp.cpp
│   │   │   ├── dccapp.h
│   │   │   ├── dccimageprovider.cpp
│   │   │   ├── dccimageprovider.h
│   │   │   ├── dccmodel.cpp
│   │   │   ├── dccmodel.h
│   │   │   ├── dccobject.cpp
│   │   │   ├── dccobject.h
│   │   │   ├── dccobject_p.h
│   │   │   ├── dccquickdbusinterface.cpp
│   │   │   ├── dccquickdbusinterface.h
│   │   │   ├── dccquickdbusinterface_p.h
│   │   │   ├── dccrepeater.cpp
│   │   │   ├── dccrepeater.h
│   │   │   ├── reddot.dci
│   │   │   └── sidebar.dci
│   │   ├── pluginmanager.cpp
│   │   ├── pluginmanager.h
│   │   ├── qrc/
│   │   │   └── dcc.qrc
│   │   ├── searchmodel.cpp
│   │   └── searchmodel.h
│   ├── plugin-accounts/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── accountlistmodel.cpp
│   │   │   ├── accountlistmodel.h
│   │   │   ├── accountscontroller.cpp
│   │   │   ├── accountscontroller.h
│   │   │   ├── accountsdbusproxy.cpp
│   │   │   ├── accountsdbusproxy.h
│   │   │   ├── accountsworker.cpp
│   │   │   ├── accountsworker.h
│   │   │   ├── avatarlistmodel.cpp
│   │   │   ├── avatarlistmodel.h
│   │   │   ├── creationresult.cpp
│   │   │   ├── creationresult.h
│   │   │   ├── pwqualitymanager.cpp
│   │   │   ├── pwqualitymanager.h
│   │   │   ├── qrc/
│   │   │   │   ├── accounts.qrc
│   │   │   │   └── icons/
│   │   │   │       ├── dcc_user_add_icon.dci
│   │   │   │       ├── dcc_user_animal.dci
│   │   │   │       ├── dcc_user_custom.dci
│   │   │   │       ├── dcc_user_emoji.dci
│   │   │   │       ├── dcc_user_funny.dci
│   │   │   │       ├── dcc_user_human.dci
│   │   │   │       └── dcc_user_scenery.dci
│   │   │   ├── securitydbusproxy.cpp
│   │   │   ├── securitydbusproxy.h
│   │   │   ├── syncdbusproxy.cpp
│   │   │   ├── syncdbusproxy.h
│   │   │   ├── user.cpp
│   │   │   ├── user.h
│   │   │   ├── userdbusproxy.cpp
│   │   │   ├── userdbusproxy.h
│   │   │   ├── usermodel.cpp
│   │   │   └── usermodel.h
│   │   └── qml/
│   │       ├── AccountSettings.qml
│   │       ├── Accounts.qml
│   │       ├── AccountsMain.qml
│   │       ├── AutoLoginWarningDialog.qml
│   │       ├── AvatarGridView.qml
│   │       ├── AvatarSettingsDialog.qml
│   │       ├── ComfirmDeleteDialog.qml
│   │       ├── ComfirmSafePage.qml
│   │       ├── CreateAccountDialog.qml
│   │       ├── CustomAvatarCropper.qml
│   │       ├── CustomAvatarEmpatyArea.qml
│   │       ├── CustomLocalAvatarsRow.qml
│   │       ├── EditActionLabel.qml
│   │       ├── LoginMethod.qml
│   │       ├── PasswordLayout.qml
│   │       ├── PasswordModifyDialog.qml
│   │       ├── accounts.dci
│   │       ├── dcc-edit.dci
│   │       └── metadata.json
│   ├── plugin-authentication/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── abstractbiometriccontroller.cpp
│   │   │   ├── abstractbiometriccontroller.h
│   │   │   ├── biometricauthcontroller.cpp
│   │   │   ├── biometricauthcontroller.h
│   │   │   ├── charamangerdbusproxy.cpp
│   │   │   ├── charamangerdbusproxy.h
│   │   │   ├── charamangermodel.cpp
│   │   │   ├── charamangermodel.h
│   │   │   ├── charamangerworker.cpp
│   │   │   ├── charamangerworker.h
│   │   │   ├── faceauthcontroller.cpp
│   │   │   ├── faceauthcontroller.h
│   │   │   ├── fingerprintauthcontroller.cpp
│   │   │   ├── fingerprintauthcontroller.h
│   │   │   ├── irisauthcontroller.cpp
│   │   │   ├── irisauthcontroller.h
│   │   │   └── qrc/
│   │   │       ├── authentication.qrc
│   │   │       └── icons/
│   │   │           ├── dcc_delete.dci
│   │   │           ├── dcc_edit.dci
│   │   │           ├── iris_add.dci
│   │   │           ├── iris_lose.dci
│   │   │           ├── iris_scan.dci
│   │   │           ├── iris_scanning.dci
│   │   │           ├── iris_success.dci
│   │   │           ├── scan_loader.dci
│   │   │           ├── user_biometric_face.dci
│   │   │           ├── user_biometric_face_add.dci
│   │   │           ├── user_biometric_face_lose.dci
│   │   │           ├── user_biometric_face_success.dci
│   │   │           ├── user_biometric_fingerprint.dci
│   │   │           ├── user_biometric_fingerprint_add.dci
│   │   │           ├── user_biometric_fingerprint_lose.dci
│   │   │           ├── user_biometric_fingerprint_success.dci
│   │   │           └── user_biometric_iris.dci
│   │   └── qml/
│   │       ├── AddFaceinfoDialog.qml
│   │       ├── AddFingerDialog.qml
│   │       ├── AddIrisDialog.qml
│   │       ├── Authentication.qml
│   │       ├── AuthenticationMain.qml
│   │       └── DisclaimerControl.qml
│   ├── plugin-bluetooth/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── bluetoothadapter.cpp
│   │   │   ├── bluetoothadapter.h
│   │   │   ├── bluetoothadaptersmodel.cpp
│   │   │   ├── bluetoothadaptersmodel.h
│   │   │   ├── bluetoothdbusproxy.cpp
│   │   │   ├── bluetoothdbusproxy.h
│   │   │   ├── bluetoothdevice.cpp
│   │   │   ├── bluetoothdevice.h
│   │   │   ├── bluetoothdevicemodel.cpp
│   │   │   ├── bluetoothdevicemodel.h
│   │   │   ├── bluetoothinteraction.cpp
│   │   │   ├── bluetoothinteraction.h
│   │   │   ├── bluetoothmodel.cpp
│   │   │   ├── bluetoothmodel.h
│   │   │   ├── bluetoothworker.cpp
│   │   │   ├── bluetoothworker.h
│   │   │   └── qrc/
│   │   │       ├── bluetooth.qrc
│   │   │       └── icons/
│   │   │           ├── bluetoothNomal.dci
│   │   │           ├── bluetooth_option.dci
│   │   │           └── bluetooth_redo.dci
│   │   └── qml/
│   │       ├── Adapters.qml
│   │       ├── BlueTooth.qml
│   │       ├── BlueToothDeviceListView.qml
│   │       ├── BlueToothMain.qml
│   │       ├── BluetoothCtl.qml
│   │       ├── MyDevice.qml
│   │       ├── OtherDevice.qml
│   │       ├── bluetooth.dci
│   │       ├── bluetoothNomal.dci
│   │       ├── bluetooth_camera.dci
│   │       ├── bluetooth_clang.dci
│   │       ├── bluetooth_headset.dci
│   │       ├── bluetooth_keyboard.dci
│   │       ├── bluetooth_lan.dci
│   │       ├── bluetooth_laptop.dci
│   │       ├── bluetooth_micphone.dci
│   │       ├── bluetooth_microphone.dci
│   │       ├── bluetooth_mouse.dci
│   │       ├── bluetooth_option.dci
│   │       ├── bluetooth_other.dci
│   │       ├── bluetooth_pad.dci
│   │       ├── bluetooth_pc.dci
│   │       ├── bluetooth_pen.dci
│   │       ├── bluetooth_pheadset.dci
│   │       ├── bluetooth_phone.dci
│   │       ├── bluetooth_print.dci
│   │       ├── bluetooth_redo.dci
│   │       ├── bluetooth_scaner.dci
│   │       ├── bluetooth_scanner.dci
│   │       ├── bluetooth_touchpad.dci
│   │       ├── bluetooth_tv.dci
│   │       ├── bluetooth_vidicon.dci
│   │       ├── metadata.json
│   │       ├── option.dci
│   │       └── redo.dci
│   ├── plugin-commoninfo/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── commoninfointeraction.cpp
│   │   │   ├── commoninfointeraction.h
│   │   │   ├── commoninfomodel.cpp
│   │   │   ├── commoninfomodel.h
│   │   │   ├── commoninfoproxy.cpp
│   │   │   ├── commoninfoproxy.h
│   │   │   ├── commoninfowork.cpp
│   │   │   ├── commoninfowork.h
│   │   │   ├── grubanimationmodel.cpp
│   │   │   ├── grubanimationmodel.h
│   │   │   ├── grubmenulistmodel.cpp
│   │   │   ├── grubmenulistmodel.h
│   │   │   ├── pwqualitymanager.cpp
│   │   │   ├── pwqualitymanager.h
│   │   │   ├── qrc/
│   │   │   │   ├── commoninfo.qrc
│   │   │   │   └── icons/
│   │   │   │       ├── develop_bind.dci
│   │   │   │       ├── inner_shadow.dci
│   │   │   │       ├── selected.dci
│   │   │   │       └── tick.dci
│   │   │   └── utils.h
│   │   └── qml/
│   │       ├── BootPage.qml
│   │       ├── CommonInfoMain.qml
│   │       ├── DevelopModePage.qml
│   │       ├── boot_deepin.dci
│   │       ├── boot_uos.dci
│   │       ├── common_inner_shadow.dci
│   │       ├── common_ok.dci
│   │       ├── common_tick.dci
│   │       ├── develop_bind.dci
│   │       ├── developer.dci
│   │       ├── meau.dci
│   │       └── metadata.json
│   ├── plugin-datetime/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── datetimedbusproxy.cpp
│   │   │   ├── datetimedbusproxy.h
│   │   │   ├── datetimemodel.cpp
│   │   │   ├── datetimemodel.h
│   │   │   ├── datetimeworker.cpp
│   │   │   ├── datetimeworker.h
│   │   │   ├── keyboard/
│   │   │   │   ├── keyboarddbusproxy.cpp
│   │   │   │   ├── keyboarddbusproxy.h
│   │   │   │   ├── keyboardmodel.cpp
│   │   │   │   ├── keyboardmodel.h
│   │   │   │   ├── keyboardwork.cpp
│   │   │   │   ├── keyboardwork.h
│   │   │   │   ├── metadata.cpp
│   │   │   │   ├── metadata.h
│   │   │   │   ├── qrc/
│   │   │   │   │   └── keyboard.qrc
│   │   │   │   ├── shortcutmodel.cpp
│   │   │   │   └── shortcutmodel.h
│   │   │   ├── langregionmodel.cpp
│   │   │   ├── langregionmodel.h
│   │   │   ├── languagelistmodel.cpp
│   │   │   ├── languagelistmodel.h
│   │   │   ├── qrc/
│   │   │   │   ├── datetime.qrc
│   │   │   │   └── images/
│   │   │   │       └── popup_menu.css
│   │   │   ├── regionproxy.cpp
│   │   │   ├── regionproxy.h
│   │   │   ├── timezoneMap/
│   │   │   │   ├── timezone.cpp
│   │   │   │   ├── timezone.h
│   │   │   │   ├── timezone_map_util.cpp
│   │   │   │   └── timezone_map_util.h
│   │   │   ├── zoneinfo.cpp
│   │   │   ├── zoneinfo.h
│   │   │   ├── zoneinfomodel.cpp
│   │   │   └── zoneinfomodel.h
│   │   └── qml/
│   │       ├── ComboLabel.qml
│   │       ├── DateTimeSettingDialog.qml
│   │       ├── Datetime.qml
│   │       ├── DatetimeMain.qml
│   │       ├── LangAndFormat.qml
│   │       ├── LangsChooserDialog.qml
│   │       ├── RegionFormatDialog.qml
│   │       ├── RegionsChooserWindow.qml
│   │       ├── SearchableListViewPopup.qml
│   │       ├── SpinboxEx.qml
│   │       ├── TimeAndDate.qml
│   │       ├── TimezoneClock.qml
│   │       ├── TimezoneDialog.qml
│   │       ├── dcc-delete.dci
│   │       ├── dcc_lang_format.dci
│   │       ├── dcc_time_date.dci
│   │       ├── inactive.dci
│   │       └── metadata.json
│   ├── plugin-deepinid/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── appinfolistmodel.cpp
│   │   │   ├── appinfolistmodel.h
│   │   │   ├── cryptor.cpp
│   │   │   ├── cryptor.h
│   │   │   ├── deepiniddbusproxy.cpp
│   │   │   ├── deepiniddbusproxy.h
│   │   │   ├── deepinidinterface.cpp
│   │   │   ├── deepinidinterface.h
│   │   │   ├── deepinidmodel.cpp
│   │   │   ├── deepinidmodel.h
│   │   │   ├── deepinidworker.cpp
│   │   │   ├── deepinidworker.h
│   │   │   ├── downloadurl.cpp
│   │   │   ├── downloadurl.h
│   │   │   ├── hardwareinfo.cpp
│   │   │   ├── hardwareinfo.h
│   │   │   ├── qrc/
│   │   │   │   ├── deepinid.qrc
│   │   │   │   └── icons/
│   │   │   │       └── dcc_cloud_logo.dci
│   │   │   ├── syncdbusproxy.cpp
│   │   │   ├── syncdbusproxy.h
│   │   │   ├── syncinfolistmodel.cpp
│   │   │   ├── syncinfolistmodel.h
│   │   │   ├── utclouddbusproxy.cpp
│   │   │   ├── utclouddbusproxy.h
│   │   │   ├── utils.cpp
│   │   │   └── utils.h
│   │   └── qml/
│   │       ├── ConFirmDialog.qml
│   │       ├── ConfirmManager.qml
│   │       ├── DeepinIDAccountSecurity.qml
│   │       ├── DeepinIDLogin.qml
│   │       ├── DeepinIDSyncService.qml
│   │       ├── DeepinIDUserInfo.qml
│   │       ├── Deepinid.qml
│   │       ├── DeepinidMain.qml
│   │       ├── RegisterDialog.qml
│   │       ├── VerifyDialog.qml
│   │       ├── dcc-edit.dci
│   │       ├── dcc-systemcset.dci
│   │       └── deepinid.dci
│   ├── plugin-defaultapp/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── category.cpp
│   │   │   ├── category.h
│   │   │   ├── categorymodel.cpp
│   │   │   ├── categorymodel.h
│   │   │   ├── defappmodel.cpp
│   │   │   ├── defappmodel.h
│   │   │   ├── defappworker.cpp
│   │   │   ├── defappworker.h
│   │   │   ├── defappworkerold.cpp
│   │   │   ├── defappworkerold.h
│   │   │   ├── mimedbusproxy.cpp
│   │   │   ├── mimedbusproxy.h
│   │   │   ├── mimedbusproxyold.cpp
│   │   │   └── mimedbusproxyold.h
│   │   └── qml/
│   │       ├── Defaultapp.qml
│   │       ├── DefaultappMain.qml
│   │       ├── DetailItem.qml
│   │       ├── dcc-delete.dci
│   │       ├── defapp_mail.dci
│   │       ├── defapp_music.dci
│   │       ├── defapp_network.dci
│   │       ├── defapp_picture.dci
│   │       ├── defapp_terminal.dci
│   │       ├── defapp_text.dci
│   │       ├── defapp_video.dci
│   │       ├── default_program.dci
│   │       └── metadata.json
│   ├── plugin-device/
│   │   ├── CMakeLists.txt
│   │   └── qml/
│   │       ├── Device.qml
│   │       ├── hardware.dci
│   │       └── metadata.json
│   ├── plugin-display/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── dccscreen.cpp
│   │   │   ├── dccscreen.h
│   │   │   ├── displaymodule.cpp
│   │   │   ├── displaymodule.h
│   │   │   ├── private/
│   │   │   │   ├── concatscreen.cpp
│   │   │   │   ├── concatscreen.h
│   │   │   │   ├── dccscreen_p.h
│   │   │   │   ├── displaydbusproxy.cpp
│   │   │   │   ├── displaydbusproxy.h
│   │   │   │   ├── displaymodel.cpp
│   │   │   │   ├── displaymodel.h
│   │   │   │   ├── displaymodule_p.h
│   │   │   │   ├── displayworker.cpp
│   │   │   │   ├── displayworker.h
│   │   │   │   ├── monitor.cpp
│   │   │   │   ├── monitor.h
│   │   │   │   ├── monitordbusproxy.cpp
│   │   │   │   ├── monitordbusproxy.h
│   │   │   │   └── types/
│   │   │   │       ├── brightnessmap.cpp
│   │   │   │       ├── brightnessmap.h
│   │   │   │       ├── reflectlist.cpp
│   │   │   │       ├── reflectlist.h
│   │   │   │       ├── resolution.cpp
│   │   │   │       ├── resolution.h
│   │   │   │       ├── resolutionlist.cpp
│   │   │   │       ├── resolutionlist.h
│   │   │   │       ├── rotationlist.cpp
│   │   │   │       ├── rotationlist.h
│   │   │   │       ├── screenrect.cpp
│   │   │   │       ├── screenrect.h
│   │   │   │       ├── touchscreeninfolist.cpp
│   │   │   │       ├── touchscreeninfolist.h
│   │   │   │       ├── touchscreeninfolist_v2.cpp
│   │   │   │       ├── touchscreeninfolist_v2.h
│   │   │   │       ├── touchscreenmap.cpp
│   │   │   │       └── touchscreenmap.h
│   │   │   └── qrc/
│   │   │       ├── built-in-icons/
│   │   │       │   ├── dcc_display_bottom.dci
│   │   │       │   ├── dcc_display_left.dci
│   │   │       │   ├── dcc_display_right.dci
│   │   │       │   └── dcc_display_top.dci
│   │   │       └── display.qrc
│   │   ├── qml/
│   │   │   ├── Display.qml
│   │   │   ├── DisplayCenter.dci
│   │   │   ├── DisplayDefault.dci
│   │   │   ├── DisplayFit.dci
│   │   │   ├── DisplayMain.qml
│   │   │   ├── DisplayStretch.dci
│   │   │   ├── ScreenIndicator.qml
│   │   │   ├── ScreenItem.qml
│   │   │   ├── ScreenRecognize.qml
│   │   │   ├── ScreenTab.qml
│   │   │   ├── TimeoutDialog.qml
│   │   │   ├── cool_colour.dci
│   │   │   ├── dcc_brightnesshigh.dci
│   │   │   ├── dcc_brightnesslow.dci
│   │   │   ├── display.dci
│   │   │   ├── home_screen.dci
│   │   │   ├── metadata.json
│   │   │   └── warm_colour.dci
│   │   └── wayland/
│   │       └── libwayqt/
│   │           ├── Output.cpp
│   │           ├── Output.h
│   │           ├── OutputManager.cpp
│   │           ├── OutputManager.h
│   │           ├── Registry.cpp
│   │           ├── Registry.h
│   │           ├── TreeLandOutputManager.cpp
│   │           ├── TreeLandOutputManager.h
│   │           ├── WayQtUtils.cpp
│   │           └── WayQtUtils.h
│   ├── plugin-dock/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── dccdockexport.cpp
│   │   │   ├── dccdockexport.h
│   │   │   ├── dockdbusproxy.cpp
│   │   │   ├── dockdbusproxy.h
│   │   │   ├── dockpluginmodel.cpp
│   │   │   ├── dockpluginmodel.h
│   │   │   ├── dockpluginsortproxymodel.cpp
│   │   │   └── dockpluginsortproxymodel.h
│   │   ├── qml/
│   │   │   ├── CustomComBobox.qml
│   │   │   ├── Dock.qml
│   │   │   ├── DockMain.qml
│   │   │   ├── PluginArea.qml
│   │   │   └── metadata.json
│   │   └── res/
│   │       ├── dcc-dock-plugin.qrc
│   │       └── icons/
│   │           ├── dock.dci
│   │           └── plugin.dci
│   ├── plugin-keyboard/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── keyboardcontroller.cpp
│   │   │   ├── keyboardcontroller.h
│   │   │   ├── keyboarddbusproxy.cpp
│   │   │   ├── keyboarddbusproxy.h
│   │   │   ├── keyboardmodel.cpp
│   │   │   ├── keyboardmodel.h
│   │   │   ├── keyboardwork.cpp
│   │   │   ├── keyboardwork.h
│   │   │   ├── layoutsmodel.cpp
│   │   │   ├── layoutsmodel.h
│   │   │   ├── metadata.cpp
│   │   │   ├── metadata.h
│   │   │   ├── qrc/
│   │   │   │   └── keyboard.qrc
│   │   │   ├── shortcutmodel.cpp
│   │   │   └── shortcutmodel.h
│   │   └── qml/
│   │       ├── Common.qml
│   │       ├── KeySequenceDisplay.qml
│   │       ├── Keyboard.qml
│   │       ├── KeyboardMain.qml
│   │       ├── ShortcutSettingDialog.qml
│   │       ├── Shortcuts.qml
│   │       ├── device_keyboard.dci
│   │       ├── keyboard_add_file.dci
│   │       ├── keyboard_delete.dci
│   │       ├── keyboard_edit.dci
│   │       ├── keyboard_fn.dci
│   │       ├── keyboard_input.dci
│   │       ├── keyboard_layout.dci
│   │       └── metadata.json
│   ├── plugin-mouse/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── gesturedata.cpp
│   │   │   ├── gesturedata.h
│   │   │   ├── gesturemodel.cpp
│   │   │   ├── gesturemodel.h
│   │   │   ├── mousedbusproxy.cpp
│   │   │   ├── mousedbusproxy.h
│   │   │   ├── mousemodel.cpp
│   │   │   ├── mousemodel.h
│   │   │   ├── mouseworker.cpp
│   │   │   ├── mouseworker.h
│   │   │   ├── qrc/
│   │   │   │   └── mouse.qrc
│   │   │   ├── treelandworker.cpp
│   │   │   └── treelandworker.h
│   │   └── qml/
│   │       ├── ClickTest.qml
│   │       ├── Common.qml
│   │       ├── GestureGroup.qml
│   │       ├── Mouse.qml
│   │       ├── MouseMain.qml
│   │       ├── MousePage.qml
│   │       ├── Touchpad.qml
│   │       ├── device_mouse.dci
│   │       ├── metadata.json
│   │       ├── mouse_trackpad_mouse.dci
│   │       ├── mouse_trackpad_trackpad.dci
│   │       ├── tip_warning.dci
│   │       ├── trackpad_gesture_3_click.dci
│   │       ├── trackpad_gesture_3_down.dci
│   │       ├── trackpad_gesture_3_left.dci
│   │       ├── trackpad_gesture_3_right.dci
│   │       ├── trackpad_gesture_3_up.dci
│   │       ├── trackpad_gesture_4_click.dci
│   │       ├── trackpad_gesture_4_down.dci
│   │       ├── trackpad_gesture_4_left.dci
│   │       ├── trackpad_gesture_4_right.dci
│   │       └── trackpad_gesture_4_up.dci
│   ├── plugin-notification/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── appmgr.cpp
│   │   │   ├── appmgr.h
│   │   │   ├── appslistmodel.cpp
│   │   │   ├── appslistmodel.h
│   │   │   ├── appssourcemodel.cpp
│   │   │   ├── appssourcemodel.h
│   │   │   ├── model/
│   │   │   │   ├── appitemmodel.cpp
│   │   │   │   ├── appitemmodel.h
│   │   │   │   ├── sysitemmodel.cpp
│   │   │   │   └── sysitemmodel.h
│   │   │   ├── notificationmodel.cpp
│   │   │   ├── notificationmodel.h
│   │   │   ├── notificationsetting.cpp
│   │   │   ├── notificationsetting.h
│   │   │   ├── qrc/
│   │   │   │   └── notification.qrc
│   │   │   └── xml/
│   │   │       ├── org.desktopspec.ApplicationManager1.Application.xml
│   │   │       └── org.desktopspec.ObjectManager1.xml
│   │   ├── qml/
│   │   │   ├── ImageCheckBox.qml
│   │   │   ├── Notification.qml
│   │   │   ├── NotificationMain.qml
│   │   │   ├── TimeRange.qml
│   │   │   ├── dcc_notification.dci
│   │   │   └── metadata.json
│   │   └── types/
│   │       └── am.h
│   ├── plugin-personalization/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── imagehelper.cpp
│   │   │   ├── imagehelper.h
│   │   │   ├── keyfile.cpp
│   │   │   ├── keyfile.h
│   │   │   ├── model/
│   │   │   │   ├── fontmodel.cpp
│   │   │   │   ├── fontmodel.h
│   │   │   │   ├── fontsizemodel.cpp
│   │   │   │   ├── fontsizemodel.h
│   │   │   │   ├── thememodel.cpp
│   │   │   │   ├── thememodel.h
│   │   │   │   ├── wallpapermodel.cpp
│   │   │   │   └── wallpapermodel.h
│   │   │   ├── personalizationdbusproxy.cpp
│   │   │   ├── personalizationdbusproxy.h
│   │   │   ├── personalizationexport.hpp
│   │   │   ├── personalizationinterface.cpp
│   │   │   ├── personalizationinterface.h
│   │   │   ├── personalizationmodel.cpp
│   │   │   ├── personalizationmodel.h
│   │   │   ├── personalizationworker.cpp
│   │   │   ├── personalizationworker.h
│   │   │   ├── qrc/
│   │   │   │   ├── icons/
│   │   │   │   │   ├── appearance.dci
│   │   │   │   │   ├── arrow_left.dci
│   │   │   │   │   ├── arrow_right.dci
│   │   │   │   │   ├── balance.dci
│   │   │   │   │   ├── best_vision.dci
│   │   │   │   │   ├── close.dci
│   │   │   │   │   ├── color_extractor.dci
│   │   │   │   │   ├── dcc_wallpaper.dci
│   │   │   │   │   ├── font_size.dci
│   │   │   │   │   ├── icon_cursor.dci
│   │   │   │   │   ├── optimum_performance.dci
│   │   │   │   │   ├── screensaver.dci
│   │   │   │   │   ├── taskbar.dci
│   │   │   │   │   ├── theme_icon.dci
│   │   │   │   │   ├── topic_cursor.dci
│   │   │   │   │   ├── wallpaper_add.dci
│   │   │   │   │   ├── wallpaper_add_bg.dci
│   │   │   │   │   ├── wallpaper_addcolor.dci
│   │   │   │   │   └── window_effect.dci
│   │   │   │   └── personalization.qrc
│   │   │   ├── screensaverprovider.cpp
│   │   │   ├── screensaverprovider.h
│   │   │   ├── treelandworker.cpp
│   │   │   ├── treelandworker.h
│   │   │   ├── utils.hpp
│   │   │   ├── wallpaperprovider.cpp
│   │   │   ├── wallpaperprovider.h
│   │   │   ├── x11worker.cpp
│   │   │   └── x11worker.h
│   │   └── qml/
│   │       ├── ColorAndIcons.qml
│   │       ├── CustomComboBox.qml
│   │       ├── DccColorDialog.qml
│   │       ├── DccSaturationLightnessPicker.qml
│   │       ├── FontCombobox.qml
│   │       ├── FontSizePage.qml
│   │       ├── IconThemeGridView.qml
│   │       ├── InterfaceEffectListview.qml
│   │       ├── Personalization.qml
│   │       ├── PersonalizationMain.qml
│   │       ├── ScreenIndicator.qml
│   │       ├── ScreenSaverPage.qml
│   │       ├── ScreenTab.qml
│   │       ├── ThemeSelectView.qml
│   │       ├── WallpaperPage.qml
│   │       ├── WallpaperSelectView.qml
│   │       ├── WindowEffectPage.qml
│   │       ├── metadata.json
│   │       └── personalization.dci
│   ├── plugin-power/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── powerdbusproxy.cpp
│   │   │   ├── powerdbusproxy.h
│   │   │   ├── powerinterface.cpp
│   │   │   ├── powerinterface.h
│   │   │   ├── powermodel.cpp
│   │   │   ├── powermodel.h
│   │   │   ├── poweroperatormodel.cpp
│   │   │   ├── poweroperatormodel.h
│   │   │   ├── powerworker.cpp
│   │   │   ├── powerworker.h
│   │   │   ├── qrc/
│   │   │   │   ├── icons/
│   │   │   │   │   ├── balance_performance.dci
│   │   │   │   │   ├── balanced.dci
│   │   │   │   │   ├── general.dci
│   │   │   │   │   ├── high_performance.dci
│   │   │   │   │   ├── on_battery.dci
│   │   │   │   │   ├── plugged_in.dci
│   │   │   │   │   └── power_performance.dci
│   │   │   │   └── power.qrc
│   │   │   └── utils.h
│   │   └── qml/
│   │       ├── BatteryPage.qml
│   │       ├── CustomComboBox.qml
│   │       ├── CustomTipsSlider.qml
│   │       ├── GeneralPage.qml
│   │       ├── Power.qml
│   │       ├── PowerMain.qml
│   │       ├── PowerPage.qml
│   │       ├── PowerPlansListview.qml
│   │       ├── ScheduledShutdownDialog.qml
│   │       ├── metadata.json
│   │       └── power.dci
│   ├── plugin-privacy/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── applicationitem.cpp
│   │   │   ├── applicationitem.h
│   │   │   ├── dde-apps.h
│   │   │   ├── privacysecuritydataproxy.cpp
│   │   │   ├── privacysecuritydataproxy.h
│   │   │   ├── privacysecurityexport.cpp
│   │   │   ├── privacysecurityexport.h
│   │   │   ├── privacysecuritymodel.cpp
│   │   │   ├── privacysecuritymodel.h
│   │   │   ├── privacysecurityworker.cpp
│   │   │   ├── privacysecurityworker.h
│   │   │   └── qrc/
│   │   │       ├── icons/
│   │   │       │   ├── arrow-down.dci
│   │   │       │   ├── security_camera.dci
│   │   │       │   └── security_folder.dci
│   │   │       └── privacy.qrc
│   │   └── qml/
│   │       ├── Camera.qml
│   │       ├── FileAndFolder.qml
│   │       ├── Privacy.qml
│   │       ├── PrivacyMain.qml
│   │       ├── metadata.json
│   │       └── privacy.dci
│   ├── plugin-sound/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── audioport.h
│   │   │   ├── audioservermodel.cpp
│   │   │   ├── audioservermodel.h
│   │   │   ├── port.cpp
│   │   │   ├── port.h
│   │   │   ├── qrc/
│   │   │   │   ├── icons/
│   │   │   │   │   ├── big_volume.dci
│   │   │   │   │   ├── dcc_volume1.dci
│   │   │   │   │   ├── dcc_volume2.dci
│   │   │   │   │   ├── dcc_volume3.dci
│   │   │   │   │   ├── play_back.dci
│   │   │   │   │   ├── small_volume.dci
│   │   │   │   │   └── sound_off.dci
│   │   │   │   └── sound.qrc
│   │   │   ├── soundDeviceData.cpp
│   │   │   ├── soundDeviceData.h
│   │   │   ├── soundDeviceModel.cpp
│   │   │   ├── soundDeviceModel.h
│   │   │   ├── soundEffectsData.cpp
│   │   │   ├── soundEffectsData.h
│   │   │   ├── soundInteraction.cpp
│   │   │   ├── soundInteraction.h
│   │   │   ├── sounddbusproxy.cpp
│   │   │   ├── sounddbusproxy.h
│   │   │   ├── soundeffectsmodel.cpp
│   │   │   ├── soundeffectsmodel.h
│   │   │   ├── soundmodel.cpp
│   │   │   ├── soundmodel.h
│   │   │   ├── soundworker.cpp
│   │   │   └── soundworker.h
│   │   └── qml/
│   │       ├── DeviceListView.qml
│   │       ├── MicrophonePage.qml
│   │       ├── Sound.qml
│   │       ├── SoundDevicemanagesPage.qml
│   │       ├── SoundEffectsPage.qml
│   │       ├── SoundMain.qml
│   │       ├── SpeakerPage.qml
│   │       ├── audio.dci
│   │       ├── audio_framework.dci
│   │       ├── big_volume.dci
│   │       ├── equipment_management.dci
│   │       ├── metadata.json
│   │       ├── play_back.dci
│   │       ├── small_volume.dci
│   │       ├── sound_off.dci
│   │       └── system_sound.dci
│   ├── plugin-system/
│   │   ├── CMakeLists.txt
│   │   └── qml/
│   │       ├── System.qml
│   │       ├── commoninfo.dci
│   │       └── metadata.json
│   ├── plugin-systeminfo/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── qrc/
│   │   │   │   ├── gpl/
│   │   │   │   │   ├── gpl-3.0-en_US-body.txt
│   │   │   │   │   ├── gpl-3.0-en_US-title.txt
│   │   │   │   │   ├── gpl-3.0-zh_CN-body.txt
│   │   │   │   │   ├── gpl-3.0-zh_CN-title.txt
│   │   │   │   │   ├── gpl-3.0-zh_TW-body.txt
│   │   │   │   │   └── gpl-3.0-zh_TW-title.txt
│   │   │   │   ├── icons/
│   │   │   │   │   └── edit.dci
│   │   │   │   ├── license/
│   │   │   │   │   ├── deepin-end-user-license-agreement_community_en_US.txt
│   │   │   │   │   ├── deepin-end-user-license-agreement_community_zh_CN.txt
│   │   │   │   │   ├── deepin-end-user-license-agreement_developer_community_en_US.txt
│   │   │   │   │   ├── deepin-end-user-license-agreement_developer_community_zh_CN.txt
│   │   │   │   │   ├── deepin-end-user-license-agreement_developer_community_zh_HK.txt
│   │   │   │   │   ├── deepin-end-user-license-agreement_developer_community_zh_TW.txt
│   │   │   │   │   ├── deepin-end-user-license-agreement_en_US.txt
│   │   │   │   │   └── deepin-end-user-license-agreement_zh_CN.txt
│   │   │   │   └── systeminfo.qrc
│   │   │   ├── systeminfodbusproxy.cpp
│   │   │   ├── systeminfodbusproxy.h
│   │   │   ├── systeminfointeraction.cpp
│   │   │   ├── systeminfointeraction.h
│   │   │   ├── systeminfomodel.cpp
│   │   │   ├── systeminfomodel.h
│   │   │   ├── systeminfowork.cpp
│   │   │   ├── systeminfowork.h
│   │   │   └── utils.h
│   │   └── qml/
│   │       ├── NativeInfoPage.qml
│   │       ├── PrivacyPolicyPage.qml
│   │       ├── SystemInfo.qml
│   │       ├── SystemInfoMain.qml
│   │       ├── UserExperienceProgramPage.qml
│   │       ├── UserLicensePage.qml
│   │       ├── VersionProtocolPage.qml
│   │       ├── about.dci
│   │       ├── dcc_systemInfo_edit.dci
│   │       ├── metadata.json
│   │       ├── privacy_policy.dci
│   │       ├── software_declaration.dci
│   │       ├── user_experience_plan.dci
│   │       └── user_license_agreement.dci
│   ├── plugin-touchscreen/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── monitordbusproxy.cpp
│   │   │   ├── monitordbusproxy.h
│   │   │   ├── qrc/
│   │   │   │   └── touchscreen.qrc
│   │   │   ├── touchscreenmatchmodel.cpp
│   │   │   ├── touchscreenmatchmodel.h
│   │   │   ├── touchscreenmodel.cpp
│   │   │   ├── touchscreenmodel.h
│   │   │   ├── touchscreenmodel_p.h
│   │   │   ├── touchscreenproxy.cpp
│   │   │   ├── touchscreenproxy.h
│   │   │   └── types/
│   │   │       ├── touchscreeninfolist_v2.cpp
│   │   │       ├── touchscreeninfolist_v2.h
│   │   │       ├── touchscreenmap.cpp
│   │   │       └── touchscreenmap.h
│   │   └── qml/
│   │       ├── TouchScreen.qml
│   │       ├── Touchscreen.qml
│   │       ├── TouchscreenMain.qml
│   │       ├── device_touchscreen.dci
│   │       └── metadata.json
│   ├── plugin-wacom/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── qrc/
│   │   │   │   └── wacom.qrc
│   │   │   ├── wacomdbusproxy.cpp
│   │   │   ├── wacomdbusproxy.h
│   │   │   ├── wacommodel.cpp
│   │   │   ├── wacommodel.h
│   │   │   └── wacommodelprivate_p.h
│   │   └── qml/
│   │       ├── Wacom.qml
│   │       ├── WacomMain.qml
│   │       └── metadata.json
│   └── shared-utils/
│       ├── CMakeLists.txt
│       ├── dcclocale.cpp
│       └── dcclocale.h
├── tests/
│   └── CMakeLists.txt
├── toolGenerate/
│   ├── dconfig2cpp/
│   │   ├── org_deepin_dde_control-center.hpp
│   │   ├── org_deepin_dde_control-center_accounts.hpp
│   │   ├── org_deepin_dde_control-center_datetime.hpp
│   │   ├── org_deepin_dde_control-center_display.hpp
│   │   ├── org_deepin_dde_control-center_personalization.hpp
│   │   ├── org_deepin_dde_control-center_power.hpp
│   │   ├── org_deepin_dde_control-center_update.hpp
│   │   └── org_deepin_region-format.hpp
│   └── qdbusxml2cpp/
│       ├── org.deepin.dde.controlcenter.metainfoAdaptor.cpp
│       ├── org.deepin.dde.controlcenter.metainfoAdaptor.h
│       ├── org.desktopspec.ApplicationManager1.ApplicationAdaptor.cpp
│       ├── org.desktopspec.ApplicationManager1.ApplicationAdaptor.h
│       ├── org.desktopspec.ObjectManager1Adaptor.cpp
│       ├── org.desktopspec.ObjectManager1Adaptor.h
│       ├── treeland-output-managementAdaptor.cpp
│       ├── treeland-output-managementAdaptor.h
│       ├── wlr-output-management-unstable-v1Adaptor.cpp
│       └── wlr-output-management-unstable-v1Adaptor.h
└── translations/
    ├── dde-control-center_ady.ts
    ├── dde-control-center_af.ts
    ├── dde-control-center_af_ZA.ts
    ├── dde-control-center_ak.ts
    ├── dde-control-center_am.ts
    ├── dde-control-center_am_ET.ts
    ├── dde-control-center_ar.ts
    ├── dde-control-center_ar_EG.ts
    ├── dde-control-center_ast.ts
    ├── dde-control-center_az.ts
    ├── dde-control-center_bg.ts
    ├── dde-control-center_bn.ts
    ├── dde-control-center_bo.ts
    ├── dde-control-center_bqi.ts
    ├── dde-control-center_br.ts
    ├── dde-control-center_ca.ts
    ├── dde-control-center_cgg.ts
    ├── dde-control-center_cs.ts
    ├── dde-control-center_da.ts
    ├── dde-control-center_de.ts
    ├── dde-control-center_el.ts
    ├── dde-control-center_el_GR.ts
    ├── dde-control-center_en.ts
    ├── dde-control-center_en_AU.ts
    ├── dde-control-center_en_GB.ts
    ├── dde-control-center_en_NO.ts
    ├── dde-control-center_en_US.ts
    ├── dde-control-center_eo.ts
    ├── dde-control-center_es.ts
    ├── dde-control-center_et.ts
    ├── dde-control-center_eu.ts
    ├── dde-control-center_fa.ts
    ├── dde-control-center_fi.ts
    ├── dde-control-center_fil.ts
    ├── dde-control-center_fr.ts
    ├── dde-control-center_gl.ts
    ├── dde-control-center_gl_ES.ts
    ├── dde-control-center_he.ts
    ├── dde-control-center_hi_IN.ts
    ├── dde-control-center_hr.ts
    ├── dde-control-center_hu.ts
    ├── dde-control-center_hy.ts
    ├── dde-control-center_id.ts
    ├── dde-control-center_id_ID.ts
    ├── dde-control-center_it.ts
    ├── dde-control-center_ja.ts
    ├── dde-control-center_ka.ts
    ├── dde-control-center_kab.ts
    ├── dde-control-center_kk.ts
    ├── dde-control-center_km_KH.ts
    ├── dde-control-center_kn_IN.ts
    ├── dde-control-center_ko.ts
    ├── dde-control-center_krl.ts
    ├── dde-control-center_ku.ts
    ├── dde-control-center_ku_IQ.ts
    ├── dde-control-center_ky.ts
    ├── dde-control-center_ky@Arab.ts
    ├── dde-control-center_la.ts
    ├── dde-control-center_lo.ts
    ├── dde-control-center_lt.ts
    ├── dde-control-center_lv.ts
    ├── dde-control-center_ml.ts
    ├── dde-control-center_mn.ts
    ├── dde-control-center_mr.ts
    ├── dde-control-center_ms.ts
    ├── dde-control-center_nb.ts
    ├── dde-control-center_nb_NO.ts
    ├── dde-control-center_ne.ts
    ├── dde-control-center_nl.ts
    ├── dde-control-center_pa.ts
    ├── dde-control-center_pam.ts
    ├── dde-control-center_pl.ts
    ├── dde-control-center_ps.ts
    ├── dde-control-center_pt.ts
    ├── dde-control-center_pt_BR.ts
    ├── dde-control-center_qu.ts
    ├── dde-control-center_ro.ts
    ├── dde-control-center_ru.ts
    ├── dde-control-center_ru_UA.ts
    ├── dde-control-center_sc.ts
    ├── dde-control-center_si.ts
    ├── dde-control-center_sk.ts
    ├── dde-control-center_sl.ts
    ├── dde-control-center_sq.ts
    ├── dde-control-center_sr.ts
    ├── dde-control-center_sv.ts
    ├── dde-control-center_sv_SE.ts
    ├── dde-control-center_sw.ts
    ├── dde-control-center_ta.ts
    ├── dde-control-center_te.ts
    ├── dde-control-center_th.ts
    ├── dde-control-center_tr.ts
    ├── dde-control-center_tzm.ts
    ├── dde-control-center_ug.ts
    ├── dde-control-center_uk.ts
    ├── dde-control-center_ur.ts
    ├── dde-control-center_uz.ts
    ├── dde-control-center_vi.ts
    ├── dde-control-center_zh_CN.ts
    ├── dde-control-center_zh_HK.ts
    ├── dde-control-center_zh_TW.ts
    └── desktop/
        ├── desktop.ts
        ├── desktop_ady.ts
        ├── desktop_af.ts
        ├── desktop_af_ZA.ts
        ├── desktop_ak.ts
        ├── desktop_am.ts
        ├── desktop_am_ET.ts
        ├── desktop_ar.ts
        ├── desktop_ar_EG.ts
        ├── desktop_ast.ts
        ├── desktop_az.ts
        ├── desktop_bg.ts
        ├── desktop_bn.ts
        ├── desktop_bo.ts
        ├── desktop_bqi.ts
        ├── desktop_br.ts
        ├── desktop_ca.ts
        ├── desktop_cgg.ts
        ├── desktop_cs.ts
        ├── desktop_da.ts
        ├── desktop_de.ts
        ├── desktop_el.ts
        ├── desktop_el_GR.ts
        ├── desktop_en.ts
        ├── desktop_en_AU.ts
        ├── desktop_en_GB.ts
        ├── desktop_en_NO.ts
        ├── desktop_en_US.ts
        ├── desktop_eo.ts
        ├── desktop_es.ts
        ├── desktop_et.ts
        ├── desktop_eu.ts
        ├── desktop_fa.ts
        ├── desktop_fi.ts
        ├── desktop_fil.ts
        ├── desktop_fr.ts
        ├── desktop_gl.ts
        ├── desktop_gl_ES.ts
        ├── desktop_he.ts
        ├── desktop_hi_IN.ts
        ├── desktop_hr.ts
        ├── desktop_hu.ts
        ├── desktop_hy.ts
        ├── desktop_id.ts
        ├── desktop_id_ID.ts
        ├── desktop_it.ts
        ├── desktop_ja.ts
        ├── desktop_ka.ts
        ├── desktop_kab.ts
        ├── desktop_kk.ts
        ├── desktop_km_KH.ts
        ├── desktop_kn_IN.ts
        ├── desktop_ko.ts
        ├── desktop_ku.ts
        ├── desktop_ku_IQ.ts
        ├── desktop_ky.ts
        ├── desktop_ky@Arab.ts
        ├── desktop_la.ts
        ├── desktop_lo.ts
        ├── desktop_lt.ts
        ├── desktop_lv.ts
        ├── desktop_ml.ts
        ├── desktop_mn.ts
        ├── desktop_mr.ts
        ├── desktop_ms.ts
        ├── desktop_nb.ts
        ├── desktop_ne.ts
        ├── desktop_nl.ts
        ├── desktop_pa.ts
        ├── desktop_pam.ts
        ├── desktop_pl.ts
        ├── desktop_ps.ts
        ├── desktop_pt.ts
        ├── desktop_pt_BR.ts
        ├── desktop_ro.ts
        ├── desktop_ru.ts
        ├── desktop_ru_UA.ts
        ├── desktop_sc.ts
        ├── desktop_si.ts
        ├── desktop_sk.ts
        ├── desktop_sl.ts
        ├── desktop_sq.ts
        ├── desktop_sr.ts
        ├── desktop_sv.ts
        ├── desktop_sv_SE.ts
        ├── desktop_sw.ts
        ├── desktop_ta.ts
        ├── desktop_te.ts
        ├── desktop_th.ts
        ├── desktop_tr.ts
        ├── desktop_tzm.ts
        ├── desktop_ug.ts
        ├── desktop_uk.ts
        ├── desktop_ur.ts
        ├── desktop_uz.ts
        ├── desktop_vi.ts
        ├── desktop_zh_CN.ts
        ├── desktop_zh_HK.ts
        └── desktop_zh_TW.ts

================================================
FILE CONTENTS
================================================

================================================
FILE: .clang-format
================================================
# This is the clang-format style used by qt releated deepin projects.
#
# This file is modified from https://github.com/qt/qt5/blob/5b22f8ec2e4fbb58e362b709ee82f2dbd8afdfd3/_clang-format
# based on the rules from https://github.com/linuxdeepin/deepin-styleguide,
# https://wiki.qt.io/Qt_Coding_Style and https://wiki.qt.io/Coding_Conventions
#
# This is for clang-format >= 14.0.0

---
# Webkit style was loosely based on the Qt style
BasedOnStyle: WebKit

# deepin project might not use same standard.
Standard: Auto

# Column width is limited to 100 in accordance with Qt Coding Style.
# https://wiki.qt.io/Qt_Coding_Style
# Note that this may be changed at some point in the future.
ColumnLimit: 100
# How much weight do extra characters after the line length limit have.
# PenaltyExcessCharacter: 4

# Disable reflow of some specific comments
# qdoc comments: indentation rules are different.
# Translation comments and SPDX license identifiers are also excluded.
CommentPragmas: "^!|^:|^ SPDX-License-Identifier:"

PointerAlignment: Right

# We use template< without space.
SpaceAfterTemplateKeyword: false

# We want to break before the operators, but not before a '='.
BreakBeforeBinaryOperators: NonAssignment

# Braces are usually attached, but not after functions or class declarations.
BreakBeforeBraces: Custom
BraceWrapping:
  AfterClass: true
  AfterControlStatement: false
  AfterEnum: false
  AfterFunction: true
  AfterNamespace: false
  AfterObjCDeclaration: false
  AfterStruct: true
  AfterUnion: false
  BeforeCatch: false
  BeforeElse: false
  IndentBraces: false

# Indent initializers by 4 spaces
ConstructorInitializerIndentWidth: 4

# Indent width for line continuations.
ContinuationIndentWidth: 8

# No indentation for namespaces.
NamespaceIndentation: None

# Allow indentation for preprocessing directives (if/ifdef/endif). https://reviews.llvm.org/rL312125
IndentPPDirectives: AfterHash
# We only indent with 2 spaces for preprocessor directives
PPIndentWidth: 2

# Horizontally align arguments after an open bracket.
# The coding style does not specify the following, but this is what gives
# results closest to the existing code.
AlignAfterOpenBracket: true
AlwaysBreakTemplateDeclarations: true

# Ideally we should also allow less short function in a single line, but
# clang-format does not handle that.
AllowShortFunctionsOnASingleLine: Inline

# As clang-format 13 can regroup includes we enable this feature.
# basically according to https://wiki.qt.io/Coding_Conventions#Including_headers
# and https://github.com/linuxdeepin/deepin-styleguide
IncludeBlocks: Regroup
IncludeCategories:
  # gtest/gmock's h files
  - Regex: '^<g(test|mock)/'
    Priority: 1
    CaseSensitive: true
  # Your project's h files.
  - Regex: '^"'
    Priority: 2
  # DTK libraries' h files
  - Regex: '^<D[A-Z]'
    Priority: 4
    CaseSensitive: true
  # QT libraries' h files
  - Regex: '^<(Q[A-Z]|Qt)'
    Priority: 5
    CaseSensitive: true
  # C++ system headers (as of C++23).
  - Regex: '^<(algorithm|any|array|atomic|barrier|bit|bitset|cassert|ccomplex|cctype|cerrno|cfenv|cfloat|charconv|chrono|cinttypes|ciso646|climits|clocale|cmath|codecvt|compare|complex|concepts|condition_variable|coroutine|csetjmp|csignal|cstdalign|cstdarg|cstdbool|cstddef|cstdint|cstdio|cstdlib|cstring|ctgmath|ctime|cuchar|cwchar|cwctype|deque|exception|execution|expected|filesystem|flat_map|flat_set|format|forward_list|fstream|functional|future|generator|initializer_list|iomanip|ios|iosfwd|iostream|istream|iterator|latch|limits|list|locale|map|mdspan|memory|memory_resource|mutex|new|numbers|numeric|optional|ostream|print|queue|random|ranges|ratio|regex|scoped_allocator|semaphore|set|shared_mutex|source_location|span|spanstream|sstream|stack|stacktrace|stdexcept|stdfloat|stop_token|streambuf|string|string_view|strstream|syncstream|system_error|thread|tuple|type_traits|typeindex|typeinfo|unordered_map|unordered_set|utility|valarray|variant|vector|version)>$'
    Priority: 6
    CaseSensitive: true
  # C system headers.
  - Regex: '^<(aio|arpa/inet|assert|complex|cpio|ctype|curses|dirent|dlfcn|errno|fcntl|fenv|float|fmtmsg|fnmatch|ftw|glob|grp|iconv|inttypes|iso646|langinfo|libgen|limits|locale|math|monetary|mqueue|ndbm|netdb|net/if|netinet/in|netinet/tcp|nl_types|poll|pthread|pwd|regex|sched|search|semaphore|setjmp|signal|spawn|stdalign|stdarg|stdatomic|stdbool|stddef|stdint|stdio|stdlib|stdnoreturn|string|strings|stropts|sys/ipc|syslog|sys/mman|sys/msg|sys/resource|sys/select|sys/sem|sys/shm|sys/socket|sys/stat|sys/statvfs|sys/time|sys/times|sys/types|sys/uio|sys/un|sys/utsname|sys/wait|tar|term|termios|tgmath|threads|time|trace|uchar|ulimit|uncntrl|unistd|utime|utmpx|wchar|wctype|wordexp)\.h>$'
    Priority: 7
    CaseSensitive: true
  # other libraries' h files.
  - Regex: '^<'
    Priority: 3
IncludeIsMainRegex: '((T|t)est)?$'
SortIncludes: true

# macros for which the opening brace stays attached.
ForEachMacros:   [ foreach, Q_FOREACH, BOOST_FOREACH, forever, Q_FOREVER, QBENCHMARK, QBENCHMARK_ONCE ]

# Break constructor initializers before the colon and after the commas.
BreakConstructorInitializers: BeforeComma

# Add "// namespace <namespace>" comments on closing brace for a namespace
# Ignored for namespaces that qualify as a short namespace,
# see 'ShortNamespaceLines'
FixNamespaceComments: true

# Definition of how short a short namespace is, default 1
ShortNamespaceLines: 1

# When escaping newlines in a macro attach the '\' as far left as possible, e.g.
##define a     \
#   something; \
#   other;     \
#   thelastlineislong;
AlignEscapedNewlines: Left

# Avoids the addition of a space between an identifier and the
# initializer list in list-initialization.
SpaceBeforeCpp11BracedList: false

AllowAllArgumentsOnNextLine: false
AllowShortLambdasOnASingleLine: Empty
AlignTrailingComments: true
BinPackArguments: false
BinPackParameters: false
# EmptyLineAfterAccessModifier: Never
PackConstructorInitializers: Never
PenaltyReturnTypeOnItsOwnLine: 100
SeparateDefinitionBlocks: Always
WhitespaceSensitiveMacros:
  - Q_PROPERTY
  - Q_INTERFACES


================================================
FILE: .editorconfig
================================================
root = true

[*]
charset = utf-8
end_of_line = lf

[CMakeLists.txt]
indent_style = space
indent_size = 4

[*.{cpp,h,ts}]
indent_style = space
indent_size = 4


================================================
FILE: .github/copilot-instructions.md
================================================
# DDE Control Center - AI Coding Agent Instructions

## Project Overview
DDE Control Center (深度控制中心) v6.0+ is a Qt6/QML-based desktop control panel for Deepin Desktop Environment. It uses a **plugin-based architecture** where the core framework provides infrastructure and all features are implemented as plugins.

## Critical Architecture Concepts

### Plugin System (V25 Architecture)
- **Two-phase loading**: Plugins load in stages to optimize startup
  1. `{plugin}.qml` - Metadata/menu entry (fast, synchronous)
  2. `{plugin}.so` - C++ backend (threaded, async)
  3. `{plugin}Main.qml` - Full UI (loaded on-demand)
- **Plugin location**: `${CMAKE_INSTALL_LIBDIR}/dde-control-center/plugins_v1.0/{plugin-name}/`
- **Factory pattern**: Use `DCC_FACTORY_CLASS(YourClass)` macro + `#include "yourclass.moc"` to register plugins
- **Thread safety**: Plugin C++ objects created in worker threads are moved to main thread - all child objects MUST be in the same tree hierarchy or they won't be moved

### Core Framework Classes
- **DccObject**: Tree-node base class for all UI elements. Key properties:
  - `name`: Unique ID (no `/` characters, used in URL paths)
  - `parentName`: Parent's URL path (can be hierarchical like `"aa/bb/cc"`)
  - `weight`: Display order (0-65535, use increments of 10)
  - `pageType`: Determines rendering (Menu, Editor, Item)
- **DccApp**: Global singleton accessible from QML, provides `root`, `addObject()`, `removeObject()`, `showPage()` 
- **DccFactory**: Interface for plugin registration (see [include/dccfactory.h](include/dccfactory.h))

### QML-C++ Integration
- C++ exports accessed via `dccData` in QML (automatically injected)
- Use `Q_PROPERTY`, `Q_INVOKABLE`, or slots for QML exposure
- Example: `dccData.calc(a, b)` calls C++ method from QML

## Build & Development Workflows

### Standard Build
```bash
cmake -B build
cmake --build build
# Debug single plugin without installing:
./build/bin/dde-control-center --spec ./build/lib/plugins_v1.0/{plugin-name}
```

### Build Flags
- `BUILD_TESTING=ON`: Enable unit tests (uses GTest)
- `ENABLE_ASAN=OFF`: Address sanitizer (disabled by default due to plugin compat issues)
- `DISABLE_*` options: Conditionally disable plugins (see [CMakeLists.txt](CMakeLists.txt#L40-L46))

### Plugin Development Pattern
See complete example in [examples/plugin-example](examples/plugin-example) and [docs/v25-dcc-interface.zh_CN.md](docs/v25-dcc-interface.zh_CN.md)

**CMakeLists.txt template**:
```cmake
find_package(DdeControlCenter REQUIRED)
add_library(myplugin MODULE src/myplugin.cpp)
target_link_libraries(myplugin PRIVATE Dde::Control-Center Qt6::Core)
dcc_install_plugin(NAME myplugin TARGET myplugin)
dcc_handle_plugin_translation(NAME myplugin) # auto-handles i18n
```

**Plugin registration** ([src/plugin-*/operation/*.cpp](src/plugin-deepinid/operation/deepinidinterface.cpp#L25-L26)):
```cpp
#include "dccfactory.h"
DCC_FACTORY_CLASS(YourPluginClass)
#include "yourpluginclass.moc"
```

## Project Conventions

### File Naming
- Plugins: `plugin-{name}/` directories under [src/](src/)
- QML entry: `{name}.qml` (metadata only)
- QML main: `{name}Main.qml` (full UI implementation) - **renamed from `main.qml` in v6.0.77 to avoid translation conflicts**
- C++ sources: `operation/` or `src/` subdirectories

### Configuration Management
- **DConfig** for settings: `org.deepin.dde.control-center` ([misc/configs/](misc/configs/))
- Check visibility: `dde-dconfig get org.deepin.dde.control-center -r org.deepin.dde.control-center hideModule`
- **DccDBusInterface** QML type for DBus interaction (see [docs/v25-dcc-interface.zh_CN.md](docs/v25-dcc-interface.zh_CN.md#L168-L186))

### Qt Version
- **Qt6 only** - mixing Qt5 libraries will cause crashes
- Uses `Qt6::`, `Dtk6::` namespaces
- CMake: `set(QT_NS Qt6)` and `set(DTK_NS Dtk6)`

## Testing
- Framework: GTest for C++ unit tests
- Location: [tests/](tests/) and [dde-grand-search/tests/](dde-grand-search/tests/)
- Run: Enable `BUILD_TESTING=ON`, tests built to `build/bin/`

## Common Pitfalls
1. **ASAN incompatibility**: Don't use ASAN in plugins if control center wasn't built with it
2. **Thread safety**: Plugin constructor objects must be children of the exported class to be moved to main thread
3. **Name conflicts**: Plugin `name` property must be unique - used for URLs and configuration
4. **QML translation**: Use `qsTr()` in QML, handled by `dcc_handle_plugin_translation()`

## Key Files for Reference
- [include/dccobject.h](include/dccobject.h) - Core object properties/signals
- [include/dccapp.h](include/dccapp.h) - Global API
- [include/dccfactory.h](include/dccfactory.h) - Plugin interface + registration macro
- [misc/DdeControlCenterPluginMacros.cmake](misc/DdeControlCenterPluginMacros.cmake) - CMake helpers
- [docs/v25-dcc-interface.zh_CN.md](docs/v25-dcc-interface.zh_CN.md) - Complete API reference (Chinese)


================================================
FILE: .github/workflows/backup-to-gitlab.yml
================================================
name: backup to gitlab
on: [push]

concurrency:
  group: ${{ github.workflow }}
  cancel-in-progress: true

jobs:
  backup-to-gitlabwh:
    uses: linuxdeepin/.github/.github/workflows/backup-to-gitlabwh.yml@master
    secrets: inherit

  backup-to-gitee:
    uses: linuxdeepin/.github/.github/workflows/backup-to-gitee.yml@master
    secrets: inherit


================================================
FILE: .github/workflows/call-auto-tag.yml
================================================
name: auto tag

on:
  pull_request_target:
    types: [opened, synchronize, closed]
    paths:
      - "debian/changelog"

concurrency:
  group: ${{ github.workflow }}-pull/${{ github.event.number }}
  cancel-in-progress: true

jobs:
  auto_tag:
    uses: linuxdeepin/.github/.github/workflows/auto-tag.yml@master
    secrets: inherit


================================================
FILE: .github/workflows/call-build-distribution.yml
================================================
name: Call build-distribution
on:
  push:
    paths-ignore:
      - ".github/workflows/**"
  pull_request_target:
    paths-ignore:
      - ".github/workflows/**"

jobs:
  check_job:
    uses: linuxdeepin/.github/.github/workflows/build-distribution.yml@master
    secrets: inherit


================================================
FILE: .github/workflows/call-chatOps.yml
================================================
name: chatOps
on:
  issue_comment:
    types: [created]

jobs:
  chatopt:
    uses: linuxdeepin/.github/.github/workflows/chatOps.yml@master
    secrets: inherit


================================================
FILE: .github/workflows/call-clacheck.yml
================================================
name: Call CLA check
on:
  issue_comment:
    types: [created]
  pull_request_target:
    types: [opened, closed, synchronize]

concurrency:
  group: ${{ github.workflow }}-pull/${{ github.event.number }}
  cancel-in-progress: true

jobs:
  clacheck:
    uses: linuxdeepin/.github/.github/workflows/cla-check.yml@master
    secrets: inherit


================================================
FILE: .github/workflows/call-commitlint.yml
================================================
name: Call commitlint
on:
  pull_request_target:

concurrency:
  group: ${{ github.workflow }}-pull/${{ github.event.number }}
  cancel-in-progress: true

jobs:
  check_job:
    uses: linuxdeepin/.github/.github/workflows/commitlint.yml@master


================================================
FILE: .github/workflows/call-deploy-dev-doc.yml
================================================
name: deploy docs
on:
  push:
    branches: ["master"]
  workflow_dispatch:
    inputs:
      tag:
        required: true
        type: string

permissions:
  contents: read
  pages: write
  id-token: write

# Allow one concurrent deployment
concurrency:
  group: "pages"
  cancel-in-progress: true

jobs:
  deploydocs:
    uses: linuxdeepin/.github/.github/workflows/deploy-dev-doc.yml@master
    with:
      ref: ${{ inputs.tag }}
    secrets: inherit


================================================
FILE: .github/workflows/call-license-check.yml
================================================
name: Call License and README Check
on:
  pull_request_target:
    types: [opened, synchronize, reopened]

permissions:
  pull-requests: write
  contents: read

concurrency:
  group: ${{ github.workflow }}-pull/${{ github.event.number }}
  cancel-in-progress: true

jobs:
  license-check:
    uses: linuxdeepin/.github/.github/workflows/license-check.yml@master


================================================
FILE: .github/workflows/cppcheck.yml
================================================
name: cppcheck
on:
  pull_request_target:
    paths-ignore:
      - ".github/workflows/**"

concurrency:
  group: ${{ github.workflow }}-pull/${{ github.event.number }}
  cancel-in-progress: true

jobs:
  cppchceck:
    name: cppcheck
    runs-on: ubuntu-latest
    steps:
      - run: export
      - uses: actions/checkout@v4
        with:
          ref: ${{ github.event.pull_request.head.sha }}
          persist-credentials: false
      - uses: linuxdeepin/action-cppcheck@main
        with:
          github_token: ${{ secrets.GITHUB_TOKEN }}
          repository: ${{ github.repository }}
          pull_request_id: ${{ github.event.pull_request.number }}
          allow_approve: false


================================================
FILE: .gitignore
================================================
# Compiled Object files
*.slo
*.lo
*.o

# Compiled Dynamic libraries
*.so
*.dylib

# Compiled Static libraries
*.lai
*.la
*.a

build*/
*.pro.user*
*.DS_Store
*.core
*.autosave
*.user*

debian/files
debian/tmp
obj-x86_64-linux-gnu
debian/debhelper-build-stamp
debian/dde-control-center
debian/dde-control-center-dev
debian/dde-control-center-doc
*.log
*.substvars
.debhelper

# qm file is auto generate from .ts file
*.qm

# vim tmp file
*.swp

*.vscode
*.vim

# clion tmp file
.idea/
# clangd tmp file
.cache/

.transifexrc
lupdate.sh

# nix
.direnv


================================================
FILE: .obs/workflows.yml
================================================
test_build:
  steps:
    - link_package:
        source_project: deepin:Develop:dde
        source_package: %{SCM_REPOSITORY_NAME}
        target_project: deepin:CI

    - configure_repositories:
        project: deepin:CI
        repositories:
          - name: deepin_develop
            paths:
              - target_project: deepin:Develop:dde
                target_repository: deepin_develop
              - target_project: deepin:CI
                target_repository: deepin_develop
              - target_project: deepin:CI:dodconfig
                target_repository: deepin_develop
            architectures:
              - x86_64
              - aarch64

  filters:
    event: pull_request

tag_build:
  steps:
    - trigger_services:
        project: deepin:Unstable:dde
        package: %{SCM_REPOSITORY_NAME}
  filters:
    event: tag_push

commit_build:
  steps:
    - trigger_services:
        project: deepin:Develop:dde
        package: %{SCM_REPOSITORY_NAME}
  filters:
    event: push


================================================
FILE: .reuse/dep5
================================================
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: dtkcore
Upstream-Contact: UnionTech Software Technology Co., Ltd. <>
Source: https://github.com/linuxdeepin/dtkcore

# ci
Files: .github/* .gitlab-ci.yml .obs/workflows.yml
Copyright: None
License: CC0-1.0

# config
Files: .clang-format .editorconfig
Copyright: None
License: CC0-1.0

# debian rpm archlinux
Files: debian/* rpm/* archlinux/*
Copyright: None
License: CC0-1.0

# translation
Files: translations/* **/*.ts .tx/config .tx/transifex.yaml
Copyright: UnionTech Software Technology Co., Ltd.
License: GPL-3.0-or-later

# png svg
Files: **/*.svg **/*.png **/*.dci **/*.gif **/*.webp
Copyright: UnionTech Software Technology Co., Ltd.
License: CC0-1.0

# xml toml json conf yaml ...
Files: **/*.json **/*.service **/*.txt **/*.sh **/*.html **/conf .gitignore **/*.desktop **/*.css **/*.ttf *.conf *.xml
Copyright: None
License: CC0-1.0

# README
Files: **/*.md README.md README.zh_CN.md
Copyright: UnionTech Software Technology Co., Ltd.
License: CC-BY-4.0

# Project file
Files: **/*.cmake **/CMakeLists.txt **/*.in **/*.qrc CMakeLists.txt
Copyright: None
License: CC0-1.0

# MetaInfo File
Files: misc/org.deepin.dde.controlcenter.metainfo.xml
Copyright: None
License: CC0-1.0

# 3rdparty
Files: src/plugin-display/wayland/*
Copyright: Marcus Britanicus, Abrar, rahmanshaber
License: MIT

######## dcc-old ########
# translation
Files: dcc-old/translations/*
Copyright: UnionTech Software Technology Co., Ltd.
License: GPL-3.0-or-later

# 3rdparty
Files: dcc-old/src/plugin-display/wayland/*
Copyright: Marcus Britanicus, Abrar, rahmanshaber
License: MIT

Files: toolGenerate/**/*
Copyright: None
License: CC0-1.0


================================================
FILE: .tx/config
================================================
[main]
host = https://www.transifex.com

[o:linuxdeepin:p:deepin-desktop-environment:r:332dacad18d2b1a048dba06b5c1f0293]
file_filter = translations/dde-control-center_<lang>.ts
source_file = translations/dde-control-center_en.ts
source_lang = en_US
type = QT

[o:linuxdeepin:p:deepin-desktop-environment:r:4ea171636f1b3b620948addfb330f0d9]
file_filter = translations/desktop/desktop_<lang>.ts
source_file = translations/desktop/desktop.ts
source_lang = en_US
type = QT


================================================
FILE: .tx/deepin.conf
================================================
[transifex]
branch = m23


================================================
FILE: .tx/transifex.yaml
================================================
filters:
  - filter_type: file
    source_file: translations/dde-control-center_en.ts
    file_format: QT
    source_language: en_US
    translation_files_expression: translations/dde-control-center_<lang>.ts
  - filter_type: file
    source_file: translations/desktop/desktop.ts
    file_format: QT
    source_language: en_US
    translation_files_expression: translations/desktop/desktop_<lang>.ts
settings:
    pr_branch_name: transifex_update_<br_unique_id>


================================================
FILE: CMakeLists.txt
================================================
cmake_minimum_required(VERSION 3.18)

set(DVERSION "6.0.44" CACHE STRING "define project version")
set(BUILD_DOCS OFF CACHE BOOL "Generate doxygen-based documentation")

set(PROJECT_NAME dde-control-center)
project(${PROJECT_NAME}
    VERSION ${DVERSION}
    DESCRIPTION "Deepin Control Center"
    HOMEPAGE_URL "https://github.com/linuxdeepin/dde-control-center"
    LANGUAGES CXX C
)

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(ENABLE_ASAN OFF)
option(BUILD_TESTING "UNIT test" OFF)
set(BUILD_EXAMPLES OFF)

set(DCC_ENABLE_MEMORY_MANAGEMENT ON)

set(QT_NS Qt6)
set(DTK_NS Dtk6)
set(ASQT_NS AppStreamQt)

# 设置静态库文件目录
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
# 动态库文件目录
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib)
# 可执行文件目录
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)


# INFO:
# plugins can be disabled and their options
# plugin-authentication : DISABLE_AUTHENTICATION
# plugin-keyboard: DISABLE_LANGUAGE to disable language panel

option(DISABLE_AUTHENTICATION "disable build authentication plugins" OFF)
option(DISABLE_PRIVACY_PLUGIN "disable privacy and security plugin" OFF)
option(DISABLE_LANGUAGE "disable lanugage settings in control center" OFF)
option(USE_DEEPIN_ZONE "enable special timezone file on deepin" OFF)
option(DISABLE_SOUND_ADVANCED "disable sound advanced settings" OFF)
set(DEEPIN_TIME_ZONE_PATH "/usr/share/dde/zoneinfo/zone1970.tab" CACHE STRING "deepin timezone path")
set(LOCALE_I18N_PATH "/usr/share/i18n/SUPPORTED" CACHE STRING "Supported locale path")

set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/misc;${CMAKE_MODULE_PATH};${ECM_MODULE_PATH};${PROJECT_SOURCE_DIR}/misc")
include(DdeControlCenterPluginMacros)

# asan 自己有内存泄露,暂不使用
if (CMAKE_BUILD_TYPE STREQUAL "Debug")
    set(UNITTEST ON)
    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -Wall -Werror=return-type -fno-omit-frame-pointer -Wextra")
    if(ENABLE_ASAN)
        if (CMAKE_CXX_COMPILER_ID MATCHES "GNU"  OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
            set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address -g")
            set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=address -g")
            set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fsanitize=address")
            set(CMAKE_LINKER_FLAGS "${CMAKE_LINKER_FLAGS} -fsanitize=address")
            set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -fsanitize=address")
            add_definitions(-DUSE_ASAN)
        endif()
    endif()
else()
    # generate qm
    execute_process(COMMAND bash "misc/translate_generation.sh" "${CMAKE_CURRENT_BINARY_DIR}/src/dde-control-center"
        WORKING_DIRECTORY ${CMAKE_SOURCE_DIR})
    # generate desktop translate
    execute_process(COMMAND bash "misc/translate_ts2desktop.sh"
        WORKING_DIRECTORY ${CMAKE_SOURCE_DIR})
endif()

if (BUILD_TESTING)
    set(UNITTEST ON)
endif()

set(BUILD_PLUGIN ON)

if (NOT BUILD_PLUGIN)
    set(UNITTEST OFF)
endif()
# GNU 默认

if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
    set(UT_COMPILER -fprofile-arcs -ftest-coverage)
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
    set(UT_COMPILER -fprofile-instr-generate -ftest-coverage)
endif()

if (USE_DEEPIN_ZONE)
    add_definitions(-DUSE_DEEPIN_ZONE)
    add_definitions(-DDEEPIN_TIME_ZONE_PATH="${DEEPIN_TIME_ZONE_PATH}")
endif ()

add_definitions(-DLOCALE_I18N_PATH="${LOCALE_I18N_PATH}")

if(DCC_ENABLE_MEMORY_MANAGEMENT)
  add_definitions(-DDCC_ENABLE_MEMORY_MANAGEMENT)
endif()
# 增加安全编译参数
set(POSITION_INDEPENDENT_CODE True)
set(THREADS_PREFER_PTHREAD_FLAG ON)
find_package(Threads REQUIRED)

# Install settings
if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
    set(CMAKE_INSTALL_PREFIX /usr)
endif ()
include(GNUInstallDirs)
include(CMakePackageConfigHelpers)
include(GoogleTest)

if(BUILD_DOCS)
    add_subdirectory(docs)
endif()

set(DCC_PLUGINS_VERSION 1.1)
set(DCC_TRANSLATION_INSTALL_DIR "${CMAKE_INSTALL_DATAROOTDIR}/${PROJECT_NAME}/translations/v${DCC_PLUGINS_VERSION}" CACHE STRING "Install dir for dde-control-center translate files")

# 输出目录
set(DCC_LIBDIR ${PROJECT_BINARY_DIR}/lib)
# 插件目录
set(DCC_PLUGINS_DIR plugins_v${DCC_PLUGINS_VERSION})
# 安装目录
set(DCC_INSTALL_DIR ${CMAKE_INSTALL_LIBDIR}/dde-control-center)
set(DCC_DEBUG_LIBDIR ${DCC_INSTALL_DIR})
set(DCC_TRANSLATE_READ_DIR ${CMAKE_INSTALL_PREFIX}/${DCC_TRANSLATION_INSTALL_DIR})

if (CMAKE_BUILD_TYPE STREQUAL "Debug")
    set(DCC_DEBUG_LIBDIR ${DCC_LIBDIR})
    set(DCC_TRANSLATE_READ_DIR ${PROJECT_BINARY_DIR}/src/dde-control-center)
endif()

add_definitions(-DTRANSLATE_READ_DIR="${DCC_TRANSLATE_READ_DIR}")
# 插件安装目录
set(DCC_PLUGINS_INSTALL_DIR ${DCC_DEBUG_LIBDIR}/${DCC_PLUGINS_DIR} CACHE STRING "Install dir for dde-control-center plugins")
# 插件读取目录
set(MODULE_READ_DIR "${DCC_DEBUG_LIBDIR}" CACHE STRING "Dir to find dde-control-center modules")
set(PLUGINS_READ_DIR "${DCC_PLUGINS_INSTALL_DIR}" CACHE STRING "Dir to find dde-control-center plugins")

GNUInstallDirs_get_absolute_install_dir(
    MODULE_READ_FULL_DIR
    MODULE_READ_DIR
    LIBDIR
)

GNUInstallDirs_get_absolute_install_dir(
    PLUGINS_READ_FULL_DIR
    PLUGINS_READ_DIR
    LIBDIR
)

message(STATUS ${MODULE_READ_FULL_DIR})
message(STATUS ${PLUGINS_READ_FULL_DIR})
message(STATUS ${DCC_PLUGINS_INSTALL_DIR})

add_definitions(-DDefaultModuleDirectory="${MODULE_READ_FULL_DIR}")
add_definitions(-DDefaultPluginsDirectory="${PLUGINS_READ_FULL_DIR}")

# DdeControlCenterPluginMacros.cmake 使用
set(DDE_CONTROL_CENTER_PLUGIN_DIR ${DCC_PLUGINS_DIR})
set(DDE_CONTROL_CENTER_TRANSLATION_INSTALL_DIR ${DCC_TRANSLATION_INSTALL_DIR})
set(DDE_CONTROL_CENTER_PLUGIN_INSTALL_DIR ${DCC_PLUGINS_INSTALL_DIR})

set(LOCALSTATE_READ_DIR "${CMAKE_INSTALL_FULL_LOCALSTATEDIR}" CACHE STRING "Dir to find modifiable single-machine data")
set(DCC_PROJECT_ROOT_DIR ${CMAKE_CURRENT_SOURCE_DIR})
add_definitions(-DVARDIRECTORY="${LOCALSTATE_READ_DIR}")
# Find the library
find_package(PkgConfig REQUIRED)
find_package(${DTK_NS} REQUIRED COMPONENTS Core Gui  )
find_package(${QT_NS} COMPONENTS Core Quick Gui Network DBus Concurrent Test LinguistTools Multimedia REQUIRED)
if(${QT_NS}_VERSION VERSION_GREATER_EQUAL 6.10)
  find_package(${QT_NS} COMPONENTS GuiPrivate REQUIRED)
endif()
find_package(GTest REQUIRED)
find_package(Threads REQUIRED)

# Check if dde-api provides EventLogger (header-only)
find_package(DDEAPI QUIET)
if(DDEAPI_FOUND)
    set(HAVE_DDE_API_EVENTLOGGER ON)
    message(STATUS "Found DDEAPI: EventLogger available")
else()
    message(STATUS "DDEAPI not found, event logging will be disabled")
endif()

if (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "sw_64")
    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mieee")
endif()

# dconfig
file(GLOB DCONFIG_FILES "misc/configs/*.json")
dtk_add_config_meta_files(APPID org.deepin.dde.control-center BASE misc/configs FILES ${DCONFIG_FILES})
file(GLOB DCONFIG_FILE_REGION_FORMAT "misc/configs/common/org.deepin.region-format.json")
dtk_add_config_meta_files(COMMONID true FILES ${DCONFIG_FILE_REGION_FORMAT})

include_directories(
    include
)

set(Test_Libraries
    -lgcov
    Threads::Threads
    GTest::gtest
    ${QT_NS}::Test
)

set(DCC_FRAME_Library dde-control-center_frame)
set(Enable_TreelandSupport ON CACHE BOOL "Enable Treeland Support")

add_subdirectory(src/dde-control-center)
#-----------------------shared-utils------------------------
add_subdirectory(src/shared-utils)
#--------------------------plugins--------------------------
add_subdirectory(src/plugin-system)
add_subdirectory(src/plugin-device)
add_subdirectory(src/plugin-accounts)
if (NOT DISABLE_AUTHENTICATION)
    add_subdirectory(src/plugin-authentication)
endif()
add_subdirectory(src/plugin-sound)
add_subdirectory(src/plugin-defaultapp)
add_subdirectory(src/plugin-power)
add_subdirectory(src/plugin-mouse)
add_subdirectory(src/plugin-personalization)
add_subdirectory(src/plugin-keyboard)
add_subdirectory(src/plugin-systeminfo)
add_subdirectory(src/plugin-commoninfo)
add_subdirectory(src/plugin-touchscreen)
add_subdirectory(src/plugin-datetime)
add_subdirectory(src/plugin-wacom)
add_subdirectory(src/plugin-bluetooth)
add_subdirectory(src/plugin-notification)
add_subdirectory(src/plugin-deepinid)
add_subdirectory(src/plugin-display)
if (NOT DISABLE_PRIVACY_PLUGIN)
    add_subdirectory(src/plugin-privacy)
endif()
add_subdirectory(src/plugin-dock)

if(BUILD_EXAMPLES)
    add_subdirectory(examples)
endif()

if(UNITTEST)
    add_subdirectory(tests)
endif()


================================================
FILE: LICENSE
================================================
                    GNU GENERAL PUBLIC LICENSE
                       Version 3, 29 June 2007

 Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
 Everyone is permitted to copy and distribute verbatim copies
 of this license document, but changing it is not allowed.

                            Preamble

  The GNU General Public License is a free, copyleft license for
software and other kinds of works.

  The licenses for most software and other practical works are designed
to take away your freedom to share and change the works.  By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users.  We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors.  You can apply it to
your programs, too.

  When we speak of free software, we are referring to freedom, not
price.  Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.

  To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights.  Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.

  For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received.  You must make sure that they, too, receive
or can get the source code.  And you must show them these terms so they
know their rights.

  Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.

  For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software.  For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.

  Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so.  This is fundamentally incompatible with the aim of
protecting users' freedom to change the software.  The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable.  Therefore, we
have designed this version of the GPL to prohibit the practice for those
products.  If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.

  Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary.  To prevent this, the GPL assures that
patents cannot be used to render the program non-free.

  The precise terms and conditions for copying, distribution and
modification follow.

                       TERMS AND CONDITIONS

  0. Definitions.

  "This License" refers to version 3 of the GNU General Public License.

  "Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.

  "The Program" refers to any copyrightable work licensed under this
License.  Each licensee is addressed as "you".  "Licensees" and
"recipients" may be individuals or organizations.

  To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy.  The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.

  A "covered work" means either the unmodified Program or a work based
on the Program.

  To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy.  Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.

  To "convey" a work means any kind of propagation that enables other
parties to make or receive copies.  Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.

  An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License.  If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.

  1. Source Code.

  The "source code" for a work means the preferred form of the work
for making modifications to it.  "Object code" means any non-source
form of a work.

  A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.

  The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form.  A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.

  The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities.  However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work.  For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.

  The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.

  The Corresponding Source for a work in source code form is that
same work.

  2. Basic Permissions.

  All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met.  This License explicitly affirms your unlimited
permission to run the unmodified Program.  The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work.  This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.

  You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force.  You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright.  Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.

  Conveying under any other circumstances is permitted solely under
the conditions stated below.  Sublicensing is not allowed; section 10
makes it unnecessary.

  3. Protecting Users' Legal Rights From Anti-Circumvention Law.

  No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.

  When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.

  4. Conveying Verbatim Copies.

  You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.

  You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.

  5. Conveying Modified Source Versions.

  You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:

    a) The work must carry prominent notices stating that you modified
    it, and giving a relevant date.

    b) The work must carry prominent notices stating that it is
    released under this License and any conditions added under section
    7.  This requirement modifies the requirement in section 4 to
    "keep intact all notices".

    c) You must license the entire work, as a whole, under this
    License to anyone who comes into possession of a copy.  This
    License will therefore apply, along with any applicable section 7
    additional terms, to the whole of the work, and all its parts,
    regardless of how they are packaged.  This License gives no
    permission to license the work in any other way, but it does not
    invalidate such permission if you have separately received it.

    d) If the work has interactive user interfaces, each must display
    Appropriate Legal Notices; however, if the Program has interactive
    interfaces that do not display Appropriate Legal Notices, your
    work need not make them do so.

  A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit.  Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.

  6. Conveying Non-Source Forms.

  You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:

    a) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by the
    Corresponding Source fixed on a durable physical medium
    customarily used for software interchange.

    b) Convey the object code in, or embodied in, a physical product
    (including a physical distribution medium), accompanied by a
    written offer, valid for at least three years and valid for as
    long as you offer spare parts or customer support for that product
    model, to give anyone who possesses the object code either (1) a
    copy of the Corresponding Source for all the software in the
    product that is covered by this License, on a durable physical
    medium customarily used for software interchange, for a price no
    more than your reasonable cost of physically performing this
    conveying of source, or (2) access to copy the
    Corresponding Source from a network server at no charge.

    c) Convey individual copies of the object code with a copy of the
    written offer to provide the Corresponding Source.  This
    alternative is allowed only occasionally and noncommercially, and
    only if you received the object code with such an offer, in accord
    with subsection 6b.

    d) Convey the object code by offering access from a designated
    place (gratis or for a charge), and offer equivalent access to the
    Corresponding Source in the same way through the same place at no
    further charge.  You need not require recipients to copy the
    Corresponding Source along with the object code.  If the place to
    copy the object code is a network server, the Corresponding Source
    may be on a different server (operated by you or a third party)
    that supports equivalent copying facilities, provided you maintain
    clear directions next to the object code saying where to find the
    Corresponding Source.  Regardless of what server hosts the
    Corresponding Source, you remain obligated to ensure that it is
    available for as long as needed to satisfy these requirements.

    e) Convey the object code using peer-to-peer transmission, provided
    you inform other peers where the object code and Corresponding
    Source of the work are being offered to the general public at no
    charge under subsection 6d.

  A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.

  A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling.  In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage.  For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product.  A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.

  "Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source.  The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.

  If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information.  But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).

  The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed.  Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.

  Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.

  7. Additional Terms.

  "Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law.  If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.

  When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it.  (Additional permissions may be written to require their own
removal in certain cases when you modify the work.)  You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.

  Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:

    a) Disclaiming warranty or limiting liability differently from the
    terms of sections 15 and 16 of this License; or

    b) Requiring preservation of specified reasonable legal notices or
    author attributions in that material or in the Appropriate Legal
    Notices displayed by works containing it; or

    c) Prohibiting misrepresentation of the origin of that material, or
    requiring that modified versions of such material be marked in
    reasonable ways as different from the original version; or

    d) Limiting the use for publicity purposes of names of licensors or
    authors of the material; or

    e) Declining to grant rights under trademark law for use of some
    trade names, trademarks, or service marks; or

    f) Requiring indemnification of licensors and authors of that
    material by anyone who conveys the material (or modified versions of
    it) with contractual assumptions of liability to the recipient, for
    any liability that these contractual assumptions directly impose on
    those licensors and authors.

  All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10.  If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term.  If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.

  If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.

  Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.

  8. Termination.

  You may not propagate or modify a covered work except as expressly
provided under this License.  Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).

  However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.

  Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.

  Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License.  If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.

  9. Acceptance Not Required for Having Copies.

  You are not required to accept this License in order to receive or
run a copy of the Program.  Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance.  However,
nothing other than this License grants you permission to propagate or
modify any covered work.  These actions infringe copyright if you do
not accept this License.  Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.

  10. Automatic Licensing of Downstream Recipients.

  Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License.  You are not responsible
for enforcing compliance by third parties with this License.

  An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations.  If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.

  You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License.  For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.

  11. Patents.

  A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based.  The
work thus licensed is called the contributor's "contributor version".

  A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version.  For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.

  Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.

  In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement).  To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.

  If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients.  "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.

  If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.

  A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License.  You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.

  Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.

  12. No Surrender of Others' Freedom.

  If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License.  If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all.  For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.

  13. Use with the GNU Affero General Public License.

  Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work.  The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.

  14. Revised Versions of this License.

  The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time.  Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.

  Each version is given a distinguishing version number.  If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation.  If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.

  If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.

  Later license versions may give you additional or different
permissions.  However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.

  15. Disclaimer of Warranty.

  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

  16. Limitation of Liability.

  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.

  17. Interpretation of Sections 15 and 16.

  If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.

                     END OF TERMS AND CONDITIONS

            How to Apply These Terms to Your New Programs

  If you develop a new program, and you want it to be of the greatest
possible use to the public, the best way to achieve this is to make it
free software which everyone can redistribute and change under these terms.

  To do so, attach the following notices to the program.  It is safest
to attach them to the start of each source file to most effectively
state the exclusion of warranty; and each file should have at least
the "copyright" line and a pointer to where the full notice is found.

    <one line to give the program's name and a brief idea of what it does.>
    Copyright (C) <year>  <name of author>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper mail.

  If the program does terminal interaction, make it output a short
notice like this when it starts in an interactive mode:

    <program>  Copyright (C) <year>  <name of author>
    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
    This is free software, and you are welcome to redistribute it
    under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License.  Of course, your program's commands
might be different; for a GUI interface, you would use an "about box".

  You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
<http://www.gnu.org/licenses/>.

  The GNU General Public License does not permit incorporating your program
into proprietary programs.  If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
the library.  If this is what you want to do, use the GNU Lesser General
Public License instead of this License.  But first, please read
<http://www.gnu.org/philosophy/why-not-lgpl.html>.


================================================
FILE: LICENSES/CC-BY-4.0.txt
================================================
Creative Commons Attribution 4.0 International

 Creative Commons Corporation (“Creative Commons”) is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an “as-is” basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible.

Using Creative Commons Public Licenses

Creative Commons public licenses provide a standard set of terms and conditions that creators and other rights holders may use to share original works of authorship and other material subject to copyright and certain other rights specified in the public license below. The following considerations are for informational purposes only, are not exhaustive, and do not form part of our licenses.

Considerations for licensors: Our public licenses are intended for use by those authorized to give the public permission to use material in ways otherwise restricted by copyright and certain other rights. Our licenses are irrevocable. Licensors should read and understand the terms and conditions of the license they choose before applying it. Licensors should also secure all rights necessary before applying our licenses so that the public can reuse the material as expected. Licensors should clearly mark any material not subject to the license. This includes other CC-licensed material, or material used under an exception or limitation to copyright. More considerations for licensors.

Considerations for the public: By using one of our public licenses, a licensor grants the public permission to use the licensed material under specified terms and conditions. If the licensor’s permission is not necessary for any reason–for example, because of any applicable exception or limitation to copyright–then that use is not regulated by the license. Our licenses grant only permissions under copyright and certain other rights that a licensor has authority to grant. Use of the licensed material may still be restricted for other reasons, including because others have copyright or other rights in the material. A licensor may make special requests, such as asking that all changes be marked or described. Although not required by our licenses, you are encouraged to respect those requests where reasonable. More considerations for the public.

Creative Commons Attribution 4.0 International Public License

By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions.

Section 1 – Definitions.

     a.	Adapted Material means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image.

     b.	Adapter's License means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License.

     c.	Copyright and Similar Rights means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights.

     d.	Effective Technological Measures means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements.

     e.	Exceptions and Limitations means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material.

     f.	Licensed Material means the artistic or literary work, database, or other material to which the Licensor applied this Public License.

     g.	Licensed Rights means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license.

     h.	Licensor means the individual(s) or entity(ies) granting rights under this Public License.

     i.	Share means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them.

     j.	Sui Generis Database Rights means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world.

     k.	You means the individual or entity exercising the Licensed Rights under this Public License. Your has a corresponding meaning.

Section 2 – Scope.

     a.	License grant.

          1. Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to:

               A. reproduce and Share the Licensed Material, in whole or in part; and

               B. produce, reproduce, and Share Adapted Material.

          2. Exceptions and Limitations. For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions.

          3. Term. The term of this Public License is specified in Section 6(a).

          4. Media and formats; technical modifications allowed. The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material.

          5. Downstream recipients.

               A. Offer from the Licensor – Licensed Material. Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License.

               B. No downstream restrictions. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material.

          6.  No endorsement. Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i).

b. Other rights.

          1. Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise.

          2. Patent and trademark rights are not licensed under this Public License.

          3. To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties.

Section 3 – License Conditions.

Your exercise of the Licensed Rights is expressly made subject to the following conditions.

     a.	Attribution.

          1. If You Share the Licensed Material (including in modified form), You must:

               A. retain the following if it is supplied by the Licensor with the Licensed Material:

                    i. identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated);

                    ii. a copyright notice;

                    iii. a notice that refers to this Public License;

                    iv.	a notice that refers to the disclaimer of warranties;

                    v. a URI or hyperlink to the Licensed Material to the extent reasonably practicable;

               B. indicate if You modified the Licensed Material and retain an indication of any previous modifications; and

               C. indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License.

          2. You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information.

          3. If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable.

          4. If You Share Adapted Material You produce, the Adapter's License You apply must not prevent recipients of the Adapted Material from complying with this Public License.

Section 4 – Sui Generis Database Rights.

Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material:

     a.	for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database;

     b.	if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material; and

     c.	You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database.
For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights.

Section 5 – Disclaimer of Warranties and Limitation of Liability.

     a.	Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You.

     b.	To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You.

     c.	The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability.

Section 6 – Term and Termination.

     a.	This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically.

     b.	Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates:

          1. automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or

          2. upon express reinstatement by the Licensor.

     c.	For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License.

     d.	For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License.

     e.	Sections 1, 5, 6, 7, and 8 survive termination of this Public License.

Section 7 – Other Terms and Conditions.

     a.	The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed.

     b.	Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License.

Section 8 – Interpretation.

     a.	For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License.

     b.	To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions.

     c.	No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor.

     d.	Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority.

Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at creativecommons.org/policies, Creative Commons does not authorize the use of the trademark “Creative Commons” or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses.

Creative Commons may be contacted at creativecommons.org.


================================================
FILE: LICENSES/CC0-1.0.txt
================================================
Creative Commons Legal Code

CC0 1.0 Universal

    CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
    LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN
    ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS
    INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES
    REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS
    PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM
    THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED
    HEREUNDER.

Statement of Purpose

The laws of most jurisdictions throughout the world automatically confer
exclusive Copyright and Related Rights (defined below) upon the creator
and subsequent owner(s) (each and all, an "owner") of an original work of
authorship and/or a database (each, a "Work").

Certain owners wish to permanently relinquish those rights to a Work for
the purpose of contributing to a commons of creative, cultural and
scientific works ("Commons") that the public can reliably and without fear
of later claims of infringement build upon, modify, incorporate in other
works, reuse and redistribute as freely as possible in any form whatsoever
and for any purposes, including without limitation commercial purposes.
These owners may contribute to the Commons to promote the ideal of a free
culture and the further production of creative, cultural and scientific
works, or to gain reputation or greater distribution for their Work in
part through the use and efforts of others.

For these and/or other purposes and motivations, and without any
expectation of additional consideration or compensation, the person
associating CC0 with a Work (the "Affirmer"), to the extent that he or she
is an owner of Copyright and Related Rights in the Work, voluntarily
elects to apply CC0 to the Work and publicly distribute the Work under its
terms, with knowledge of his or her Copyright and Related Rights in the
Work and the meaning and intended legal effect of CC0 on those rights.

1. Copyright and Related Rights. A Work made available under CC0 may be
protected by copyright and related or neighboring rights ("Copyright and
Related Rights"). Copyright and Related Rights include, but are not
limited to, the following:

  i. the right to reproduce, adapt, distribute, perform, display,
     communicate, and translate a Work;
 ii. moral rights retained by the original author(s) and/or performer(s);
iii. publicity and privacy rights pertaining to a person's image or
     likeness depicted in a Work;
 iv. rights protecting against unfair competition in regards to a Work,
     subject to the limitations in paragraph 4(a), below;
  v. rights protecting the extraction, dissemination, use and reuse of data
     in a Work;
 vi. database rights (such as those arising under Directive 96/9/EC of the
     European Parliament and of the Council of 11 March 1996 on the legal
     protection of databases, and under any national implementation
     thereof, including any amended or successor version of such
     directive); and
vii. other similar, equivalent or corresponding rights throughout the
     world based on applicable law or treaty, and any national
     implementations thereof.

2. Waiver. To the greatest extent permitted by, but not in contravention
of, applicable law, Affirmer hereby overtly, fully, permanently,
irrevocably and unconditionally waives, abandons, and surrenders all of
Affirmer's Copyright and Related Rights and associated claims and causes
of action, whether now known or unknown (including existing as well as
future claims and causes of action), in the Work (i) in all territories
worldwide, (ii) for the maximum duration provided by applicable law or
treaty (including future time extensions), (iii) in any current or future
medium and for any number of copies, and (iv) for any purpose whatsoever,
including without limitation commercial, advertising or promotional
purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each
member of the public at large and to the detriment of Affirmer's heirs and
successors, fully intending that such Waiver shall not be subject to
revocation, rescission, cancellation, termination, or any other legal or
equitable action to disrupt the quiet enjoyment of the Work by the public
as contemplated by Affirmer's express Statement of Purpose.

3. Public License Fallback. Should any part of the Waiver for any reason
be judged legally invalid or ineffective under applicable law, then the
Waiver shall be preserved to the maximum extent permitted taking into
account Affirmer's express Statement of Purpose. In addition, to the
extent the Waiver is so judged Affirmer hereby grants to each affected
person a royalty-free, non transferable, non sublicensable, non exclusive,
irrevocable and unconditional license to exercise Affirmer's Copyright and
Related Rights in the Work (i) in all territories worldwide, (ii) for the
maximum duration provided by applicable law or treaty (including future
time extensions), (iii) in any current or future medium and for any number
of copies, and (iv) for any purpose whatsoever, including without
limitation commercial, advertising or promotional purposes (the
"License"). The License shall be deemed effective as of the date CC0 was
applied by Affirmer to the Work. Should any part of the License for any
reason be judged legally invalid or ineffective under applicable law, such
partial invalidity or ineffectiveness shall not invalidate the remainder
of the License, and in such case Affirmer hereby affirms that he or she
will not (i) exercise any of his or her remaining Copyright and Related
Rights in the Work or (ii) assert any associated claims and causes of
action with respect to the Work, in either case contrary to Affirmer's
express Statement of Purpose.

4. Limitations and Disclaimers.

 a. No trademark or patent rights held by Affirmer are waived, abandoned,
    surrendered, licensed or otherwise affected by this document.
 b. Affirmer offers the Work as-is and makes no representations or
    warranties of any kind concerning the Work, express, implied,
    statutory or otherwise, including without limitation warranties of
    title, merchantability, fitness for a particular purpose, non
    infringement, or the absence of latent or other defects, accuracy, or
    the present or absence of errors, whether or not discoverable, all to
    the greatest extent permissible under applicable law.
 c. Affirmer disclaims responsibility for clearing rights of other persons
    that may apply to the Work or any use thereof, including without
    limitation any person's Copyright and Related Rights in the Work.
    Further, Affirmer disclaims responsibility for obtaining any necessary
    consents, permissions or other rights required for any use of the
    Work.
 d. Affirmer understands and acknowledges that Creative Commons is not a
    party to this document and has no duty or obligation with respect to
    this CC0 or use of the Work.


================================================
FILE: LICENSES/GPL-3.0-or-later.txt
================================================
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007

Copyright © 2007 Free Software Foundation, Inc. <http://fsf.org/>

Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.

Preamble

The GNU General Public License is a free, copyleft license for software and other kinds of works.

The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.

When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.

To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.

For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.

Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.

For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.

Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.

Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.

The precise terms and conditions for copying, distribution and modification follow.

TERMS AND CONDITIONS

0. Definitions.

“This License” refers to version 3 of the GNU General Public License.

“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.

“The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations.

To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work.

A “covered work” means either the unmodified Program or a work based on the Program.

To “propagate” a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.

To “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.

An interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.

1. Source Code.
The “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work.

A “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.

The “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Major Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.

The “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.

The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.

The Corresponding Source for a work in source code form is that same work.

2. Basic Permissions.
All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.

You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.

Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.

3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.

When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.

4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.

You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.

5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:

     a) The work must carry prominent notices stating that you modified it, and giving a relevant date.

     b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact all notices”.

     c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.

     d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.

A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.

6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:

     a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.

     b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.

     c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.

     d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.

     e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.

A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.

A “User Product” is either (1) a “consumer product”, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, “normally used” refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.

“Installation Information” for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.

If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).

The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.

Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.

7. Additional Terms.
“Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.

When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.

Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:

     a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or

     b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or

     c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or

     d) Limiting the use for publicity purposes of names of licensors or authors of the material; or

     e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or

     f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.

All other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.

If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.

Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.

8. Termination.
You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).

However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.

Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.

Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.

9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.

10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.

An “entity transaction” is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.

You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.

11. Patents.
A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”.

A contributor's “essential patent claims” are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, “control” includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.

Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.

In the following three paragraphs, a “patent license” is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To “grant” such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.

If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.

If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.

A patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.

Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.

12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.

13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.

14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.

Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.

If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.

Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.

15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.

END OF TERMS AND CONDITIONS

How to Apply These Terms to Your New Programs

If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.

To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found.

     <one line to give the program's name and a brief idea of what it does.>
     Copyright (C) <year>  <name of author>

     This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

     This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.

     You should have received a copy of the GNU General Public License along with this program.  If not, see <http://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper mail.

If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:

     <program>  Copyright (C) <year>  <name of author>
     This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
     This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an “about box”.

You should also get your employer (if you work as a programmer) or school, if any, to sign a “copyright disclaimer” for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see <http://www.gnu.org/licenses/>.

The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read <http://www.gnu.org/philosophy/why-not-lgpl.html>.


================================================
FILE: LICENSES/LGPL-3.0-or-later.txt
================================================
GNU LESSER GENERAL PUBLIC LICENSE
Version 3, 29 June 2007

Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>

Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.

This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below.

0. Additional Definitions.

As used herein, "this License" refers to version 3 of the GNU Lesser General Public License, and the "GNU GPL" refers to version 3 of the GNU General Public License.

"The Library" refers to a covered work governed by this License, other than an Application or a Combined Work as defined below.

An "Application" is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library.

A "Combined Work" is a work produced by combining or linking an Application with the Library.  The particular version of the Library with which the Combined Work was made is also called the "Linked Version".

The "Minimal Corresponding Source" for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version.

The "Corresponding Application Code" for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work.

1. Exception to Section 3 of the GNU GPL.
You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL.

2. Conveying Modified Versions.
If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version:

     a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or

     b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy.

3. Object Code Incorporating Material from Library Header Files.
The object code form of an Application may incorporate material from a header file that is part of the Library.  You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following:

     a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License.

     b) Accompany the object code with a copy of the GNU GPL and this license document.

4. Combined Works.
You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following:

     a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License.

     b) Accompany the Combined Work with a copy of the GNU GPL and this license document.

     c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document.

     d) Do one of the following:

           0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.

          1) Use a suitable shared library mechanism for linking with the Library.  A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version.

     e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.)

5. Combined Libraries.
You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following:

     a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License.

     b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work.

6. Revised Versions of the GNU Lesser General Public License.
The Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.

Each version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation.

If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall
apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library.

GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007

Copyright © 2007 Free Software Foundation, Inc. <http://fsf.org/>

Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.

Preamble

The GNU General Public License is a free, copyleft license for software and other kinds of works.

The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too.

When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things.

To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others.

For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.

Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it.

For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions.

Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users.

Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free.

The precise terms and conditions for copying, distribution and modification follow.

TERMS AND CONDITIONS

0. Definitions.

“This License” refers to version 3 of the GNU General Public License.

“Copyright” also means copyright-like laws that apply to other kinds of works, such as semiconductor masks.

“The Program” refers to any copyrightable work licensed under this License. Each licensee is addressed as “you”. “Licensees” and “recipients” may be individuals or organizations.

To “modify” a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a “modified version” of the earlier work or a work “based on” the earlier work.

A “covered work” means either the unmodified Program or a work based on the Program.

To “propagate” a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well.

To “convey” a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying.

An interactive user interface displays “Appropriate Legal Notices” to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion.

1. Source Code.
The “source code” for a work means the preferred form of the work for making modifications to it. “Object code” means any non-source form of a work.

A “Standard Interface” means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language.

The “System Libraries” of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A “Major Component”, in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it.

The “Corresponding Source” for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work.

The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source.

The Corresponding Source for a work in source code form is that same work.

2. Basic Permissions.
All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law.

You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you.

Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary.

3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures.

When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures.

4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program.

You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee.

5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions:

     a) The work must carry prominent notices stating that you modified it, and giving a relevant date.

     b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to “keep intact all notices”.

     c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it.

     d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so.

A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an “aggregate” if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate.

6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways:

     a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange.

     b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge.

     c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b.

     d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements.

     e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d.

A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work.

A “User Product” is either (1) a “consumer product”, which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, “normally used” refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product.

“Installation Information” for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made.

If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM).

The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network.

Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying.

7. Additional Terms.
“Additional permissions” are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions.

When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission.

Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms:

     a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or

     b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or

     c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or

     d) Limiting the use for publicity purposes of names of licensors or authors of the material; or

     e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or

     f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors.

All other non-permissive additional terms are considered “further restrictions” within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying.

If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms.

Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way.

8. Termination.
You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11).

However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.

Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.

Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10.

9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so.

10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License.

An “entity transaction” is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts.

You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it.

11. Patents.
A “contributor” is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's “contributor version”.

A contributor's “essential patent claims” are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, “control” includes the right to grant patent sublicenses in a manner consistent with the requirements of this License.

Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version.

In the following three paragraphs, a “patent license” is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To “grant” such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party.

If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. “Knowingly relying” means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid.

If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it.

A patent license is “discriminatory” if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007.

Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law.

12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program.

13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such.

14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.

Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation.

If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program.

Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version.

15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.

16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee.

END OF TERMS AND CONDITIONS

How to Apply These Terms to Your New Programs

If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms.

To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the “copyright” line and a pointer to where the full notice is found.

     <one line to give the program's name and a brief idea of what it does.>
     Copyright (C) <year>  <name of author>

     This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

     This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details.

     You should have received a copy of the GNU General Public License along with this program.  If not, see <http://www.gnu.org/licenses/>.

Also add information on how to contact you by electronic and paper mail.

If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode:

     <program>  Copyright (C) <year>  <name of author>
     This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
     This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details.

The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an “about box”.

You should also get your employer (if you work as a programmer) or school, if any, to sign a “copyright disclaimer” for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see <http://www.gnu.org/licenses/>.

The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read <http://www.gnu.org/philosophy/why-not-lgpl.html>.


================================================
FILE: LICENSES/MIT.txt
================================================
MIT License

Copyright (c) <year> <copyright holders>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


================================================
FILE: README.md
================================================
## DDE Control Center

DDE Control Center is the control panel of Deepin Desktop Environment.

## Dependencies

Check `debian/control` for build-time and runtime dependencies, or use `cmake` to check the missing required dependencies.

## Installation

### Build from source code

1. Make sure you have installed all dependencies.

2. Build:
```
$ cd dde-control-center
$ mkdir Build
$ cd Build
$ cmake ..
$ make
```

3. Install:
```
$ sudo make install
```

The executable binary file could be found at `/usr/bin/dde-control-center` after the installation is finished, and plugins will be placed into `${CMAKE_INSTALL_FULL_LIBDIR}/dde-control-center/modules/`, usually is `/usr/lib/dde-control-center/modules/`.

A `debian` folder is provided to build the package under the *deepin* linux desktop distribution. To build the package, use the following command:

```shell
$ sudo apt build-dep . # install build dependencies
$ dpkg-buildpackage -uc -us -nc -b # build binary package(s)
```

## Usage

Execute `dde-control-center -h` to get more details.

Note: `--spec` can be used to debug plugins. The passed in value is the path where the so of plugin is in.

## Getting help

You can press `F1` to start [deepin-manual](https://github.com/linuxdeepin/deepin-manual) when you focus on DDE Control Center window.

You may also find these channels useful if you encounter any other issues:

* [Telegram group](https://deepin.org/to/tg)
* [Matrix](https://matrix.to/#/#deepin-community:matrix.org)
* [IRC (libera.chat)](https://web.libera.chat/#deepin-community)
* [Forum](https://bbs.deepin.org)
* [WiKi](https://wiki.deepin.org/)

## Develop Plugins with cmake

```cmake

# just show the target link way

find_package(DdeControlCenter REQUIRED)
find_package(Dtk COMPONENTS Core Widget REQUIRED)
find_package(Qt5 COMPONENTS Core Gui Widgets REQUIRED)

add_library(dcc_exampleplugin SHARED
    plugin.h
    plugin.cpp
)

target_link_libraries(dcc_exampleplugin PRIVATE
    Dde::DCCWidget
    Dde::DCCInterface
    Dtk::Core
    Dtk::Widget
    Qt5::Core
    Qt5::Gui
    Qt5::Widgets
)

```

## Getting involved

We encourage you to report issues and contribute changes

* [Contribution guide for developers](https://github.com/linuxdeepin/developer-center/wiki/Contribution-Guidelines-for-Developers-en). (English)
* [开发者代码贡献指南](https://github.com/linuxdeepin/developer-center/wiki/Contribution-Guidelines-for-Developers) (中文)

## License

DDE Control Center is licensed under [GPL-3.0-or-later](LICENSE).


================================================
FILE: README.zh_CN.md
================================================
## DDE 控制中心

DDE 控制中心控制整个DDE桌面环境

## 依赖

查看 `debian/control` 文件来了解此项目的构建与运行时依赖,或者使用 `cmake` 检查缺失的必要组件。

## 安装

### 源码安装

1. Make sure you have installed all dependencies.

2. Build:
```bash
cd dde-control-center
cmake -B build
cmake --build build 
```

3. Install:
```bash
sudo make install
```
注意,不推荐,应该先打包然后安装。

运行文件在 `/usr/bin/dde-control-center` , 插件在 `${CMAKE_INSTALL_FULL_LIBDIR}/dde-control-center/modules/`下,`CMAKE_INSTALL_FULL_LIBDIR`请查阅GNUInstallDir,根据发行版有所不同 , 如arch下这个目录在 `/usr/lib/dde-control-center/modules/`.

为在 *deepin* 桌面发行版进行此软件包的构建,我们还提供了一个 `debian` 目录。若要构建软件包,可参照下面的命令进行构建:

```shell
$ sudo apt build-dep . # 安装构建依赖
$ dpkg-buildpackage -uc -us -nc -b # 构建二进制软件包
```

## 使用方式

Execute `dde-control-center -h` to get more details.

## 帮助

任何使用问题都可以通过以下方式寻求帮助:

* [Telegram 群组](https://t.me/deepin_community)
* [Matrix](https://matrix.to/#/#deepin-community:matrix.org)
* [IRC (libera.chat)](https://web.libera.chat/#deepin-community)
* [Forum](https://bbs.deepin.org)
* [WiKi](https://wiki.deepin.org/)

## 加入我们

请到developer-center提交issue或者参与讨论。当然也可以直接参与代码维护提交代码和修复。我们会很开心获得您的帮助和贡献

* [Contribution guide for developers](https://github.com/linuxdeepin/developer-center/wiki/Contribution-Guidelines-for-Developers-en). (English)
* [开发者代码贡献指南](https://github.com/linuxdeepin/developer-center/wiki/Contribution-Guidelines-for-Developers) (中文)

## License

DDE Control Center 遵循协议 [GPL-3.0-or-later](LICENSE).


================================================
FILE: archlinux/PKGBUILD
================================================
pkgname=deepin-control-center-git
_pkgname=deepin-control-center
pkgver=5.4.47.r673.g52c86a908
pkgrel=1
sourcename=dde-control-center
sourcetars=("$sourcename"_"$pkgver".tar.xz)
sourcedir="$sourcename"
pkgdesc='New control center for linux deepin'
arch=('x86_64' 'aarch64')
url="https://github.com/linuxdeepin/dde-control-center"
license=('GPL3')
depends=('dtkwidget-git' 'libpwquality' 'doxygen'
         'deepin-daemon-git' 'startdde-git'
         'deepin-pw-check-git' 'qt5-gsettings' 'icu')
makedepends=('git' 'cmake' 'ninja' 'qt5-tools' 'qt5-base' 'qt5-x11extras' 
             'qt5-multimedia' 'qt5-svg' 'dtkcommon-git' 'dtkcore-git' 'dtkwidget-git' 'dtkgui-git'
             'gtest' 'gmock' 'polkit-qt5' 'systemd')
optdepends=('redshift: automatic color temperature support')
# Not packaged: network-manager-l2tp
conflicts=('deepin-control-center')
provides=('deepin-control-center')
optdepends=('deepin-network-core-git' 'networkmanager-qt')
groups=('deepin-git')
source=("${sourcetars[@]}")
sha512sums=('SKIP')
prepare() {
    cd $sourcedir
}

build() {
  cd $sourcedir
  cmake -GNinja \
        -DCMAKE_INSTALL_PREFIX=/usr \
        -DDISABLE_UPDATE=ON \
        -DDISABLE_AUTHENTICATION=ON \
        -DDISABLE_LANGUAGE=ON \
        -DCMAKE_INSTALL_LIBDIR=/usr/lib \
        -DCMAKE_INSTALL_LOCALSTATEDIR=/var
  ninja
}

package() {
  cd $sourcedir
  DESTDIR="$pkgdir" ninja install
}


================================================
FILE: debian/changelog
================================================
dde-control-center (6.1.83) unstable; urgency=medium

  * build: add dde-api-dev build dependency
  * i18n: Updates for project Deepin Desktop Environment (#3179)

 -- zhangkun <zhangkun2@uniontech.com>  Fri, 24 Apr 2026 13:18:28 +0800

dde-control-center (6.1.82) unstable; urgency=medium

  * feat: add event logger integration for control center
  * perf(wallpaper): optimize wallpaper thumbnail loading with
    QImageReader scaling
  * refactor: simplify plugin loading by removing async loading
  * Revert "fix: use QQmlIncubator for asynchronous plugin object
    creation"
  * fix: Optimize the typesetting layout of open-source software
    declarations
  * feat(notification): add app notification search functionality
  * fix(display): use screen dimensions instead of currentResolution for
    Qt screen matching
  * fix: use QQmlIncubator for asynchronous plugin object creation
  * docs: update v25 dcc interface documentation
  * i18n: Updates for project Deepin Desktop Environment (#3170)
  * fix: prevent control center from not closing properly
  * fix: Window size not correctly restored after maximisation
  * fix: optimize page visibility management in DccWindow
  * fix(datetime): add real-time display for timezone information
  * i18n: Updates for project Deepin Desktop Environment (#3127)

 -- zhangkun <zhangkun2@uniontech.com>  Thu, 23 Apr 2026 21:46:05 +0800

dde-control-center (6.1.81) unstable; urgency=medium

  * feat: improve DccRepeater parent object assignment
  * fix: dconfig controls whether the username is displayed in the
    verification password pop-up window
  * fix: fix control center plugin loading and page display logic
  * fix: Optimize the typesetting layout of open-source software
    declarations
  * fix: defer icon source resolution until component completion
  * fix: synchronize plugin data phase loading
  * refactor: move plugin factory preparation before module loading
  * refactor: remove mutex lock and use async processing for image
    provider
  * fix: improve keyboard navigation focus management and rename
    property
  * fix(sound): fix Bluetooth audio mode detection and switching logic
  * fix: DConfig controls whether the boot menu item area supports
    editing the wallpaper
  * fix: Modify the background transparency of the account creation
    screen
  * fix: correct text color property type and logic
  * fix(datetime): fix layout overlap in RegionFormatDialog
  * fix(ui): optimize layout and visibility control for list items

 -- zhangkun <zhangkun2@uniontech.com>  Thu, 09 Apr 2026 20:27:22 +0800

dde-control-center (6.1.80) unstable; urgency=medium

  * fix: add support for markdown format in user license
  * fix: update license file search logic and UI improvements
  * fix: enable TLS certificate verification for avatar downloads

 -- zhangkun <zhangkun2@uniontech.com>  Fri, 03 Apr 2026 13:05:02 +0800

dde-control-center (6.1.79) unstable; urgency=medium

  * chore(systeminfo): remove redundant Copyright fields from license
    files
  * fix(systeminfo): prevent auth dialog loop by transferring focus to
    edit button

 -- zhangkun <zhangkun2@uniontech.com>  Mon, 30 Mar 2026 15:16:14 +0800

dde-control-center (6.1.78) unstable; urgency=medium

  * fix: defer object creation to prevent QML GC crash
  * fix(commoninfo): set notification replacesId to 0 for proper display
  * fix: update translation URLs and fix typo
  * fix: Fix the issue where pressing Enter on an item has no effect
  * fix: resolve highlight residue issue after mouse leaves dropdown
    menu items
  * fix(bluetooth): correct audio headset icon mapping
  * fix: correct typo "operation system" to "operating system" in GPL
    license files
  * fix: Resolve the issue where the shortcut key for selected desktop
    files does not work
  * fix: fix DccRepeater memory management and object ownership
  * i18n: Updates for project Deepin Desktop Environment (#3112)
  * chore: update GPL-3.0 license files with complete open source
    software list
  * fix: prevent GC crashes during page transitions
  * fix(datetime): resolve SpinboxEx unit text overlap in English locale
  * refactor: optimize DConfig data synchronization to reduce DBus calls
  * fix: prevent control center crash from recursive QML creation
  * fix: optimize model assignment in RegionFormatDialog
  * fix(ui): optimize UI details and unify color management
  * refactor: optimize time plugin timer update mechanism
  * fix: optimize package query method for privacy security module
  * fix: change overlap detection from complete to partial coverage
  * fix: fix potential null pointer and loading state issues
  * fix: prevent infinite loops and improve UI responsiveness
  * style(keyboard): update file selection button icon in shortcut
    dialog
  * fix(ui): fix theme switch buttons to prevent blur
  * fix: Fix the issue of inconsistent display of title text
  * fix(keyboard): resolve shortcut text overlap with input box on
    window resize
  * i18n: Updates for project Deepin Desktop Environment (#3082)
  * fix: correct shortcut ID for preview-workspace

 -- zhangkun <zhangkun2@uniontech.com>  Wed, 25 Mar 2026 17:09:29 +0800

dde-control-center (6.1.77) unstable; urgency=medium

  * refactor: remove DConfig usage for permission blacklist
  * fix: Fix the misalignment issue of the tablet title
  * fix(ui): fix breadcrumb title overlap when window width is small
  * fix(touchscreen): add tooltip for truncated display names
  * fix(accounts): fix edit icon color too light in account fullname
    editor
  * Fix: Optimised the UI display of the Eye Care interface
  * fix: update layout on Crumb visibility change
  * fix: Custom keyboard shortcuts
  * fix(datetime): resolve long date/time format text overflow in
    language settings
  * fix(display): make home screen icon responsive to screen item size
  * Fix: Keyboard control issue in secondary menus
  * fix: Fix brightness control height issue
  * fix(datetime): adjust date label left margin to align with settings
  * Revert "fix: Speaker Display Anomaly"
  * fix(datetime): optimize timezone display and text visibility
  * Fix: Issue with password prompt box
  * fix(datetime): adjust timezone clock icon size to 24px
  * fix(datetime): adjust spacing between clock and title bar
  * refactor(datetime): optimize datetime setting dialog layout and unit
    display
  * fix(power): adjust spacing to 6px in power management interface
  * fix(touchscreen): fix style issues in touchscreen settings module
  * fix: Fixed the issue of the other users list not displaying
    completely

 -- zhangkun <zhangkun2@uniontech.com>  Wed, 18 Mar 2026 14:13:59 +0800

dde-control-center (6.1.76) unstable; urgency=medium

  * refactor: update system info DBus interface and proxy
  * fix(display): preserve display order when adjusting resolution
  * Fix: Abnormal behaviour in primary menu tabs
  * fix(accounts): resolve clear button shifting during text input
  * fix: Time display UI optimisation
  * fix: fix module matching and listing issues
  * fix: Optimized focus acquisition logic for secondary menus
  * fix: add parent module validation and fix DTK reference
  * fix(window): change about dialog to window modal mode
  * fix: make loading page background opaque
  * fix(plugin): set DTK palette for loaded plugin components
  * fix(power): show tooltip for truncated text in ComboBox dropdown
    items
  * refactor: improve permission matching with package name fallback
  * fix(ui): adjust padding and insets for better layout alignment
  * fix: remove unused port combo enable properties
  * fix: set smooth=false for sidebar button icon to prevent blur at
    fractional scaling
  * fix: preserve maximized window state when jumping from global search
  * fix: fix control center initialization and navigation issues
  * refactor: remove search result separator logic
  * fix: Fix the translation function call issue in ListElement
  * fix(keyboard): use DTK font manager for shortcuts edit button
  * fix(accounts): adjust password dialog layout spacing

 -- zhangkun <zhangkun2@uniontech.com>  Thu, 12 Mar 2026 21:31:46 +0800

dde-control-center (6.1.75) unstable; urgency=medium

  * fix: Optimized display for solid-color wallpapers
  * fix(accounts): fix hover area response issue in custom avatar upload
  * fix(ui): adapt button width to text content
  * fix: optimize window color and page visibility handling
  * feat: optimize object lookup performance with name-based mapping
  * refactor: improve search relevance algorithm and sorting
  * fix: resolve clicked function naming conflict
  * fix(accounts): optimize delete dialog layout alignment
  * fix(bluetooth): adjust loading animation size
  * fix: Fixed the issue of the secondary screen being disconnected
    during resolution changes
  * fix: Subsystem sound options appearing empty when navigating

 -- zhangkun <zhangkun2@uniontech.com>  Thu, 05 Mar 2026 20:48:43 +0800

dde-control-center (6.1.74) unstable; urgency=medium

  * Revert "fix: Optimized text display position at progress bar edges"
  * fix: prevent dangling pointer in page navigation
  * fix(systeminfo): align copyright text center in systemLogo
  * fix(systeminfo): align copyright text center and enable word wrap
  * fix: defer showing repeat days edit page

 -- zhangkun <zhangkun2@uniontech.com>  Mon, 02 Mar 2026 10:52:37 +0800

dde-control-center (6.1.73) unstable; urgency=medium

  * fix: Fix incomplete display of processor text on the page
  * fix: include size in image cache key to prevent collisions
  * fix: Optimized text display position at progress bar edges
  * feat: simplify cursor size selection logic
  * fix: Filter out components whose focus cannot be operated
  * fix: fix sidebar width initialization and validation
  * feat: add loading page for control center
  * chore: update dde-control-center-dev dependencies
  * fix: keep sleep and screen lock switches enabled with passwordless
    login
  * fix: fix cache image error
  * fix: fix touchpad visibility and disable input condition
  * Fix: Optimize cyclic selection in the system sound effects list.
  * fix(personalization): fix touchpad swipe and mouse drag in theme
    selector
  * fix(time-range): improve hour input focus behavior
  * fix: Speaker Display Anomaly

 -- zhangkun <zhangkun2@uniontech.com>  Fri, 27 Feb 2026 17:02:50 +0800

dde-control-center (6.1.72) unstable; urgency=medium

  * fix: Adapt the first item in the menu
  * fix(bluetooth): fix audio-headphones device type support
  * fix: Fixed issue where the focus did not start from the current page
    when entering the secondary interface
  * fix(display): prevent unintended brightness reset to 10%
  * fix: prevent face image stretching distortion
  * fix: Optimise Password Change Interface
  * fix: Default window size not restored
  * fix(sound): font size of "No output device for sound found" is too
    large
  * fix: fix wallpaper path handling for non-existent files
  * fix(display): fix screen context for x11 display dialogs
  * fix: improve audio device combo box state management
  * fix: adjust wallpaper selection border rendering order
  * feat: Updated translations
  * feat: adjust sidebar width for English locale and update device
    module name
  * fix(ui): fix scrollbar ghosting during page switching
  * feat: add dock plugin sorting with custom proxy model
  * feat: add pluginsChanged signal to reload dock tray plugins
    dynamically
  * fix: [Device] [Keyboard] Keyboard test text appears too large
  * fix: No response when using arrow keys
  * fix: improve navigation object tracking in control center
  * fix(systeminfo): fix processorChanged signal emission and processor
    setting location
  * fix: Fix cursor style not updating after theme switch
  * fix: fix window effect feature availability and combo box model
    handling
  * feat: add indicator display control
  * refactor: optimize parent object lookup and code structure
  * fix(bluetooth): fix send file button not showing due to stale state
  * docs: update v25 dcc interface documentation
  * fix: update fingerprint enrollment error handling and UI logic
  * fix: Configuration switch save error
  * fix: The black wallpaper is positioned too far forward
  * fix: move getAppPath to background thread
  * Fixed: Level 1 menu items unresponsive when navigating with keyboard
    arrow keys
  * feat: show touchpad only on laptops

 -- zhangkun <zhangkun2@uniontech.com>  Thu, 05 Feb 2026 19:23:12 +0800

dde-control-center (6.1.71) unstable; urgency=medium

  * i18n: Updates for project Deepin Desktop Environment (#2967)
  * fix: Fix the UI flickering issue when editing shortcut keys
  * fix: Modified the time setting logic in the scheduled shutdown
    feature.
  * chore: update cmake minimum version to 3.23
  * fix(sound): sync source mute state with volume
  * feat: Updated translation
  * feat: add brightness control for Treeland compositor
  * feat: migrate QML plugins to Qt6 resource system

 -- zhangkun <zhangkun2@uniontech.com>  Thu, 29 Jan 2026 20:22:08 +0800

dde-control-center (6.1.70) unstable; urgency=medium

  * feat: support configurable password encryption algorithms
  * fix: Fix the timing of when the popup appears
  * fix: adjust mode delegate styling properties
  * feat: redesign color picker dialog UI
  * fix: Fix the error of looping through the plugin area list

 -- fuleyi <fuleyi@uniontech.com>  Wed, 28 Jan 2026 15:59:27 +0800

dde-control-center (6.1.69) unstable; urgency=medium

  * fix: fix screensaver initialization on Wayland
  * docs: update developer mode license agreement text
  * fix: hide screensaver module when treeland is active
  * chore: update commoninfo icon
  * fix: add DBus signal connection for mime info changes
  * fix: separate model data from checked states in privacy folder
  * fix: improve spinbox input validation and sync
  * fix: remove premature wallpaperMapChanged signal emission
  * i18n: Updates for project Deepin Desktop Environment (#2942)
  * fix: Fix issue where system sound effects cannot be selected using
    the Tab key
  * feat: add privacy configuration for control center
  * fix: update file dialog signal handling and remove debug log

 -- zhangkun <zhangkun2@uniontech.com>  Fri, 23 Jan 2026 10:05:33 +0800

dde-control-center (6.1.68) unstable; urgency=medium

  * feat: Change "Device" to "Bluetooth and other devices"
  * i18n: Translate dde-control-center_en.ts in ja
  * i18n: Translate dde-control-center_en.ts in ja
  * i18n: Translate dde-control-center_en.ts in ja
  * i18n: Translate dde-control-center_en.ts in ja
  * fix: resolve binding loop in CustomComBobox MenuItem
  * refactor: migrate DBus interfaces to DDBusInterface
  * fix: Fix the issue of the timeRange control sending signals
    repeatedly
  * fix: remove duplicate taskbar icon for region chooser
  * fix: adjust mouse cursor size UI layout and remove debug log
  * fix spelling errors
  * fix: Fix multiple entries showing in the list after renaming
    Bluetooth
  * fix: improve timezone list display performance
  * fix: correct copyright year logic for system info
  * feat: add Alt+Space shortcut for window menu

 -- zhangkun <zhangkun2@uniontech.com>  Thu, 15 Jan 2026 20:00:09 +0800

dde-control-center (6.1.67) unstable; urgency=medium

  * fix: exclude onboard from privacy FileAndFolder app list

 -- zhangkun <zhangkun2@uniontech.com>  Wed, 07 Jan 2026 13:35:37 +0800

dde-control-center (6.1.66) unstable; urgency=medium

  * chore: remove touchpad switch file existence check
  * fix: fix command injection vulnerability in password encryption
  * fix: correct 12-hour time format patterns in RegionProxy
  * i18n: Updates for project Deepin Desktop Environment (#2920)
  * fix: Fix the issue with focus in the user group interface
  * refactor: migrate InterfaceEffectListview to DccObject for search
    support
  * i18n: Updates for project Deepin Desktop Environment (#2889)
  * fix: unmute input device when adjusting volume
  * fix: Fix the issue where error messages do not disappear
    automatically
  * fix: resolve Next button not disabled after unchecking disclaimer
  * fix: reset face image content when starting enrollment
  * fix: Fix the issue where disabled modules are not grayed out
  * fix: correct decimal symbol setting when user selects space
  * docs: add GitHub Copilot instructions file
  * feat: support multiple plugin directories via --spec option
  * fix: add text drop support to search bar
  * fix: add close button hint to timezone popup
  * fix: prepend runtime plugin directory to QML import paths

 -- zhangkun <zhangkun2@uniontech.com>  Tue, 06 Jan 2026 20:51:47 +0800

dde-control-center (6.1.65) unstable; urgency=medium

  * fix: adjust alert tooltip target in authentication UI
  * fix: Fix the issue with selecting screensaver settings
  * fix: emit all relevant roles on bluetooth device state change

 -- zhangkun <zhangkun2@uniontech.com>  Thu, 25 Dec 2025 19:33:39 +0800

dde-control-center (6.1.64) unstable; urgency=medium

  * feat: manage QML cache versioning proactively
  * fix: Fix the issue where the theme area cannot switch focus
  * fix: Fix the issue where tab cannot select focus
  * fix: Change the app order in Privacy and Security
  * feat: Remove old code
  * fix: avoid list refresh on camera auth dialog open
  * fix: Fixed the issue where the time format did not follow the locale
  * fix: resolve text truncation in multi-screen dock settings
  * fix: correct loading indicator position when adding language
  * fix: add scrollbar to region format list in RegionFormatDialog
  * feat: remove night mode redshift integration

 -- YeShanShan <yeshanshan@uniontech.com>  Wed, 24 Dec 2025 14:36:14 +0800

dde-control-center (6.1.63) unstable; urgency=medium

  * i18n: Updates for project Deepin Desktop Environment (#2885)
  * fix: fix QML component loading and gesture data handling
  * fix: Modify display interface layout spacing
  * fix: improve URL matching logic and empty URL handling
  * fix: Fix build with Qt 6.10 and higher
  * i18n: Updates for project Deepin Desktop Environment (#2873)
  * feat: remove pointer size configuration from mouse settings
  * fix: add pointer size change notification
  * fix: adjust DccTitleObject styling for better visual consistency
  * fix: Fix incomplete display of resolution options
  * fix: adjust footer layout spacing in DccSettingsView
  * fix: Update open source license
  * fix: Optimize the UI of wallpaper selection page

 -- zhangkun <zhangkun2@uniontech.com>  Thu, 18 Dec 2025 19:43:30 +0800

dde-control-center (6.1.62) unstable; urgency=medium

  * refactor: standardize QML component id naming
  * fix: fix sidebar width update when right view is empty
  * fix: Tooltip for the add image button
  * fix: add monitor count tracking for multi-screen visibility
  * fix: Fix the issue of shortcut key replacement failure
  * fix: Fix Bluetooth model being reset
  * refactor: replace custom object creation with Qt Loader
  * fix: refresh fingerprint list before enrollment
  * feat: replace screen saver start/stop with preview method
  * fix: fix repeater child object crash without parent
  * fix: refresh fingerprint list when device is hot-plugged
  * fix: align balance slider style with design specification
  * fix: Fix issue where renaming a Bluetooth device does not refresh
  * chore: fix screensaver button colors
  * fix: resolve text overflow issues in keyboard plugin for Russian
    locale
  * fix: Update translation file

 -- YeShanShan <yeshanshan@uniontech.com>  Thu, 11 Dec 2025 20:32:03 +0800

dde-control-center (6.1.61) unstable; urgency=medium

  * fix: Fix the issue with link text style errors
  * fix: Fix issue where the interface does not restore after deleting
    the avatar
  * fix: Fix no prompt when input is too long
  * fix: Fix thumbnails not updating
  * fix: reset boot delay switch state when authentication is cancelled
  * i18n: Updates for project Deepin Desktop Environment (#2847)
  * fix: Fix issue with full names containing spaces being incorrectly
    recognized
  * fix: restore Custom shortcut edit button in Spanish locale

 -- fuleyi <fuleyi@uniontech.com>  Thu, 04 Dec 2025 19:12:24 +0800

dde-control-center (6.1.60) unstable; urgency=medium

  * i18n: Updates for project Deepin Desktop Environment (#2840)

 -- wjyrich <wujiangyu@uniontech.com>  Fri, 28 Nov 2025 10:45:26 +0800

dde-control-center (6.1.59) unstable; urgency=medium

  * fix: adjust clear cloud data button font size
  * fix: Fix the date server authentication issue
  * fix: update transaltion
  * feat: add combine application icons option to dock settings
  * i18n: Updates for project Deepin Desktop Environment (#2806)
  * fix: auto fallback to system app when default app is uninstalled
  * fix: unify screen tab style in display and wallpaper modules
  * fix: adjust font size of setting button in ScreenSaver page
  * fix: add tooltip for truncated authorization button in
    NativeInfoPage
  * fix: resolve preview button text truncation in ScreenSaverPage
  * fix: Modify mouse interface layout
  * fix: resolve color picker handle overflow in
    SaturationLightnessPicker
  * fix: Fix custom avatar selection issue
  * fix: improve wallpaper thumbnail alignment and layout
  * fix: improve locale-aware number formatting
  * fix: Fixed an issue where the edit and add buttons could not be
    focused using the tab key
  * i18n: remove de_DE translation resources
  * fix: Fix the mouse interface layout effect
  * fix: improve wallpaper thumbnail rendering quality
  * refactor: use install command for plugin binaries
  * fix: resolve unknown icons in notifications after editor install
  * fix: Fix the issue of drag-and-drop images not working
  * fix: resolve duplicate installation in QML plugin build
  * feat: add reproducible build parameters
  * fix: add display mode detection for dock plugin visibility

 -- zhaoyingzhen <zhaoyingzhen@uniontech.com>  Thu, 27 Nov 2025 17:31:35 +0800

dde-control-center (6.1.58) unstable; urgency=medium

  * fix: update dock plugins reload, icon not show.

 -- wujiangyu <wujiangyu@uniontech.com>  Fri, 14 Nov 2025 13:53:21 +0800

dde-control-center (6.1.57) unstable; urgency=medium

  * fix: fix QML memory management crash issues
  * fix: Fix where custom dates have no authorization
  * fix: prioritize loading group plugins and fix icon paths
  * fix: Fix shortcut key tooltip text overflow
  * fix: hide touchpad switch on devices without touchpad_switch file
  * fix: Fix language long text overflow
  * fix: resolve delay when removing user apps via trash button
  * feat: enhance number format symbol conflict handling
  * refactor: expose initData as public slot and add activation handler
  * fix: improve text width calculation in sound plugin menu items
  * i18n: Updates for project Deepin Desktop Environment (#2803)
  * fix: update DNotifySender usage for system protection
  * fix: add translation for system protection notification
  * feat: add solid system read-only protection feature
  * fix: normalize title-to-thumbnail spacing in WallpaperSelectView
  * fix: Fix Bluetooth name change flashing

 -- xionglinlin <xionglinlin@uniontech.com>  Thu, 13 Nov 2025 19:53:05 +0800

dde-control-center (6.1.56) unstable; urgency=medium

  * fix: Record the status of the sidebar

 -- caixiangrong <caixiangrong@uniontech.com>  Fri, 07 Nov 2025 10:11:47 +0800

dde-control-center (6.1.55) unstable; urgency=medium

  * fix: add hover tooltip for Mode options in Sound settings
  * fix: Modifying text beyond the scope of the control
  * fix: update shortcut placeholder text
  * i18n: Updates for project Deepin Desktop Environment (#2786)
  * fix: resolve color picker dialog shaking issue
  * refactor: reorder window effect settings
  * fix: update translations
  * fix: Screen sorted by type
  * fix: Record the status of the sidebar
  * fix: Update disclaimer content
  * fix: correct eyedropper button style in custom color dialog
  * i18n: Updates for project Deepin Desktop Environment (#2782)
  * feat: add Min Nan Chinese locale support
  * [dde-control-center] Updates for project Deepin Desktop Environment (#2759)
  * fix: align screensaver preview height with settings items
  * fix: Repeated incorrect password change prompt
  * fix: enable tab focus for app items in FileAndFolder
  * fix: align selection background with design spec in ScreenTab
  * fix: prevent UI freeze when rapidly clicking Restore Defaults button
  * fix: resolve text spacing issue in ScreenSaver setting button

 -- caixiangrong <caixiangrong@uniontech.com>  Thu, 06 Nov 2025 16:56:37 +0800

dde-control-center (6.1.54) UNRELEASED; urgency=medium

  * fix: resolve currency format example display issues in RTL locales
  * fix: remove hover inner shadow on first item in Touchpad gestures
  * fix: Fix the password input box so that Chinese characters can be entered
  * fix: Fix the main window graying out after the dialog box is displayed
  * fix: ScheduledShutdownDialog title invisible in dark mode
  * fix: reduce screensaver settings button height in personalization
  * fix: scrollbar cannot reach bottom in language selection dialog
  * fix: prevent button conflict during language loading in LangAndFormat

 -- zhangkun <zhangkun2@uniontech.com>  Thu, 30 Oct 2025 21:47:29 +0800

dde-control-center (6.1.53) unstable; urgency=medium

  * fix: correct custom wallpaper delete button color in dark mode
  * i18n: Updates for project Deepin Desktop Environment (#2749)
  * fix: correct lock switch display with passwordless login enabled
  * fix: Modify the spacing between menu controls
  * fix: adjust dialog layout margins and width calculation
  * feat: sort theme list alphabetically and keep custom theme first
  * fix: background misalignment in format dialog
  * fix: auth dialog missing on second timezone change
  * feat: adjust disclaimer layout spacing
  * fix: Fix password verification prompt
  * fix: underscore search mismatch in keyboard shortcuts
  * fix: escape HTML special characters in conflict name display
  * i18n: Translate dde-control-center_en.ts in pl
  * feat: add fingerprint device change handling

 -- wujiangyu <wujiangyu@uniontech.com>  Thu, 23 Oct 2025 17:19:10 +0800

dde-control-center (6.1.52) unstable; urgency=medium

  * i18n: Translate dde-control-center_en.ts in uk
  * fix: Fix the issue on the change password interface
  * [dde-control-center] Updates for project Deepin Desktop Environment
    (#2730)
  * fix: Modify the issue of only X screen not updating
  * fix: Modify the user experience plan popup style
  * fix: Fix abnormal graying effect
  * fix: add ListView background and rounded item selection
  * fix: compatibility with Qt 6.10
  * fix: adjust SearchEdit width to align with list in
    RegionFormatDialog
  * fix: resolve spacing issues in RegionFormatDialog
  * fix: add background highlight when clicking accounts
  * fix: gesture animation plays selected action instead
Download .txt
gitextract_nl82i_9z/

├── .clang-format
├── .editorconfig
├── .github/
│   ├── copilot-instructions.md
│   └── workflows/
│       ├── backup-to-gitlab.yml
│       ├── call-auto-tag.yml
│       ├── call-build-distribution.yml
│       ├── call-chatOps.yml
│       ├── call-clacheck.yml
│       ├── call-commitlint.yml
│       ├── call-deploy-dev-doc.yml
│       ├── call-license-check.yml
│       └── cppcheck.yml
├── .gitignore
├── .obs/
│   └── workflows.yml
├── .reuse/
│   └── dep5
├── .tx/
│   ├── config
│   ├── deepin.conf
│   └── transifex.yaml
├── CMakeLists.txt
├── LICENSE
├── LICENSES/
│   ├── CC-BY-4.0.txt
│   ├── CC0-1.0.txt
│   ├── GPL-3.0-or-later.txt
│   ├── LGPL-3.0-or-later.txt
│   └── MIT.txt
├── README.md
├── README.zh_CN.md
├── archlinux/
│   └── PKGBUILD
├── debian/
│   ├── changelog
│   ├── control
│   ├── copyright
│   ├── dde-control-center-dev.install
│   ├── dde-control-center.install
│   ├── preinst
│   ├── rules
│   └── source/
│       ├── format
│       └── lintian-overrides
├── docs/
│   ├── CMakeLists.txt
│   ├── v23-dcc-interface.zh_CN.md
│   └── v25-dcc-interface.zh_CN.md
├── examples/
│   ├── CMakeLists.txt
│   └── plugin-example/
│       ├── CMakeLists.txt
│       ├── qml/
│       │   ├── Example.qml
│       │   ├── ExampleMain.qml
│       │   ├── ExamplePage1.qml
│       │   ├── ExamplePage2.qml
│       │   ├── ExamplePage3.qml
│       │   └── dcc_example.dci
│       ├── src/
│       │   ├── pluginexample.cpp
│       │   └── pluginexample.h
│       └── translations/
│           ├── example.ts
│           ├── example_az.ts
│           ├── example_bo.ts
│           ├── example_ca.ts
│           ├── example_es.ts
│           ├── example_fi.ts
│           ├── example_fr.ts
│           ├── example_hu.ts
│           ├── example_it.ts
│           ├── example_ja.ts
│           ├── example_ko.ts
│           ├── example_nb_NO.ts
│           ├── example_pl.ts
│           ├── example_pt_BR.ts
│           ├── example_ru.ts
│           ├── example_uk.ts
│           ├── example_zh_CN.ts
│           ├── example_zh_HK.ts
│           ├── example_zh_TW.ts
│           ├── examples.ts
│           ├── examples_az.ts
│           ├── examples_bo.ts
│           ├── examples_ca.ts
│           ├── examples_es.ts
│           ├── examples_fi.ts
│           ├── examples_fr.ts
│           ├── examples_hu.ts
│           ├── examples_it.ts
│           ├── examples_ja.ts
│           ├── examples_ko.ts
│           ├── examples_nb_NO.ts
│           ├── examples_pl.ts
│           ├── examples_pt_BR.ts
│           ├── examples_ru.ts
│           ├── examples_uk.ts
│           ├── examples_zh_CN.ts
│           ├── examples_zh_HK.ts
│           └── examples_zh_TW.ts
├── include/
│   └── dccfactory.h
├── misc/
│   ├── DdeControlCenterConfig.cmake.in
│   ├── DdeControlCenterConfigOld.cmake.in
│   ├── DdeControlCenterPluginMacros.cmake
│   ├── configs/
│   │   ├── common/
│   │   │   └── org.deepin.region-format.json
│   │   ├── org.deepin.dde.control-center.accounts.json
│   │   ├── org.deepin.dde.control-center.commoninfo.json
│   │   ├── org.deepin.dde.control-center.datetime.json
│   │   ├── org.deepin.dde.control-center.display.json
│   │   ├── org.deepin.dde.control-center.json
│   │   ├── org.deepin.dde.control-center.personalization.json
│   │   ├── org.deepin.dde.control-center.power.json
│   │   └── org.deepin.dde.control-center.sound.json
│   ├── deepin-debug-config/
│   │   └── org.deepin.dde.control-center.json
│   ├── deepin-log-config/
│   │   └── org.deepin.dde.control-center.json
│   ├── developdocument.html
│   ├── gen_report.sh
│   ├── org.deepin.dde-grand-search.dde-control-center-setting.conf
│   ├── org.deepin.dde.ControlCenter1.service.in
│   ├── org.deepin.dde.control-center.desktop
│   ├── org.deepin.dde.controlcenter.metainfo.xml
│   ├── systemd/
│   │   └── dde-control-center.service.in
│   ├── translate_desktop2ts.sh
│   ├── translate_generation.sh
│   └── translate_ts2desktop.sh
├── src/
│   ├── dde-control-center/
│   │   ├── CMakeLists.txt
│   │   ├── controlcenterdbusadaptor.cpp
│   │   ├── controlcenterdbusadaptor.h
│   │   ├── dccmanager.cpp
│   │   ├── dccmanager.h
│   │   ├── main.cpp
│   │   ├── navigationmodel.cpp
│   │   ├── navigationmodel.h
│   │   ├── plugin/
│   │   │   ├── CMakeLists.txt
│   │   │   ├── Crumb.qml
│   │   │   ├── DccCheckIcon.qml
│   │   │   ├── DccEditorItem.qml
│   │   │   ├── DccGroupView.qml
│   │   │   ├── DccItem.qml
│   │   │   ├── DccItemBackground.qml
│   │   │   ├── DccLabel.qml
│   │   │   ├── DccLoader.qml
│   │   │   ├── DccMenuEditorItem.qml
│   │   │   ├── DccMenuItem.qml
│   │   │   ├── DccRightView.qml
│   │   │   ├── DccRowView.qml
│   │   │   ├── DccSettingsObject.qml
│   │   │   ├── DccSettingsView.qml
│   │   │   ├── DccTimeRange.qml
│   │   │   ├── DccTitleObject.qml
│   │   │   ├── DccUtils.js
│   │   │   ├── DccWindow.qml
│   │   │   ├── HomePage.qml
│   │   │   ├── SearchBar.qml
│   │   │   ├── SecondPage.qml
│   │   │   ├── control-loading.dci
│   │   │   ├── dccapp.cpp
│   │   │   ├── dccapp.h
│   │   │   ├── dccimageprovider.cpp
│   │   │   ├── dccimageprovider.h
│   │   │   ├── dccmodel.cpp
│   │   │   ├── dccmodel.h
│   │   │   ├── dccobject.cpp
│   │   │   ├── dccobject.h
│   │   │   ├── dccobject_p.h
│   │   │   ├── dccquickdbusinterface.cpp
│   │   │   ├── dccquickdbusinterface.h
│   │   │   ├── dccquickdbusinterface_p.h
│   │   │   ├── dccrepeater.cpp
│   │   │   ├── dccrepeater.h
│   │   │   ├── reddot.dci
│   │   │   └── sidebar.dci
│   │   ├── pluginmanager.cpp
│   │   ├── pluginmanager.h
│   │   ├── qrc/
│   │   │   └── dcc.qrc
│   │   ├── searchmodel.cpp
│   │   └── searchmodel.h
│   ├── plugin-accounts/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── accountlistmodel.cpp
│   │   │   ├── accountlistmodel.h
│   │   │   ├── accountscontroller.cpp
│   │   │   ├── accountscontroller.h
│   │   │   ├── accountsdbusproxy.cpp
│   │   │   ├── accountsdbusproxy.h
│   │   │   ├── accountsworker.cpp
│   │   │   ├── accountsworker.h
│   │   │   ├── avatarlistmodel.cpp
│   │   │   ├── avatarlistmodel.h
│   │   │   ├── creationresult.cpp
│   │   │   ├── creationresult.h
│   │   │   ├── pwqualitymanager.cpp
│   │   │   ├── pwqualitymanager.h
│   │   │   ├── qrc/
│   │   │   │   ├── accounts.qrc
│   │   │   │   └── icons/
│   │   │   │       ├── dcc_user_add_icon.dci
│   │   │   │       ├── dcc_user_animal.dci
│   │   │   │       ├── dcc_user_custom.dci
│   │   │   │       ├── dcc_user_emoji.dci
│   │   │   │       ├── dcc_user_funny.dci
│   │   │   │       ├── dcc_user_human.dci
│   │   │   │       └── dcc_user_scenery.dci
│   │   │   ├── securitydbusproxy.cpp
│   │   │   ├── securitydbusproxy.h
│   │   │   ├── syncdbusproxy.cpp
│   │   │   ├── syncdbusproxy.h
│   │   │   ├── user.cpp
│   │   │   ├── user.h
│   │   │   ├── userdbusproxy.cpp
│   │   │   ├── userdbusproxy.h
│   │   │   ├── usermodel.cpp
│   │   │   └── usermodel.h
│   │   └── qml/
│   │       ├── AccountSettings.qml
│   │       ├── Accounts.qml
│   │       ├── AccountsMain.qml
│   │       ├── AutoLoginWarningDialog.qml
│   │       ├── AvatarGridView.qml
│   │       ├── AvatarSettingsDialog.qml
│   │       ├── ComfirmDeleteDialog.qml
│   │       ├── ComfirmSafePage.qml
│   │       ├── CreateAccountDialog.qml
│   │       ├── CustomAvatarCropper.qml
│   │       ├── CustomAvatarEmpatyArea.qml
│   │       ├── CustomLocalAvatarsRow.qml
│   │       ├── EditActionLabel.qml
│   │       ├── LoginMethod.qml
│   │       ├── PasswordLayout.qml
│   │       ├── PasswordModifyDialog.qml
│   │       ├── accounts.dci
│   │       ├── dcc-edit.dci
│   │       └── metadata.json
│   ├── plugin-authentication/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── abstractbiometriccontroller.cpp
│   │   │   ├── abstractbiometriccontroller.h
│   │   │   ├── biometricauthcontroller.cpp
│   │   │   ├── biometricauthcontroller.h
│   │   │   ├── charamangerdbusproxy.cpp
│   │   │   ├── charamangerdbusproxy.h
│   │   │   ├── charamangermodel.cpp
│   │   │   ├── charamangermodel.h
│   │   │   ├── charamangerworker.cpp
│   │   │   ├── charamangerworker.h
│   │   │   ├── faceauthcontroller.cpp
│   │   │   ├── faceauthcontroller.h
│   │   │   ├── fingerprintauthcontroller.cpp
│   │   │   ├── fingerprintauthcontroller.h
│   │   │   ├── irisauthcontroller.cpp
│   │   │   ├── irisauthcontroller.h
│   │   │   └── qrc/
│   │   │       ├── authentication.qrc
│   │   │       └── icons/
│   │   │           ├── dcc_delete.dci
│   │   │           ├── dcc_edit.dci
│   │   │           ├── iris_add.dci
│   │   │           ├── iris_lose.dci
│   │   │           ├── iris_scan.dci
│   │   │           ├── iris_scanning.dci
│   │   │           ├── iris_success.dci
│   │   │           ├── scan_loader.dci
│   │   │           ├── user_biometric_face.dci
│   │   │           ├── user_biometric_face_add.dci
│   │   │           ├── user_biometric_face_lose.dci
│   │   │           ├── user_biometric_face_success.dci
│   │   │           ├── user_biometric_fingerprint.dci
│   │   │           ├── user_biometric_fingerprint_add.dci
│   │   │           ├── user_biometric_fingerprint_lose.dci
│   │   │           ├── user_biometric_fingerprint_success.dci
│   │   │           └── user_biometric_iris.dci
│   │   └── qml/
│   │       ├── AddFaceinfoDialog.qml
│   │       ├── AddFingerDialog.qml
│   │       ├── AddIrisDialog.qml
│   │       ├── Authentication.qml
│   │       ├── AuthenticationMain.qml
│   │       └── DisclaimerControl.qml
│   ├── plugin-bluetooth/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── bluetoothadapter.cpp
│   │   │   ├── bluetoothadapter.h
│   │   │   ├── bluetoothadaptersmodel.cpp
│   │   │   ├── bluetoothadaptersmodel.h
│   │   │   ├── bluetoothdbusproxy.cpp
│   │   │   ├── bluetoothdbusproxy.h
│   │   │   ├── bluetoothdevice.cpp
│   │   │   ├── bluetoothdevice.h
│   │   │   ├── bluetoothdevicemodel.cpp
│   │   │   ├── bluetoothdevicemodel.h
│   │   │   ├── bluetoothinteraction.cpp
│   │   │   ├── bluetoothinteraction.h
│   │   │   ├── bluetoothmodel.cpp
│   │   │   ├── bluetoothmodel.h
│   │   │   ├── bluetoothworker.cpp
│   │   │   ├── bluetoothworker.h
│   │   │   └── qrc/
│   │   │       ├── bluetooth.qrc
│   │   │       └── icons/
│   │   │           ├── bluetoothNomal.dci
│   │   │           ├── bluetooth_option.dci
│   │   │           └── bluetooth_redo.dci
│   │   └── qml/
│   │       ├── Adapters.qml
│   │       ├── BlueTooth.qml
│   │       ├── BlueToothDeviceListView.qml
│   │       ├── BlueToothMain.qml
│   │       ├── BluetoothCtl.qml
│   │       ├── MyDevice.qml
│   │       ├── OtherDevice.qml
│   │       ├── bluetooth.dci
│   │       ├── bluetoothNomal.dci
│   │       ├── bluetooth_camera.dci
│   │       ├── bluetooth_clang.dci
│   │       ├── bluetooth_headset.dci
│   │       ├── bluetooth_keyboard.dci
│   │       ├── bluetooth_lan.dci
│   │       ├── bluetooth_laptop.dci
│   │       ├── bluetooth_micphone.dci
│   │       ├── bluetooth_microphone.dci
│   │       ├── bluetooth_mouse.dci
│   │       ├── bluetooth_option.dci
│   │       ├── bluetooth_other.dci
│   │       ├── bluetooth_pad.dci
│   │       ├── bluetooth_pc.dci
│   │       ├── bluetooth_pen.dci
│   │       ├── bluetooth_pheadset.dci
│   │       ├── bluetooth_phone.dci
│   │       ├── bluetooth_print.dci
│   │       ├── bluetooth_redo.dci
│   │       ├── bluetooth_scaner.dci
│   │       ├── bluetooth_scanner.dci
│   │       ├── bluetooth_touchpad.dci
│   │       ├── bluetooth_tv.dci
│   │       ├── bluetooth_vidicon.dci
│   │       ├── metadata.json
│   │       ├── option.dci
│   │       └── redo.dci
│   ├── plugin-commoninfo/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── commoninfointeraction.cpp
│   │   │   ├── commoninfointeraction.h
│   │   │   ├── commoninfomodel.cpp
│   │   │   ├── commoninfomodel.h
│   │   │   ├── commoninfoproxy.cpp
│   │   │   ├── commoninfoproxy.h
│   │   │   ├── commoninfowork.cpp
│   │   │   ├── commoninfowork.h
│   │   │   ├── grubanimationmodel.cpp
│   │   │   ├── grubanimationmodel.h
│   │   │   ├── grubmenulistmodel.cpp
│   │   │   ├── grubmenulistmodel.h
│   │   │   ├── pwqualitymanager.cpp
│   │   │   ├── pwqualitymanager.h
│   │   │   ├── qrc/
│   │   │   │   ├── commoninfo.qrc
│   │   │   │   └── icons/
│   │   │   │       ├── develop_bind.dci
│   │   │   │       ├── inner_shadow.dci
│   │   │   │       ├── selected.dci
│   │   │   │       └── tick.dci
│   │   │   └── utils.h
│   │   └── qml/
│   │       ├── BootPage.qml
│   │       ├── CommonInfoMain.qml
│   │       ├── DevelopModePage.qml
│   │       ├── boot_deepin.dci
│   │       ├── boot_uos.dci
│   │       ├── common_inner_shadow.dci
│   │       ├── common_ok.dci
│   │       ├── common_tick.dci
│   │       ├── develop_bind.dci
│   │       ├── developer.dci
│   │       ├── meau.dci
│   │       └── metadata.json
│   ├── plugin-datetime/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── datetimedbusproxy.cpp
│   │   │   ├── datetimedbusproxy.h
│   │   │   ├── datetimemodel.cpp
│   │   │   ├── datetimemodel.h
│   │   │   ├── datetimeworker.cpp
│   │   │   ├── datetimeworker.h
│   │   │   ├── keyboard/
│   │   │   │   ├── keyboarddbusproxy.cpp
│   │   │   │   ├── keyboarddbusproxy.h
│   │   │   │   ├── keyboardmodel.cpp
│   │   │   │   ├── keyboardmodel.h
│   │   │   │   ├── keyboardwork.cpp
│   │   │   │   ├── keyboardwork.h
│   │   │   │   ├── metadata.cpp
│   │   │   │   ├── metadata.h
│   │   │   │   ├── qrc/
│   │   │   │   │   └── keyboard.qrc
│   │   │   │   ├── shortcutmodel.cpp
│   │   │   │   └── shortcutmodel.h
│   │   │   ├── langregionmodel.cpp
│   │   │   ├── langregionmodel.h
│   │   │   ├── languagelistmodel.cpp
│   │   │   ├── languagelistmodel.h
│   │   │   ├── qrc/
│   │   │   │   ├── datetime.qrc
│   │   │   │   └── images/
│   │   │   │       └── popup_menu.css
│   │   │   ├── regionproxy.cpp
│   │   │   ├── regionproxy.h
│   │   │   ├── timezoneMap/
│   │   │   │   ├── timezone.cpp
│   │   │   │   ├── timezone.h
│   │   │   │   ├── timezone_map_util.cpp
│   │   │   │   └── timezone_map_util.h
│   │   │   ├── zoneinfo.cpp
│   │   │   ├── zoneinfo.h
│   │   │   ├── zoneinfomodel.cpp
│   │   │   └── zoneinfomodel.h
│   │   └── qml/
│   │       ├── ComboLabel.qml
│   │       ├── DateTimeSettingDialog.qml
│   │       ├── Datetime.qml
│   │       ├── DatetimeMain.qml
│   │       ├── LangAndFormat.qml
│   │       ├── LangsChooserDialog.qml
│   │       ├── RegionFormatDialog.qml
│   │       ├── RegionsChooserWindow.qml
│   │       ├── SearchableListViewPopup.qml
│   │       ├── SpinboxEx.qml
│   │       ├── TimeAndDate.qml
│   │       ├── TimezoneClock.qml
│   │       ├── TimezoneDialog.qml
│   │       ├── dcc-delete.dci
│   │       ├── dcc_lang_format.dci
│   │       ├── dcc_time_date.dci
│   │       ├── inactive.dci
│   │       └── metadata.json
│   ├── plugin-deepinid/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── appinfolistmodel.cpp
│   │   │   ├── appinfolistmodel.h
│   │   │   ├── cryptor.cpp
│   │   │   ├── cryptor.h
│   │   │   ├── deepiniddbusproxy.cpp
│   │   │   ├── deepiniddbusproxy.h
│   │   │   ├── deepinidinterface.cpp
│   │   │   ├── deepinidinterface.h
│   │   │   ├── deepinidmodel.cpp
│   │   │   ├── deepinidmodel.h
│   │   │   ├── deepinidworker.cpp
│   │   │   ├── deepinidworker.h
│   │   │   ├── downloadurl.cpp
│   │   │   ├── downloadurl.h
│   │   │   ├── hardwareinfo.cpp
│   │   │   ├── hardwareinfo.h
│   │   │   ├── qrc/
│   │   │   │   ├── deepinid.qrc
│   │   │   │   └── icons/
│   │   │   │       └── dcc_cloud_logo.dci
│   │   │   ├── syncdbusproxy.cpp
│   │   │   ├── syncdbusproxy.h
│   │   │   ├── syncinfolistmodel.cpp
│   │   │   ├── syncinfolistmodel.h
│   │   │   ├── utclouddbusproxy.cpp
│   │   │   ├── utclouddbusproxy.h
│   │   │   ├── utils.cpp
│   │   │   └── utils.h
│   │   └── qml/
│   │       ├── ConFirmDialog.qml
│   │       ├── ConfirmManager.qml
│   │       ├── DeepinIDAccountSecurity.qml
│   │       ├── DeepinIDLogin.qml
│   │       ├── DeepinIDSyncService.qml
│   │       ├── DeepinIDUserInfo.qml
│   │       ├── Deepinid.qml
│   │       ├── DeepinidMain.qml
│   │       ├── RegisterDialog.qml
│   │       ├── VerifyDialog.qml
│   │       ├── dcc-edit.dci
│   │       ├── dcc-systemcset.dci
│   │       └── deepinid.dci
│   ├── plugin-defaultapp/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── category.cpp
│   │   │   ├── category.h
│   │   │   ├── categorymodel.cpp
│   │   │   ├── categorymodel.h
│   │   │   ├── defappmodel.cpp
│   │   │   ├── defappmodel.h
│   │   │   ├── defappworker.cpp
│   │   │   ├── defappworker.h
│   │   │   ├── defappworkerold.cpp
│   │   │   ├── defappworkerold.h
│   │   │   ├── mimedbusproxy.cpp
│   │   │   ├── mimedbusproxy.h
│   │   │   ├── mimedbusproxyold.cpp
│   │   │   └── mimedbusproxyold.h
│   │   └── qml/
│   │       ├── Defaultapp.qml
│   │       ├── DefaultappMain.qml
│   │       ├── DetailItem.qml
│   │       ├── dcc-delete.dci
│   │       ├── defapp_mail.dci
│   │       ├── defapp_music.dci
│   │       ├── defapp_network.dci
│   │       ├── defapp_picture.dci
│   │       ├── defapp_terminal.dci
│   │       ├── defapp_text.dci
│   │       ├── defapp_video.dci
│   │       ├── default_program.dci
│   │       └── metadata.json
│   ├── plugin-device/
│   │   ├── CMakeLists.txt
│   │   └── qml/
│   │       ├── Device.qml
│   │       ├── hardware.dci
│   │       └── metadata.json
│   ├── plugin-display/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── dccscreen.cpp
│   │   │   ├── dccscreen.h
│   │   │   ├── displaymodule.cpp
│   │   │   ├── displaymodule.h
│   │   │   ├── private/
│   │   │   │   ├── concatscreen.cpp
│   │   │   │   ├── concatscreen.h
│   │   │   │   ├── dccscreen_p.h
│   │   │   │   ├── displaydbusproxy.cpp
│   │   │   │   ├── displaydbusproxy.h
│   │   │   │   ├── displaymodel.cpp
│   │   │   │   ├── displaymodel.h
│   │   │   │   ├── displaymodule_p.h
│   │   │   │   ├── displayworker.cpp
│   │   │   │   ├── displayworker.h
│   │   │   │   ├── monitor.cpp
│   │   │   │   ├── monitor.h
│   │   │   │   ├── monitordbusproxy.cpp
│   │   │   │   ├── monitordbusproxy.h
│   │   │   │   └── types/
│   │   │   │       ├── brightnessmap.cpp
│   │   │   │       ├── brightnessmap.h
│   │   │   │       ├── reflectlist.cpp
│   │   │   │       ├── reflectlist.h
│   │   │   │       ├── resolution.cpp
│   │   │   │       ├── resolution.h
│   │   │   │       ├── resolutionlist.cpp
│   │   │   │       ├── resolutionlist.h
│   │   │   │       ├── rotationlist.cpp
│   │   │   │       ├── rotationlist.h
│   │   │   │       ├── screenrect.cpp
│   │   │   │       ├── screenrect.h
│   │   │   │       ├── touchscreeninfolist.cpp
│   │   │   │       ├── touchscreeninfolist.h
│   │   │   │       ├── touchscreeninfolist_v2.cpp
│   │   │   │       ├── touchscreeninfolist_v2.h
│   │   │   │       ├── touchscreenmap.cpp
│   │   │   │       └── touchscreenmap.h
│   │   │   └── qrc/
│   │   │       ├── built-in-icons/
│   │   │       │   ├── dcc_display_bottom.dci
│   │   │       │   ├── dcc_display_left.dci
│   │   │       │   ├── dcc_display_right.dci
│   │   │       │   └── dcc_display_top.dci
│   │   │       └── display.qrc
│   │   ├── qml/
│   │   │   ├── Display.qml
│   │   │   ├── DisplayCenter.dci
│   │   │   ├── DisplayDefault.dci
│   │   │   ├── DisplayFit.dci
│   │   │   ├── DisplayMain.qml
│   │   │   ├── DisplayStretch.dci
│   │   │   ├── ScreenIndicator.qml
│   │   │   ├── ScreenItem.qml
│   │   │   ├── ScreenRecognize.qml
│   │   │   ├── ScreenTab.qml
│   │   │   ├── TimeoutDialog.qml
│   │   │   ├── cool_colour.dci
│   │   │   ├── dcc_brightnesshigh.dci
│   │   │   ├── dcc_brightnesslow.dci
│   │   │   ├── display.dci
│   │   │   ├── home_screen.dci
│   │   │   ├── metadata.json
│   │   │   └── warm_colour.dci
│   │   └── wayland/
│   │       └── libwayqt/
│   │           ├── Output.cpp
│   │           ├── Output.h
│   │           ├── OutputManager.cpp
│   │           ├── OutputManager.h
│   │           ├── Registry.cpp
│   │           ├── Registry.h
│   │           ├── TreeLandOutputManager.cpp
│   │           ├── TreeLandOutputManager.h
│   │           ├── WayQtUtils.cpp
│   │           └── WayQtUtils.h
│   ├── plugin-dock/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── dccdockexport.cpp
│   │   │   ├── dccdockexport.h
│   │   │   ├── dockdbusproxy.cpp
│   │   │   ├── dockdbusproxy.h
│   │   │   ├── dockpluginmodel.cpp
│   │   │   ├── dockpluginmodel.h
│   │   │   ├── dockpluginsortproxymodel.cpp
│   │   │   └── dockpluginsortproxymodel.h
│   │   ├── qml/
│   │   │   ├── CustomComBobox.qml
│   │   │   ├── Dock.qml
│   │   │   ├── DockMain.qml
│   │   │   ├── PluginArea.qml
│   │   │   └── metadata.json
│   │   └── res/
│   │       ├── dcc-dock-plugin.qrc
│   │       └── icons/
│   │           ├── dock.dci
│   │           └── plugin.dci
│   ├── plugin-keyboard/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── keyboardcontroller.cpp
│   │   │   ├── keyboardcontroller.h
│   │   │   ├── keyboarddbusproxy.cpp
│   │   │   ├── keyboarddbusproxy.h
│   │   │   ├── keyboardmodel.cpp
│   │   │   ├── keyboardmodel.h
│   │   │   ├── keyboardwork.cpp
│   │   │   ├── keyboardwork.h
│   │   │   ├── layoutsmodel.cpp
│   │   │   ├── layoutsmodel.h
│   │   │   ├── metadata.cpp
│   │   │   ├── metadata.h
│   │   │   ├── qrc/
│   │   │   │   └── keyboard.qrc
│   │   │   ├── shortcutmodel.cpp
│   │   │   └── shortcutmodel.h
│   │   └── qml/
│   │       ├── Common.qml
│   │       ├── KeySequenceDisplay.qml
│   │       ├── Keyboard.qml
│   │       ├── KeyboardMain.qml
│   │       ├── ShortcutSettingDialog.qml
│   │       ├── Shortcuts.qml
│   │       ├── device_keyboard.dci
│   │       ├── keyboard_add_file.dci
│   │       ├── keyboard_delete.dci
│   │       ├── keyboard_edit.dci
│   │       ├── keyboard_fn.dci
│   │       ├── keyboard_input.dci
│   │       ├── keyboard_layout.dci
│   │       └── metadata.json
│   ├── plugin-mouse/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── gesturedata.cpp
│   │   │   ├── gesturedata.h
│   │   │   ├── gesturemodel.cpp
│   │   │   ├── gesturemodel.h
│   │   │   ├── mousedbusproxy.cpp
│   │   │   ├── mousedbusproxy.h
│   │   │   ├── mousemodel.cpp
│   │   │   ├── mousemodel.h
│   │   │   ├── mouseworker.cpp
│   │   │   ├── mouseworker.h
│   │   │   ├── qrc/
│   │   │   │   └── mouse.qrc
│   │   │   ├── treelandworker.cpp
│   │   │   └── treelandworker.h
│   │   └── qml/
│   │       ├── ClickTest.qml
│   │       ├── Common.qml
│   │       ├── GestureGroup.qml
│   │       ├── Mouse.qml
│   │       ├── MouseMain.qml
│   │       ├── MousePage.qml
│   │       ├── Touchpad.qml
│   │       ├── device_mouse.dci
│   │       ├── metadata.json
│   │       ├── mouse_trackpad_mouse.dci
│   │       ├── mouse_trackpad_trackpad.dci
│   │       ├── tip_warning.dci
│   │       ├── trackpad_gesture_3_click.dci
│   │       ├── trackpad_gesture_3_down.dci
│   │       ├── trackpad_gesture_3_left.dci
│   │       ├── trackpad_gesture_3_right.dci
│   │       ├── trackpad_gesture_3_up.dci
│   │       ├── trackpad_gesture_4_click.dci
│   │       ├── trackpad_gesture_4_down.dci
│   │       ├── trackpad_gesture_4_left.dci
│   │       ├── trackpad_gesture_4_right.dci
│   │       └── trackpad_gesture_4_up.dci
│   ├── plugin-notification/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── appmgr.cpp
│   │   │   ├── appmgr.h
│   │   │   ├── appslistmodel.cpp
│   │   │   ├── appslistmodel.h
│   │   │   ├── appssourcemodel.cpp
│   │   │   ├── appssourcemodel.h
│   │   │   ├── model/
│   │   │   │   ├── appitemmodel.cpp
│   │   │   │   ├── appitemmodel.h
│   │   │   │   ├── sysitemmodel.cpp
│   │   │   │   └── sysitemmodel.h
│   │   │   ├── notificationmodel.cpp
│   │   │   ├── notificationmodel.h
│   │   │   ├── notificationsetting.cpp
│   │   │   ├── notificationsetting.h
│   │   │   ├── qrc/
│   │   │   │   └── notification.qrc
│   │   │   └── xml/
│   │   │       ├── org.desktopspec.ApplicationManager1.Application.xml
│   │   │       └── org.desktopspec.ObjectManager1.xml
│   │   ├── qml/
│   │   │   ├── ImageCheckBox.qml
│   │   │   ├── Notification.qml
│   │   │   ├── NotificationMain.qml
│   │   │   ├── TimeRange.qml
│   │   │   ├── dcc_notification.dci
│   │   │   └── metadata.json
│   │   └── types/
│   │       └── am.h
│   ├── plugin-personalization/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── imagehelper.cpp
│   │   │   ├── imagehelper.h
│   │   │   ├── keyfile.cpp
│   │   │   ├── keyfile.h
│   │   │   ├── model/
│   │   │   │   ├── fontmodel.cpp
│   │   │   │   ├── fontmodel.h
│   │   │   │   ├── fontsizemodel.cpp
│   │   │   │   ├── fontsizemodel.h
│   │   │   │   ├── thememodel.cpp
│   │   │   │   ├── thememodel.h
│   │   │   │   ├── wallpapermodel.cpp
│   │   │   │   └── wallpapermodel.h
│   │   │   ├── personalizationdbusproxy.cpp
│   │   │   ├── personalizationdbusproxy.h
│   │   │   ├── personalizationexport.hpp
│   │   │   ├── personalizationinterface.cpp
│   │   │   ├── personalizationinterface.h
│   │   │   ├── personalizationmodel.cpp
│   │   │   ├── personalizationmodel.h
│   │   │   ├── personalizationworker.cpp
│   │   │   ├── personalizationworker.h
│   │   │   ├── qrc/
│   │   │   │   ├── icons/
│   │   │   │   │   ├── appearance.dci
│   │   │   │   │   ├── arrow_left.dci
│   │   │   │   │   ├── arrow_right.dci
│   │   │   │   │   ├── balance.dci
│   │   │   │   │   ├── best_vision.dci
│   │   │   │   │   ├── close.dci
│   │   │   │   │   ├── color_extractor.dci
│   │   │   │   │   ├── dcc_wallpaper.dci
│   │   │   │   │   ├── font_size.dci
│   │   │   │   │   ├── icon_cursor.dci
│   │   │   │   │   ├── optimum_performance.dci
│   │   │   │   │   ├── screensaver.dci
│   │   │   │   │   ├── taskbar.dci
│   │   │   │   │   ├── theme_icon.dci
│   │   │   │   │   ├── topic_cursor.dci
│   │   │   │   │   ├── wallpaper_add.dci
│   │   │   │   │   ├── wallpaper_add_bg.dci
│   │   │   │   │   ├── wallpaper_addcolor.dci
│   │   │   │   │   └── window_effect.dci
│   │   │   │   └── personalization.qrc
│   │   │   ├── screensaverprovider.cpp
│   │   │   ├── screensaverprovider.h
│   │   │   ├── treelandworker.cpp
│   │   │   ├── treelandworker.h
│   │   │   ├── utils.hpp
│   │   │   ├── wallpaperprovider.cpp
│   │   │   ├── wallpaperprovider.h
│   │   │   ├── x11worker.cpp
│   │   │   └── x11worker.h
│   │   └── qml/
│   │       ├── ColorAndIcons.qml
│   │       ├── CustomComboBox.qml
│   │       ├── DccColorDialog.qml
│   │       ├── DccSaturationLightnessPicker.qml
│   │       ├── FontCombobox.qml
│   │       ├── FontSizePage.qml
│   │       ├── IconThemeGridView.qml
│   │       ├── InterfaceEffectListview.qml
│   │       ├── Personalization.qml
│   │       ├── PersonalizationMain.qml
│   │       ├── ScreenIndicator.qml
│   │       ├── ScreenSaverPage.qml
│   │       ├── ScreenTab.qml
│   │       ├── ThemeSelectView.qml
│   │       ├── WallpaperPage.qml
│   │       ├── WallpaperSelectView.qml
│   │       ├── WindowEffectPage.qml
│   │       ├── metadata.json
│   │       └── personalization.dci
│   ├── plugin-power/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── powerdbusproxy.cpp
│   │   │   ├── powerdbusproxy.h
│   │   │   ├── powerinterface.cpp
│   │   │   ├── powerinterface.h
│   │   │   ├── powermodel.cpp
│   │   │   ├── powermodel.h
│   │   │   ├── poweroperatormodel.cpp
│   │   │   ├── poweroperatormodel.h
│   │   │   ├── powerworker.cpp
│   │   │   ├── powerworker.h
│   │   │   ├── qrc/
│   │   │   │   ├── icons/
│   │   │   │   │   ├── balance_performance.dci
│   │   │   │   │   ├── balanced.dci
│   │   │   │   │   ├── general.dci
│   │   │   │   │   ├── high_performance.dci
│   │   │   │   │   ├── on_battery.dci
│   │   │   │   │   ├── plugged_in.dci
│   │   │   │   │   └── power_performance.dci
│   │   │   │   └── power.qrc
│   │   │   └── utils.h
│   │   └── qml/
│   │       ├── BatteryPage.qml
│   │       ├── CustomComboBox.qml
│   │       ├── CustomTipsSlider.qml
│   │       ├── GeneralPage.qml
│   │       ├── Power.qml
│   │       ├── PowerMain.qml
│   │       ├── PowerPage.qml
│   │       ├── PowerPlansListview.qml
│   │       ├── ScheduledShutdownDialog.qml
│   │       ├── metadata.json
│   │       └── power.dci
│   ├── plugin-privacy/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── applicationitem.cpp
│   │   │   ├── applicationitem.h
│   │   │   ├── dde-apps.h
│   │   │   ├── privacysecuritydataproxy.cpp
│   │   │   ├── privacysecuritydataproxy.h
│   │   │   ├── privacysecurityexport.cpp
│   │   │   ├── privacysecurityexport.h
│   │   │   ├── privacysecuritymodel.cpp
│   │   │   ├── privacysecuritymodel.h
│   │   │   ├── privacysecurityworker.cpp
│   │   │   ├── privacysecurityworker.h
│   │   │   └── qrc/
│   │   │       ├── icons/
│   │   │       │   ├── arrow-down.dci
│   │   │       │   ├── security_camera.dci
│   │   │       │   └── security_folder.dci
│   │   │       └── privacy.qrc
│   │   └── qml/
│   │       ├── Camera.qml
│   │       ├── FileAndFolder.qml
│   │       ├── Privacy.qml
│   │       ├── PrivacyMain.qml
│   │       ├── metadata.json
│   │       └── privacy.dci
│   ├── plugin-sound/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── audioport.h
│   │   │   ├── audioservermodel.cpp
│   │   │   ├── audioservermodel.h
│   │   │   ├── port.cpp
│   │   │   ├── port.h
│   │   │   ├── qrc/
│   │   │   │   ├── icons/
│   │   │   │   │   ├── big_volume.dci
│   │   │   │   │   ├── dcc_volume1.dci
│   │   │   │   │   ├── dcc_volume2.dci
│   │   │   │   │   ├── dcc_volume3.dci
│   │   │   │   │   ├── play_back.dci
│   │   │   │   │   ├── small_volume.dci
│   │   │   │   │   └── sound_off.dci
│   │   │   │   └── sound.qrc
│   │   │   ├── soundDeviceData.cpp
│   │   │   ├── soundDeviceData.h
│   │   │   ├── soundDeviceModel.cpp
│   │   │   ├── soundDeviceModel.h
│   │   │   ├── soundEffectsData.cpp
│   │   │   ├── soundEffectsData.h
│   │   │   ├── soundInteraction.cpp
│   │   │   ├── soundInteraction.h
│   │   │   ├── sounddbusproxy.cpp
│   │   │   ├── sounddbusproxy.h
│   │   │   ├── soundeffectsmodel.cpp
│   │   │   ├── soundeffectsmodel.h
│   │   │   ├── soundmodel.cpp
│   │   │   ├── soundmodel.h
│   │   │   ├── soundworker.cpp
│   │   │   └── soundworker.h
│   │   └── qml/
│   │       ├── DeviceListView.qml
│   │       ├── MicrophonePage.qml
│   │       ├── Sound.qml
│   │       ├── SoundDevicemanagesPage.qml
│   │       ├── SoundEffectsPage.qml
│   │       ├── SoundMain.qml
│   │       ├── SpeakerPage.qml
│   │       ├── audio.dci
│   │       ├── audio_framework.dci
│   │       ├── big_volume.dci
│   │       ├── equipment_management.dci
│   │       ├── metadata.json
│   │       ├── play_back.dci
│   │       ├── small_volume.dci
│   │       ├── sound_off.dci
│   │       └── system_sound.dci
│   ├── plugin-system/
│   │   ├── CMakeLists.txt
│   │   └── qml/
│   │       ├── System.qml
│   │       ├── commoninfo.dci
│   │       └── metadata.json
│   ├── plugin-systeminfo/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── qrc/
│   │   │   │   ├── gpl/
│   │   │   │   │   ├── gpl-3.0-en_US-body.txt
│   │   │   │   │   ├── gpl-3.0-en_US-title.txt
│   │   │   │   │   ├── gpl-3.0-zh_CN-body.txt
│   │   │   │   │   ├── gpl-3.0-zh_CN-title.txt
│   │   │   │   │   ├── gpl-3.0-zh_TW-body.txt
│   │   │   │   │   └── gpl-3.0-zh_TW-title.txt
│   │   │   │   ├── icons/
│   │   │   │   │   └── edit.dci
│   │   │   │   ├── license/
│   │   │   │   │   ├── deepin-end-user-license-agreement_community_en_US.txt
│   │   │   │   │   ├── deepin-end-user-license-agreement_community_zh_CN.txt
│   │   │   │   │   ├── deepin-end-user-license-agreement_developer_community_en_US.txt
│   │   │   │   │   ├── deepin-end-user-license-agreement_developer_community_zh_CN.txt
│   │   │   │   │   ├── deepin-end-user-license-agreement_developer_community_zh_HK.txt
│   │   │   │   │   ├── deepin-end-user-license-agreement_developer_community_zh_TW.txt
│   │   │   │   │   ├── deepin-end-user-license-agreement_en_US.txt
│   │   │   │   │   └── deepin-end-user-license-agreement_zh_CN.txt
│   │   │   │   └── systeminfo.qrc
│   │   │   ├── systeminfodbusproxy.cpp
│   │   │   ├── systeminfodbusproxy.h
│   │   │   ├── systeminfointeraction.cpp
│   │   │   ├── systeminfointeraction.h
│   │   │   ├── systeminfomodel.cpp
│   │   │   ├── systeminfomodel.h
│   │   │   ├── systeminfowork.cpp
│   │   │   ├── systeminfowork.h
│   │   │   └── utils.h
│   │   └── qml/
│   │       ├── NativeInfoPage.qml
│   │       ├── PrivacyPolicyPage.qml
│   │       ├── SystemInfo.qml
│   │       ├── SystemInfoMain.qml
│   │       ├── UserExperienceProgramPage.qml
│   │       ├── UserLicensePage.qml
│   │       ├── VersionProtocolPage.qml
│   │       ├── about.dci
│   │       ├── dcc_systemInfo_edit.dci
│   │       ├── metadata.json
│   │       ├── privacy_policy.dci
│   │       ├── software_declaration.dci
│   │       ├── user_experience_plan.dci
│   │       └── user_license_agreement.dci
│   ├── plugin-touchscreen/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── monitordbusproxy.cpp
│   │   │   ├── monitordbusproxy.h
│   │   │   ├── qrc/
│   │   │   │   └── touchscreen.qrc
│   │   │   ├── touchscreenmatchmodel.cpp
│   │   │   ├── touchscreenmatchmodel.h
│   │   │   ├── touchscreenmodel.cpp
│   │   │   ├── touchscreenmodel.h
│   │   │   ├── touchscreenmodel_p.h
│   │   │   ├── touchscreenproxy.cpp
│   │   │   ├── touchscreenproxy.h
│   │   │   └── types/
│   │   │       ├── touchscreeninfolist_v2.cpp
│   │   │       ├── touchscreeninfolist_v2.h
│   │   │       ├── touchscreenmap.cpp
│   │   │       └── touchscreenmap.h
│   │   └── qml/
│   │       ├── TouchScreen.qml
│   │       ├── Touchscreen.qml
│   │       ├── TouchscreenMain.qml
│   │       ├── device_touchscreen.dci
│   │       └── metadata.json
│   ├── plugin-wacom/
│   │   ├── CMakeLists.txt
│   │   ├── operation/
│   │   │   ├── qrc/
│   │   │   │   └── wacom.qrc
│   │   │   ├── wacomdbusproxy.cpp
│   │   │   ├── wacomdbusproxy.h
│   │   │   ├── wacommodel.cpp
│   │   │   ├── wacommodel.h
│   │   │   └── wacommodelprivate_p.h
│   │   └── qml/
│   │       ├── Wacom.qml
│   │       ├── WacomMain.qml
│   │       └── metadata.json
│   └── shared-utils/
│       ├── CMakeLists.txt
│       ├── dcclocale.cpp
│       └── dcclocale.h
├── tests/
│   └── CMakeLists.txt
├── toolGenerate/
│   ├── dconfig2cpp/
│   │   ├── org_deepin_dde_control-center.hpp
│   │   ├── org_deepin_dde_control-center_accounts.hpp
│   │   ├── org_deepin_dde_control-center_datetime.hpp
│   │   ├── org_deepin_dde_control-center_display.hpp
│   │   ├── org_deepin_dde_control-center_personalization.hpp
│   │   ├── org_deepin_dde_control-center_power.hpp
│   │   ├── org_deepin_dde_control-center_update.hpp
│   │   └── org_deepin_region-format.hpp
│   └── qdbusxml2cpp/
│       ├── org.deepin.dde.controlcenter.metainfoAdaptor.cpp
│       ├── org.deepin.dde.controlcenter.metainfoAdaptor.h
│       ├── org.desktopspec.ApplicationManager1.ApplicationAdaptor.cpp
│       ├── org.desktopspec.ApplicationManager1.ApplicationAdaptor.h
│       ├── org.desktopspec.ObjectManager1Adaptor.cpp
│       ├── org.desktopspec.ObjectManager1Adaptor.h
│       ├── treeland-output-managementAdaptor.cpp
│       ├── treeland-output-managementAdaptor.h
│       ├── wlr-output-management-unstable-v1Adaptor.cpp
│       └── wlr-output-management-unstable-v1Adaptor.h
└── translations/
    ├── dde-control-center_ady.ts
    ├── dde-control-center_af.ts
    ├── dde-control-center_af_ZA.ts
    ├── dde-control-center_ak.ts
    ├── dde-control-center_am.ts
    ├── dde-control-center_am_ET.ts
    ├── dde-control-center_ar.ts
    ├── dde-control-center_ar_EG.ts
    ├── dde-control-center_ast.ts
    ├── dde-control-center_az.ts
    ├── dde-control-center_bg.ts
    ├── dde-control-center_bn.ts
    ├── dde-control-center_bo.ts
    ├── dde-control-center_bqi.ts
    ├── dde-control-center_br.ts
    ├── dde-control-center_ca.ts
    ├── dde-control-center_cgg.ts
    ├── dde-control-center_cs.ts
    ├── dde-control-center_da.ts
    ├── dde-control-center_de.ts
    ├── dde-control-center_el.ts
    ├── dde-control-center_el_GR.ts
    ├── dde-control-center_en.ts
    ├── dde-control-center_en_AU.ts
    ├── dde-control-center_en_GB.ts
    ├── dde-control-center_en_NO.ts
    ├── dde-control-center_en_US.ts
    ├── dde-control-center_eo.ts
    ├── dde-control-center_es.ts
    ├── dde-control-center_et.ts
    ├── dde-control-center_eu.ts
    ├── dde-control-center_fa.ts
    ├── dde-control-center_fi.ts
    ├── dde-control-center_fil.ts
    ├── dde-control-center_fr.ts
    ├── dde-control-center_gl.ts
    ├── dde-control-center_gl_ES.ts
    ├── dde-control-center_he.ts
    ├── dde-control-center_hi_IN.ts
    ├── dde-control-center_hr.ts
    ├── dde-control-center_hu.ts
    ├── dde-control-center_hy.ts
    ├── dde-control-center_id.ts
    ├── dde-control-center_id_ID.ts
    ├── dde-control-center_it.ts
    ├── dde-control-center_ja.ts
    ├── dde-control-center_ka.ts
    ├── dde-control-center_kab.ts
    ├── dde-control-center_kk.ts
    ├── dde-control-center_km_KH.ts
    ├── dde-control-center_kn_IN.ts
    ├── dde-control-center_ko.ts
    ├── dde-control-center_krl.ts
    ├── dde-control-center_ku.ts
    ├── dde-control-center_ku_IQ.ts
    ├── dde-control-center_ky.ts
    ├── dde-control-center_ky@Arab.ts
    ├── dde-control-center_la.ts
    ├── dde-control-center_lo.ts
    ├── dde-control-center_lt.ts
    ├── dde-control-center_lv.ts
    ├── dde-control-center_ml.ts
    ├── dde-control-center_mn.ts
    ├── dde-control-center_mr.ts
    ├── dde-control-center_ms.ts
    ├── dde-control-center_nb.ts
    ├── dde-control-center_nb_NO.ts
    ├── dde-control-center_ne.ts
    ├── dde-control-center_nl.ts
    ├── dde-control-center_pa.ts
    ├── dde-control-center_pam.ts
    ├── dde-control-center_pl.ts
    ├── dde-control-center_ps.ts
    ├── dde-control-center_pt.ts
    ├── dde-control-center_pt_BR.ts
    ├── dde-control-center_qu.ts
    ├── dde-control-center_ro.ts
    ├── dde-control-center_ru.ts
    ├── dde-control-center_ru_UA.ts
    ├── dde-control-center_sc.ts
    ├── dde-control-center_si.ts
    ├── dde-control-center_sk.ts
    ├── dde-control-center_sl.ts
    ├── dde-control-center_sq.ts
    ├── dde-control-center_sr.ts
    ├── dde-control-center_sv.ts
    ├── dde-control-center_sv_SE.ts
    ├── dde-control-center_sw.ts
    ├── dde-control-center_ta.ts
    ├── dde-control-center_te.ts
    ├── dde-control-center_th.ts
    ├── dde-control-center_tr.ts
    ├── dde-control-center_tzm.ts
    ├── dde-control-center_ug.ts
    ├── dde-control-center_uk.ts
    ├── dde-control-center_ur.ts
    ├── dde-control-center_uz.ts
    ├── dde-control-center_vi.ts
    ├── dde-control-center_zh_CN.ts
    ├── dde-control-center_zh_HK.ts
    ├── dde-control-center_zh_TW.ts
    └── desktop/
        ├── desktop.ts
        ├── desktop_ady.ts
        ├── desktop_af.ts
        ├── desktop_af_ZA.ts
        ├── desktop_ak.ts
        ├── desktop_am.ts
        ├── desktop_am_ET.ts
        ├── desktop_ar.ts
        ├── desktop_ar_EG.ts
        ├── desktop_ast.ts
        ├── desktop_az.ts
        ├── desktop_bg.ts
        ├── desktop_bn.ts
        ├── desktop_bo.ts
        ├── desktop_bqi.ts
        ├── desktop_br.ts
        ├── desktop_ca.ts
        ├── desktop_cgg.ts
        ├── desktop_cs.ts
        ├── desktop_da.ts
        ├── desktop_de.ts
        ├── desktop_el.ts
        ├── desktop_el_GR.ts
        ├── desktop_en.ts
        ├── desktop_en_AU.ts
        ├── desktop_en_GB.ts
        ├── desktop_en_NO.ts
        ├── desktop_en_US.ts
        ├── desktop_eo.ts
        ├── desktop_es.ts
        ├── desktop_et.ts
        ├── desktop_eu.ts
        ├── desktop_fa.ts
        ├── desktop_fi.ts
        ├── desktop_fil.ts
        ├── desktop_fr.ts
        ├── desktop_gl.ts
        ├── desktop_gl_ES.ts
        ├── desktop_he.ts
        ├── desktop_hi_IN.ts
        ├── desktop_hr.ts
        ├── desktop_hu.ts
        ├── desktop_hy.ts
        ├── desktop_id.ts
        ├── desktop_id_ID.ts
        ├── desktop_it.ts
        ├── desktop_ja.ts
        ├── desktop_ka.ts
        ├── desktop_kab.ts
        ├── desktop_kk.ts
        ├── desktop_km_KH.ts
        ├── desktop_kn_IN.ts
        ├── desktop_ko.ts
        ├── desktop_ku.ts
        ├── desktop_ku_IQ.ts
        ├── desktop_ky.ts
        ├── desktop_ky@Arab.ts
        ├── desktop_la.ts
        ├── desktop_lo.ts
        ├── desktop_lt.ts
        ├── desktop_lv.ts
        ├── desktop_ml.ts
        ├── desktop_mn.ts
        ├── desktop_mr.ts
        ├── desktop_ms.ts
        ├── desktop_nb.ts
        ├── desktop_ne.ts
        ├── desktop_nl.ts
        ├── desktop_pa.ts
        ├── desktop_pam.ts
        ├── desktop_pl.ts
        ├── desktop_ps.ts
        ├── desktop_pt.ts
        ├── desktop_pt_BR.ts
        ├── desktop_ro.ts
        ├── desktop_ru.ts
        ├── desktop_ru_UA.ts
        ├── desktop_sc.ts
        ├── desktop_si.ts
        ├── desktop_sk.ts
        ├── desktop_sl.ts
        ├── desktop_sq.ts
        ├── desktop_sr.ts
        ├── desktop_sv.ts
        ├── desktop_sv_SE.ts
        ├── desktop_sw.ts
        ├── desktop_ta.ts
        ├── desktop_te.ts
        ├── desktop_th.ts
        ├── desktop_tr.ts
        ├── desktop_tzm.ts
        ├── desktop_ug.ts
        ├── desktop_uk.ts
        ├── desktop_ur.ts
        ├── desktop_uz.ts
        ├── desktop_vi.ts
        ├── desktop_zh_CN.ts
        ├── desktop_zh_HK.ts
        └── desktop_zh_TW.ts
Download .txt
SYMBOL INDEX (1276 symbols across 341 files)

FILE: examples/plugin-example/src/pluginexample.cpp
  function QString (line 14) | QString PluginExample::name() const

FILE: examples/plugin-example/src/pluginexample.h
  function class (line 9) | class PluginExample : public QObject

FILE: include/dccfactory.h
  function namespace (line 9) | namespace dccV25 {

FILE: src/dde-control-center/controlcenterdbusadaptor.cpp
  function DccManager (line 38) | DccManager *ControlCenterDBusAdaptor::parent() const
  function QRect (line 43) | const QRect ControlCenterDBusAdaptor::rect() const
  function QString (line 48) | const QString ControlCenterDBusAdaptor::page() const
  function QString (line 58) | const QString ControlCenterDBusAdaptor::path() const
  function QString (line 103) | QString ControlCenterDBusAdaptor::GetAllModule()
  function DccManager (line 161) | DccManager *DBusControlCenterGrandSearchService::parent() const
  function QString (line 167) | QString DBusControlCenterGrandSearchService::Search(const QString &json)

FILE: src/dde-control-center/controlcenterdbusadaptor.h
  function namespace (line 20) | namespace dccV25 {

FILE: src/dde-control-center/dccmanager.cpp
  function DCORE_USE_NAMESPACE (line 42) | DCORE_USE_NAMESPACE

FILE: src/dde-control-center/dccmanager.h
  function QT_END_NAMESPACE (line 21) | QT_END_NAMESPACE

FILE: src/dde-control-center/main.cpp
  function DGUI_USE_NAMESPACE (line 24) | DGUI_USE_NAMESPACE
  function QStringList (line 48) | QStringList defaultpath()
  function refreshQmlCache (line 56) | static void refreshQmlCache(const QString &version)
  function main (line 77) | int main(int argc, char *argv[])

FILE: src/dde-control-center/navigationmodel.cpp
  type dccV25 (line 10) | namespace dccV25 {
    type NavType (line 13) | enum NavType {
    function QModelIndex (line 44) | QModelIndex NavigationModel::index(int row, int column, const QModelIn...
    function QModelIndex (line 52) | QModelIndex NavigationModel::parent(const QModelIndex &) const
    function QVariant (line 69) | QVariant NavigationModel::data(const QModelIndex &index, int role) const

FILE: src/dde-control-center/navigationmodel.h
  function namespace (line 9) | namespace dccV25 {

FILE: src/dde-control-center/plugin/DccUtils.js
  function copyFont (line 5) | function copyFont(srcFont, propertys) {
  function getMargin (line 17) | function getMargin(w) {

FILE: src/dde-control-center/plugin/dccapp.cpp
  type dccV25 (line 6) | namespace dccV25 {
    function DccApp (line 9) | DccApp *DccApp::instance()
    function DccObject (line 42) | DccObject *DccApp::root() const
    function DccObject (line 47) | DccObject *DccApp::activeObject() const
    function DccObject (line 59) | DccObject *DccApp::object(const QString &)
    function QWindow (line 74) | QWindow *DccApp::mainWindow() const
    function QAbstractItemModel (line 79) | QAbstractItemModel *DccApp::navModel() const
    function QSortFilterProxyModel (line 84) | QSortFilterProxyModel *DccApp::searchModel() const

FILE: src/dde-control-center/plugin/dccapp.h
  type UosEdition (line 21) | enum UosEdition {

FILE: src/dde-control-center/plugin/dccimageprovider.cpp
  type dccV25 (line 12) | namespace dccV25 {
    function QSize (line 18) | static QSize resolveSize(const QSize &size)
    class CacheImageResponse (line 28) | class CacheImageResponse : public QQuickImageResponse
      method setImage (line 34) | void setImage(const QImage &image) { m_image = image; }
      method emitFinished (line 35) | void emitFinished() { Q_EMIT finished(); }
      method QQuickTextureFactory (line 37) | QQuickTextureFactory *textureFactory() const override
    class ImageTask (line 49) | class ImageTask : public QObject, public QRunnable
      method ImageTask (line 57) | ImageTask(const QString &id, const QSize &requestedSize, const QStri...
      method run (line 65) | void run() override
    function QString (line 126) | QString DccImageProvider::makeCacheKey(const QString &id, const QSize ...
    function QQuickImageResponse (line 167) | QQuickImageResponse *DccImageProvider::requestImageResponse(const QStr...

FILE: src/dde-control-center/plugin/dccimageprovider.h
  function namespace (line 13) | namespace dccV25 {

FILE: src/dde-control-center/plugin/dccmodel.cpp
  type dccV25 (line 12) | namespace dccV25 {
    type DccModelRole (line 15) | enum DccModelRole {
    type DccItemPostition (line 21) | enum DccItemPostition {
    function DccObject (line 37) | DccObject *DccModel::root() const
    function DccObject (line 61) | DccObject *DccModel::getObject(int row)
    function QModelIndex (line 81) | QModelIndex DccModel::index(const DccObject *object)
    function QModelIndex (line 100) | QModelIndex DccModel::index(int row, int column, const QModelIndex &pa...
    function QModelIndex (line 116) | QModelIndex DccModel::parent(const QModelIndex &index) const
    function QVariant (line 153) | QVariant DccModel::data(const QModelIndex &index, int role) const

FILE: src/dde-control-center/plugin/dccmodel.h
  function namespace (line 10) | namespace dccV25 {

FILE: src/dde-control-center/plugin/dccobject.cpp
  type dccV25 (line 15) | namespace dccV25 {
    function DccObject (line 168) | DccObject *DccObject::Private::getChild(int childPos) const
    function qsizetype (line 229) | qsizetype DccObject::Private::data_count(QQmlListProperty<QObject> *data)
    function QObject (line 234) | QObject *DccObject::Private::data_at(QQmlListProperty<QObject> *data, ...
    function QString (line 261) | QString DccObject::name() const
    function QString (line 272) | QString DccObject::parentName() const
    function quint32 (line 285) | quint32 DccObject::weight() const
    function QString (line 301) | QString DccObject::displayName() const
    function QString (line 314) | QString DccObject::description() const
    function QString (line 327) | QString DccObject::icon() const
    function QUrl (line 355) | QUrl DccObject::iconSource() const
    function qint8 (line 360) | qint8 DccObject::badge() const
    function DccObject (line 433) | DccObject *DccObject::currentObject()
    function quint8 (line 449) | quint8 DccObject::pageType() const
    function QQuickItem (line 462) | QQuickItem *DccObject::parentItem()
    function QQmlComponent (line 475) | QQmlComponent *DccObject::page() const

FILE: src/dde-control-center/plugin/dccobject.h
  function namespace (line 13) | namespace dccV25 {

FILE: src/dde-control-center/plugin/dccobject_p.h
  function namespace (line 26) | namespace dccV25 {

FILE: src/dde-control-center/plugin/dccquickdbusinterface.cpp
  type dccV25 (line 18) | namespace dccV25 {
    function QVariant (line 32) | static QVariant DBusBasicToValue(const QDBusArgument &arg)
    function QVariant (line 112) | static QVariant DBusArgumentToValue(const QDBusArgument &arg)
    function QVariant (line 162) | QVariant DccQuickDBusCallback::toValue(const QVariant &value)
    class DBusPropertySignalSpy (line 244) | class DBusPropertySignalSpy : public QObject
      method DBusPropertySignalSpy (line 249) | explicit DBusPropertySignalSpy(PropertyCallbackFunc fun, QObject *pa...
      method qt_metacall (line 255) | int qt_metacall(QMetaObject::Call c, int id, void **arguments) override
    function QVariant (line 323) | QVariant DccQuickDBusInterface::Private::getProperty(const QString &pr...
    function QString (line 359) | QString DccQuickDBusInterface::service() const
    function QString (line 372) | QString DccQuickDBusInterface::path() const
    function QString (line 385) | QString DccQuickDBusInterface::interface() const
    function QString (line 413) | QString DccQuickDBusInterface::suffix() const

FILE: src/dde-control-center/plugin/dccquickdbusinterface.h
  function namespace (line 11) | namespace dccV25 {

FILE: src/dde-control-center/plugin/dccquickdbusinterface_p.h
  function namespace (line 12) | namespace dccV25 {

FILE: src/dde-control-center/plugin/dccrepeater.cpp
  type dccV25 (line 15) | namespace dccV25 {
    class DccRepeaterPrivate (line 17) | class DccRepeaterPrivate
      method DccRepeaterPrivate (line 20) | DccRepeaterPrivate(DccRepeater *qq)
      method requestItems (line 36) | void requestItems()
      method QVariant (line 81) | QVariant DccRepeater::model() const
      method QQmlComponent (line 144) | QQmlComponent *DccRepeater::delegate() const
      method DccObject (line 188) | DccObject *DccRepeater::objectAt(int index) const
      method if (line 278) | if (index >= d->deletables.size()) {
      method if (line 285) | if (!d->deletables.at(index)) {

FILE: src/dde-control-center/pluginmanager.cpp
  type dccV25 (line 28) | namespace dccV25 {
    type PluginStatus (line 33) | enum PluginStatus {
    type PluginType (line 61) | enum PluginType {
    type PluginData (line 73) | struct PluginData
      method PluginData (line 87) | PluginData(const QString &_name, const QString &_path)
      method uint (line 101) | inline uint version() { return type & T_V_MASK; }
    class LoadPluginTask (line 104) | class LoadPluginTask : public QRunnable
      method LoadPluginTask (line 107) | explicit LoadPluginTask(PluginData *data, PluginManager *pManager)
    function QThreadPool (line 337) | QThreadPool *PluginManager::threadPool()

FILE: src/dde-control-center/pluginmanager.h
  function namespace (line 14) | namespace dccV25 {

FILE: src/dde-control-center/searchmodel.cpp
  type dccV25 (line 14) | namespace dccV25 {
    type SearchData (line 16) | struct SearchData
      method SearchData (line 28) | explicit SearchData(const DccObject *o)
      method QString (line 43) | inline const QString sourceText() const { return text.isEmpty() ? ob...
      method QString (line 45) | inline const QString sourceUrl() const { return url.isEmpty() ? obj-...
    class SearchSourceModel (line 49) | class SearchSourceModel : public QAbstractItemModel
    function QModelIndex (line 162) | QModelIndex SearchSourceModel::index(int row, int column, const QModel...
    function QModelIndex (line 170) | QModelIndex SearchSourceModel::parent(const QModelIndex &) const
    function QVariant (line 185) | QVariant SearchSourceModel::data(const QModelIndex &index, int role) c...

FILE: src/dde-control-center/searchmodel.h
  function namespace (line 11) | namespace dccV25 {

FILE: src/plugin-accounts/operation/accountlistmodel.cpp
  function QVariant (line 28) | QVariant AccountListModel::data(const QModelIndex &index, int role) const
  function QVariant (line 155) | QVariant GroupListModel::data(const QModelIndex &index, int role) const

FILE: src/plugin-accounts/operation/accountlistmodel.h
  function namespace (line 8) | namespace dccV25 {

FILE: src/plugin-accounts/operation/accountscontroller.cpp
  function DCORE_USE_NAMESPACE (line 30) | DCORE_USE_NAMESPACE

FILE: src/plugin-accounts/operation/accountscontroller.h
  function namespace (line 17) | namespace dccV25 {

FILE: src/plugin-accounts/operation/accountsdbusproxy.cpp
  function QStringList (line 49) | QStringList AccountsDBusProxy::userList()
  function QStringList (line 54) | QStringList AccountsDBusProxy::groupList()

FILE: src/plugin-accounts/operation/accountsdbusproxy.h
  function class (line 15) | class AccountsDBusProxy : public QObject

FILE: src/plugin-accounts/operation/accountsworker.cpp
  function DCORE_USE_NAMESPACE (line 41) | DCORE_USE_NAMESPACE
  type passwd (line 74) | struct passwd
  function foreach (line 145) | foreach (auto name, reply.value()) {
  function SecurityLever (line 324) | SecurityLever AccountsWorker::getSecUserLeverbyname(QString userName)
  function QString (line 409) | QString AccountsWorker::getCurrentUserName()
  function CreationResult (line 916) | CreationResult *AccountsWorker::createAccountInternal(const User *user)
  function QString (line 998) | QString AccountsWorker::tryEncryptPassword(const QString &password, cons...
  function QString (line 1037) | QString AccountsWorker::cryptUserPassword(const QString &password)
  function BindCheckResult (line 1078) | BindCheckResult AccountsWorker::checkLocalBind(const QString &uosid, con...
  function QString (line 1094) | QString AccountsWorker::saveCustomAvatar(const QString &tempFile, const ...

FILE: src/plugin-accounts/operation/accountsworker.h
  type BindCheckResult (line 25) | struct BindCheckResult {
  type class (line 35) | enum class

FILE: src/plugin-accounts/operation/avatarlistmodel.cpp
  function QVariant (line 28) | QVariant AvatarTypesModel::data(const QModelIndex &index, int role) const
  function QVariant (line 77) | QVariant AvatarListModel::data(const QModelIndex &index, int role) const

FILE: src/plugin-accounts/operation/avatarlistmodel.h
  function namespace (line 8) | namespace dccV25 {

FILE: src/plugin-accounts/operation/creationresult.h
  function namespace (line 9) | namespace dccV25 {

FILE: src/plugin-accounts/operation/pwqualitymanager.cpp
  function PwqualityManager (line 17) | PwqualityManager *PwqualityManager::instance()
  function PASSWORD_LEVEL_TYPE (line 48) | PASSWORD_LEVEL_TYPE PwqualityManager::GetNewPassWdLevel(const QString &n...
  function QString (line 53) | QString PwqualityManager::getErrorTips(PwqualityManager::ERROR_TYPE type...

FILE: src/plugin-accounts/operation/pwqualitymanager.h
  function namespace (line 12) | namespace dccV25 {

FILE: src/plugin-accounts/operation/securitydbusproxy.cpp
  function QString (line 17) | QString SecurityDBusProxy::Status()

FILE: src/plugin-accounts/operation/securitydbusproxy.h
  function class (line 15) | class SecurityDBusProxy : public QObject

FILE: src/plugin-accounts/operation/syncdbusproxy.cpp
  function QString (line 22) | QString SyncDBusProxy::UOSID()
  function QString (line 34) | QString SyncDBusProxy::LocalBindCheck(const QString &uosid, const QStrin...

FILE: src/plugin-accounts/operation/syncdbusproxy.h
  function class (line 13) | class SyncDBusProxy : public QObject

FILE: src/plugin-accounts/operation/user.cpp
  function QString (line 28) | const QString User::name() const
  function QString (line 133) | const QString User::displayName() const
  function SecurityLever (line 230) | SecurityLever User::securityLever() const

FILE: src/plugin-accounts/operation/user.h
  type SecurityLever (line 15) | enum SecurityLever {
  function class (line 23) | class User : public QObject

FILE: src/plugin-accounts/operation/userdbusproxy.cpp
  function qulonglong (line 191) | qulonglong UserDBusProxy::createdTime()
  function QStringList (line 195) | QStringList UserDBusProxy::desktopBackgrounds()
  function QString (line 199) | QString UserDBusProxy::fullName()
  function QString (line 203) | QString UserDBusProxy::gid()
  function QString (line 207) | QString UserDBusProxy::greeterBackground()
  function QStringList (line 211) | QStringList UserDBusProxy::groups()
  function QStringList (line 215) | QStringList UserDBusProxy::historyLayout()
  function QString (line 219) | QString UserDBusProxy::homeDir()
  function QString (line 223) | QString UserDBusProxy::iconFile()
  function QStringList (line 227) | QStringList UserDBusProxy::iconList()
  function QString (line 231) | QString UserDBusProxy::layout()
  function QString (line 235) | QString UserDBusProxy::locale()
  function qulonglong (line 243) | qulonglong UserDBusProxy::loginTime()
  function QString (line 263) | QString UserDBusProxy::passwordHint()
  function QString (line 271) | QString UserDBusProxy::passwordStatus()
  function QString (line 275) | QString UserDBusProxy::shell()
  function QString (line 291) | QString UserDBusProxy::uid()
  function QString (line 296) | QString UserDBusProxy::uuid()
  function QString (line 305) | QString UserDBusProxy::userName()
  function QString (line 317) | QString UserDBusProxy::xSession()

FILE: src/plugin-accounts/operation/userdbusproxy.h
  function class (line 14) | class UserDBusProxy : public QObject

FILE: src/plugin-accounts/operation/usermodel.cpp
  function User (line 29) | User * UserModel::getUser(const QString &id)
  function QStringList (line 137) | QStringList UserModel::getAllGroups()
  function QStringList (line 156) | QStringList UserModel::getPresetGroups()
  function QString (line 161) | QString UserModel::getCurrentUserName() const
  function User (line 171) | User *UserModel::currentUser()

FILE: src/plugin-accounts/operation/usermodel.h
  function namespace (line 12) | namespace dccV25 {

FILE: src/plugin-authentication/operation/abstractbiometriccontroller.cpp
  type dccV25 (line 7) | namespace dccV25 {

FILE: src/plugin-authentication/operation/abstractbiometriccontroller.h
  function namespace (line 10) | namespace dccV25 {

FILE: src/plugin-authentication/operation/biometricauthcontroller.cpp
  type dccV25 (line 9) | namespace dccV25 {

FILE: src/plugin-authentication/operation/biometricauthcontroller.h
  function namespace (line 13) | namespace dccV25 {

FILE: src/plugin-authentication/operation/charamangerdbusproxy.cpp
  function QString (line 52) | QString CharaMangerDBusProxy::List(const QString &driverName, int charaT...
  function QString (line 59) | QString CharaMangerDBusProxy::driverInfo()
  function QString (line 96) | QString CharaMangerDBusProxy::defaultDevice()
  function QStringList (line 116) | QStringList CharaMangerDBusProxy::ListFingers(const QString &username)

FILE: src/plugin-authentication/operation/charamangerdbusproxy.h
  function class (line 15) | class CharaMangerDBusProxy : public QObject

FILE: src/plugin-authentication/operation/charamangermodel.h
  type EnrollIrisStatusType (line 48) | enum EnrollIrisStatusType {
  type AddInfoState (line 64) | enum AddInfoState {
  type EnrollFailedCode (line 94) | enum EnrollFailedCode {
  type EnrollRetryCode (line 101) | enum EnrollRetryCode {
  type EnrollType (line 112) | enum EnrollType {
  function resetProgress (line 177) | void resetProgress() { m_progress = 0; }
  function charaVaild (line 181) | bool charaVaild() const;
  function m_isFingerVaild (line 250) | bool m_isFingerVaild{false};

FILE: src/plugin-authentication/operation/charamangerworker.cpp
  type passwd (line 102) | struct passwd
  function QStringList (line 133) | QStringList CharaMangerWorker::parseCharaNameJsonData(const QString &man...

FILE: src/plugin-authentication/operation/charamangerworker.h
  function class (line 16) | class CharaMangerWorker : public QObject

FILE: src/plugin-authentication/operation/faceauthcontroller.cpp
  function DGUI_USE_NAMESPACE (line 15) | DGUI_USE_NAMESPACE

FILE: src/plugin-authentication/operation/faceauthcontroller.h
  type DA_img (line 11) | struct DA_img
  function namespace (line 13) | namespace dccV25 {

FILE: src/plugin-authentication/operation/fingerprintauthcontroller.cpp
  function DGUI_USE_NAMESPACE (line 8) | DGUI_USE_NAMESPACE

FILE: src/plugin-authentication/operation/fingerprintauthcontroller.h
  function namespace (line 12) | namespace dccV25 {

FILE: src/plugin-authentication/operation/irisauthcontroller.cpp
  function DGUI_USE_NAMESPACE (line 11) | DGUI_USE_NAMESPACE

FILE: src/plugin-authentication/operation/irisauthcontroller.h
  function namespace (line 11) | namespace dccV25 {

FILE: src/plugin-bluetooth/operation/bluetoothadapter.cpp
  function BluetoothDeviceModel (line 150) | BluetoothDeviceModel *BluetoothAdapter::otherDevices() const
  function BluetoothDeviceModel (line 189) | BluetoothDeviceModel *BluetoothAdapter::myDevices() const
  function BluetoothDevice (line 213) | const BluetoothDevice *BluetoothAdapter::deviceById(const QString &id) c...

FILE: src/plugin-bluetooth/operation/bluetoothadapter.h
  function class (line 15) | class BluetoothAdapter : public QObject

FILE: src/plugin-bluetooth/operation/bluetoothadaptersmodel.cpp
  function QVariant (line 36) | QVariant BlueToothAdaptersModel::data(const QModelIndex &index, int role...

FILE: src/plugin-bluetooth/operation/bluetoothadaptersmodel.h
  function class (line 11) | class BlueToothAdaptersModel : public QAbstractListModel

FILE: src/plugin-bluetooth/operation/bluetoothdbusproxy.cpp
  function uint (line 40) | uint BluetoothDBusProxy::state()
  function QString (line 109) | QString BluetoothDBusProxy::GetDevices(const QDBusObjectPath &adapter)
  function QString (line 121) | QString BluetoothDBusProxy::GetAdapters()

FILE: src/plugin-bluetooth/operation/bluetoothdbusproxy.h
  function class (line 16) | class BluetoothDBusProxy : public QObject

FILE: src/plugin-bluetooth/operation/bluetoothdevice.cpp
  function QDebug (line 99) | QDebug &operator<<(QDebug &stream, const BluetoothDevice *device)

FILE: src/plugin-bluetooth/operation/bluetoothdevice.h
  function class (line 34) | class BluetoothDevice : public QObject

FILE: src/plugin-bluetooth/operation/bluetoothdevicemodel.cpp
  function QVariant (line 146) | QVariant BluetoothDeviceModel::data(const QModelIndex &index, int role) ...
  function QString (line 200) | QString BluetoothDeviceModel::adapterId() const
  function QString (line 220) | QString BluetoothDeviceModel::getConnectStatusText(int state, bool conne...
  function QString (line 231) | QString BluetoothDeviceModel::getBatteryIconPath(int percentage) const

FILE: src/plugin-bluetooth/operation/bluetoothdevicemodel.h
  function Q_OBJECT (line 13) | Q_OBJECT

FILE: src/plugin-bluetooth/operation/bluetoothinteraction.cpp
  function BluetoothModel (line 21) | BluetoothModel *BluetoothInteraction::model() const
  function BluetoothWorker (line 31) | BluetoothWorker *BluetoothInteraction::work() const

FILE: src/plugin-bluetooth/operation/bluetoothinteraction.h
  function class (line 13) | class BluetoothInteraction : public QObject

FILE: src/plugin-bluetooth/operation/bluetoothmodel.cpp
  function BluetoothAdapter (line 39) | const BluetoothAdapter *BluetoothModel::removeAdapater(const QString &ad...
  function BluetoothAdapter (line 65) | const BluetoothAdapter *BluetoothModel::adapterById(const QString &id)
  function BlueToothAdaptersModel (line 139) | BlueToothAdaptersModel *BluetoothModel::blueToothAdaptersModel() const

FILE: src/plugin-bluetooth/operation/bluetoothmodel.h
  function class (line 13) | class BluetoothModel : public QObject

FILE: src/plugin-bluetooth/operation/bluetoothworker.h
  function class (line 14) | class BluetoothWorker : public QObject

FILE: src/plugin-commoninfo/operation/commoninfointeraction.cpp
  function CommonInfoWork (line 24) | CommonInfoWork *CommonInfoInteraction::work() const
  function CommonInfoModel (line 34) | CommonInfoModel *CommonInfoInteraction::mode() const

FILE: src/plugin-commoninfo/operation/commoninfointeraction.h
  function class (line 13) | class CommonInfoInteraction : public QObject

FILE: src/plugin-commoninfo/operation/commoninfomodel.cpp
  function QPixmap (line 121) | QPixmap CommonInfoModel::background() const
  function QString (line 225) | QString CommonInfoModel::grubThemePath() const
  function GrubAnimationModel (line 249) | GrubAnimationModel *CommonInfoModel::grubAnimationModel()
  function GrubMenuListModel (line 254) | GrubMenuListModel * CommonInfoModel::grubMenuListModel()

FILE: src/plugin-commoninfo/operation/commoninfomodel.h
  function Q_OBJECT (line 15) | Q_OBJECT
  function bootDelay (line 41) | bool bootDelay() const;
  function grubEditAuthEnabled (line 44) | bool grubEditAuthEnabled() { return m_grubEditAuthEnabled; }
  function QPixmap (line 46) | QPixmap background() const;
  function m_bootGrubUserNameVisible (line 149) | bool m_bootGrubUserNameVisible{true};

FILE: src/plugin-commoninfo/operation/commoninfoproxy.cpp
  function isACLActivatable (line 60) | static bool isACLActivatable()
  function QStringList (line 181) | QStringList CommonInfoProxy::GetSimpleEntryTitles()
  function QString (line 213) | QString CommonInfoProxy::DefaultEntry()
  function uint (line 223) | uint CommonInfoProxy::Timeout()
  function QStringList (line 235) | QStringList CommonInfoProxy::EnabledUsers()
  function QDBusPendingCall (line 264) | QDBusPendingCall CommonInfoProxy::SetScalePlymouth(int scale)
  function QString (line 278) | QString CommonInfoProxy::Background()

FILE: src/plugin-commoninfo/operation/commoninfoproxy.h
  function class (line 13) | class CommonInfoProxy : public QObject

FILE: src/plugin-commoninfo/operation/commoninfowork.cpp
  function QString (line 63) | static const QString getLicensePath(const QString &filePath, const QStri...
  function QString (line 76) | static QString getUserExpContent()
  function QString (line 94) | static const QString getDevelopModeLicense(const QString &filePath, cons...
  function notifyInfo (line 117) | static void notifyInfo(const QString &summary)
  function notifyInfoWithBody (line 126) | static void notifyInfoWithBody(const QString &summary, const QString &body)
  function QDBusArgument (line 136) | QDBusArgument &operator<<(QDBusArgument &argument, const DebugArg &debug...
  function QDBusArgument (line 145) | const QDBusArgument &operator>>(const QDBusArgument &argument,  DebugArg...
  function QString (line 362) | QString CommonInfoWork::verifyPassword(QString text)
  function QString (line 761) | QString CommonInfoWork::passwdEncrypt(const QString &password)
  function QString (line 844) | static QString getDeepinImmutableWritableStatus()

FILE: src/plugin-commoninfo/operation/commoninfowork.h
  function namespace (line 18) | namespace Dtk::Core {
  type DebugArg (line 22) | struct DebugArg {
  function isSettingPlymouth (line 39) | bool isSettingPlymouth() { return m_scaleIsSetting; }
  function QString (line 149) | QString productVersion{""};
  function qint64 (line 194) | qint64 memory{0}
  function qint64 (line 195) | qint64 diskTotal{0}
  function QString (line 197) | QString diskList{""};

FILE: src/plugin-commoninfo/operation/grubanimationmodel.cpp
  function QVariant (line 38) | QVariant GrubAnimationModel::data(const QModelIndex &index, int role) const

FILE: src/plugin-commoninfo/operation/grubanimationmodel.h
  type GrubAnimationData (line 9) | struct  GrubAnimationData {
  function Q_OBJECT (line 20) | Q_OBJECT

FILE: src/plugin-commoninfo/operation/grubmenulistmodel.cpp
  function QVariant (line 37) | QVariant GrubMenuListModel::data(const QModelIndex &index, int role) const

FILE: src/plugin-commoninfo/operation/grubmenulistmodel.h
  type GrubMenuData (line 9) | struct GrubMenuData
  function Q_OBJECT (line 17) | Q_OBJECT

FILE: src/plugin-commoninfo/operation/pwqualitymanager.cpp
  function PwqualityManager (line 16) | PwqualityManager *PwqualityManager::instance()
  function PASSWORD_LEVEL_TYPE (line 47) | PASSWORD_LEVEL_TYPE PwqualityManager::GetNewPassWdLevel(const QString &n...
  function QString (line 52) | QString PwqualityManager::getErrorTips(PwqualityManager::ERROR_TYPE type...

FILE: src/plugin-commoninfo/operation/pwqualitymanager.h
  function class (line 12) | class PwqualityManager : public QObject

FILE: src/plugin-commoninfo/operation/utils.h
  function QPixmap (line 67) | inline QPixmap loadPixmap(const QString &path)

FILE: src/plugin-datetime/operation/datetimedbusproxy.cpp
  function QString (line 115) | QString DatetimeDBusProxy::nTPServer()
  function QString (line 120) | QString DatetimeDBusProxy::timezone()
  function QStringList (line 130) | QStringList DatetimeDBusProxy::userTimezones()
  function QStringList (line 178) | QStringList DatetimeDBusProxy::GetSampleNTPServers()
  function ZoneInfo (line 189) | ZoneInfo DatetimeDBusProxy::GetZoneInfo(const QString &zone)
  function QDBusPendingCall (line 201) | QDBusPendingCall DatetimeDBusProxy::SetTimezone(const QString &timezone,...
  function QString (line 218) | QString DatetimeDBusProxy::currentLocale()
  function QString (line 255) | QString DatetimeDBusProxy::decimalSymbol() const
  function QString (line 265) | QString DatetimeDBusProxy::digitGrouping() const
  function QString (line 275) | QString DatetimeDBusProxy::digitGroupingSymbol() const
  function QString (line 285) | QString DatetimeDBusProxy::currencySymbol() const
  function QString (line 295) | QString DatetimeDBusProxy::negativeCurrencyFormat() const
  function QString (line 305) | QString DatetimeDBusProxy::positiveCurrencyFormat() const

FILE: src/plugin-datetime/operation/datetimedbusproxy.h
  function class (line 17) | class LocaleInfo

FILE: src/plugin-datetime/operation/datetimemodel.cpp
  function QString (line 27) | static QString getDescription(const ZoneInfo &zoneInfo)
  function QString (line 67) | static QString getDisplayText(const ZoneInfo &zoneInfo)
  function QStringList (line 75) | static QStringList timeZoneList(const installer::ZoneInfoList &zoneInfoL...
  function QStringList (line 97) | static inline QStringList getCurrencySymbol(bool positive, const QString...
  function QString (line 118) | static inline QString escapSpace(const QString &space)
  function QString (line 127) | static inline QString normalizeSpace(const QString &value)
  function QString (line 137) | static inline QString unEscapSpace(const QString &space)
  function QString (line 149) | static inline QString escapSpace(const QString &displaySymbol, const QLo...
  function QStringList (line 158) | static inline QStringList separatorSymbol(const QLocale &locale, bool gr...
  function QString (line 175) | static QString translate(const QString &localeName, const QString &langR...
  function QStringList (line 278) | QStringList DatetimeModel::zones(int x, int y, int map_width, int map_he...
  function QPoint (line 290) | QPoint DatetimeModel::zonePosition(const QString &timezone, int map_widt...
  function QStringList (line 309) | QStringList DatetimeModel::zoneIdList()
  function QString (line 323) | QString DatetimeModel::zoneDisplayName(const QString &zoneName)
  function QAbstractListModel (line 334) | QAbstractListModel *DatetimeModel::userTimezoneModel()
  function QSortFilterProxyModel (line 364) | QSortFilterProxyModel *DatetimeModel::zoneSearchModel()
  function QSortFilterProxyModel (line 379) | QSortFilterProxyModel *DatetimeModel::langSearchModel()
  function QSortFilterProxyModel (line 401) | QSortFilterProxyModel *DatetimeModel::langRegionSearchModel()
  function QSortFilterProxyModel (line 416) | QSortFilterProxyModel *DatetimeModel::regionSearchModel()
  function QAbstractListModel (line 454) | QAbstractListModel *DatetimeModel::timeDateModel()
  function QAbstractListModel (line 485) | QAbstractListModel *DatetimeModel::currencyModel()
  function QAbstractListModel (line 502) | QAbstractListModel *DatetimeModel::decimalModel()
  function QString (line 520) | QString DatetimeModel::region()
  function QStringList (line 568) | QStringList DatetimeModel::languagesAndRegions()
  function QString (line 579) | QString DatetimeModel::currentLanguageAndRegion()
  function QStringList (line 662) | QStringList DatetimeModel::availableFormats(int format) const
  function QString (line 940) | QString DatetimeModel::currentDate() const
  function QString (line 945) | QString DatetimeModel::getCurrentDate() const
  function QString (line 959) | QString DatetimeModel::currentTime() const
  function QString (line 964) | QString DatetimeModel::getCurrentTime() const
  function QString (line 978) | QString DatetimeModel::getCustomNtpServer() const
  function QString (line 1016) | QString DatetimeModel::systemTimeZoneId() const
  function QString (line 1233) | QString DatetimeModel::timeZoneDescription(const ZoneInfo &zone) const
  function QString (line 1238) | QString DatetimeModel::timeZoneDispalyName() const
  function QStringList (line 1291) | QStringList DatetimeModel::langList()
  function QString (line 1301) | QString DatetimeModel::currentLang()
  function QStringList (line 1332) | QStringList DatetimeModel::numberExampleParts() const
  function QStringList (line 1442) | QStringList DatetimeModel::getAllSupportedSymbols() const
  function QString (line 1483) | QString DatetimeModel::resolveDecimalSymbol(const QString &decimal, cons...
  function QStringList (line 1510) | QStringList DatetimeModel::getFilteredDecimalSymbols() const
  function QStringList (line 1543) | QStringList DatetimeModel::getFilteredSeparatorSymbols() const

FILE: src/plugin-datetime/operation/datetimemodel.h
  function namespace (line 16) | namespace dccV25 {
  type Format (line 58) | enum Format {
  function QString (line 91) | QString systemTimeZoneId() const;

FILE: src/plugin-datetime/operation/datetimeworker.cpp
  function DatetimeModel (line 122) | DatetimeModel *DatetimeWorker::model() { return m_model; }
  function QString (line 224) | QString DatetimeWorker::getCustomNtpServer()
  function QString (line 301) | QString DatetimeWorker::decimalSymbol()
  function QString (line 311) | QString DatetimeWorker::digitGrouping()
  function QString (line 321) | QString DatetimeWorker::digitGroupingSymbol()
  function QString (line 331) | QString DatetimeWorker::currencySymbol()
  function QString (line 341) | QString DatetimeWorker::negativeCurrencyFormat()
  function QString (line 351) | QString DatetimeWorker::positiveCurrencyFormat()
  function ZoneInfo (line 372) | ZoneInfo DatetimeWorker::GetZoneInfo(const QString &zoneId)

FILE: src/plugin-datetime/operation/keyboard/keyboarddbusproxy.cpp
  function QString (line 64) | QString KeyboardDBusProxy::currentLocale()
  function QStringList (line 74) | QStringList KeyboardDBusProxy::locales()

FILE: src/plugin-datetime/operation/keyboard/keyboarddbusproxy.h
  type QMap (line 22) | typedef QMap<QString, QString> KeyboardLayoutList;
  function namespace (line 24) | namespace dccV25 {
  function class (line 28) | class KeyboardDBusProxy : public QObject

FILE: src/plugin-datetime/operation/keyboard/keyboardmodel.cpp
  function QString (line 34) | QString KeyboardModel::langByKey(const QString &key) const
  function QString (line 47) | QString KeyboardModel::langFromText(const QString &text) const
  function QString (line 73) | QString KeyboardModel::curLayout() const
  function QStringList (line 115) | QStringList KeyboardModel::convertLang(const QStringList &langList)
  function uint (line 158) | uint KeyboardModel::repeatDelay() const
  function uint (line 171) | uint KeyboardModel::repeatInterval() const
  function QString (line 207) | QString KeyboardModel::curLang() const
  function QStringList (line 223) | QStringList KeyboardModel::localLang() const

FILE: src/plugin-datetime/operation/keyboard/keyboardmodel.h
  function namespace (line 15) | namespace dccV25 {

FILE: src/plugin-datetime/operation/keyboard/keyboardwork.cpp
  function caseInsensitiveLessThan (line 224) | bool caseInsensitiveLessThan(const MetaData &s1, const MetaData &s2)
  function Q_FOREACH (line 247) | Q_FOREACH(QJsonValue value, array) {
  function Q_FOREACH (line 404) | Q_FOREACH(const QString &str, m_model->kbLayout().keys()) {
  function uint (line 533) | uint KeyboardWorker::converToDBusDelay(uint value)
  function uint (line 555) | uint KeyboardWorker::converToModelDelay(uint value)
  function uint (line 595) | uint KeyboardWorker::converToModelInterval(uint value)

FILE: src/plugin-datetime/operation/keyboard/keyboardwork.h
  function namespace (line 19) | namespace dccV25 {

FILE: src/plugin-datetime/operation/keyboard/metadata.cpp
  function QString (line 24) | QString MetaData::pinyin() const
  function QString (line 34) | QString MetaData::text() const
  function QString (line 44) | QString MetaData::key() const

FILE: src/plugin-datetime/operation/keyboard/shortcutmodel.cpp
  function Q_FOREACH (line 164) | Q_FOREACH (QJsonValue value, array) {
  function ShortcutInfo (line 270) | ShortcutInfo *ShortcutModel::currentInfo() const
  function ShortcutInfo (line 280) | ShortcutInfo *ShortcutModel::getInfo(const QString &shortcut)

FILE: src/plugin-datetime/operation/keyboard/shortcutmodel.h
  function namespace (line 12) | namespace dccV25 {
  type QList (line 42) | typedef QList<ShortcutInfo> ShortcutInfoList;
  function class (line 44) | class ShortcutModel : public QObject

FILE: src/plugin-datetime/operation/langregionmodel.cpp
  type dccV25 (line 8) | namespace dccV25 {
    function QVariant (line 23) | QVariant LangRegionModel::data(const QModelIndex &index, int role) const
    function QVariant (line 112) | QVariant FormatsModel::data(const QModelIndex &index, int role) const

FILE: src/plugin-datetime/operation/langregionmodel.h
  function namespace (line 11) | namespace dccV25 {

FILE: src/plugin-datetime/operation/languagelistmodel.cpp
  type dccV25 (line 8) | namespace dccV25 {
    function QVariant (line 26) | QVariant LanguageListModel::data(const QModelIndex &index, int role) c...

FILE: src/plugin-datetime/operation/languagelistmodel.h
  function namespace (line 10) | namespace dccV25 {

FILE: src/plugin-datetime/operation/regionproxy.cpp
  class Format (line 13) | class Format
    type Type (line 15) | enum Type { Date, Time }
    method QStringList (line 20) | inline QStringList daysText()
    method QStringList (line 28) | inline QStringList shortDatesText() { return textFromFormat(Date, shor...
    method QStringList (line 30) | inline QStringList longDatesText() { return textFromFormat(Date, longD...
    method QStringList (line 32) | inline QStringList shortTimesText() { return textFromFormat(Time, shor...
    method QStringList (line 34) | inline QStringList longTimesText() { return textFromFormat(Time, longT...
    method QStringList (line 36) | virtual QStringList shortDateFormats() { return QStringList(); }
    method QStringList (line 38) | virtual QStringList longDateFormats() { return QStringList(); }
    method QStringList (line 40) | virtual QStringList shortTimeFormats() { return QStringList(); }
    method QStringList (line 42) | virtual QStringList longTimeFormats() { return QStringList(); }
    method updateState (line 44) | void updateState(QDate date, QTime time, QLocale locale)
    method QStringList (line 52) | QStringList textFromFormat(Type type, const QStringList &formats)
  class DefaultFormat (line 69) | class DefaultFormat : public Format
    method QStringList (line 74) | virtual QStringList shortDateFormats() override
    method QStringList (line 79) | virtual QStringList longDateFormats() override
    method QStringList (line 84) | virtual QStringList shortTimeFormats() override
    method QStringList (line 89) | virtual QStringList longTimeFormats() override
  class ChineseSimpliedFormat (line 95) | class ChineseSimpliedFormat : public Format
    method QStringList (line 98) | virtual QStringList shortDateFormats() override
    method QStringList (line 104) | virtual QStringList longDateFormats() override
    method QStringList (line 109) | virtual QStringList shortTimeFormats() override
    method QStringList (line 114) | virtual QStringList longTimeFormats() override
  class UKFormat (line 120) | class UKFormat : public Format
    method QStringList (line 123) | virtual QStringList shortDateFormats() override
    method QStringList (line 128) | virtual QStringList longDateFormats() override
    method QStringList (line 133) | virtual QStringList shortTimeFormats() override
    method QStringList (line 138) | virtual QStringList longTimeFormats() override
  class USAFormat (line 144) | class USAFormat : public Format
    method QStringList (line 147) | virtual QStringList shortDateFormats() override
    method QStringList (line 153) | virtual QStringList longDateFormats() override
    method QStringList (line 158) | virtual QStringList shortTimeFormats() override
    method QStringList (line 163) | virtual QStringList longTimeFormats() override
  class WorldFormat (line 169) | class WorldFormat : public Format
    method QStringList (line 172) | virtual QStringList shortDateFormats() override { return { "dd/MM/yyyy...
    method QStringList (line 174) | virtual QStringList longDateFormats() override
    method QStringList (line 179) | virtual QStringList shortTimeFormats() override { return { "H:mm AP", ...
    method QStringList (line 181) | virtual QStringList longTimeFormats() override { return { "H:mm:ss AP"...
  function Regions (line 249) | Regions RegionProxy::regions() const
  function RegionFormat (line 254) | RegionFormat RegionProxy::systemRegionFormat()
  function QStringList (line 259) | QStringList RegionProxy::countries() const
  function QString (line 264) | QString RegionProxy::systemCountry() const
  function QString (line 270) | QString RegionProxy::langCountry() const
  function QString (line 284) | static inline QString replaceSpace(const QString &space) {
  function RegionFormat (line 292) | RegionFormat RegionProxy::regionFormat(const QLocale &locale)
  function RegionAvailableData (line 325) | RegionAvailableData RegionProxy::allTextData(const QLocale &locale)
  function RegionAvailableData (line 338) | RegionAvailableData RegionProxy::allFormat()
  function RegionAvailableData (line 343) | RegionAvailableData RegionProxy::customTextData(const QLocale &locale)
  function RegionAvailableData (line 378) | RegionAvailableData RegionProxy::defaultTextData(const QLocale &locale)
  function QDebug (line 399) | QDebug operator<<(QDebug debug, const RegionFormat &regionFormat)

FILE: src/plugin-datetime/operation/regionproxy.h
  type RegionFormat (line 24) | struct RegionFormat {
  function for (line 54) | struct RegionAvailableData {
  function clear (line 88) | void clear() {
  function class (line 99) | class RegionProxy : public QObject

FILE: src/plugin-datetime/operation/timezoneMap/timezone.cpp
  type installer (line 21) | namespace installer {
    function ConvertPos (line 58) | double ConvertPos(const QString &pos, int digits)
    function ZoneInfoDistanceComp (line 77) | [[maybe_unused]] bool ZoneInfoDistanceComp(const ZoneInfo &a, const Zo...
    function QDebug (line 82) | QDebug &operator<<(QDebug &debug, const ZoneInfo &info)
    function QString (line 90) | static QString ReadFile(const QString &path)
    function ZoneInfoList (line 108) | ZoneInfoList GetZoneInfoList()
    function GetZoneInfoByCountry (line 133) | [[maybe_unused]] int GetZoneInfoByCountry(const ZoneInfoList &list, co...
    function GetZoneInfoByZone (line 145) | int GetZoneInfoByZone(const ZoneInfoList &list, const QString &timezone)
    function QString (line 157) | QString GetCurrentTimezone()
    function QString (line 163) | [[maybe_unused]] QString GetTimezoneName(const QString &timezone)
    function QString (line 169) | QString GetLocalTimezoneName(const QString &timezone, const QString &l...
    function TimezoneAliasMap (line 189) | [[maybe_unused]] TimezoneAliasMap GetTimezoneAliasMap()
    function IsValidTimezone (line 207) | [[maybe_unused]] bool IsValidTimezone(const QString &timezone)
    function TimezoneOffset (line 223) | [[maybe_unused]] TimezoneOffset GetTimezoneOffset(const QString &timez...

FILE: src/plugin-datetime/operation/timezoneMap/timezone.h
  function namespace (line 10) | namespace installer {

FILE: src/plugin-datetime/operation/timezoneMap/timezone_map_util.cpp
  type installer (line 8) | namespace installer {
    function radians (line 13) | double radians(double degrees) {
    function ConvertLatitudeToY (line 19) | double ConvertLatitudeToY(double latitude) {
    function ConvertLongitudeToX (line 35) | double ConvertLongitudeToX(double longitude) {
    function ZoneInfoList (line 40) | ZoneInfoList GetNearestZones(const ZoneInfoList& total_zones, double t...

FILE: src/plugin-datetime/operation/timezoneMap/timezone_map_util.h
  function namespace (line 9) | namespace installer {

FILE: src/plugin-datetime/operation/zoneinfo.cpp
  function QDebug (line 14) | QDebug operator<<(QDebug argument, const ZoneInfo &info)
  function QDBusArgument (line 24) | QDBusArgument &operator<<(QDBusArgument &argument, const ZoneInfo &info)
  function QDataStream (line 35) | QDataStream &operator<<(QDataStream &argument, const ZoneInfo &info)
  function QDBusArgument (line 42) | const QDBusArgument &operator>>(const QDBusArgument &argument, ZoneInfo ...
  function QDataStream (line 53) | const QDataStream &operator>>(QDataStream &argument, ZoneInfo &info)
  function registerZoneInfoMetaType (line 70) | void registerZoneInfoMetaType()

FILE: src/plugin-datetime/operation/zoneinfo.h
  function class (line 13) | class ZoneInfo
  function QString (line 34) | QString getUtcOffsetText() const

FILE: src/plugin-datetime/operation/zoneinfomodel.cpp
  type dccV25 (line 8) | namespace dccV25 {
    function QVariant (line 31) | QVariant UserTimezoneModel::data(const QModelIndex &index, int role) c...
    function QVariant (line 100) | QVariant ZoneInfoModel::data(const QModelIndex &index, int role) const

FILE: src/plugin-datetime/operation/zoneinfomodel.h
  function namespace (line 10) | namespace dccV25 {

FILE: src/plugin-deepinid/operation/appinfolistmodel.cpp
  function QVariant (line 66) | QVariant AppInfoListModel::data(const QModelIndex &index, int role) const

FILE: src/plugin-deepinid/operation/appinfolistmodel.h
  type AppItemData (line 10) | struct AppItemData
  function Q_OBJECT (line 21) | Q_OBJECT

FILE: src/plugin-deepinid/operation/cryptor.h
  function class (line 12) | class Cryptor

FILE: src/plugin-deepinid/operation/deepiniddbusproxy.cpp
  function QVariantMap (line 34) | QVariantMap DeepinidDBusProxy::userInfo()

FILE: src/plugin-deepinid/operation/deepiniddbusproxy.h
  function class (line 14) | class DeepinidDBusProxy: public QObject

FILE: src/plugin-deepinid/operation/deepinidinterface.cpp
  function QString (line 17) | QString DeepinIDInterface::editionName() const

FILE: src/plugin-deepinid/operation/deepinidinterface.h
  function class (line 11) | class DeepinIDInterface : public QObject

FILE: src/plugin-deepinid/operation/deepinidmodel.cpp
  function QString (line 110) | QString DeepinidModel::warnTipsMessage()

FILE: src/plugin-deepinid/operation/deepinidmodel.h
  function class (line 15) | class DeepinidModel : public QObject

FILE: src/plugin-deepinid/operation/deepinidworker.cpp
  function notifyInfo (line 27) | static void notifyInfo(const QString &reason)
  function foreach (line 114) | foreach(auto key, keyList) {
  function QVariantMap (line 138) | QVariantMap DeepinWorker::checkPassword(const QString &passwd)
  function QString (line 393) | QString DeepinWorker::loadCodeURL()
  function QString (line 456) | QString DeepinWorker::getSessionID()

FILE: src/plugin-deepinid/operation/deepinidworker.h
  function class (line 13) | class DeepinWorker : public QObject

FILE: src/plugin-deepinid/operation/downloadurl.h
  function class (line 9) | class DownloadUrl : public QObject

FILE: src/plugin-deepinid/operation/hardwareinfo.cpp
  function registerDMIInfoMetaType (line 11) | void registerDMIInfoMetaType()
  function QDebug (line 17) | QDebug operator<<(QDebug debug, const DMIInfo &info)
  function QDBusArgument (line 29) | const QDBusArgument &operator>>(const QDBusArgument &arg, DMIInfo &info)
  function QDBusArgument (line 41) | QDBusArgument &operator<<(QDBusArgument &arg, const DMIInfo &info)
  function QDebug (line 58) | QDebug operator<<(QDebug debug, const HardwareInfo &info)
  function QDBusArgument (line 68) | QDBusArgument &operator<<(QDBusArgument &arg, const HardwareInfo &info)
  function QDBusArgument (line 79) | const QDBusArgument &operator>>(const QDBusArgument &arg, HardwareInfo &...
  function registerHardwareInfoMetaType (line 91) | void registerHardwareInfoMetaType()

FILE: src/plugin-deepinid/operation/hardwareinfo.h
  function QString (line 32) | QString productVersion{""};
  function qint64 (line 55) | qint64 memory{0}
  function qint64 (line 56) | qint64 diskTotal{0}
  function QString (line 58) | QString diskList{""};

FILE: src/plugin-deepinid/operation/syncdbusproxy.cpp
  function QDBusPendingCall (line 30) | QDBusPendingCall SyncDBusProxy::SwitcherDump()
  function qlonglong (line 35) | qlonglong SyncDBusProxy::lastSyncTime()

FILE: src/plugin-deepinid/operation/syncdbusproxy.h
  function class (line 17) | class SyncDBusProxy : public QObject

FILE: src/plugin-deepinid/operation/syncinfolistmodel.cpp
  function QVariant (line 41) | QVariant SyncInfoListModel::data(const QModelIndex &index, int role) const

FILE: src/plugin-deepinid/operation/syncinfolistmodel.h
  type SyncItemData (line 11) | struct SyncItemData
  function Q_OBJECT (line 22) | Q_OBJECT

FILE: src/plugin-deepinid/operation/utclouddbusproxy.cpp
  function QDBusPendingCall (line 37) | QDBusPendingCall UtcloudDBusProxy::SwitcherDump()

FILE: src/plugin-deepinid/operation/utclouddbusproxy.h
  function class (line 13) | class UtcloudDBusProxy : public QObject

FILE: src/plugin-deepinid/operation/utils.cpp
  function DCORE_USE_NAMESPACE (line 22) | DCORE_USE_NAMESPACE

FILE: src/plugin-deepinid/operation/utils.h
  type SyncType (line 42) | enum SyncType {
  function namespace (line 56) | namespace utils {

FILE: src/plugin-defaultapp/operation/category.h
  type App (line 10) | struct App {
  function class (line 33) | class Category : public QObject

FILE: src/plugin-defaultapp/operation/categorymodel.cpp
  type DefAppDataRole (line 9) | enum DefAppDataRole {
  function QModelIndex (line 45) | QModelIndex CategoryModel::index(int row, int column, const QModelIndex ...
  function QModelIndex (line 53) | QModelIndex CategoryModel::parent(const QModelIndex &) const
  function QVariant (line 68) | QVariant CategoryModel::data(const QModelIndex &index, int role) const
  function App (line 163) | const App *CategoryModel::getAppById(const QString &appId)

FILE: src/plugin-defaultapp/operation/categorymodel.h
  function class (line 12) | class CategoryModel : public QAbstractItemModel

FILE: src/plugin-defaultapp/operation/defappmodel.h
  function class (line 16) | class DefAppModel : public QObject

FILE: src/plugin-defaultapp/operation/defappworker.cpp
  function QStringList (line 200) | static QStringList getUILanguages()
  function Category (line 552) | Category *DefAppWorker::getCategory(const QString &mime) const
  function QString (line 573) | const QString DefAppWorker::getTypeByCategory(const DefaultAppsCategory ...
  function QStringList (line 579) | const QStringList DefAppWorker::getTypeListByCategory(const DefaultAppsC...

FILE: src/plugin-defaultapp/operation/defappworker.h
  function class (line 23) | class DefAppWorker : public QObject

FILE: src/plugin-defaultapp/operation/defappworkerold.cpp
  function Category (line 266) | Category *DefAppWorkerOld::getCategory(const QString &mime) const
  function QString (line 287) | const QString DefAppWorkerOld::getTypeByCategory(const DefaultAppsCatego...
  function QStringList (line 292) | const QStringList DefAppWorkerOld::getTypeListByCategory(const DefaultAp...

FILE: src/plugin-defaultapp/operation/defappworkerold.h
  function class (line 17) | class DefAppWorkerOld : public QObject

FILE: src/plugin-defaultapp/operation/mimedbusproxy.cpp
  function QString (line 94) | QString MimeDBusProxy::getAppId(const QDBusObjectPath &appPath)

FILE: src/plugin-defaultapp/operation/mimedbusproxy.h
  function Q_DECLARE_METATYPE (line 18) | Q_DECLARE_METATYPE(ObjectInterfaceMap)

FILE: src/plugin-defaultapp/operation/mimedbusproxyold.cpp
  function QString (line 50) | QString MimeDBusProxyOld::GetDefaultApp(const QString &mimeType)
  function QString (line 55) | QString MimeDBusProxyOld::ListApps(const QString &mimeType)
  function QString (line 60) | QString MimeDBusProxyOld::ListUserApps(const QString &mimeType)

FILE: src/plugin-defaultapp/operation/mimedbusproxyold.h
  function class (line 12) | class MimeDBusProxyOld : public QObject

FILE: src/plugin-display/operation/dccscreen.cpp
  type dccV25 (line 11) | namespace dccV25 {
    function DccScreenItem (line 13) | DccScreenItem *DccScreenItemPrivate::New(Monitor *monitor, DccScreen *...
    function DccScreenItemPrivate (line 21) | DccScreenItemPrivate *DccScreenItemPrivate::Private(DccScreenItem *scr...
    function QString (line 53) | QString DccScreenItem::name() const
    function DccScreen (line 66) | DccScreen *DccScreenPrivate::New(QList<Monitor *> monitors, DisplayWor...
    function DccScreenPrivate (line 74) | DccScreenPrivate *DccScreenPrivate::Private(DccScreen *screen)
    function Monitor (line 138) | Monitor *DccScreenPrivate::monitor()
    function QString (line 298) | QString DccScreen::name() const
    function QSize (line 328) | QSize DccScreen::bestResolution() const
    function QSize (line 334) | QSize DccScreen::currentResolution() const
    function uint (line 370) | uint DccScreen::rotate() const
    function QString (line 385) | QString DccScreen::currentFillMode() const
    function QStringList (line 396) | QStringList DccScreen::availableFillModes() const
    function QScreen (line 401) | QScreen *DccScreen::screen() const
    function qreal (line 406) | qreal DccScreen::scale() const
    function qreal (line 416) | qreal DccScreen::maxScale() const
    function QString (line 426) | QString DccScreen::wallpaper() const

FILE: src/plugin-display/operation/displaymodule.cpp
  type dccV25 (line 25) | namespace dccV25 {
    class Rect (line 28) | class Rect : public QRect
    function DccScreen (line 277) | DccScreen *DisplayModulePrivate::primary() const
    function QString (line 282) | QString DisplayModulePrivate::displayMode() const
    function DccScreen (line 334) | DccScreen *DisplayModule::primaryScreen() const
    function QString (line 346) | QString DisplayModule::displayMode() const
    function qreal (line 373) | qreal DisplayModule::globalScale() const
    function qreal (line 385) | qreal DisplayModule::maxGlobalScale() const
    function QString (line 456) | QString DisplayModule::customColorTempTimePeriod() const

FILE: src/plugin-display/operation/private/concatscreen.cpp
  type dccV25 (line 10) | namespace dccV25 {
    function QRectF (line 28) | QRectF ScreenData::rect() const
    function QRectF (line 34) | QRectF ScreenData::rectEx() const
    function QRectF (line 39) | QRectF ScreenData::justIntersectRect() const
    function DccScreen (line 44) | DccScreen *ScreenData::screen() const

FILE: src/plugin-display/operation/private/concatscreen.h
  function class (line 19) | class ScreenData

FILE: src/plugin-display/operation/private/dccscreen_p.h
  function class (line 33) | class DccScreenPrivate

FILE: src/plugin-display/operation/private/displaydbusproxy.cpp
  function QString (line 61) | QString DisplayDBusProxy::wallpaperURls() const
  function BrightnessMap (line 67) | BrightnessMap DisplayDBusProxy::brightness()
  function QString (line 92) | const QString DisplayDBusProxy::customColorTempTimePeriod()
  function QString (line 97) | QString DisplayDBusProxy::currentCustomId()
  function QStringList (line 102) | QStringList DisplayDBusProxy::customIdList()
  function uchar (line 107) | uchar DisplayDBusProxy::displayMode()
  function uint (line 117) | uint DisplayDBusProxy::maxBacklightBrightness()
  function QString (line 127) | QString DisplayDBusProxy::primary()
  function ScreenRect (line 132) | ScreenRect DisplayDBusProxy::primaryRect()
  function ushort (line 137) | ushort DisplayDBusProxy::screenHeight()
  function ushort (line 142) | ushort DisplayDBusProxy::screenWidth()
  function TouchscreenMap (line 147) | TouchscreenMap DisplayDBusProxy::touchMap()
  function TouchscreenInfoList (line 152) | TouchscreenInfoList DisplayDBusProxy::touchscreens()
  function TouchscreenInfoList_V2 (line 157) | TouchscreenInfoList_V2 DisplayDBusProxy::touchscreensV2()
  function QString (line 195) | QString DisplayDBusProxy::GetConfig()

FILE: src/plugin-display/operation/private/displaydbusproxy.h
  function class (line 23) | class DisplayDBusProxy : public QObject

FILE: src/plugin-display/operation/private/displaymodel.cpp
  function contains (line 9) | bool contains(const QList<Resolution> &container, const Resolution &item)
  function Monitor (line 38) | Monitor *DisplayModel::primaryMonitor() const

FILE: src/plugin-display/operation/private/displaymodel.h
  function QString (line 44) | inline const QString defaultFillMode() { return "None"; }
  function isNightMode (line 46) | bool isNightMode() const;
  function allowEnableMultiScaleRatio (line 77) | inline bool allowEnableMultiScaleRatio() { return m_allowEnableMultiScal...
  function monitorListChanged (line 104) | void monitorListChanged() const;
  function m_adjustCCTMode (line 142) | int m_adjustCCTMode {0}
  function m_isAutoLightAdjust (line 151) | bool m_isAutoLightAdjust {false};

FILE: src/plugin-display/operation/private/displaymodule_p.h
  function namespace (line 9) | namespace dccV25 {

FILE: src/plugin-display/operation/private/displayworker.cpp
  function wlRotate2dcc (line 318) | constexpr static int wlRotate2dcc(int wlRotate) {
  function dccRotate2wl (line 334) | constexpr static int dccRotate2wl(int dccRotate) {
  function Resolution (line 751) | static inline Resolution createResolutionFromMode(WQt::OutputMode *mode) {

FILE: src/plugin-display/operation/private/displayworker.h
  function DCORE_END_NAMESPACE (line 26) | DCORE_END_NAMESPACE
  type treeland_output_color_control_v1 (line 33) | struct treeland_output_color_control_v1
  function class (line 37) | class DisplayWorker : public QObject

FILE: src/plugin-display/operation/private/monitor.cpp
  function compareResolution (line 154) | bool compareResolution(const Resolution &first, const Resolution &second)
  function QScreen (line 274) | QScreen *Monitor::getQScreen()

FILE: src/plugin-display/operation/private/monitor.h
  function namespace (line 14) | namespace dccV25 {

FILE: src/plugin-display/operation/private/monitordbusproxy.cpp
  function QStringList (line 41) | QStringList MonitorDBusProxy::availableFillModes()
  function Resolution (line 46) | Resolution MonitorDBusProxy::bestMode()
  function QString (line 58) | QString MonitorDBusProxy::currentFillMode()
  function Resolution (line 68) | Resolution MonitorDBusProxy::currentMode()
  function uchar (line 75) | uchar MonitorDBusProxy::currentRotateMode()
  function ushort (line 85) | ushort MonitorDBusProxy::height()
  function QString (line 90) | QString MonitorDBusProxy::manufacturer()
  function uint (line 95) | uint MonitorDBusProxy::mmHeight()
  function uint (line 100) | uint MonitorDBusProxy::mmWidth()
  function QString (line 105) | QString MonitorDBusProxy::model()
  function ResolutionList (line 110) | ResolutionList MonitorDBusProxy::modes()
  function QString (line 117) | QString MonitorDBusProxy::name()
  function ushort (line 122) | ushort MonitorDBusProxy::reflect()
  function ReflectList (line 127) | ReflectList MonitorDBusProxy::reflects()
  function ushort (line 137) | ushort MonitorDBusProxy::rotation()
  function RotationList (line 142) | RotationList MonitorDBusProxy::rotations()
  function ushort (line 147) | ushort MonitorDBusProxy::width()

FILE: src/plugin-display/operation/private/monitordbusproxy.h
  function class (line 21) | class MonitorDBusProxy : public QObject

FILE: src/plugin-display/operation/private/types/brightnessmap.cpp
  function registerBrightnessMapMetaType (line 6) | void registerBrightnessMapMetaType()

FILE: src/plugin-display/operation/private/types/brightnessmap.h
  type QMap (line 10) | typedef QMap<QString, double> BrightnessMap;

FILE: src/plugin-display/operation/private/types/reflectlist.cpp
  function registerReflectListMetaType (line 6) | void registerReflectListMetaType()

FILE: src/plugin-display/operation/private/types/reflectlist.h
  type QList (line 10) | typedef QList<quint16> ReflectList;

FILE: src/plugin-display/operation/private/types/resolution.cpp
  function registerResolutionMetaType (line 8) | void registerResolutionMetaType()
  function QDebug (line 14) | QDebug operator<<(QDebug debug, const Resolution &resolution)
  function QDBusArgument (line 39) | QDBusArgument &operator<<(QDBusArgument &arg, const Resolution &value)
  function QDBusArgument (line 48) | const QDBusArgument &operator>>(const QDBusArgument &arg, Resolution &va...

FILE: src/plugin-display/operation/private/types/resolution.h
  function class (line 9) | class Resolution

FILE: src/plugin-display/operation/private/types/resolutionlist.cpp
  function registerResolutionListMetaType (line 6) | void registerResolutionListMetaType()

FILE: src/plugin-display/operation/private/types/resolutionlist.h
  type QList (line 11) | typedef QList<Resolution> ResolutionList;

FILE: src/plugin-display/operation/private/types/rotationlist.cpp
  function registerRotationListMetaType (line 6) | void registerRotationListMetaType()

FILE: src/plugin-display/operation/private/types/rotationlist.h
  type QList (line 10) | typedef QList<quint16> RotationList;

FILE: src/plugin-display/operation/private/types/screenrect.cpp
  function QDebug (line 15) | QDebug operator<<(QDebug debug, const ScreenRect &rect)
  function QDBusArgument (line 30) | QDBusArgument &operator<<(QDBusArgument &arg, const ScreenRect &rect)
  function QDBusArgument (line 39) | const QDBusArgument &operator>>(const QDBusArgument &arg, ScreenRect &rect)
  function registerScreenRectMetaType (line 48) | void registerScreenRectMetaType()

FILE: src/plugin-display/operation/private/types/screenrect.h
  type ScreenRect (line 12) | struct ScreenRect

FILE: src/plugin-display/operation/private/types/touchscreeninfolist.cpp
  function QDBusArgument (line 6) | QDBusArgument &operator<<(QDBusArgument &arg, const TouchscreenInfo &info)
  function QDBusArgument (line 15) | const QDBusArgument &operator>>(const QDBusArgument &arg, TouchscreenInf...
  function registerTouchscreenInfoMetaType (line 29) | void registerTouchscreenInfoMetaType()
  function registerTouchscreenInfoListMetaType (line 35) | void registerTouchscreenInfoListMetaType()

FILE: src/plugin-display/operation/private/types/touchscreeninfolist.h
  type TouchscreenInfo (line 11) | struct TouchscreenInfo {
  type QList (line 20) | typedef QList<TouchscreenInfo> TouchscreenInfoList;

FILE: src/plugin-display/operation/private/types/touchscreeninfolist_v2.cpp
  function QDBusArgument (line 6) | QDBusArgument &operator<<(QDBusArgument &arg, const TouchscreenInfo_V2 &...
  function QDBusArgument (line 15) | const QDBusArgument &operator>>(const QDBusArgument &arg, TouchscreenInf...
  function registerTouchscreenInfoV2MetaType (line 28) | void registerTouchscreenInfoV2MetaType()
  function registerTouchscreenInfoList_V2MetaType (line 34) | void registerTouchscreenInfoList_V2MetaType()

FILE: src/plugin-display/operation/private/types/touchscreeninfolist_v2.h
  type TouchscreenInfo_V2 (line 11) | struct TouchscreenInfo_V2 {
  type QList (line 21) | typedef QList<TouchscreenInfo_V2> TouchscreenInfoList_V2;

FILE: src/plugin-display/operation/private/types/touchscreenmap.cpp
  function registerTouchscreenMapMetaType (line 6) | void registerTouchscreenMapMetaType()

FILE: src/plugin-display/operation/private/types/touchscreenmap.h
  type QMap (line 10) | typedef QMap<QString, QString> TouchscreenMap;

FILE: src/plugin-display/wayland/libwayqt/Output.cpp
  function QString (line 28) | QString WQt::Output::name()
  function QString (line 33) | QString WQt::Output::description()
  function QString (line 38) | QString WQt::Output::make()
  function QString (line 43) | QString WQt::Output::model()
  function QPoint (line 48) | QPoint WQt::Output::position()
  function QSize (line 53) | QSize WQt::Output::physicalSize()
  function wl_output (line 83) | wl_output *WQt::Output::get()
  type wl_output (line 89) | struct wl_output
  type wl_output (line 110) | struct wl_output
  type wl_output (line 123) | struct wl_output
  type wl_output (line 131) | struct wl_output
  type wl_output (line 138) | struct wl_output
  type wl_output (line 145) | struct wl_output

FILE: src/plugin-display/wayland/libwayqt/Output.h
  type wl_output (line 14) | struct wl_output
  type wl_output_listener (line 15) | struct wl_output_listener
  function namespace (line 17) | namespace WQt {
  function class (line 21) | class WQt::Output : public QObject

FILE: src/plugin-display/wayland/libwayqt/OutputManager.cpp
  function zwlr_output_manager_v1 (line 50) | zwlr_output_manager_v1 *WQt::OutputManager::get()
  type zwlr_output_manager_v1_listener (line 88) | struct zwlr_output_manager_v1_listener
  function QVariant (line 123) | QVariant WQt::OutputHead::property(WQt::OutputHead::Property prop)
  function zwlr_output_head_v1 (line 138) | zwlr_output_head_v1 *WQt::OutputHead::get()
  type zwlr_output_head_v1_listener (line 276) | struct zwlr_output_head_v1_listener
  function QSize (line 312) | QSize WQt::OutputMode::size()
  function zwlr_output_mode_v1 (line 327) | zwlr_output_mode_v1 *WQt::OutputMode::get()
  type zwlr_output_mode_v1_listener (line 366) | struct zwlr_output_mode_v1_listener
  type zwlr_output_configuration_v1_listener (line 438) | struct zwlr_output_configuration_v1_listener

FILE: src/plugin-display/wayland/libwayqt/OutputManager.h
  type wl_buffer (line 14) | struct wl_buffer
  type wl_output (line 15) | struct wl_output
  type zwlr_output_manager_v1 (line 17) | struct zwlr_output_manager_v1
  type zwlr_output_head_v1 (line 18) | struct zwlr_output_head_v1
  type zwlr_output_mode_v1 (line 19) | struct zwlr_output_mode_v1
  type zwlr_output_configuration_v1 (line 20) | struct zwlr_output_configuration_v1
  type zwlr_output_configuration_head_v1 (line 21) | struct zwlr_output_configuration_head_v1
  type zwlr_output_manager_v1_listener (line 23) | struct zwlr_output_manager_v1_listener
  type zwlr_output_head_v1_listener (line 24) | struct zwlr_output_head_v1_listener
  type zwlr_output_mode_v1_listener (line 25) | struct zwlr_output_mode_v1_listener
  type zwlr_output_configuration_v1_listener (line 26) | struct zwlr_output_configuration_v1_listener
  function namespace (line 28) | namespace WQt {
  function class (line 36) | class WQt::OutputManager : public QObject
  function class (line 72) | class WQt::OutputHead : public QObject
  function mRefreshRate (line 162) | int32_t mRefreshRate{ 0 }
  function mIsPreferred (line 165) | bool mIsPreferred{ false };
  function class (line 175) | class WQt::OutputConfiguration : public QObject
  function class (line 216) | class WQt::OutputConfigurationHead : public QObject

FILE: src/plugin-display/wayland/libwayqt/Registry.cpp
  type wl_registry (line 20) | struct wl_registry
  type wl_registry (line 26) | struct wl_registry
  type wl_registry_listener (line 36) | struct wl_registry_listener
  function wl_registry (line 93) | wl_registry *WQt::Registry::get()
  function wl_display (line 98) | wl_display *WQt::Registry::waylandDisplay()
  function wl_seat (line 103) | wl_seat *WQt::Registry::waylandSeat()
  function wl_shm (line 108) | wl_shm *WQt::Registry::waylandShm()

FILE: src/plugin-display/wayland/libwayqt/Registry.h
  type wl_registry (line 10) | struct wl_registry
  type wl_display (line 11) | struct wl_display
  type wl_seat (line 12) | struct wl_seat
  type wl_shm (line 13) | struct wl_shm
  type wl_output (line 14) | struct wl_output
  type wl_registry_listener (line 17) | struct wl_registry_listener
  type xdg_wm_base (line 19) | struct xdg_wm_base
  type zwlr_output_manager_v1 (line 20) | struct zwlr_output_manager_v1
  type zwlr_gamma_control_manager_v1 (line 21) | struct zwlr_gamma_control_manager_v1
  type treeland_output_manager_v1 (line 22) | struct treeland_output_manager_v1
  function namespace (line 24) | namespace WQt {
  function class (line 33) | class WQt::Registry : public QObject

FILE: src/plugin-display/wayland/libwayqt/TreeLandOutputManager.cpp
  function treeland_output_color_control_v1 (line 32) | treeland_output_color_control_v1 *WQt::TreeLandOutputManager::getColorCo...
  type treeland_output_manager_v1 (line 54) | struct treeland_output_manager_v1
  type treeland_output_color_control_v1 (line 73) | struct treeland_output_color_control_v1

FILE: src/plugin-display/wayland/libwayqt/TreeLandOutputManager.h
  type wl_buffer (line 14) | struct wl_buffer
  type wl_output (line 15) | struct wl_output
  type treeland_output_manager_v1 (line 16) | struct treeland_output_manager_v1
  type treeland_output_manager_v1_listener (line 17) | struct treeland_output_manager_v1_listener
  type treeland_output_color_control_v1 (line 18) | struct treeland_output_color_control_v1
  type treeland_output_color_control_v1_listener (line 19) | struct treeland_output_color_control_v1_listener
  function namespace (line 21) | namespace WQt {
  function class (line 25) | class WQt::TreeLandOutputManager : public QObject

FILE: src/plugin-display/wayland/libwayqt/WayQtUtils.cpp
  function wl_display (line 14) | wl_display *WQt::Wayland::display()
  function wl_compositor (line 28) | wl_compositor *WQt::Wayland::compositor()
  function wl_seat (line 42) | wl_seat *WQt::Wayland::seat()
  function wl_pointer (line 56) | wl_pointer *WQt::Wayland::pointer()
  function wl_keyboard (line 70) | wl_keyboard *WQt::Wayland::keyboard()
  function wl_touch (line 84) | wl_touch *WQt::Wayland::touch()
  function wl_output (line 108) | wl_output *WQt::Utils::wlOutputFromQScreen(QScreen *screen)
  function wl_surface (line 122) | wl_surface *WQt::Utils::wlSurfaceFromQWindow(QWindow *window)

FILE: src/plugin-display/wayland/libwayqt/WayQtUtils.h
  type wl_display (line 10) | struct wl_display
  type wl_compositor (line 11) | struct wl_compositor
  type wl_touch (line 12) | struct wl_touch
  type wl_keyboard (line 13) | struct wl_keyboard
  type wl_seat (line 14) | struct wl_seat
  type wl_pointer (line 15) | struct wl_pointer
  type wl_output (line 17) | struct wl_output
  type wl_surface (line 18) | struct wl_surface
  function namespace (line 20) | namespace WQt {

FILE: src/plugin-dock/operation/dccdockexport.h
  function namespace (line 13) | namespace Dtk {
  function class (line 19) | class DccDockExport : public QObject

FILE: src/plugin-dock/operation/dockdbusproxy.cpp
  function QDBusArgument (line 22) | QDBusArgument &operator<<(QDBusArgument &arg, const DockItemInfo &info)
  function QDBusArgument (line 30) | const QDBusArgument &operator>>(const QDBusArgument &arg, DockItemInfo &...
  function registDockItemType (line 38) | static void registDockItemType()
  function uint (line 101) | uint DockDBusProxy::windowSizeEfficient()
  function uint (line 111) | uint DockDBusProxy::windowSizeFashion()

FILE: src/plugin-dock/operation/dockpluginmodel.cpp
  function QModelIndex (line 13) | QModelIndex DockPluginModel::index(int row, int column, const QModelInde...
  function QModelIndex (line 21) | QModelIndex DockPluginModel::parent(const QModelIndex &child) const
  function QVariant (line 41) | QVariant DockPluginModel::data(const QModelIndex &index, int role) const

FILE: src/plugin-dock/operation/dockpluginmodel.h
  type DockItemInfo (line 11) | struct DockItemInfo
  type QList (line 21) | typedef QList<DockItemInfo> DockItemInfos;
  function class (line 23) | class DockPluginModel : public QAbstractItemModel

FILE: src/plugin-dock/operation/dockpluginsortproxymodel.h
  function class (line 9) | class DockPluginSortProxyModel : public QSortFilterProxyModel

FILE: src/plugin-keyboard/operation/keyboardcontroller.cpp
  type dccV25 (line 12) | namespace dccV25 {
    function uint (line 75) | uint KeyboardController::repeatInterval() const
    function uint (line 88) | uint KeyboardController::repeatDelay() const
    function QString (line 150) | QString KeyboardController::userLayoutAt(int index, bool isValue/* = t...
    function QSortFilterProxyModel (line 165) | QSortFilterProxyModel *KeyboardController::layoutSearchModel()
    function QSortFilterProxyModel (line 189) | QSortFilterProxyModel *KeyboardController::shortcutSearchModel()
    function QStringList (line 227) | QStringList KeyboardController::formatKeys(const QString &shortcuts)
    function QString (line 232) | QString KeyboardController::checkDesktopCmd(const QString &cmd)
    function QString (line 337) | QString KeyboardController::currentLayout() const
    function QString (line 350) | QString KeyboardController::conflictText() const

FILE: src/plugin-keyboard/operation/keyboardcontroller.h
  function namespace (line 14) | namespace dccV25 {

FILE: src/plugin-keyboard/operation/keyboarddbusproxy.cpp
  function QString (line 91) | QString KeyboardDBusProxy::currentLayout()
  function uint (line 122) | uint KeyboardDBusProxy::repeatDelay()
  function uint (line 144) | uint KeyboardDBusProxy::repeatInterval()
  function QStringList (line 155) | QStringList KeyboardDBusProxy::userLayoutList()
  function QStringList (line 161) | QStringList KeyboardDBusProxy::userOptionList()
  function QString (line 167) | QString KeyboardDBusProxy::currentLocale()
  function QStringList (line 177) | QStringList KeyboardDBusProxy::locales()
  function uint (line 188) | uint KeyboardDBusProxy::shortcutSwitchLayout()
  function QString (line 215) | QString KeyboardDBusProxy::LookupConflictingShortcut(const QString &in0)

FILE: src/plugin-keyboard/operation/keyboarddbusproxy.h
  type QMap (line 18) | typedef QMap<QString, QString> KeyboardLayoutList;
  type QList (line 63) | typedef QList<LocaleInfo> LocaleList;
  function namespace (line 64) | namespace dccV25 {
  function class (line 68) | class KeyboardDBusProxy : public QObject

FILE: src/plugin-keyboard/operation/keyboardmodel.cpp
  function QString (line 38) | QString KeyboardModel::langByKey(const QString &key) const
  function QString (line 51) | QString KeyboardModel::langFromText(const QString &text) const
  function QString (line 77) | QString KeyboardModel::curLayout() const
  function QStringList (line 94) | QStringList KeyboardModel::convertLang(const QStringList &langList)
  function uint (line 137) | uint KeyboardModel::repeatDelay() const
  function uint (line 150) | uint KeyboardModel::repeatInterval() const
  function QString (line 199) | QString KeyboardModel::curLang() const
  function QStringList (line 215) | QStringList KeyboardModel::localLang() const

FILE: src/plugin-keyboard/operation/keyboardmodel.h
  function namespace (line 15) | namespace dccV25 {

FILE: src/plugin-keyboard/operation/keyboardwork.cpp
  function caseInsensitiveLessThan (line 370) | bool caseInsensitiveLessThan(const MetaData &s1, const MetaData &s2)
  function Q_FOREACH (line 393) | Q_FOREACH(QJsonValue value, array) {
  function Q_FOREACH (line 575) | Q_FOREACH (const QString &key, layouts.keys()) {
  function QString (line 792) | QString KeyboardWorker::makeShortcutKey(const QString &id, int type)
  function uint (line 797) | uint KeyboardWorker::converToDBusDelay(uint value)
  function uint (line 819) | uint KeyboardWorker::converToModelDelay(uint value)
  function uint (line 859) | uint KeyboardWorker::converToModelInterval(uint value)

FILE: src/plugin-keyboard/operation/keyboardwork.h
  function namespace (line 20) | namespace dccV25 {

FILE: src/plugin-keyboard/operation/layoutsmodel.cpp
  type dccV25 (line 9) | namespace dccV25 {
    function QVariant (line 27) | QVariant LayoutsModel::data(const QModelIndex &index, int role) const

FILE: src/plugin-keyboard/operation/layoutsmodel.h
  function namespace (line 11) | namespace dccV25 {

FILE: src/plugin-keyboard/operation/metadata.cpp
  type dccV25 (line 8) | namespace dccV25 {
    function QString (line 24) | QString MetaData::pinyin() const
    function QString (line 34) | QString MetaData::text() const
    function QString (line 44) | QString MetaData::key() const
    function QDebug (line 80) | QDebug &operator<<(QDebug &dbg, const MetaData &md)

FILE: src/plugin-keyboard/operation/shortcutmodel.cpp
  function QString (line 92) | static QString toPinyin(const QString &name)
  function ShortcutInfo (line 149) | ShortcutInfo *ShortcutModel::shortcutAt(int index, int *corners)
  function Q_FOREACH (line 232) | Q_FOREACH (QJsonValue value, array) {
  function QStringList (line 394) | QStringList ShortcutModel::formatKeys(const QString &shortcut)
  function ShortcutInfo (line 438) | ShortcutInfo *ShortcutModel::currentInfo() const
  function ShortcutInfo (line 448) | ShortcutInfo *ShortcutModel::findInfoIf(std::function<bool (ShortcutInfo...
  function ShortcutInfo (line 458) | ShortcutInfo *ShortcutModel::getInfo(const QString &shortcut)
  function QStringList (line 553) | QStringList ShortcutModel::getSystemShortcutNames() const
  function ShortcutModel (line 612) | ShortcutModel *ShortcutListModel::souceModel()
  function QVariant (line 644) | QVariant ShortcutListModel::data(const QModelIndex &index, int role) const

FILE: src/plugin-keyboard/operation/shortcutmodel.h
  function namespace (line 15) | namespace dccV25 {
  type QList (line 44) | typedef QList<ShortcutInfo> ShortcutInfoList;
  function class (line 46) | class ShortcutModel : public QObject

FILE: src/plugin-mouse/operation/gesturedata.cpp
  function QString (line 6) | QString GestureData::actionType() const
  function QString (line 19) | QString GestureData::direction() const
  function QString (line 45) | QString GestureData::actionName() const
  function QStringList (line 58) | QStringList GestureData::actionNameList() const
  function QStringList (line 68) | QStringList GestureData::actionDescriptionList() const

FILE: src/plugin-mouse/operation/gesturedata.h
  function class (line 9) | class GestureData : public QObject

FILE: src/plugin-mouse/operation/gesturemodel.cpp
  function QVariant (line 50) | QVariant GestureModel::data(const QModelIndex &index, int role) const
  function QString (line 77) | QString GestureModel::getGesturesDec(GestureData *data) const
  function QString (line 113) | QString GestureModel::getGesturesIconPath(GestureData *data) const
  function QVariantList (line 122) | QVariantList GestureModel::getGestureActionNames(GestureData *data) const
  function GestureData (line 199) | GestureData *GestureModel::getGestureData(int index) const

FILE: src/plugin-mouse/operation/gesturemodel.h
  function Q_OBJECT (line 13) | Q_OBJECT

FILE: src/plugin-mouse/operation/mousedbusproxy.h
  function namespace (line 15) | namespace DCC_NAMESPACE {

FILE: src/plugin-mouse/operation/mousemodel.cpp
  function GestureModel (line 297) | GestureModel *MouseModel::threeFingerGestureModel() const
  function GestureModel (line 302) | GestureModel *MouseModel::fourFigerGestureModel() const
  function QString (line 345) | QString MouseModel::getGestureFingerAniPath() const
  function QString (line 359) | QString MouseModel::getGestureActionAniPath() const

FILE: src/plugin-mouse/operation/mousemodel.h
  function namespace (line 16) | namespace DCC_NAMESPACE {

FILE: src/plugin-mouse/operation/mouseworker.h
  function namespace (line 13) | namespace DCC_NAMESPACE {

FILE: src/plugin-mouse/operation/treelandworker.cpp
  type ::treeland_personalization_cursor_context_v1 (line 116) | struct ::treeland_personalization_cursor_context_v1

FILE: src/plugin-mouse/operation/treelandworker.h
  function namespace (line 18) | namespace DCC_MOUSE {

FILE: src/plugin-notification/operation/appmgr.cpp
  function QString (line 17) | static QString parseDisplayName(const QStringMap &source)
  function QString (line 23) | static QString parseName(const QStringMap &source)
  function QString (line 29) | static QString parseIcon(const QStringMap &source)
  function parseDBusField (line 43) | static DExpected<T> parseDBusField(const QVariantMap &map, const QString...
  function QString (line 51) | static QString getDisplayName(const bool isDeepin, const QStringMap &nam...
  function AppManager1Application (line 139) | AppManager1Application * createAM1AppIfaceByPath(const QString &dbusPath)
  function AppManager1Application (line 152) | AppManager1Application * createAM1AppIface(const QString &desktopId)
  function AppMgr (line 448) | AppMgr *AppMgr::instance() {

FILE: src/plugin-notification/operation/appmgr.h
  function class (line 17) | class AppMgr : public QObject

FILE: src/plugin-notification/operation/appslistmodel.h
  function namespace (line 10) | namespace DCC_NAMESPACE{

FILE: src/plugin-notification/operation/appssourcemodel.cpp
  function QModelIndex (line 33) | QModelIndex AppsSourceModel::index(int row, int column, const QModelInde...
  function QModelIndex (line 41) | QModelIndex AppsSourceModel::parent(const QModelIndex &) const
  function QVariant (line 56) | QVariant AppsSourceModel::data(const QModelIndex &index, int role) const

FILE: src/plugin-notification/operation/appssourcemodel.h
  function namespace (line 8) | namespace DCC_NAMESPACE{

FILE: src/plugin-notification/operation/model/appitemmodel.h
  function QT_END_NAMESPACE (line 11) | QT_END_NAMESPACE

FILE: src/plugin-notification/operation/model/sysitemmodel.cpp
  function QString (line 44) | QString SysItemModel::timeStart() const
  function QString (line 55) | QString SysItemModel::timeEnd() const

FILE: src/plugin-notification/operation/model/sysitemmodel.h
  function QT_END_NAMESPACE (line 12) | QT_END_NAMESPACE

FILE: src/plugin-notification/operation/notificationmodel.h
  function QT_END_NAMESPACE (line 12) | QT_END_NAMESPACE

FILE: src/plugin-notification/operation/notificationsetting.cpp
  type DCC_NAMESPACE (line 15) | namespace DCC_NAMESPACE {
    type Roles (line 19) | enum Roles {
    function QVariant (line 99) | QVariant NotificationSetting::appValue(const QString &id, AppConfigIte...
    function QVariant (line 181) | QVariant NotificationSetting::systemValue(NotificationSetting::SystemC...
    function QStringList (line 205) | QStringList NotificationSetting::apps() const
    function QVariantMap (line 256) | QVariantMap NotificationSetting::appInfo(const QString &id) const
    function QVariant (line 314) | QVariant NotificationSetting::systemValue(const QString &key, const QV...

FILE: src/plugin-notification/operation/notificationsetting.h
  function namespace (line 12) | namespace Dtk {
  function namespace (line 19) | namespace DCC_NAMESPACE {

FILE: src/plugin-personalization/operation/imagehelper.h
  function class (line 9) | class ImageHelper : public QObject

FILE: src/plugin-personalization/operation/keyfile.cpp
  function QString (line 36) | QString KeyFile::getStr(const QString &section, const QString &key, QStr...
  function QStringList (line 56) | QStringList KeyFile::getStrList(const QString &section, const QString &key)
  function QStringList (line 159) | QStringList KeyFile::getMainKeys()

FILE: src/plugin-personalization/operation/keyfile.h
  type QMap (line 12) | typedef QMap<QString, QString> KeyMap;
  type QMap (line 13) | typedef QMap<QString, KeyMap> MainKeyMap;
  function class (line 16) | class KeyFile

FILE: src/plugin-personalization/operation/model/fontmodel.h
  function class (line 12) | class FontModel : public QObject

FILE: src/plugin-personalization/operation/model/fontsizemodel.h
  function class (line 9) | class FontSizeModel : public QObject

FILE: src/plugin-personalization/operation/model/thememodel.cpp
  function QStringList (line 11) | QStringList ThemeModel::keys()

FILE: src/plugin-personalization/operation/model/thememodel.h
  function class (line 12) | class ThemeModel : public QObject

FILE: src/plugin-personalization/operation/model/wallpapermodel.cpp
  function QModelIndex (line 14) | QModelIndex WallpaperModel::index(int row, int column, const QModelIndex...
  function QModelIndex (line 22) | QModelIndex WallpaperModel::parent(const QModelIndex &child) const
  function QVariant (line 42) | QVariant WallpaperModel::data(const QModelIndex &index, int role) const
  function WallpaperItemPtr (line 139) | WallpaperItemPtr WallpaperModel::itemNode(const QModelIndex &idx) const
  function QModelIndex (line 148) | QModelIndex WallpaperModel::itemIndex(const QString &item) const
  function QModelIndex (line 160) | QModelIndex WallpaperModel::itemIndex(WallpaperItemPtr item) const
  function QString (line 182) | QString WallpaperSortModel::getPicPathByUrl(const QString &url) const

FILE: src/plugin-personalization/operation/model/wallpapermodel.h
  type WallpaperItem (line 11) | struct WallpaperItem {
  type ItemTypeRole (line 21) | enum ItemTypeRole {
  type QSharedPointer (line 31) | typedef QSharedPointer<WallpaperItem> WallpaperItemPtr;
  function class (line 33) | class WallpaperSortModel : public QSortFilterProxyModel
  function setSourceModel (line 43) | void setSourceModel(QAbstractItemModel *sourceModel) override {
  function Q_INVOKABLE (line 67) | Q_INVOKABLE bool hasWallpaper(const QString &url) const {
  function class (line 95) | class WallpaperModel : public QAbstractItemModel

FILE: src/plugin-personalization/operation/personalizationdbusproxy.cpp
  function DGUI_USE_NAMESPACE (line 44) | DGUI_USE_NAMESPACE
  function QString (line 65) | QString PersonalizationDBusProxy::background()
  function QString (line 74) | QString PersonalizationDBusProxy::cursorTheme()
  function QString (line 84) | QString PersonalizationDBusProxy::globalTheme()
  function QString (line 104) | QString PersonalizationDBusProxy::gtkTheme()
  function QString (line 113) | QString PersonalizationDBusProxy::iconTheme()
  function QString (line 123) | QString PersonalizationDBusProxy::monospaceFont()
  function QString (line 143) | QString PersonalizationDBusProxy::qtActiveColor()
  function QString (line 153) | QString PersonalizationDBusProxy::standardFont()
  function QString (line 163) | QString PersonalizationDBusProxy::wallpaperSlideShow()
  function QString (line 168) | QString PersonalizationDBusProxy::wallpaperSlideShow(const QString &moni...
  function QString (line 194) | QString PersonalizationDBusProxy::List(const QString &ty)
  function QString (line 211) | QString PersonalizationDBusProxy::Show(const QString &ty, const QStringL...
  function QString (line 223) | QString PersonalizationDBusProxy::Thumbnail(const QString &ty, const QSt...
  function QString (line 265) | QString PersonalizationDBusProxy::getCurrentWorkSpaceBackgroundForMonito...
  function QString (line 276) | QString PersonalizationDBusProxy::saveCustomWallpaper(const QString &use...
  function QStringList (line 281) | QStringList PersonalizationDBusProxy::getCustomWallpaper(const QString &...
  function QStringList (line 287) | QStringList PersonalizationDBusProxy::getAllscreensaver()
  function QString (line 294) | QString PersonalizationDBusProxy::GetScreenSaverCover(const QString &name)
  function QStringList (line 301) | QStringList PersonalizationDBusProxy::ConfigurableItems()
  function QString (line 315) | QString PersonalizationDBusProxy::getCurrentScreenSaver()
  function QString (line 486) | QString PersonalizationDBusProxy::activeColors()

FILE: src/plugin-personalization/operation/personalizationdbusproxy.h
  function class (line 13) | class PersonalizationDBusProxy : public QObject

FILE: src/plugin-personalization/operation/personalizationexport.hpp
  class PersonalizationExport (line 9) | class PersonalizationExport : public QObject
    method Q_OBJECT (line 11) | Q_OBJECT
    type WallpaperSetOption (line 18) | enum WallpaperSetOption {
    type ModuleType (line 26) | enum ModuleType {

FILE: src/plugin-personalization/operation/personalizationinterface.cpp
  function QModelIndex (line 44) | QModelIndex ThemeVieweModel::index(int row, int column, const QModelInde...
  function QModelIndex (line 52) | QModelIndex ThemeVieweModel::parent(const QModelIndex &index) const
  function QVariant (line 72) | QVariant ThemeVieweModel::data(const QModelIndex &index, int role) const
  function QString (line 206) | QString PersonalizationInterface::platformName()

FILE: src/plugin-personalization/operation/personalizationinterface.h
  function class (line 14) | class ThemeVieweModel : public QAbstractItemModel
  function class (line 46) | class PersonalizationInterface : public QObject

FILE: src/plugin-personalization/operation/personalizationmodel.h
  function class (line 15) | class PersonalizationModel : public QObject

FILE: src/plugin-personalization/operation/personalizationworker.cpp
  function T (line 619) | T PersonalizationWorker::toSliderValue(std::vector<T> list, T value)

FILE: src/plugin-personalization/operation/personalizationworker.h
  function class (line 24) | class PersonalizationWorker : public QObject
  function class (line 128) | class PersonalizationWatcher : public QObject

FILE: src/plugin-personalization/operation/screensaverprovider.h
  function class (line 11) | class ScreensaverWorker : public QObject
  function class (line 26) | class ScreensaverProvider : public QObject

FILE: src/plugin-personalization/operation/treelandworker.cpp
  function QString (line 67) | QString TreeLandWorker::getBackgroundForMonitor(const QString &monitorName)
  function QString (line 80) | QString TreeLandWorker::getLockBackForMonitor(const QString &monitorName)
  type ::treeland_personalization_appearance_context_v1 (line 549) | struct ::treeland_personalization_appearance_context_v1
  type ::treeland_personalization_wallpaper_context_v1 (line 594) | struct ::treeland_personalization_wallpaper_context_v1
  type ::treeland_personalization_cursor_context_v1 (line 607) | struct ::treeland_personalization_cursor_context_v1
  type ::treeland_personalization_font_context_v1 (line 620) | struct ::treeland_personalization_font_context_v1

FILE: src/plugin-personalization/operation/treelandworker.h
  function class (line 28) | class TreeLandWorker : public PersonalizationWorker

FILE: src/plugin-personalization/operation/utils.hpp
  function QString (line 21) | inline QString getGlobalThemeId(const QString &themeId, QString &mode)
  function ptToPx (line 35) | inline double ptToPx(double pt)
  function pxToPt (line 41) | inline double pxToPt(double px)
  function isURI (line 47) | inline bool isURI(QString uri)
  function QString (line 56) | inline QString deCodeURI(QString uri)
  function QString (line 69) | inline QString enCodeURI(QString content, QString scheme)
  function QString (line 80) | inline static QString currentUserName()

FILE: src/plugin-personalization/operation/wallpaperprovider.cpp
  function solidColorSortOrder (line 34) | static int solidColorSortOrder(const QString &path)
  function WallpaperType (line 143) | WallpaperType WallpaperProvider::getWallpaperType(const QString &path)
  function WallpaperItemPtr (line 234) | WallpaperItemPtr InterfaceWorker::createItem(const QString &path, bool d...
  function CHECK_RETURN_RUNNING (line 274) | CHECK_RETURN_RUNNING
  function CHECK_RETURN_RUNNING (line 330) | CHECK_RETURN_RUNNING
  function QStringList (line 372) | QStringList InterfaceWorker::fetchWallpaper(const QString &dir)

FILE: src/plugin-personalization/operation/wallpaperprovider.h
  type WallpaperType (line 16) | enum WallpaperType{
  function class (line 24) | class InterfaceWorker : public QObject
  function class (line 50) | class WallpaperProvider : public QObject

FILE: src/plugin-personalization/operation/x11worker.h
  function class (line 9) | class X11Worker : public PersonalizationWorker

FILE: src/plugin-power/operation/powerdbusproxy.cpp
  function uint (line 280) | uint PowerDBusProxy::powerSavingModeBrightnessDropPercent()
  function uint (line 290) | uint PowerDBusProxy::powerSavingModeAutoBatteryPercent()
  function QString (line 300) | QString PowerDBusProxy::mode()
  function QString (line 390) | QString PowerDBusProxy::shutdownTime()
  function QByteArray (line 410) | QByteArray PowerDBusProxy::customShutdownWeekDays()

FILE: src/plugin-power/operation/powerdbusproxy.h
  function class (line 13) | class PowerDBusProxy : public QObject

FILE: src/plugin-power/operation/powerinterface.cpp
  function QString (line 110) | QString PowerInterface::platformName()

FILE: src/plugin-power/operation/powerinterface.h
  function class (line 11) | class PowerInterface : public QObject

FILE: src/plugin-power/operation/powermodel.h
  function Q_INVOKABLE (line 198) | Q_INVOKABLE void refreshShutdownRepetition() { Q_EMIT shutdownRepetition...
  function m_powerSaveMode (line 305) | bool m_powerSaveMode { false };

FILE: src/plugin-power/operation/poweroperatormodel.cpp
  function QVariant (line 29) | QVariant PowerOperatorModel::data(const QModelIndex &index, int role) const
  function quint8 (line 83) | quint8 PowerOperatorModel::keyOfIndex(int rowIndex) const

FILE: src/plugin-power/operation/poweroperatormodel.h
  type PowerOperatorType (line 10) | enum PowerOperatorType{
  type PowerOperator (line 19) | struct PowerOperator

FILE: src/plugin-power/operation/powerworker.cpp
  function QVariantList (line 133) | QVariantList PowerWorker::converToDataMap(const QStringList& conf)

FILE: src/plugin-power/operation/powerworker.h
  function class (line 12) | class PowerWorker : public QObject

FILE: src/plugin-power/operation/utils.h
  function DCORE_USE_NAMESPACE (line 14) | DCORE_USE_NAMESPACE
  function isVirtualEnvironment (line 42) | inline static bool isVirtualEnvironment()

FILE: src/plugin-privacy/operation/applicationitem.cpp
  function QString (line 24) | QString ApplicationItem::id() const
  function QString (line 34) | QString ApplicationItem::name() const
  function QString (line 39) | QString ApplicationItem::appPath() const
  function QString (line 44) | QString ApplicationItem::package() const
  function QStringList (line 49) | QStringList ApplicationItem::executablePaths() const
  function QString (line 54) | QString ApplicationItem::icon() const
  function QString (line 59) | QString ApplicationItem::sortField() const
  function QString (line 64) | QString ApplicationItem::desktopPath() const

FILE: src/plugin-privacy/operation/applicationitem.h
  function class (line 19) | class ApplicationItem : public QObject

FILE: src/plugin-privacy/operation/dde-apps.h
  function DS_BEGIN_NAMESPACE (line 12) | DS_BEGIN_NAMESPACE
  function class (line 22) | class AppItemModel {

FILE: src/plugin-privacy/operation/privacysecuritydataproxy.h
  function namespace (line 11) | Q_DECLARE_LOGGING_CATEGORY(DCC_PRIVACY)
  function class (line 20) | class PrivacySecurityDataProxy : public QObject

FILE: src/plugin-privacy/operation/privacysecurityexport.h
  function class (line 10) | class PrivacySecurityExport : public QObject

FILE: src/plugin-privacy/operation/privacysecuritymodel.cpp
  function QVariant (line 17) | QVariant AppsModel::data(const QModelIndex &index, int role) const
  function QVariant (line 55) | QVariant AppsModel::data(const QModelIndex &index, const QString propert...
  function ApplicationItem (line 208) | ApplicationItem *PrivacySecurityModel::applictionItem(unsigned uniqueID)
  function QString (line 256) | const QString PrivacySecurityModel::premissiontoPath(int premission) const

FILE: src/plugin-privacy/operation/privacysecuritymodel.h
  function class (line 10) | class AppsModel : public QAbstractListModel

FILE: src/plugin-privacy/operation/privacysecurityworker.cpp
  function QString (line 36) | static QString getDpkgArch()
  function QString (line 152) | QString PrivacySecurityWorker::getAppPath(const QMap<QString, QString> &...
  function QString (line 238) | QString PrivacySecurityWorker::getEntityJson(const QString &name, bool i...
  function QString (line 270) | QString PrivacySecurityWorker::getAppEntityJson(const ApplicationItem *i...
  function QString (line 307) | QString PrivacySecurityWorker::getSubjectModeJson(const QString &name, b...
  function QString (line 317) | QString PrivacySecurityWorker::getObjectPolicyJson(const ApplicationItem...
  type ItemData (line 365) | struct ItemData {
  type ProcessedItem (line 390) | struct ProcessedItem {
  function ApplicationItem (line 500) | ApplicationItem *PrivacySecurityWorker::addAppItem(int dataIndex)
  function QStringList (line 718) | QStringList PrivacySecurityWorker::getExecutable(const QString &packageN...

FILE: src/plugin-privacy/operation/privacysecurityworker.h
  function class (line 13) | class PrivacySecurityWorker : public QObject {

FILE: src/plugin-sound/operation/audioport.h
  function class (line 13) | class AudioPort

FILE: src/plugin-sound/operation/audioservermodel.cpp
  function QVariant (line 47) | QVariant AudioServerModel::data(const QModelIndex &index, int role) const

FILE: src/plugin-sound/operation/audioservermodel.h
  type AudioServerData (line 11) | struct AudioServerData {
  function class (line 17) | class AudioServerModel : public QAbstractListModel

FILE: src/plugin-sound/operation/port.h
  function class (line 13) | class Port : public QObject

FILE: src/plugin-sound/operation/soundDeviceData.cpp
  function QString (line 24) | QString SoundDeviceData::name() const
  function QString (line 34) | QString SoundDeviceData::getPortId() const
  function uint (line 44) | uint SoundDeviceData::getCardId() const

FILE: src/plugin-sound/operation/soundDeviceData.h
  function class (line 11) | class SoundDeviceData {

FILE: src/plugin-sound/operation/soundDeviceModel.cpp
  function Port (line 66) | Port *SoundDeviceModel::getSoundDeviceData(int index)
  function QVariant (line 100) | QVariant SoundDeviceModel::data(const QModelIndex &index, int role) const

FILE: src/plugin-sound/operation/soundDeviceModel.h
  function class (line 16) | class SoundDeviceModel: public QAbstractListModel {

FILE: src/plugin-sound/operation/soundEffectsData.cpp
  function QString (line 14) | QString SoundEffectsData::dispalyText() const
  function QString (line 24) | QString SoundEffectsData::name() const
  function QString (line 44) | QString SoundEffectsData::path() const
  function QString (line 64) | QString SoundEffectsData::aniIconPath() const

FILE: src/plugin-sound/operation/soundEffectsData.h
  function DGUI_USE_NAMESPACE (line 10) | DGUI_USE_NAMESPACE

FILE: src/plugin-sound/operation/soundInteraction.cpp
  function SoundModel (line 28) | SoundModel *soundInteraction::model() const
  function SoundWorker (line 38) | SoundWorker *soundInteraction::worker() const

FILE: src/plugin-sound/operation/soundInteraction.h
  function class (line 12) | class soundInteraction : public QObject

FILE: src/plugin-sound/operation/sounddbusproxy.cpp
  function QDBusObjectPath (line 47) | QDBusObjectPath SoundDBusProxy::defaultSink()
  function QDBusObjectPath (line 52) | QDBusObjectPath SoundDBusProxy::defaultSource()
  function QString (line 57) | QString SoundDBusProxy::cardsWithoutUnavailable()
  function QStringList (line 62) | QStringList SoundDBusProxy::bluetoothAudioModeOpts()
  function QString (line 67) | QString SoundDBusProxy::bluetoothAudioMode()
  function QString (line 107) | QString SoundDBusProxy::audioServer()
  function QString (line 168) | QString SoundDBusProxy::GetSoundFile(const QString &name)
  function AudioPort (line 238) | AudioPort SoundDBusProxy::activePortSink()
  function uint (line 243) | uint SoundDBusProxy::cardSink()
  function AudioPort (line 272) | AudioPort SoundDBusProxy::activePortSource()
  function uint (line 286) | uint SoundDBusProxy::cardSource()
  function QDBusObjectPath (line 291) | QDBusObjectPath SoundDBusProxy::GetMeter()

FILE: src/plugin-sound/operation/sounddbusproxy.h
  type QMap (line 14) | typedef QMap<QString, bool> SoundEffectQuestions;
  function class (line 19) | class SoundDBusProxy : public QObject

FILE: src/plugin-sound/operation/soundeffectsmodel.cpp
  function SoundEffectsData (line 37) | SoundEffectsData* SoundEffectsModel::getSystemSoundEffect(int index)
  function QVariant (line 77) | QVariant SoundEffectsModel::data(const QModelIndex &index, int role) const

FILE: src/plugin-sound/operation/soundeffectsmodel.h
  function class (line 14) | class SoundEffectsModel : public QAbstractListModel

FILE: src/plugin-sound/operation/soundmodel.cpp
  function QStringList (line 150) | QStringList SoundModel::inPutPortCombo() const
  function Port (line 309) | Port *SoundModel::findPort(const QString &portId, const uint &cardId) const
  function QDBusObjectPath (line 344) | QDBusObjectPath SoundModel::defaultSource() const
  function QDBusObjectPath (line 356) | QDBusObjectPath SoundModel::defaultSink() const
  function QString (line 368) | QString SoundModel::audioCards() const
  function SoundEffectList (line 380) | SoundEffectList SoundModel::soundEffectMap() const
  function QString (line 420) | const QString SoundModel::soundEffectPathByType(DDesktopServices::System...
  function QString (line 425) | const QString SoundModel::getNameByEffectType(DDesktopServices::SystemSo...
  function QString (line 519) | QString SoundModel::getSoundEffectsType(int index)
  function Port (line 542) | Port *SoundModel::getSoundDeviceData(int index, int portType)
  function AudioServerModel (line 581) | AudioServerModel *SoundModel::audioServerModel() const
  function SoundDeviceModel (line 664) | SoundDeviceModel *SoundModel::soundOutputDeviceModel() const
  function SoundDeviceModel (line 680) | SoundDeviceModel *SoundModel::soundInputDeviceModel() const
  function SoundEffectsModel (line 691) | SoundEffectsModel* SoundModel::soundEffectsModel() const
  function QString (line 718) | QString SoundModel::getListName(int index) const

FILE: src/plugin-sound/operation/soundmodel.h
  function class (line 29) | class SoundModel : public QObject
  function isLaptop (line 136) | bool isLaptop() const;
  function initSpeaker (line 142) | void initSpeaker() { Q_EMIT speakerOnChanged(m_speakerOn); }
  function QStringList (line 144) | inline QStringList bluetoothAudioModeOpts() { return m_bluetoothModeOpts; }
  function QString (line 148) | inline QString currentBluetoothAudioMode() { return m_currentBluetoothMo...
  function currentWaitSoundReceiptTime (line 152) | inline int currentWaitSoundReceiptTime() { return m_waitSoundReceiptTime; }
  function m_portEnable (line 294) | bool m_portEnable{false};

FILE: src/plugin-sound/operation/soundworker.h
  function class (line 20) | class SoundWorker : public QObject

FILE: src/plugin-systeminfo/operation/systeminfodbusproxy.cpp
  function QString (line 54) | QString SystemInfoDBusProxy::staticHostname()
  function QString (line 83) | QString SystemInfoDBusProxy::timezone()
  function qulonglong (line 100) | qulonglong SystemInfoDBusProxy::memorySize()
  function QString (line 105) | QString SystemInfoDBusProxy::Processor()
  function qulonglong (line 110) | qulonglong SystemInfoDBusProxy::CurrentSpeed()
  function QString (line 115) | QString SystemInfoDBusProxy::CPUHardware()

FILE: src/plugin-systeminfo/operation/systeminfodbusproxy.h
  function class (line 13) | class SystemInfoDBusProxy : public QObject

FILE: src/plugin-systeminfo/operation/systeminfointeraction.cpp
  function SystemInfoWork (line 27) | SystemInfoWork *SystemInfoInteraction::systemInfoWork() const
  function SystemInfoModel (line 37) | SystemInfoModel *SystemInfoInteraction::systemInfoMode() const

FILE: src/plugin-systeminfo/operation/systeminfointeraction.h
  function class (line 14) | class SystemInfoInteraction : public QObject

FILE: src/plugin-systeminfo/operation/systeminfomodel.cpp
  type DCC_NAMESPACE (line 12) | namespace DCC_NAMESPACE {
    function QString (line 14) | static QString formatCap(qulonglong cap, const int size = 1024, quint8...
    function QString (line 110) | QString SystemInfoModel::graphicsPlatform() const
    function QString (line 138) | QString SystemInfoModel::systemInstallationDate() const
    function QString (line 151) | QString SystemInfoModel::logoPath() const
    function QColor (line 202) | QColor SystemInfoModel::licenseStatusColor() const
    function QString (line 215) | QString SystemInfoModel::licenseActionText() const
    function QString (line 228) | QString SystemInfoModel::licenseStatusText() const
    function QString (line 241) | QString SystemInfoModel::systemCopyright() const
    function QString (line 265) | QString SystemInfoModel::userExperienceProgramText() const
    function QString (line 278) | QString SystemInfoModel::userLicense() const
    function QString (line 291) | QString SystemInfoModel::gnuLinceseContent() const
    function QString (line 304) | QString SystemInfoModel::gnuLinceseTitle() const
    function QString (line 317) | QString SystemInfoModel::privacyPolicy() const

FILE: src/plugin-systeminfo/operation/systeminfomodel.h
  type ActiveState (line 18) | enum ActiveState {

FILE: src/plugin-systeminfo/operation/systeminfowork.cpp
  type DCC_NAMESPACE (line 32) | namespace DCC_NAMESPACE{
    function QString (line 196) | QString SystemInfoWork::getEndUserAgreementText()
    function QString (line 314) | QString SystemInfoWork::getSystemInstallDate(int shortDateFormat, QStr...
    function QString (line 347) | static const QString getLicensePath(const QString &filePath, const QSt...
    function QString (line 360) | static QString getUserExpContent()
    function QString (line 528) | QString SystemInfoWork::getLicenseAuthorizationPropertyString()

FILE: src/plugin-systeminfo/operation/systeminfowork.h
  function namespace (line 16) | namespace DCC_NAMESPACE{

FILE: src/plugin-systeminfo/operation/utils.h
  function QStringList (line 53) | inline static const QStringList SYSTEM_LOCAL_LIST{

FILE: src/plugin-touchscreen/operation/monitordbusproxy.cpp
  function QString (line 25) | QString MonitorDBusProxy::name()

FILE: src/plugin-touchscreen/operation/monitordbusproxy.h
  function class (line 14) | class MonitorDBusProxy : public QObject

FILE: src/plugin-touchscreen/operation/touchscreenmatchmodel.cpp
  function QModelIndex (line 26) | QModelIndex TouchScreenMatchModel::index(int row, int column, const QMod...
  function QModelIndex (line 34) | QModelIndex TouchScreenMatchModel::parent(const QModelIndex &) const
  function QVariant (line 49) | QVariant TouchScreenMatchModel::data(const QModelIndex &index, int role)...

FILE: src/plugin-touchscreen/operation/touchscreenmatchmodel.h
  type TouchScreenMatchRole (line 13) | enum TouchScreenMatchRole
  function class (line 22) | class TouchScreenMatchModel : public QAbstractItemModel

FILE: src/plugin-touchscreen/operation/touchscreenmodel.cpp
  function TouchscreenInfoList_V2 (line 28) | const TouchscreenInfoList_V2 &TouchScreenModel::touchScreenList() const
  function QStringList (line 34) | const QStringList &TouchScreenModel::monitors()
  function TouchscreenMap (line 40) | const TouchscreenMap &TouchScreenModel::touchMap() const

FILE: src/plugin-touchscreen/operation/touchscreenmodel.h
  function class (line 23) | class TouchScreenModel : public QObject

FILE: src/plugin-touchscreen/operation/touchscreenmodel_p.h
  function class (line 12) | class TouchScreenModelPrivate

FILE: src/plugin-touchscreen/operation/touchscreenproxy.cpp
  function DCORE_USE_NAMESPACE (line 9) | DCORE_USE_NAMESPACE

FILE: src/plugin-touchscreen/operation/touchscreenproxy.h
  function namespace (line 14) | namespace DCC_NAMESPACE {

FILE: src/plugin-touchscreen/operation/types/touchscreeninfolist_v2.cpp
  function QDBusArgument (line 6) | QDBusArgument &operator<<(QDBusArgument &arg, const TouchscreenInfo_V2 &...
  function QDBusArgument (line 15) | const QDBusArgument &operator>>(const QDBusArgument &arg, TouchscreenInf...
  function registerTouchscreenInfoV2MetaType (line 30) | void registerTouchscreenInfoV2MetaType()
  function registerTouchscreenInfoList_V2MetaType (line 36) | void registerTouchscreenInfoList_V2MetaType()

FILE: src/plugin-touchscreen/operation/types/touchscreeninfolist_v2.h
  type TouchscreenInfo_V2 (line 11) | struct TouchscreenInfo_V2 {
  type QList (line 21) | typedef QList<TouchscreenInfo_V2> TouchscreenInfoList_V2;

FILE: src/plugin-touchscreen/operation/types/touchscreenmap.cpp
  function registerTouchscreenMapMetaType (line 6) | void registerTouchscreenMapMetaType()

FILE: src/plugin-touchscreen/operation/types/touchscreenmap.h
  type QMap (line 10) | typedef QMap<QString, QString> TouchscreenMap;

FILE: src/plugin-wacom/operation/wacomdbusproxy.cpp
  function uint (line 27) | uint WacomDBusProxy::stylusPressureSensitive()
  function uint (line 47) | uint WacomDBusProxy::eraserPressureSensitive()

FILE: src/plugin-wacom/operation/wacomdbusproxy.h
  function class (line 17) | class WacomDBusProxy :public QObject

FILE: src/plugin-wacom/operation/wacommodel.cpp
  function uint (line 37) | uint WacomModel::eraserPressureSensitive()

FILE: src/plugin-wacom/operation/wacommodelprivate_p.h
  function class (line 11) | class WacomModelPrivate
  function cursorModeChanged (line 33) | void cursorModeChanged(const bool cursorMode) {
  function pressureValueChanged (line 42) | void pressureValueChanged(const uint value) {
  function initConnect (line 52) | void initConnect() {

FILE: src/shared-utils/dcclocale.cpp
  type DisplayNamesHolder (line 19) | struct DisplayNamesHolder {
    method DisplayNamesHolder (line 20) | DisplayNamesHolder()
  function fromQString (line 33) | [[maybe_unused]] icu::UnicodeString fromQString(const QString& qstr) {
  function QString (line 37) | QString toQString(const icu::UnicodeString& icuString) {
  function QStringList (line 51) | QStringList DCCLocale::dialectNames(const QStringList &localeCodes)

FILE: src/shared-utils/dcclocale.h
  function class (line 11) | class DCCLocale

FILE: toolGenerate/dconfig2cpp/org_deepin_dde_control-center.hpp
  function QObject (line 21) | class org_deepin_dde_control-center : public QObject {
  function center (line 71) | explicit org_deepin_dde_control-center(QThread *thread, const QString &n...
  function center (line 92) | explicit org_deepin_dde_control-center(QThread *thread, DTK_CORE_NAMESPA...
  function disableModule (line 119) | QList<QVariant> disableModule() const {
  function setDisableModule (line 122) | void setDisableModule(const QList<QVariant> &value) {
  function height (line 135) | double height() const {
  function setHeight (line 138) | void setHeight(const double &value) {
  function hideModule (line 151) | QList<QVariant> hideModule() const {
  function setHideModule (line 154) | void setHideModule(const QList<QVariant> &value) {
  function width (line 167) | double width() const {
  function setWidth (line 170) | void setWidth(const double &value) {
  function updateValue (line 217) | void updateValue(const QString &key, const QVariant &fallback = QVariant...
  function markPropertySet (line 261) | inline void markPropertySet(const int index) {
  function testPropertySet (line 268) | inline bool testPropertySet(const int index) const {

FILE: toolGenerate/dconfig2cpp/org_deepin_dde_control-center_accounts.hpp
  function QObject (line 21) | class org_deepin_dde_control-center_accounts : public QObject {
  function center_accounts (line 68) | explicit org_deepin_dde_control-center_accounts(QThread *thread, const Q...
  function center_accounts (line 89) | explicit org_deepin_dde_control-center_accounts(QThread *thread, DTK_COR...
  function QString (line 116) | QString avatarPath() const {
  function setAvatarPath (line 119) | void setAvatarPath(const QString &value) {
  function updateValue (line 148) | void updateValue(const QString &key, const QVariant &fallback = QVariant...
  function markPropertySet (line 162) | inline void markPropertySet(const int index) {
  function testPropertySet (line 169) | inline bool testPropertySet(const int index) const {

FILE: toolGenerate/dconfig2cpp/org_deepin_dde_control-center_datetime.hpp
  function QObject (line 26) | class dconfig_org_deepin_dde_control-center_datetime : public QObject {
  function Q_INVOKABLE (line 110) | Q_INVOKABLE DTK_CORE_NAMESPACE::DConfig *config() const {
  function Q_INVOKABLE (line 114) | Q_INVOKABLE bool isInitializeSucceed() const {
  function Q_INVOKABLE (line 118) | Q_INVOKABLE bool isInitializeFailed() const {
  function Q_INVOKABLE (line 122) | Q_INVOKABLE bool isInitializing() const {
  function Q_INVOKABLE (line 126) | Q_INVOKABLE QStringList keyList() const {
  function Q_INVOKABLE (line 130) | Q_INVOKABLE bool isDefaultValue(const QString &key) const {
  function QString (line 136) | QString customNtpServer() const {
  function setCustomNtpServer (line 139) | void setCustomNtpServer(const QString &value) {
  function resetCustomNtpServer (line 153) | void resetCustomNtpServer() {
  function bindableCustomNtpServer (line 161) | QBindable<QString> bindableCustomNtpServer() {
  function Q_INVOKABLE (line 165) | Q_INVOKABLE bool customNtpServerIsDefaultValue() const {
  function updateValue (line 197) | void updateValue(const QString &key, const QVariant &fallback = QVariant...
  function markPropertySet (line 214) | inline void markPropertySet(const int index, bool on = true) {
  function testPropertySet (line 224) | inline bool testPropertySet(const int index) const {
  type Status (line 234) | enum class Status {

FILE: toolGenerate/dconfig2cpp/org_deepin_dde_control-center_display.hpp
  function QObject (line 21) | class org_deepin_dde_control-center_display : public QObject {
  function center_display (line 68) | explicit org_deepin_dde_control-center_display(QThread *thread, const QS...
  function center_display (line 89) | explicit org_deepin_dde_control-center_display(QThread *thread, DTK_CORE...
  function minBrightnessValue (line 116) | double minBrightnessValue() const {
  function setMinBrightnessValue (line 119) | void setMinBrightnessValue(const double &value) {
  function updateValue (line 148) | void updateValue(const QString &key, const QVariant &fallback = QVariant...
  function markPropertySet (line 162) | inline void markPropertySet(const int index) {
  function testPropertySet (line 169) | inline bool testPropertySet(const int index) const {

FILE: toolGenerate/dconfig2cpp/org_deepin_dde_control-center_personalization.hpp
  function QObject (line 21) | class org_deepin_dde_control-center_personalization : public QObject {
  function center_personalization (line 72) | explicit org_deepin_dde_control-center_personalization(QThread *thread, ...
  function center_personalization (line 93) | explicit org_deepin_dde_control-center_personalization(QThread *thread, ...
  function QString (line 120) | QString compactDisplayStatus() const {
  function setCompactDisplayStatus (line 123) | void setCompactDisplayStatus(const QString &value) {
  function hideIconThemes (line 136) | QList<QVariant> hideIconThemes() const {
  function setHideIconThemes (line 139) | void setHideIconThemes(const QList<QVariant> &value) {
  function QString (line 152) | QString scrollbarPolicyStatus() const {
  function setScrollbarPolicyStatus (line 155) | void setScrollbarPolicyStatus(const QString &value) {
  function QString (line 168) | QString titleBarHeightStatus() const {
  function setTitleBarHeightStatus (line 171) | void setTitleBarHeightStatus(const QString &value) {
  function titleBarHeightSupportCompactDisplay (line 184) | bool titleBarHeightSupportCompactDisplay() const {
  function setTitleBarHeightSupportCompactDisplay (line 187) | void setTitleBarHeightSupportCompactDisplay(const bool &value) {
  function updateValue (line 240) | void updateValue(const QString &key, const QVariant &fallback = QVariant...
  function markPropertySet (line 294) | inline void markPropertySet(const int index) {
  function testPropertySet (line 301) | inline bool testPropertySet(const int index) const {

FILE: toolGenerate/dconfig2cpp/org_deepin_dde_control-center_power.hpp
  function QObject (line 21) | class org_deepin_dde_control-center_power : public QObject {
  function center_power (line 77) | explicit org_deepin_dde_control-center_power(QThread *thread, const QStr...
  function center_power (line 98) | explicit org_deepin_dde_control-center_power(QThread *thread, DTK_CORE_N...
  function batteryLockDelay (line 125) | QList<QVariant> batteryLockDelay() const {
  function setBatteryLockDelay (line 128) | void setBatteryLockDelay(const QList<QVariant> &value) {
  function batteryScreenBlackDelay (line 141) | QList<QVariant> batteryScreenBlackDelay() const {
  function setBatteryScreenBlackDelay (line 144) | void setBatteryScreenBlackDelay(const QList<QVariant> &value) {
  function batterySleepDelay (line 157) | QList<QVariant> batterySleepDelay() const {
  function setBatterySleepDelay (line 160) | void setBatterySleepDelay(const QList<QVariant> &value) {
  function QString (line 173) | QString enableScheduledShutdown() const {
  function setEnableScheduledShutdown (line 176) | void setEnableScheduledShutdown(const QString &value) {
  function linePowerLockDelay (line 189) | QList<QVariant> linePowerLockDelay() const {
  function setLinePowerLockDelay (line 192) | void setLinePowerLockDelay(const QList<QVariant> &value) {
  function linePowerScreenBlackDelay (line 205) | QList<QVariant> linePowerScreenBlackDelay() const {
  function setLinePowerScreenBlackDelay (line 208) | void setLinePowerScreenBlackDelay(const QList<QVariant> &value) {
  function linePowerSleepDelay (line 221) | QList<QVariant> linePowerSleepDelay() const {
  function setLinePowerSleepDelay (line 224) | void setLinePowerSleepDelay(const QList<QVariant> &value) {
  function showHibernate (line 237) | bool showHibernate() const {
  function setShowHibernate (line 240) | void setShowHibernate(const bool &value) {
  function showShutdown (line 253) | bool showShutdown() const {
  function setShowShutdown (line 256) | void setShowShutdown(const bool &value) {
  function showSuspend (line 269) | bool showSuspend() const {
  function setShowSuspend (line 272) | void setShowSuspend(const bool &value) {
  function updateValue (line 355) | void updateValue(const QString &key, const QVariant &fallback = QVariant...
  function markPropertySet (line 459) | inline void markPropertySet(const int index) {
  function testPropertySet (line 466) | inline bool testPropertySet(const int index) const {

FILE: toolGenerate/dconfig2cpp/org_deepin_dde_control-center_update.hpp
  function QObject (line 21) | class org_deepin_dde_control-center_update : public QObject {
  function center_update (line 69) | explicit org_deepin_dde_control-center_update(QThread *thread, const QSt...
  function center_update (line 90) | explicit org_deepin_dde_control-center_update(QThread *thread, DTK_CORE_...
  function backup (line 117) | bool backup() const {
  function setBackup (line 120) | void setBackup(const bool &value) {
  function QString (line 133) | QString updateLogAddress() const {
  function setUpdateLogAddress (line 136) | void setUpdateLogAddress(const QString &value) {
  function updateValue (line 171) | void updateValue(const QString &key, const QVariant &fallback = QVariant...
  function markPropertySet (line 195) | inline void markPropertySet(const int index) {
  function testPropertySet (line 202) | inline bool testPropertySet(const int index) const {

FILE: toolGenerate/dconfig2cpp/org_deepin_region-format.hpp
  function QObject (line 21) | class org_deepin_region-format : public QObject {
  function format (line 78) | explicit org_deepin_region-format(QThread *thread, const QString &name, ...
  function format (line 99) | explicit org_deepin_region-format(QThread *thread, DTK_CORE_NAMESPACE::D...
  function QString (line 126) | QString country() const {
  function setCountry (line 129) | void setCountry(const QString &value) {
  function QString (line 142) | QString currencyFormat() const {
  function setCurrencyFormat (line 145) | void setCurrencyFormat(const QString &value) {
  function firstDayOfWeek (line 158) | double firstDayOfWeek() const {
  function setFirstDayOfWeek (line 161) | void setFirstDayOfWeek(const double &value) {
  function QString (line 174) | QString languageRegion() const {
  function setLanguageRegion (line 177) | void setLanguageRegion(const QString &value) {
  function QString (line 190) | QString localeName() const {
  function setLocaleName (line 193) | void setLocaleName(const QString &value) {
  function QString (line 206) | QString longDateFormat() const {
  function setLongDateFormat (line 209) | void setLongDateFormat(const QString &value) {
  function QString (line 222) | QString longTimeFormat() const {
  function setLongTimeFormat (line 225) | void setLongTimeFormat(const QString &value) {
  function QString (line 238) | QString numberFormat() const {
  function setNumberFormat (line 241) | void setNumberFormat(const QString &value) {
  function QString (line 254) | QString paperFormat() const {
  function setPaperFormat (line 257) | void setPaperFormat(const QString &value) {
  function QString (line 270) | QString shortDateFormat() const {
  function setShortDateFormat (line 273) | void setShortDateFormat(const QString &value) {
  function QString (line 286) | QString shortTimeFormat() const {
  function setShortTimeFormat (line 289) | void setShortTimeFormat(const QString &value) {
  function updateValue (line 378) | void updateValue(const QString &key, const QVariant &fallback = QVariant...
  function markPropertySet (line 492) | inline void markPropertySet(const int index) {
  function testPropertySet (line 499) | inline bool testPropertySet(const int index) const {

FILE: toolGenerate/qdbusxml2cpp/org.desktopspec.ApplicationManager1.ApplicationAdaptor.cpp
  function PropMap (line 36) | PropMap ApplicationAdaptor::actionName() const
  function QStringList (line 42) | QStringList ApplicationAdaptor::actions() const
  function QStringList (line 60) | QStringList ApplicationAdaptor::categories() const
  function QString (line 66) | QString ApplicationAdaptor::environ() const
  function QStringMap (line 78) | QStringMap ApplicationAdaptor::genericName() const
  function QString (line 84) | QString ApplicationAdaptor::iD() const
  function QStringMap (line 90) | QStringMap ApplicationAdaptor::icons() const
  function qlonglong (line 96) | qlonglong ApplicationAdaptor::installedTime() const
  function qlonglong (line 108) | qlonglong ApplicationAdaptor::lastLaunchedTime() const
  function qlonglong (line 114) | qlonglong ApplicationAdaptor::launchedTimes() const
  function QStringList (line 120) | QStringList ApplicationAdaptor::mimeTypes() const
  function QStringMap (line 132) | QStringMap ApplicationAdaptor::name() const
  function QString (line 150) | QString ApplicationAdaptor::x_Deepin_Vendor() const
  function QDBusObjectPath (line 174) | QDBusObjectPath ApplicationAdaptor::Launch(const QString &action, const ...

FILE: toolGenerate/qdbusxml2cpp/org.desktopspec.ObjectManager1Adaptor.cpp
  function ObjectMap (line 36) | ObjectMap ObjectManagerAdaptor::GetManagedObjects()
Copy disabled (too large) Download .json
Condensed preview — 1114 files, each showing path, character count, and a content snippet. Download the .json file for the full structured content (22,442K chars).
[
  {
    "path": ".clang-format",
    "chars": 6104,
    "preview": "# This is the clang-format style used by qt releated deepin projects.\n#\n# This file is modified from https://github.com/"
  },
  {
    "path": ".editorconfig",
    "chars": 158,
    "preview": "root = true\n\n[*]\ncharset = utf-8\nend_of_line = lf\n\n[CMakeLists.txt]\nindent_style = space\nindent_size = 4\n\n[*.{cpp,h,ts}]"
  },
  {
    "path": ".github/copilot-instructions.md",
    "chars": 4891,
    "preview": "# DDE Control Center - AI Coding Agent Instructions\n\n## Project Overview\nDDE Control Center (深度控制中心) v6.0+ is a Qt6/QML-"
  },
  {
    "path": ".github/workflows/backup-to-gitlab.yml",
    "chars": 351,
    "preview": "name: backup to gitlab\non: [push]\n\nconcurrency:\n  group: ${{ github.workflow }}\n  cancel-in-progress: true\n\njobs:\n  back"
  },
  {
    "path": ".github/workflows/call-auto-tag.yml",
    "chars": 335,
    "preview": "name: auto tag\n\non:\n  pull_request_target:\n    types: [opened, synchronize, closed]\n    paths:\n      - \"debian/changelog"
  },
  {
    "path": ".github/workflows/call-build-distribution.yml",
    "chars": 282,
    "preview": "name: Call build-distribution\non:\n  push:\n    paths-ignore:\n      - \".github/workflows/**\"\n  pull_request_target:\n    pa"
  },
  {
    "path": ".github/workflows/call-chatOps.yml",
    "chars": 162,
    "preview": "name: chatOps\non:\n  issue_comment:\n    types: [created]\n\njobs:\n  chatopt:\n    uses: linuxdeepin/.github/.github/workflow"
  },
  {
    "path": ".github/workflows/call-clacheck.yml",
    "chars": 341,
    "preview": "name: Call CLA check\non:\n  issue_comment:\n    types: [created]\n  pull_request_target:\n    types: [opened, closed, synchr"
  },
  {
    "path": ".github/workflows/call-commitlint.yml",
    "chars": 244,
    "preview": "name: Call commitlint\non:\n  pull_request_target:\n\nconcurrency:\n  group: ${{ github.workflow }}-pull/${{ github.event.num"
  },
  {
    "path": ".github/workflows/call-deploy-dev-doc.yml",
    "chars": 480,
    "preview": "name: deploy docs\r\non:\r\n  push:\r\n    branches: [\"master\"]\r\n  workflow_dispatch:\r\n    inputs:\r\n      tag:\r\n        requir"
  },
  {
    "path": ".github/workflows/call-license-check.yml",
    "chars": 362,
    "preview": "name: Call License and README Check\non:\n  pull_request_target:\n    types: [opened, synchronize, reopened]\n\npermissions:\n"
  },
  {
    "path": ".github/workflows/cppcheck.yml",
    "chars": 693,
    "preview": "name: cppcheck\non:\n  pull_request_target:\n    paths-ignore:\n      - \".github/workflows/**\"\n\nconcurrency:\n  group: ${{ gi"
  },
  {
    "path": ".gitignore",
    "chars": 550,
    "preview": "# Compiled Object files\n*.slo\n*.lo\n*.o\n\n# Compiled Dynamic libraries\n*.so\n*.dylib\n\n# Compiled Static libraries\n*.lai\n*.l"
  },
  {
    "path": ".obs/workflows.yml",
    "chars": 1006,
    "preview": "test_build:\n  steps:\n    - link_package:\n        source_project: deepin:Develop:dde\n        source_package: %{SCM_REPOSI"
  },
  {
    "path": ".reuse/dep5",
    "chars": 1712,
    "preview": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: dtkcore\nUpstream-Contact: Unio"
  },
  {
    "path": ".tx/config",
    "chars": 469,
    "preview": "[main]\nhost = https://www.transifex.com\n\n[o:linuxdeepin:p:deepin-desktop-environment:r:332dacad18d2b1a048dba06b5c1f0293]"
  },
  {
    "path": ".tx/deepin.conf",
    "chars": 25,
    "preview": "[transifex]\nbranch = m23\n"
  },
  {
    "path": ".tx/transifex.yaml",
    "chars": 462,
    "preview": "filters:\n  - filter_type: file\n    source_file: translations/dde-control-center_en.ts\n    file_format: QT\n    source_lan"
  },
  {
    "path": "CMakeLists.txt",
    "chars": 8493,
    "preview": "cmake_minimum_required(VERSION 3.18)\n\nset(DVERSION \"6.0.44\" CACHE STRING \"define project version\")\nset(BUILD_DOCS OFF CA"
  },
  {
    "path": "LICENSE",
    "chars": 35147,
    "preview": "                    GNU GENERAL PUBLIC LICENSE\n                       Version 3, 29 June 2007\n\n Copyright (C) 2007 Free "
  },
  {
    "path": "LICENSES/CC-BY-4.0.txt",
    "chars": 16983,
    "preview": "Creative Commons Attribution 4.0 International\n\n Creative Commons Corporation (“Creative Commons”) is not a law firm and"
  },
  {
    "path": "LICENSES/CC0-1.0.txt",
    "chars": 7048,
    "preview": "Creative Commons Legal Code\n\nCC0 1.0 Universal\n\n    CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE\n"
  },
  {
    "path": "LICENSES/GPL-3.0-or-later.txt",
    "chars": 34505,
    "preview": "GNU GENERAL PUBLIC LICENSE\nVersion 3, 29 June 2007\n\nCopyright © 2007 Free Software Foundation, Inc. <http://fsf.org/>\n\nE"
  },
  {
    "path": "LICENSES/LGPL-3.0-or-later.txt",
    "chars": 41933,
    "preview": "GNU LESSER GENERAL PUBLIC LICENSE\nVersion 3, 29 June 2007\n\nCopyright (C) 2007 Free Software Foundation, Inc. <http://fsf"
  },
  {
    "path": "LICENSES/MIT.txt",
    "chars": 1078,
    "preview": "MIT License\n\nCopyright (c) <year> <copyright holders>\n\nPermission is hereby granted, free of charge, to any person obtai"
  },
  {
    "path": "README.md",
    "chars": 2505,
    "preview": "## DDE Control Center\n\nDDE Control Center is the control panel of Deepin Desktop Environment.\n\n## Dependencies\n\nCheck `d"
  },
  {
    "path": "README.zh_CN.md",
    "chars": 1425,
    "preview": "## DDE 控制中心\n\nDDE 控制中心控制整个DDE桌面环境\n\n## 依赖\n\n查看 `debian/control` 文件来了解此项目的构建与运行时依赖,或者使用 `cmake` 检查缺失的必要组件。\n\n## 安装\n\n### 源码安装\n"
  },
  {
    "path": "archlinux/PKGBUILD",
    "chars": 1395,
    "preview": "pkgname=deepin-control-center-git\n_pkgname=deepin-control-center\npkgver=5.4.47.r673.g52c86a908\npkgrel=1\nsourcename=dde-c"
  },
  {
    "path": "debian/changelog",
    "chars": 97429,
    "preview": "dde-control-center (6.1.83) unstable; urgency=medium\n\n  * build: add dde-api-dev build dependency\n  * i18n: Updates for "
  },
  {
    "path": "debian/control",
    "chars": 2498,
    "preview": "Source: dde-control-center\nSection: admin\nPriority: optional\nMaintainer: Deepin Sysdev <sysdev@deepin.com>\nBuild-Depends"
  },
  {
    "path": "debian/copyright",
    "chars": 972,
    "preview": "Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/\nUpstream-Name: dde-control-center\n\nFiles: *\nC"
  },
  {
    "path": "debian/dde-control-center-dev.install",
    "chars": 28,
    "preview": "usr/include\nusr/lib/*/cmake\n"
  },
  {
    "path": "debian/dde-control-center.install",
    "chars": 140,
    "preview": "usr/bin/\nusr/lib/*/*.so*\nusr/lib/*/dde-control-center/\nusr/share\nusr/lib/*/dde-grand-search-daemon/plugins/searcher/*\nus"
  },
  {
    "path": "debian/preinst",
    "chars": 71,
    "preview": "#!/bin/bash\nrm -rf  /home/*/.cache/deepin/dde-control-center/qmlcache/\n"
  },
  {
    "path": "debian/rules",
    "chars": 663,
    "preview": "#!/usr/bin/make -f\ninclude /usr/share/dpkg/default.mk\nexport QT_SELECT = qt6\nVERSION = $(DEB_VERSION_UPSTREAM)\nPACK_VER "
  },
  {
    "path": "debian/source/format",
    "chars": 12,
    "preview": "3.0 (native)"
  },
  {
    "path": "debian/source/lintian-overrides",
    "chars": 73,
    "preview": "dde-control-center source: source-is-missing [misc/developdocument.html]\n"
  },
  {
    "path": "docs/CMakeLists.txt",
    "chars": 3059,
    "preview": "find_package(Doxygen REQUIRED)\n\nset(QCH_INSTALL_DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/qt6/doc CACHE STRING \"QCH insta"
  },
  {
    "path": "docs/v23-dcc-interface.zh_CN.md",
    "chars": 21495,
    "preview": "# dde-control-center\n\n## 接口变更记录\n\n| 时间| 版本|说明| 控制中心版本号|\n|:----|:----|:----|:----|\n|2022.4.13|1.0|创建|6.0.0.0|\n|2022.6.1|1."
  },
  {
    "path": "docs/v25-dcc-interface.zh_CN.md",
    "chars": 19991,
    "preview": "\\mainpage dde-control-center\n@brief dde-control-center\n\n# dde-control-center\n## 接口变更记录\n| 时间 | 版本 | 说明 | 控制中心版本号 |\n|---|-"
  },
  {
    "path": "examples/CMakeLists.txt",
    "chars": 33,
    "preview": "add_subdirectory(plugin-example)\n"
  },
  {
    "path": "examples/plugin-example/CMakeLists.txt",
    "chars": 824,
    "preview": "cmake_minimum_required(VERSION 3.23) # qt_add_qml_module函数支持最小版本3.18,建议版本3.23+\n# 该name会设置为插件名,只支持字母加数字,需要与{Name}.qml中Dcc"
  },
  {
    "path": "examples/plugin-example/qml/Example.qml",
    "chars": 693,
    "preview": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimp"
  },
  {
    "path": "examples/plugin-example/qml/ExampleMain.qml",
    "chars": 702,
    "preview": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimp"
  },
  {
    "path": "examples/plugin-example/qml/ExamplePage1.qml",
    "chars": 3456,
    "preview": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimp"
  },
  {
    "path": "examples/plugin-example/qml/ExamplePage2.qml",
    "chars": 7572,
    "preview": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimp"
  },
  {
    "path": "examples/plugin-example/qml/ExamplePage3.qml",
    "chars": 807,
    "preview": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimp"
  },
  {
    "path": "examples/plugin-example/src/pluginexample.cpp",
    "chars": 1161,
    "preview": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n"
  },
  {
    "path": "examples/plugin-example/src/pluginexample.h",
    "chars": 713,
    "preview": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n"
  },
  {
    "path": "examples/plugin-example/translations/example.ts",
    "chars": 147770,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <me"
  },
  {
    "path": "examples/plugin-example/translations/example_az.ts",
    "chars": 147770,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <me"
  },
  {
    "path": "examples/plugin-example/translations/example_bo.ts",
    "chars": 147770,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <me"
  },
  {
    "path": "examples/plugin-example/translations/example_ca.ts",
    "chars": 147770,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <me"
  },
  {
    "path": "examples/plugin-example/translations/example_es.ts",
    "chars": 147770,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <me"
  },
  {
    "path": "examples/plugin-example/translations/example_fi.ts",
    "chars": 147770,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <me"
  },
  {
    "path": "examples/plugin-example/translations/example_fr.ts",
    "chars": 147770,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <me"
  },
  {
    "path": "examples/plugin-example/translations/example_hu.ts",
    "chars": 147770,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <me"
  },
  {
    "path": "examples/plugin-example/translations/example_it.ts",
    "chars": 147770,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <me"
  },
  {
    "path": "examples/plugin-example/translations/example_ja.ts",
    "chars": 147770,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <me"
  },
  {
    "path": "examples/plugin-example/translations/example_ko.ts",
    "chars": 147770,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <me"
  },
  {
    "path": "examples/plugin-example/translations/example_nb_NO.ts",
    "chars": 147770,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <me"
  },
  {
    "path": "examples/plugin-example/translations/example_pl.ts",
    "chars": 147770,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <me"
  },
  {
    "path": "examples/plugin-example/translations/example_pt_BR.ts",
    "chars": 147770,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <me"
  },
  {
    "path": "examples/plugin-example/translations/example_ru.ts",
    "chars": 147770,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <me"
  },
  {
    "path": "examples/plugin-example/translations/example_uk.ts",
    "chars": 147770,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <me"
  },
  {
    "path": "examples/plugin-example/translations/example_zh_CN.ts",
    "chars": 147770,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <me"
  },
  {
    "path": "examples/plugin-example/translations/example_zh_HK.ts",
    "chars": 147770,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <me"
  },
  {
    "path": "examples/plugin-example/translations/example_zh_TW.ts",
    "chars": 147770,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS version=\"2.1\">\n<context>\n    <name>AdapterModule</name>\n    <me"
  },
  {
    "path": "examples/plugin-example/translations/examples.ts",
    "chars": 59,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_az.ts",
    "chars": 59,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_bo.ts",
    "chars": 59,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_ca.ts",
    "chars": 59,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_es.ts",
    "chars": 59,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_fi.ts",
    "chars": 59,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_fr.ts",
    "chars": 59,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_hu.ts",
    "chars": 59,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_it.ts",
    "chars": 59,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_ja.ts",
    "chars": 59,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_ko.ts",
    "chars": 59,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_nb_NO.ts",
    "chars": 59,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_pl.ts",
    "chars": 59,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_pt_BR.ts",
    "chars": 59,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_ru.ts",
    "chars": 59,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_uk.ts",
    "chars": 59,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_zh_CN.ts",
    "chars": 59,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_zh_HK.ts",
    "chars": 59,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "examples/plugin-example/translations/examples_zh_TW.ts",
    "chars": 59,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<!DOCTYPE TS>\n<TS/>\n"
  },
  {
    "path": "include/dccfactory.h",
    "chars": 1765,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or"
  },
  {
    "path": "misc/DdeControlCenterConfig.cmake.in",
    "chars": 493,
    "preview": "@PACKAGE_INIT@\ninclude(CMakeFindDependencyMacro)\ninclude(${CMAKE_CURRENT_LIST_DIR}/DdeControlCenterTargets.cmake)\nset(DD"
  },
  {
    "path": "misc/DdeControlCenterConfigOld.cmake.in",
    "chars": 846,
    "preview": "@PACKAGE_INIT@\ninclude(CMakeFindDependencyMacro)\ninclude(${CMAKE_CURRENT_LIST_DIR}/DdeControlCenterTargets.cmake)\nset(DD"
  },
  {
    "path": "misc/DdeControlCenterPluginMacros.cmake",
    "chars": 7111,
    "preview": "cmake_minimum_required(VERSION 3.23)\ninclude(CMakeParseArguments)\n\nfunction(dcc_to_capitalized_string input_string outpu"
  },
  {
    "path": "misc/configs/common/org.deepin.region-format.json",
    "chars": 4276,
    "preview": "{\n    \"magic\": \"dsg.config.meta\",\n    \"version\": \"1.0\",\n    \"contents\": {\n        \"country\": {\n            \"value\": \"\",\n"
  },
  {
    "path": "misc/configs/org.deepin.dde.control-center.accounts.json",
    "chars": 444,
    "preview": "{\n    \"magic\": \"dsg.config.meta\",\n    \"version\": \"1.0\",\n    \"contents\": {\n        \"avatarPath\": {\n            \"value\": \""
  },
  {
    "path": "misc/configs/org.deepin.dde.control-center.commoninfo.json",
    "chars": 1419,
    "preview": "{\n    \"magic\": \"dsg.config.meta\",\n    \"version\": \"1.0\",\n    \"contents\": {\n        \"showReadOnlyProtection\": {\n          "
  },
  {
    "path": "misc/configs/org.deepin.dde.control-center.datetime.json",
    "chars": 489,
    "preview": "{\n    \"magic\": \"dsg.config.meta\",\n    \"version\": \"1.0\",\n    \"contents\": {\n        \"customNtpServer\": {\n            \"valu"
  },
  {
    "path": "misc/configs/org.deepin.dde.control-center.display.json",
    "chars": 463,
    "preview": "{\n    \"magic\": \"dsg.config.meta\",\n    \"version\": \"1.0\",\n    \"contents\": {\n        \"minBrightnessValue\": {\n            \"v"
  },
  {
    "path": "misc/configs/org.deepin.dde.control-center.json",
    "chars": 1917,
    "preview": "{\n    \"magic\": \"dsg.config.meta\",\n    \"version\": \"1.0\",\n    \"contents\": {\n        \"width\": {\n            \"value\": 800,\n "
  },
  {
    "path": "misc/configs/org.deepin.dde.control-center.personalization.json",
    "chars": 2111,
    "preview": "{\n    \"magic\": \"dsg.config.meta\",\n    \"version\": \"1.0\",\n    \"contents\": {\n        \"hideIconThemes\": {\n            \"value"
  },
  {
    "path": "misc/configs/org.deepin.dde.control-center.power.json",
    "chars": 4140,
    "preview": "{\n    \"magic\": \"dsg.config.meta\",\n    \"version\": \"1.0\",\n    \"contents\": {\n        \"linePowerScreenBlackDelay\": {\n       "
  },
  {
    "path": "misc/configs/org.deepin.dde.control-center.sound.json",
    "chars": 552,
    "preview": "{\n    \"magic\": \"dsg.config.meta\",\n    \"version\": \"1.0\",\n    \"contents\": {\n        \"showDeviceManager\": {\n            \"va"
  },
  {
    "path": "misc/deepin-debug-config/org.deepin.dde.control-center.json",
    "chars": 235,
    "preview": "{\n    \"name\": \"dde-control-center\",\n    \"group\": \"dde\",\n    \"submodules\": [\n        {\n            \"name\": \"org.deepin.dd"
  },
  {
    "path": "misc/deepin-log-config/org.deepin.dde.control-center.json",
    "chars": 3998,
    "preview": "{\n    \"name\": \"dde-control-center\",\n    \"group\": \"dde\",\n    \"submodules\": [\n        {\n            \"name\": \"control-cente"
  },
  {
    "path": "misc/developdocument.html",
    "chars": 43848,
    "preview": "<!doctype html>\n<html>\n<head>\n<meta charset='UTF-8'><meta name='viewport' content='width=device-width initial-scale=1'>\n"
  },
  {
    "path": "misc/gen_report.sh",
    "chars": 565,
    "preview": "#!/bin/bash\n\n# 需要先安装lcov,打开./unittest/CMakeLists.txt 测试覆盖率的编译条件\n# 将该脚本放置到dde-control-center-unittest二进制文件同级目录运行\nlcov -c "
  },
  {
    "path": "misc/org.deepin.dde-grand-search.dde-control-center-setting.conf",
    "chars": 250,
    "preview": "[Grand Search]\nName=com.deepin.dde-grand-search.dde-control-center-setting\nMode=Trigger\nDBusService=org.deepin.dde.Contr"
  },
  {
    "path": "misc/org.deepin.dde.ControlCenter1.service.in",
    "chars": 159,
    "preview": "[D-BUS Service]\nName=org.deepin.dde.ControlCenter1\nExec=@CMAKE_INSTALL_FULL_BINDIR@/dde-control-center -d\nSystemdService"
  },
  {
    "path": "misc/org.deepin.dde.control-center.desktop",
    "chars": 7314,
    "preview": "[Desktop Entry]\nCategories=Application;System;Settings\nComment=Deepin Desktop Environment Control Center\nExec=dde-contro"
  },
  {
    "path": "misc/org.deepin.dde.controlcenter.metainfo.xml",
    "chars": 5046,
    "preview": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<component type=\"desktop-application\">\n  <id>org.deepin.dde.control-center</id>\n "
  },
  {
    "path": "misc/systemd/dde-control-center.service.in",
    "chars": 192,
    "preview": "[Unit]\nDescription=DDE Control Center background service\n\n[Service]\nExecStart=@CMAKE_INSTALL_FULL_BINDIR@/dde-control-ce"
  },
  {
    "path": "misc/translate_desktop2ts.sh",
    "chars": 195,
    "preview": "#!/bin/bash\n\nDESKTOP_SOURCE_FILE=org.deepin.dde.control-center.desktop\nDESKTOP_TS_DIR=../translations/desktop/\n\n/usr/bin"
  },
  {
    "path": "misc/translate_generation.sh",
    "chars": 354,
    "preview": "#!/bin/bash\n# this file is used to auto-generate .qm file from .ts file.\n# author: shibowen at linuxdeepin.com\nexport PA"
  },
  {
    "path": "misc/translate_ts2desktop.sh",
    "chars": 325,
    "preview": "#!/bin/bash\n\nDESKTOP_TEMP_FILE=misc/org.deepin.dde.control-center.desktop.tmp\nDESKTOP_SOURCE_FILE=misc/org.deepin.dde.co"
  },
  {
    "path": "src/dde-control-center/CMakeLists.txt",
    "chars": 5370,
    "preview": "cmake_minimum_required(VERSION 3.18)\n\n#--------------------------frame--------------------------\nset(DCCFrame_Name ${DCC"
  },
  {
    "path": "src/dde-control-center/controlcenterdbusadaptor.cpp",
    "chars": 4938,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or"
  },
  {
    "path": "src/dde-control-center/controlcenterdbusadaptor.h",
    "chars": 2087,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or"
  },
  {
    "path": "src/dde-control-center/dccmanager.cpp",
    "chars": 38774,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or"
  },
  {
    "path": "src/dde-control-center/dccmanager.h",
    "chars": 5495,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or"
  },
  {
    "path": "src/dde-control-center/main.cpp",
    "chars": 8617,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or"
  },
  {
    "path": "src/dde-control-center/navigationmodel.cpp",
    "chars": 2069,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or"
  },
  {
    "path": "src/dde-control-center/navigationmodel.h",
    "chars": 1113,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or"
  },
  {
    "path": "src/dde-control-center/plugin/CMakeLists.txt",
    "chars": 1421,
    "preview": "cmake_minimum_required(VERSION 3.18)\n\nset(DCCQmlPlugin_Name dde-control-center-lib)\n\nfile(GLOB DCCQmlPlugin_SRCS\n    \"*."
  },
  {
    "path": "src/dde-control-center/plugin/Crumb.qml",
    "chars": 6274,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-la"
  },
  {
    "path": "src/dde-control-center/plugin/DccCheckIcon.qml",
    "chars": 403,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-la"
  },
  {
    "path": "src/dde-control-center/plugin/DccEditorItem.qml",
    "chars": 5202,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-la"
  },
  {
    "path": "src/dde-control-center/plugin/DccGroupView.qml",
    "chars": 5957,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-la"
  },
  {
    "path": "src/dde-control-center/plugin/DccItem.qml",
    "chars": 1131,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-la"
  },
  {
    "path": "src/dde-control-center/plugin/DccItemBackground.qml",
    "chars": 6106,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-la"
  },
  {
    "path": "src/dde-control-center/plugin/DccLabel.qml",
    "chars": 743,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-la"
  },
  {
    "path": "src/dde-control-center/plugin/DccLoader.qml",
    "chars": 731,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-la"
  },
  {
    "path": "src/dde-control-center/plugin/DccMenuEditorItem.qml",
    "chars": 1294,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-la"
  },
  {
    "path": "src/dde-control-center/plugin/DccMenuItem.qml",
    "chars": 580,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-la"
  },
  {
    "path": "src/dde-control-center/plugin/DccRightView.qml",
    "chars": 3749,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-la"
  },
  {
    "path": "src/dde-control-center/plugin/DccRowView.qml",
    "chars": 815,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-la"
  },
  {
    "path": "src/dde-control-center/plugin/DccSettingsObject.qml",
    "chars": 704,
    "preview": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimp"
  },
  {
    "path": "src/dde-control-center/plugin/DccSettingsView.qml",
    "chars": 5454,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-la"
  },
  {
    "path": "src/dde-control-center/plugin/DccTimeRange.qml",
    "chars": 7065,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-la"
  },
  {
    "path": "src/dde-control-center/plugin/DccTitleObject.qml",
    "chars": 1090,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-la"
  },
  {
    "path": "src/dde-control-center/plugin/DccUtils.js",
    "chars": 1223,
    "preview": ".pragma library\n// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifie"
  },
  {
    "path": "src/dde-control-center/plugin/DccWindow.qml",
    "chars": 12131,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-la"
  },
  {
    "path": "src/dde-control-center/plugin/HomePage.qml",
    "chars": 6071,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-la"
  },
  {
    "path": "src/dde-control-center/plugin/SearchBar.qml",
    "chars": 4763,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-la"
  },
  {
    "path": "src/dde-control-center/plugin/SecondPage.qml",
    "chars": 10950,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-la"
  },
  {
    "path": "src/dde-control-center/plugin/dccapp.cpp",
    "chars": 1420,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or"
  },
  {
    "path": "src/dde-control-center/plugin/dccapp.h",
    "chars": 3041,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or"
  },
  {
    "path": "src/dde-control-center/plugin/dccimageprovider.cpp",
    "chars": 6807,
    "preview": "// SPDX-FileCopyrightText: 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n"
  },
  {
    "path": "src/dde-control-center/plugin/dccimageprovider.h",
    "chars": 1159,
    "preview": "// SPDX-FileCopyrightText: 2025 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or"
  },
  {
    "path": "src/dde-control-center/plugin/dccmodel.cpp",
    "chars": 6657,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or"
  },
  {
    "path": "src/dde-control-center/plugin/dccmodel.h",
    "chars": 1767,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or"
  },
  {
    "path": "src/dde-control-center/plugin/dccobject.cpp",
    "chars": 12247,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or"
  },
  {
    "path": "src/dde-control-center/plugin/dccobject.h",
    "chars": 6664,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or"
  },
  {
    "path": "src/dde-control-center/plugin/dccobject_p.h",
    "chars": 3091,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or"
  },
  {
    "path": "src/dde-control-center/plugin/dccquickdbusinterface.cpp",
    "chars": 14554,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or"
  },
  {
    "path": "src/dde-control-center/plugin/dccquickdbusinterface.h",
    "chars": 2142,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or"
  },
  {
    "path": "src/dde-control-center/plugin/dccquickdbusinterface_p.h",
    "chars": 2205,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2027 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or"
  },
  {
    "path": "src/dde-control-center/plugin/dccrepeater.cpp",
    "chars": 10909,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or"
  },
  {
    "path": "src/dde-control-center/plugin/dccrepeater.h",
    "chars": 1684,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or"
  },
  {
    "path": "src/dde-control-center/pluginmanager.cpp",
    "chars": 22597,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or"
  },
  {
    "path": "src/dde-control-center/pluginmanager.h",
    "chars": 2168,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or"
  },
  {
    "path": "src/dde-control-center/qrc/dcc.qrc",
    "chars": 1944,
    "preview": "<RCC>\n    <qresource prefix=\"/icons/deepin/builtin\">\n        <file>icons/dcc_nav_accounts_42px.svg</file>\n        <file>"
  },
  {
    "path": "src/dde-control-center/searchmodel.cpp",
    "chars": 12286,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or"
  },
  {
    "path": "src/dde-control-center/searchmodel.h",
    "chars": 1102,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or"
  },
  {
    "path": "src/plugin-accounts/CMakeLists.txt",
    "chars": 647,
    "preview": "cmake_minimum_required(VERSION 3.18)\nset(pluginName accounts)\nfile(GLOB_RECURSE accounts_SRCS\n    \"operation/*.cpp\"\n    "
  },
  {
    "path": "src/plugin-accounts/operation/accountlistmodel.cpp",
    "chars": 5131,
    "preview": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n"
  },
  {
    "path": "src/plugin-accounts/operation/accountlistmodel.h",
    "chars": 1772,
    "preview": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n"
  },
  {
    "path": "src/plugin-accounts/operation/accountscontroller.cpp",
    "chars": 28987,
    "preview": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n"
  },
  {
    "path": "src/plugin-accounts/operation/accountscontroller.h",
    "chars": 6063,
    "preview": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n"
  },
  {
    "path": "src/plugin-accounts/operation/accountsdbusproxy.cpp",
    "chars": 6223,
    "preview": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-l"
  },
  {
    "path": "src/plugin-accounts/operation/accountsdbusproxy.h",
    "chars": 2440,
    "preview": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-l"
  },
  {
    "path": "src/plugin-accounts/operation/accountsworker.cpp",
    "chars": 42730,
    "preview": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-l"
  },
  {
    "path": "src/plugin-accounts/operation/accountsworker.h",
    "chars": 4804,
    "preview": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-l"
  },
  {
    "path": "src/plugin-accounts/operation/avatarlistmodel.cpp",
    "chars": 2016,
    "preview": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n"
  },
  {
    "path": "src/plugin-accounts/operation/avatarlistmodel.h",
    "chars": 1196,
    "preview": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n//\n// SPDX-License-Identifier: GPL-3.0-or-later\n"
  },
  {
    "path": "src/plugin-accounts/operation/creationresult.cpp",
    "chars": 625,
    "preview": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-l"
  },
  {
    "path": "src/plugin-accounts/operation/creationresult.h",
    "chars": 1034,
    "preview": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-l"
  },
  {
    "path": "src/plugin-accounts/operation/pwqualitymanager.cpp",
    "chars": 4342,
    "preview": "//SPDX-FileCopyrightText: 2018 - 2024 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-l"
  },
  {
    "path": "src/plugin-accounts/operation/pwqualitymanager.h",
    "chars": 1165,
    "preview": "//SPDX-FileCopyrightText: 2018 - 2024 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-l"
  },
  {
    "path": "src/plugin-accounts/operation/qrc/accounts.qrc",
    "chars": 1013,
    "preview": "<RCC>\n    <qresource prefix=\"/icons/deepin/builtin\">\n        <file>icons/dcc_nav_accounts_42px.svg</file>\n        <file>"
  },
  {
    "path": "src/plugin-accounts/operation/securitydbusproxy.cpp",
    "chars": 1617,
    "preview": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-l"
  },
  {
    "path": "src/plugin-accounts/operation/securitydbusproxy.h",
    "chars": 629,
    "preview": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-l"
  },
  {
    "path": "src/plugin-accounts/operation/syncdbusproxy.cpp",
    "chars": 1677,
    "preview": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-l"
  },
  {
    "path": "src/plugin-accounts/operation/syncdbusproxy.h",
    "chars": 594,
    "preview": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-l"
  },
  {
    "path": "src/plugin-accounts/operation/user.cpp",
    "chars": 4521,
    "preview": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-l"
  },
  {
    "path": "src/plugin-accounts/operation/user.h",
    "chars": 4946,
    "preview": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-l"
  },
  {
    "path": "src/plugin-accounts/operation/userdbusproxy.cpp",
    "chars": 12442,
    "preview": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-l"
  },
  {
    "path": "src/plugin-accounts/operation/userdbusproxy.h",
    "chars": 7915,
    "preview": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-l"
  },
  {
    "path": "src/plugin-accounts/operation/usermodel.cpp",
    "chars": 5539,
    "preview": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-l"
  },
  {
    "path": "src/plugin-accounts/operation/usermodel.h",
    "chars": 3702,
    "preview": "//SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.\n//\n//SPDX-License-Identifier: GPL-3.0-or-l"
  },
  {
    "path": "src/plugin-accounts/qml/AccountSettings.qml",
    "chars": 57575,
    "preview": "// SPDX-FileCopyrightText: 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\nimp"
  },
  {
    "path": "src/plugin-accounts/qml/Accounts.qml",
    "chars": 314,
    "preview": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nim"
  },
  {
    "path": "src/plugin-accounts/qml/AccountsMain.qml",
    "chars": 8272,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-la"
  },
  {
    "path": "src/plugin-accounts/qml/AutoLoginWarningDialog.qml",
    "chars": 1229,
    "preview": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nim"
  },
  {
    "path": "src/plugin-accounts/qml/AvatarGridView.qml",
    "chars": 7019,
    "preview": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nim"
  },
  {
    "path": "src/plugin-accounts/qml/AvatarSettingsDialog.qml",
    "chars": 21200,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-la"
  },
  {
    "path": "src/plugin-accounts/qml/ComfirmDeleteDialog.qml",
    "chars": 1737,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-la"
  },
  {
    "path": "src/plugin-accounts/qml/ComfirmSafePage.qml",
    "chars": 1613,
    "preview": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nim"
  },
  {
    "path": "src/plugin-accounts/qml/CreateAccountDialog.qml",
    "chars": 15025,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-la"
  },
  {
    "path": "src/plugin-accounts/qml/CustomAvatarCropper.qml",
    "chars": 9072,
    "preview": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nim"
  },
  {
    "path": "src/plugin-accounts/qml/CustomAvatarEmpatyArea.qml",
    "chars": 3654,
    "preview": "// SPDX-FileCopyrightText: 2024 - 2026 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-la"
  },
  {
    "path": "src/plugin-accounts/qml/CustomLocalAvatarsRow.qml",
    "chars": 9695,
    "preview": "// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nim"
  },
  {
    "path": "src/plugin-accounts/qml/EditActionLabel.qml",
    "chars": 2690,
    "preview": "// SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd.\n// SPDX-License-Identifier: GPL-3.0-or-later\n\nim"
  }
]

// ... and 914 more files (download for full content)

About this extraction

This page contains the full source code of the linuxdeepin/dde-control-center GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 1114 files (20.1 MB), approximately 5.3M tokens, and a symbol index with 1276 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!