~ubuntu-branches/ubuntu/precise/koffice/precise

« back to all changes in this revision

Viewing changes to krita/plugins/paintops/defaultpaintops/airbrush/kis_airbrushop_factory.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-09-21 15:36:35 UTC
  • mfrom: (1.4.1 upstream) (60.2.11 maverick)
  • Revision ID: james.westby@ubuntu.com-20100921153635-6tejqkiro2u21ydi
Tags: 1:2.2.2-0ubuntu3
Add kubuntu_03_fix-crash-on-closing-sqlite-connection-2.2.2.diff and
kubuntu_04_support-large-memo-values-for-msaccess-2.2.2.diff as
recommended by upstream http://kexi-
project.org/wiki/wikiview/index.php@Kexi2.2_Patches.html#sqlite_stab
ility

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 *  Copyright (c) 2002 Patrick Julien <freak@codepimps.org>
3
 
 *  Copyright (c) 2004-2008 Boudewijn Rempt <boud@valdyas.org>
4
 
 *  Copyright (c) 2004 Clarence Dang <dang@kde.org>
5
 
 *  Copyright (c) 2004 Adrian Page <adrian@pagenet.plus.com>
6
 
 *  Copyright (c) 2004 Cyrille Berger <cberger@cberger.net>
7
 
 *
8
 
 *  This program is free software; you can redistribute it and/or modify
9
 
 *  it under the terms of the GNU General Public License as published by
10
 
 *  the Free Software Foundation; either version 2 of the License, or
11
 
 *  (at your option) any later version.
12
 
 *
13
 
 *  This program 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
16
 
 *  GNU General Public License for more details.
17
 
 *
18
 
 *  You should have received a copy of the GNU General Public License
19
 
 *  along with this program; if not, write to the Free Software
20
 
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21
 
 */
22
 
 
23
 
#ifndef KIS_AIRBRUSHOP_FACTORY_H_
24
 
#define KIS_AIRBRUSHOP_FACTORY_H_
25
 
 
26
 
#include <kis_paintop_factory.h>
27
 
#include <kis_types.h>
28
 
#include <klocale.h>
29
 
#include <QString>
30
 
 
31
 
class KisPaintOp;
32
 
class KisPainter;
33
 
class QWidget;
34
 
class KoInputDevice;
35
 
 
36
 
 
37
 
class KisAirbrushOpFactory : public KisPaintOpFactory
38
 
{
39
 
 
40
 
public:
41
 
    KisAirbrushOpFactory();
42
 
    virtual ~KisAirbrushOpFactory();
43
 
 
44
 
    virtual KisPaintOp * createOp(const KisPaintOpSettingsSP settings, KisPainter * painter, KisImageWSP image);
45
 
 
46
 
    virtual QString id() const {
47
 
        return "airbrush";
48
 
    }
49
 
 
50
 
    virtual QString name() const {
51
 
        return i18n("Pixel Airbrush");
52
 
    }
53
 
 
54
 
    virtual QString pixmap() {
55
 
        return "krita-airbrush.png";
56
 
    }
57
 
 
58
 
    virtual KisPaintOpSettingsSP settings(const KoInputDevice& inputDevice, KisImageWSP image);
59
 
    virtual KisPaintOpSettingsSP settings(KisImageWSP image);
60
 
    virtual KisPaintOpSettingsWidget* createSettingsWidget(QWidget* parent);
61
 
 
62
 
};
63
 
 
64
 
#endif // KIS_AIRBRUSHOP_FACTORY_H_