modify abstracttool iface
[yamf.git] / yamf / tools / fill / fill.h
blob90ea34b8084a7f670d153878eb74b2a1944ccbb2
1 /***************************************************************************
2 * Copyright (C) 2005 by David Cuadrado *
3 * krawek@toonka.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
21 #ifndef FillPLUGIN_H
22 #define FillPLUGIN_H
24 #include <QObject>
25 #include <QLabel>
27 #include <yamf/drawing/abstracttool.h>
28 #include <yamf/common/yamf_exports.h>
30 class QGraphicsPathItem;
32 namespace YAMF {
34 namespace Drawing {
35 class BrushManager;
36 class Photogram;
38 namespace Tool {
40 /**
41 * @author David Cuadrado <krawek@toonka.com>
43 class YAMF_EXPORT Fill : public Drawing::AbstractTool
45 Q_OBJECT;
47 public:
48 Fill(QObject *parent = 0);
49 ~Fill();
51 virtual QString id() const;
53 void init(Photogram *photogram);
55 virtual void press(const QGraphicsSceneMouseEvent *input);
56 virtual void move(const QGraphicsSceneMouseEvent *input);
57 virtual void release(const QGraphicsSceneMouseEvent *input);
59 virtual DGui::Action *action() const;
60 int type() const;
61 virtual void aboutToChangeTool();
62 void setupConfigBar(QToolBar *configBar);
64 QPainterPath mapPath(const QPainterPath &path, const QPointF &pos);
65 QPainterPath mapPath(const QGraphicsPathItem *item);
67 private:
68 struct Private;
69 Private *const d;
76 #endif