~ubuntu-branches/debian/experimental/inkscape/experimental

« back to all changes in this revision

Viewing changes to src/sp-gaussian-blur.h

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Viehmann
  • Date: 2008-09-09 23:29:02 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20080909232902-c50iujhk1w79u8e7
Tags: 0.46-2.1
* Non-maintainer upload.
* Add upstream patch fixing a crash in the open dialog
  in the zh_CN.utf8 locale. Closes: #487623.
  Thanks to Luca Bruno for the patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef SP_GAUSSIANBLUR_H_SEEN
 
2
#define SP_GAUSSIANBLUR_H_SEEN
 
3
 
 
4
/** \file
 
5
 * SVG <gaussianBlur> implementation, see sp-gaussianBlur.cpp.
 
6
 */
 
7
/*
 
8
 * Authors:
 
9
 *   Hugo Rodrigues <haa.rodrigues@gmail.com>
 
10
 *
 
11
 * Copyright (C) 2006 Hugo Rodrigues
 
12
 *
 
13
 * Released under GNU GPL, read the file 'COPYING' for more information
 
14
 */
 
15
 
 
16
#include "sp-filter.h"
 
17
#include "sp-gaussian-blur-fns.h"
 
18
 
 
19
/* GaussianBlur base class */
 
20
class SPGaussianBlurClass;
 
21
 
 
22
struct SPGaussianBlur : public SPFilterPrimitive {
 
23
    /** stdDeviation attribute */
 
24
    NumberOptNumber stdDeviation;
 
25
};
 
26
 
 
27
struct SPGaussianBlurClass {
 
28
    SPFilterPrimitiveClass parent_class;
 
29
};
 
30
 
 
31
GType sp_gaussianBlur_get_type();
 
32
 
 
33
 
 
34
#endif /* !SP_GAUSSIANBLUR_H_SEEN */
 
35
 
 
36
/*
 
37
  Local Variables:
 
38
  mode:c++
 
39
  c-file-style:"stroustrup"
 
40
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
 
41
  indent-tabs-mode:nil
 
42
  fill-column:99
 
43
  End:
 
44
*/
 
45
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :