diff options
author | Ken Moore <ken@ixsystems.com> | 2018-01-03 12:02:04 -0500 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2018-01-03 12:02:04 -0500 |
commit | 5021bcc0a779f0f7847eaa7079949b766289da6e (patch) | |
tree | 6f84173866605b280ad55fcb2e2ada09eb46b629 /src-qt5 | |
parent | Fix up the default wallpaper directory detection (old Lumina-DE dir is not lo... (diff) | |
download | lumina-5021bcc0a779f0f7847eaa7079949b766289da6e.tar.gz lumina-5021bcc0a779f0f7847eaa7079949b766289da6e.tar.bz2 lumina-5021bcc0a779f0f7847eaa7079949b766289da6e.zip |
Get the DesktopSettings class automatically providing notifications about file changes.
Diffstat (limited to 'src-qt5')
-rw-r--r-- | src-qt5/core/libLumina/DesktopSettings.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src-qt5/core/libLumina/DesktopSettings.cpp b/src-qt5/core/libLumina/DesktopSettings.cpp index f1c74bc5..509afa83 100644 --- a/src-qt5/core/libLumina/DesktopSettings.cpp +++ b/src-qt5/core/libLumina/DesktopSettings.cpp @@ -17,6 +17,7 @@ // === PUBLIC === DesktopSettings::DesktopSettings(QObject *parent) : QObject(parent){ + qRegisterMetaType< DesktopSettings::File >("DesktopSettings::File"); watcher = 0; runmode = DesktopSettings::UserFull; } @@ -275,6 +276,7 @@ QString DesktopSettings::rel_path(DesktopSettings::File file){ //=== PRIVATE SLOTS === void DesktopSettings::fileChanged(QString file){ + //qDebug() << "Got File Changed:" << file; //QFileSystemWatcher change detected if(!watcher->files().contains(file)){ //Make sure this file stays watched for changes @@ -287,6 +289,7 @@ void DesktopSettings::fileChanged(QString file){ QList< DesktopSettings::File > types = files.keys(); for(int i=0; i<types.length(); i++){ if(files[types[i]].contains(file)){ + //qDebug() << "Emit File Type Changed:" << types[i]; emit FileModified(types[i]); break; } |