~ubuntu-branches/ubuntu/precise/inkscape/precise-updates

« back to all changes in this revision

Viewing changes to src/display/nr-filter-flood.h

  • Committer: Bazaar Package Importer
  • Author(s): Alex Valavanis
  • Date: 2010-09-12 19:44:58 UTC
  • mfrom: (1.1.12 upstream) (45.1.3 maverick)
  • Revision ID: james.westby@ubuntu.com-20100912194458-4sjwmbl7dlsrk5dc
Tags: 0.48.0-1ubuntu1
* Merge with Debian unstable (LP: #628048, LP: #401567, LP: #456248, 
  LP: #463602, LP: #591986)
* debian/control: 
  - Ubuntu maintainers
  - Promote python-lxml, python-numpy, python-uniconvertor to Recommends.
  - Demote pstoedit to Suggests (universe package).
  - Suggests ttf-dejavu instead of ttf-bitstream-vera (LP: #513319)
* debian/rules:
  - Run intltool-update on build (Ubuntu-specific).
  - Add translation domain to .desktop files (Ubuntu-specific).
* debian/dirs:
  - Add usr/share/pixmaps.  Allow inkscape.xpm installation
* drop 50-poppler-API.dpatch (now upstream)
* drop 51-paste-in-unwritable-directory.dpatch (now upstream) 

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 * feFlood filter primitive renderer
6
6
 *
7
7
 * Authors:
8
 
 *   Felipe Corrêa da Silva Sanches <felipe.sanches@gmail.com>
 
8
 *   Felipe Corrêa da Silva Sanches <juca@members.fsf.org>
9
9
 *
10
10
 * Copyright (C) 2007 authors
11
11
 *
15
15
#include "display/nr-filter-primitive.h"
16
16
#include "display/nr-filter-slot.h"
17
17
#include "display/nr-filter-units.h"
 
18
#include "svg/svg-color.h"
18
19
 
19
20
namespace Inkscape {
20
21
namespace Filters {
27
28
    
28
29
    virtual void set_opacity(double o);
29
30
    virtual void set_color(guint32 c);
 
31
    virtual void set_icc(SVGICCColor *icc_color);
30
32
    virtual int render(FilterSlot &slot, FilterUnits const &units);
31
33
    virtual void area_enlarge(NRRectL &area, Geom::Matrix const &trans);
32
34
private:
33
35
    double opacity;
34
36
    guint32 color;
 
37
    SVGICCColor *icc;
35
38
};
36
39
 
37
40
} /* namespace Filters */