Add missing capability.cpp
[harmattan/cameraplus] / src / sailfish / compass.h
1 // -*- c++ -*-
2
3 /*!
4  * This file is part of CameraPlus.
5  *
6  * Copyright (C) 2012-2013 Mohammed Sameer <msameer@foolab.org>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
21  */
22
23 #ifndef COMPASS_H
24 #define COMPASS_H
25
26 #include <QObject>
27
28 namespace MeeGo {
29   class QmCompass;
30   class QmCompassReading;
31 };
32
33 class Compass : public QObject {
34   Q_OBJECT
35
36   Q_PROPERTY(bool active READ isActive WRITE setActive NOTIFY activeChanged);
37   Q_PROPERTY(int direction READ direction NOTIFY directionChanged);
38   Q_PROPERTY(bool directionValid READ isDirectionValid NOTIFY directionValidChanged);
39
40 public:
41   Compass(QObject *parent = 0);
42   ~Compass();
43
44   bool isActive() const;
45   void setActive(bool active);
46
47   int direction() const;
48   bool isDirectionValid() const;
49
50 signals:
51   void activeChanged();
52   void directionChanged();
53   void directionValidChanged();
54
55 private slots:
56   void dataAvailable(const MeeGo::QmCompassReading& value);
57
58 private:
59   MeeGo::QmCompass *m_compass;
60   int m_degree;
61   bool m_valid;
62 };
63
64 #endif /* COMPASS_H */