5c3d586929b1f34bb2d285bfe7fda9cf1eb66340
[harmattan/cameraplus] / src / quillitem.h
1 // -*- c++ -*-
2
3 /*!
4  * This file is part of CameraPlus.
5  *
6  * Copyright (C) 2012 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 class QuillFile;
29
30 class QuillItem : public QDeclarativeItem {
31   Q_OBJECT
32
33   Q_PROPERTY(QUrl source READ source WRITE setSource NOTIFY sourceChanged);
34   Q_PROPERTY(QString mimeType READ mimeType WRITE setMimeType NOTIFY mimeTypeChanged);
35   Q_PROPERTY(bool error READ error NOTIFY errorChanged);
36
37 public:
38   QuillItem(QDeclarativeItem *parent = 0);
39   ~QuillItem();
40
41   QUrl source() const;
42   void setSource(const QUrl& src);
43
44   QString mimeType() const;
45   void setMimeType(const QString& mime);
46
47   void paint(QPainter* painter, const QStyleOptionGraphicsItem* option, QWidget* widget = 0);
48
49   virtual void componentComplete();
50
51   bool error() const;
52
53 signals:
54   void sourceChanged();
55   void error(const QString& err);
56   void mimeTypeChanged();
57   void errorChanged();
58
59 private slots:
60   void fileLoaded();
61   bool fileError();
62
63 private:
64   void recreate();
65
66   QuillFile *m_file;
67   QUrl m_url;
68   QString m_type;
69   bool m_error;
70 };
71
72 #endif /* QUILL_ITEM_H */