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

« back to all changes in this revision

Viewing changes to krita/plugins/paintops/deform/kis_deform_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:
41
41
    KisDeformPaintOp(const KisDeformPaintOpSettings *settings, KisPainter * painter, KisImageWSP image);
42
42
    virtual ~KisDeformPaintOp();
43
43
 
44
 
    // Do we want to spray even when no movement?
45
 
    virtual bool incremental() const {
46
 
        return m_useMovementPaint;
47
 
    }
48
 
 
49
44
    qreal paintAt(const KisPaintInformation& info);
50
45
    qreal spacing(qreal pressure) const;
51
46
 
63
58
    KisPressureSizeOption m_sizeOption;
64
59
    KisPressureOpacityOption m_opacityOption;
65
60
    KisPressureRotationOption m_rotationOption;    
66
 
 
67
61
    
68
62
    qreal m_xSpacing;
69
63
    qreal m_ySpacing;
70
64
    qreal m_spacing;
71
 
 
72
65
};
73
66
 
74
67
#endif // KIS_DEFORMPAINTOP_H_