summaryrefslogtreecommitdiff
path: root/ui/qt5/partitionprobe.hh
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2020-02-12 12:05:23 -0600
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2020-02-12 12:05:23 -0600
commit3e05b6d0691ba0b709e6b41eae90b6b76eb92a7c (patch)
tree2d1d997ec931750b21dd5e952d1d91d7bc5e5207 /ui/qt5/partitionprobe.hh
parent0e8c19b115797ff934e84c105ef4357a899bc973 (diff)
downloadhorizon-3e05b6d0691ba0b709e6b41eae90b6b76eb92a7c.tar.gz
horizon-3e05b6d0691ba0b709e6b41eae90b6b76eb92a7c.tar.bz2
horizon-3e05b6d0691ba0b709e6b41eae90b6b76eb92a7c.tar.xz
horizon-3e05b6d0691ba0b709e6b41eae90b6b76eb92a7c.zip
Qt UI: Initial pass at collecting disks for UI.Partition.Install*
Diffstat (limited to 'ui/qt5/partitionprobe.hh')
-rw-r--r--ui/qt5/partitionprobe.hh32
1 files changed, 32 insertions, 0 deletions
diff --git a/ui/qt5/partitionprobe.hh b/ui/qt5/partitionprobe.hh
new file mode 100644
index 0000000..f718907
--- /dev/null
+++ b/ui/qt5/partitionprobe.hh
@@ -0,0 +1,32 @@
+/*
+ * partitionprobe.hh - Definition of the disk probing thread routines
+ * horizon-qt5, the Qt 5 user interface for
+ * Project Horizon
+ *
+ * Copyright (c) 2019 Adélie Linux and contributors. All rights reserved.
+ * This code is licensed under the AGPL 3.0 license, as noted in the
+ * LICENSE-code file in the root directory of this repository.
+ *
+ * SPDX-License-Identifier: AGPL-3.0-only
+ */
+
+#ifndef PARTITIONPROBE_HH
+#define PARTITIONPROBE_HH
+
+#include <QThread>
+#include <diskman/diskman.hh>
+
+using std::vector;
+using Horizon::DiskMan::Disk;
+
+class PartitionProbeThread : public QThread {
+ Q_OBJECT
+public:
+ void run() override;
+signals:
+ void foundDisks(void *disks);
+private:
+ Horizon::DiskMan::DiskMan myMan;
+};
+
+#endif /* !PARTITIONPROBE_HH */