summaryrefslogtreecommitdiffstats
path: root/chalk/core/kis_autobrush_resource.h
blob: 44708efa943f815877147c5e2f52c570682d9418 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/*
 *  Copyright (c) 2004 Cyrille Berger <cberger@cberger.net>
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 */

#ifndef _KIS_AUTOBRUSH_RESOURCE_H_
#define _KIS_AUTOBRUSH_RESOURCE_H_

#include "kis_brush.h"

class KisAutobrushShape {
    public:
        KisAutobrushShape(TQ_INT32 w, TQ_INT32 h, double fh, double fv) : m_w(w), m_h(h), m_fh(fh), m_fv(fv)
        { };
        void createBrush( TQImage* img);
    protected:
        virtual TQ_INT8 valueAt(TQ_INT32 x, TQ_INT32 y) =0;
        TQ_INT32 m_w, m_h;
        double m_fh, m_fv;
};

class KisAutobrushCircleShape : public KisAutobrushShape {
    public:
        KisAutobrushCircleShape(TQ_INT32 w, TQ_INT32 h, double fh, double fv);
    public:
        virtual TQ_INT8 valueAt(TQ_INT32 x, TQ_INT32 y);
    private:
        double norme(double a, double b)
        {
            return a*a + b * b;
        }
    private:
        double m_xcentre, m_ycentre;
        double m_xcoef, m_ycoef;
        double m_xfadecoef, m_yfadecoef;
};

class KisAutobrushRectShape : public KisAutobrushShape {
    public:
        KisAutobrushRectShape(TQ_INT32 w, TQ_INT32 h, double fh, double fv);
    protected:
        virtual TQ_INT8 valueAt(TQ_INT32 x, TQ_INT32 y);
    private:
        double m_xcentre, m_ycentre, m_c;
};

class KisAutobrushResource : public KisBrush
{
    public:
        KisAutobrushResource(TQImage& img) : KisBrush("")
        {
            setImage(img);
            setBrushType(MASK);
        };
    public:
        virtual bool load() { return false; };
};
#endif // _KIS_AUTOBRUSH_RESOURCE_H_