summaryrefslogtreecommitdiffstats
path: root/ui/qt/recent_file_status.h
diff options
context:
space:
mode:
Diffstat (limited to 'ui/qt/recent_file_status.h')
-rw-r--r--ui/qt/recent_file_status.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/ui/qt/recent_file_status.h b/ui/qt/recent_file_status.h
new file mode 100644
index 0000000..b05598b
--- /dev/null
+++ b/ui/qt/recent_file_status.h
@@ -0,0 +1,33 @@
+/** @file
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#ifndef RECENT_FILE_STATUS_H
+#define RECENT_FILE_STATUS_H
+
+#include <QRunnable>
+#include <QFileInfo>
+
+class RecentFileStatus : public QObject, public QRunnable
+{
+ Q_OBJECT
+public:
+ RecentFileStatus(const QString filename, QObject *parent);
+
+protected:
+ void run();
+
+private:
+ const QString filename_;
+ QFileInfo fileinfo_;
+
+signals:
+ void statusFound(const QString filename = QString(), qint64 size = 0, bool accessible = false);
+};
+
+#endif // RECENT_FILE_STATUS_H