~ubuntu-branches/ubuntu/oneiric/koffice/oneiric-updates

« back to all changes in this revision

Viewing changes to krita/plugins/paintops/waterymixbrush/kis_waterymix_paintop.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2010-10-27 17:52:57 UTC
  • mfrom: (0.12.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20101027175257-s04zqqk5bs8ckm9o
Tags: 1:2.2.83-0ubuntu1
* Merge with Debian git remaining changes:
 - Add build-deps on librcps-dev, opengtl-dev, libqtgtl-dev, freetds-dev,
   create-resources, libspnav-dev
 - Remove needless build-dep on libwv2-dev
 - koffice-libs recommends create-resources
 - krita recommends pstoedit
 - Keep our patches
* New upstream release 2.3 beta 3
  - Remove debian/patches fixed by upstream
  - Update install files

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  Copyright (c) 2010 José Luis Vergara Toloza <pentalis@gmail.com>
 
3
 *
 
4
 *  This program is free software; you can redistribute it and/or modify
 
5
 *  it under the terms of the GNU General Public License as published by
 
6
 *  the Free Software Foundation; either version 2 of the License, or
 
7
 *  (at your option) any later version.
 
8
 *
 
9
 *  This program is distributed in the hope that it will be useful,
 
10
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
12
 *  GNU General Public License for more details.
 
13
 *
 
14
 *  You should have received a copy of the GNU General Public License
 
15
 *  along with this program; if not, write to the Free Software
 
16
 *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 
17
 */
 
18
 
 
19
#ifndef KIS_WATERYMIX_PAINTOP_H_
 
20
#define KIS_WATERYMIX_PAINTOP_H_
 
21
 
 
22
#include <kis_paintop.h>
 
23
#include <kis_brush_based_paintop.h>
 
24
#include <kis_types.h>
 
25
 
 
26
#include "kis_waterymix_paintop_settings.h"
 
27
 
 
28
#include <kis_pressure_opacity_option.h>
 
29
#include <kis_pressure_size_option.h>
 
30
 
 
31
 
 
32
class KisPainter;
 
33
 
 
34
struct HardcodedSettings
 
35
{
 
36
    qreal humidity;
 
37
    
 
38
    /** Fraction of the canvas color absorbed per pass
 
39
    * The color retained from the old cached dab is equal to
 
40
    * (1 - absorption).
 
41
    */
 
42
    qreal absortionrate;
 
43
};
 
44
 
 
45
class KisWateryMixPaintOp : public KisBrushBasedPaintOp
 
46
{
 
47
 
 
48
public:
 
49
 
 
50
    KisWateryMixPaintOp(const KisWateryMixPaintOpSettings *settings, KisPainter * painter, KisImageWSP image);
 
51
    virtual ~KisWateryMixPaintOp();
 
52
 
 
53
    /**
 
54
     *  Document me
 
55
     */
 
56
    double paintAt(const KisPaintInformation& info);
 
57
 
 
58
    /*
 
59
    /// Absorb the color beneath the brush
 
60
    void absorb();
 
61
    
 
62
    /// Spread the absorbed color over the brush surface
 
63
    void dilute();
 
64
    */
 
65
    
 
66
private:
 
67
    KisWateryMixPaintOpSettings* m_settings;
 
68
    KisImageWSP m_image;
 
69
    KisPaintDeviceSP m_dab;
 
70
 
 
71
    /**
 
72
     *  Curve to control the opacity of the entire dab
 
73
     *  with device input
 
74
     */
 
75
    KisPressureOpacityOption m_opacityOption;
 
76
    
 
77
    /**
 
78
     *  Curve to control the size of the entire dab
 
79
     *  with device input
 
80
     */
 
81
    KisPressureSizeOption m_sizeOption;
 
82
    
 
83
    HardcodedSettings hardcodedSettings;
 
84
};
 
85
 
 
86
#endif // KIS_WATERYMIX_PAINTOP_H_