From c7c6a2c596637fd4942c7fb80341ca2ef7b47808 Mon Sep 17 00:00:00 2001 From: "Javier S. Pedro" Date: Thu, 9 Aug 2012 16:38:56 +0200 Subject: moving scanner logic to ui, new icon --- sowatchui/watchscannermodel.h | 47 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 sowatchui/watchscannermodel.h (limited to 'sowatchui/watchscannermodel.h') diff --git a/sowatchui/watchscannermodel.h b/sowatchui/watchscannermodel.h new file mode 100644 index 0000000..32701f7 --- /dev/null +++ b/sowatchui/watchscannermodel.h @@ -0,0 +1,47 @@ +#ifndef WATCHSCANNERMODEL_H +#define WATCHSCANNERMODEL_H + +#include + +#include + +class WatchScannerModel : public QAbstractListModel +{ + Q_OBJECT + Q_PROPERTY(bool enabled READ enabled WRITE setEnabled) + Q_PROPERTY(bool active READ active NOTIFY activeChanged) + +public: + explicit WatchScannerModel(QObject *parent = 0); + ~WatchScannerModel(); + + enum DataRoles { + ObjectRole = Qt::UserRole + }; + + bool enabled() const; + void setEnabled(bool enabled); + + bool active() const; + + int rowCount(const QModelIndex &parent) const; + QVariant data(const QModelIndex &index, int role) const; + +signals: + void activeChanged(); + +private slots: + void handleWatchFound(const QVariantMap& info); + void handleStarted(); + void handleFinished(); + void handleTimeout(); + +private: + sowatch::WatchScanner *_scanner; + QList _list; + QTimer *_timer; + bool _enabled; + bool _active; +}; + +#endif // WATCHSCANNERMODEL_H -- cgit v1.2.3