Rename orientationChanged to onOrientationChanged
[harmattan/cameraplus] / src / harmattan / orientation.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 ORIENTATION_H
24 #define ORIENTATION_H
25
26 #include <QObject>
27
28 namespace MeeGo {
29   class QmOrientation;
30   class QmOrientationReading;
31 };
32
33 class Orientation : public QObject {
34   Q_OBJECT
35
36   Q_PROPERTY(bool active READ isActive WRITE setActive NOTIFY activeChanged);
37   Q_PROPERTY(OrientationDirection orientation READ orientation NOTIFY orientationChanged);
38
39   Q_ENUMS(OrientationDirection);
40
41 public:
42   Orientation(QObject *parent = 0);
43   ~Orientation();
44
45   // Make sure they are synced with metadata.
46   typedef enum {
47     Unknown = -1,
48     Landscape = 0,
49     Portrait = 1,
50     InvertedLandscape = 2,
51     InvertedPortrait = 3
52   } OrientationDirection;
53
54   bool isActive() const;
55   void setActive(bool active);
56
57   OrientationDirection orientation() const;
58
59 signals:
60   void activeChanged();
61   void orientationChanged();
62
63 private slots:
64   void onOrientationChanged(const MeeGo::QmOrientationReading& value);
65
66 private:
67   MeeGo::QmOrientation *m_orientation;
68   OrientationDirection m_direction;
69 };
70
71 #endif /* ORIENTATION_H */