added GPL header into source files
[KFingerManager.git] / src / FingerManagerDevicesModel.h
blob34478046fd437d01f45894b7409e7ccd51bc1b88
1 /*
3 Copyright (C) 2009 Jaroslav Barton <djaara@djaara.net>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 #ifndef FINGERMANAGER_DEVICES_MODEL_H_
22 #define FINGERMANAGER_DEVICES_MODEL_H_
24 #include <QAbstractListModel>
25 #include <QVariant>
26 #include <QModelIndex>
27 #include <QString>
28 #include <QDBusObjectPath>
30 typedef struct {
31 QString name;
32 QString device;
33 } DeviceModel;
35 class FingerManagerDevicesModel : public QAbstractListModel {
37 Q_OBJECT
39 private:
40 QList<DeviceModel> devices;
41 int default_;
42 public:
43 FingerManagerDevicesModel(QObject *parent = 0);
44 ~FingerManagerDevicesModel();
46 int rowCount(const QModelIndex&) const;
47 QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const;
49 void addDevice(QString device, QString name);
50 void setDefault(QString device);
52 QString getDeviceName(int row);
53 QString getDevicePath(int row);
54 DeviceModel getDeviceModel(int row);
56 int getDefault();
59 #endif