File indexing completed on 2025-01-12 04:19:47
0001 /* 0002 * Copyright (C) 2003-2008 Justin Karneges <justin@affinix.com> 0003 * 0004 * This library is free software; you can redistribute it and/or 0005 * modify it under the terms of the GNU Lesser General Public 0006 * License as published by the Free Software Foundation; either 0007 * version 2.1 of the License, or (at your option) any later version. 0008 * 0009 * This library is distributed in the hope that it will be useful, 0010 * but WITHOUT ANY WARRANTY; without even the implied warranty of 0011 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 0012 * Lesser General Public License for more details. 0013 * 0014 * You should have received a copy of the GNU Lesser General Public 0015 * License along with this library; if not, write to the Free Software 0016 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 0017 */ 0018 0019 #pragma once 0020 0021 #include <QDateTime> 0022 #include <QList> 0023 #include <QObject> 0024 0025 namespace QCA { 0026 0027 class SafeTimer; 0028 class DirWatch; 0029 0030 } 0031 0032 namespace gpgQCAPlugin { 0033 0034 class RingWatch : public QObject 0035 { 0036 Q_OBJECT 0037 public: 0038 class DirItem 0039 { 0040 public: 0041 QCA::DirWatch *dirWatch; 0042 QCA::SafeTimer *changeTimer; 0043 }; 0044 0045 class FileItem 0046 { 0047 public: 0048 QCA::DirWatch *dirWatch; 0049 QString fileName; 0050 bool exists; 0051 qint64 size; 0052 QDateTime lastModified; 0053 }; 0054 0055 QList<DirItem> dirs; 0056 QList<FileItem> files; 0057 0058 RingWatch(QObject *parent = nullptr); 0059 ~RingWatch() override; 0060 0061 void add(const QString &filePath); 0062 void clear(); 0063 0064 Q_SIGNALS: 0065 void changed(const QString &filePath); 0066 0067 private Q_SLOTS: 0068 void dirChanged(); 0069 void handleChanged(); 0070 }; 0071 0072 } // end namespace gpgQCAPlugin