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

« back to all changes in this revision

Viewing changes to .pc/kubuntu_01_arm_needs_qreal.diff/krita/plugins/paintops/defaultpaintops/pen/kis_penop.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_PENOP_H_
 
24
#define KIS_PENOP_H_
 
25
 
 
26
#include "kis_brush_based_paintop.h"
 
27
#include <kis_pressure_darken_option.h>
 
28
#include <kis_pressure_opacity_option.h>
 
29
#include <kis_pressure_size_option.h>
 
30
 
 
31
class KisBrushBasedPaintOpSettings;
 
32
 
 
33
class KisPenOp : public KisBrushBasedPaintOp
 
34
{
 
35
 
 
36
public:
 
37
 
 
38
    KisPenOp(const KisBrushBasedPaintOpSettings *settings, KisPainter * painter, KisImageWSP image);
 
39
    virtual ~KisPenOp();
 
40
 
 
41
    double paintAt(const KisPaintInformation& info);
 
42
 
 
43
private:
 
44
    KisPressureOpacityOption m_opacityOption;
 
45
    KisPressureDarkenOption m_darkenOption;
 
46
    KisPressureSizeOption m_sizeOption;
 
47
};
 
48
 
 
49
#endif // KIS_PENOP_H_