Use new plugin system in qtbase.
[profile/ivi/qtbase.git] / examples / tools / plugandpaint / interfaces.h
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the examples of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:BSD$
9 ** You may use this file under the terms of the BSD license as follows:
10 **
11 ** "Redistribution and use in source and binary forms, with or without
12 ** modification, are permitted provided that the following conditions are
13 ** met:
14 **   * Redistributions of source code must retain the above copyright
15 **     notice, this list of conditions and the following disclaimer.
16 **   * Redistributions in binary form must reproduce the above copyright
17 **     notice, this list of conditions and the following disclaimer in
18 **     the documentation and/or other materials provided with the
19 **     distribution.
20 **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
21 **     the names of its contributors may be used to endorse or promote
22 **     products derived from this software without specific prior written
23 **     permission.
24 **
25 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
36 **
37 ** $QT_END_LICENSE$
38 **
39 ****************************************************************************/
40
41 #ifndef INTERFACES_H
42 #define INTERFACES_H
43
44 #include <QtPlugin>
45
46 QT_BEGIN_NAMESPACE
47 class QImage;
48 class QPainter;
49 class QWidget;
50 class QPainterPath;
51 class QPoint;
52 class QRect;
53 class QString;
54 class QStringList;
55 QT_END_NAMESPACE
56
57 //! [0]
58 class BrushInterface
59 {
60 public:
61     virtual ~BrushInterface() {}
62
63     virtual QStringList brushes() const = 0;
64     virtual QRect mousePress(const QString &brush, QPainter &painter,
65                              const QPoint &pos) = 0;
66     virtual QRect mouseMove(const QString &brush, QPainter &painter,
67                             const QPoint &oldPos, const QPoint &newPos) = 0;
68     virtual QRect mouseRelease(const QString &brush, QPainter &painter,
69                                const QPoint &pos) = 0;
70 };
71 //! [0]
72
73 //! [1]
74 class ShapeInterface
75 {
76 public:
77     virtual ~ShapeInterface() {}
78
79     virtual QStringList shapes() const = 0;
80     virtual QPainterPath generateShape(const QString &shape,
81                                        QWidget *parent) = 0;
82 };
83 //! [1]
84
85 //! [2]
86 class FilterInterface
87 {
88 public:
89     virtual ~FilterInterface() {}
90
91     virtual QStringList filters() const = 0;
92     virtual QImage filterImage(const QString &filter, const QImage &image,
93                                QWidget *parent) = 0;
94 };
95 //! [2]
96
97 QT_BEGIN_NAMESPACE
98 //! [3] //! [4]
99 #define BrushInterface_iid "org.qt-project.Qt.Examples.PlugAndPaint.BrushInterface"
100
101 Q_DECLARE_INTERFACE(BrushInterface, BrushInterface_iid)
102 //! [3]
103
104 #define ShapeInterface_iid  "org.qt-project.Qt.Examples.PlugAndPaint.ShapeInterface"
105
106 Q_DECLARE_INTERFACE(ShapeInterface, ShapeInterface_iid)
107 //! [5]
108 #define FilterInterface_iid "org.qt-project.Qt.Examples.PlugAndPaint.FilterInterface"
109
110 Q_DECLARE_INTERFACE(FilterInterface, FilterInterface_iid)
111 //! [4] //! [5]
112 QT_END_NAMESPACE
113
114 #endif