Generate proper thumbnails for portrait images.
[harmattan/cameraplus] / src / quillitem.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 QUILL_ITEM_H
24 #define QUILL_ITEM_H
25
26 #include <QDeclarativeItem>
27
28 #define LANDSCAPE_PREVIEW_LEVEL  0
29 #define PORTRAIT_PREVIEW_LEVEL   1
30
31 class QuillFile;
32
33 class QuillItem : public QDeclarativeItem {
34   Q_OBJECT
35
36   Q_PROPERTY(bool error READ error NOTIFY errorChanged);
37
38 public:
39   QuillItem(QDeclarativeItem *parent = 0);
40   ~QuillItem();
41
42   void paint(QPainter* painter, const QStyleOptionGraphicsItem* option, QWidget* widget = 0);
43
44   bool error() const;
45
46 public slots:
47   void initialize(const QUrl& url, const QString& mimeType);
48
49 signals:
50   void sourceChanged();
51   void error(const QString& err);
52   void mimeTypeChanged();
53   void errorChanged();
54
55 private slots:
56   void fileLoaded();
57   bool fileError();
58
59 private:
60   bool isLandscape();
61   void recreate();
62   void updateImage();
63
64   QuillFile *m_file;
65   bool m_error;
66 };
67
68 #endif /* QUILL_ITEM_H */