~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/filters/tile.h

  • Committer: JazzyNico
  • Date: 2011-08-29 20:25:30 UTC
  • Revision ID: nicoduf@yahoo.fr-20110829202530-6deuoz11q90usldv
Code refactoring and merging with trunk (revision 10599).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef SP_FETILE_H_SEEN
2
 
#define SP_FETILE_H_SEEN
3
 
 
4
 
/** \file
5
 
 * SVG <feTile> implementation, see Tile.cpp.
6
 
 */
7
 
/*
 
1
/** @file
 
2
 * @brief SVG tile filter effect
 
3
 *//*
8
4
 * Authors:
9
5
 *   Hugo Rodrigues <haa.rodrigues@gmail.com>
10
6
 *
13
9
 * Released under GNU GPL, read the file 'COPYING' for more information
14
10
 */
15
11
 
16
 
#include "sp-filter.h"
17
 
#include "tile-fns.h"
18
 
 
19
 
#include "display/nr-filter.h"
20
 
#include "display/nr-filter-tile.h"
 
12
#ifndef SP_FETILE_H_SEEN
 
13
#define SP_FETILE_H_SEEN
 
14
 
 
15
#include "sp-filter-primitive.h"
 
16
 
 
17
#define SP_TYPE_FETILE (sp_feTile_get_type())
 
18
#define SP_FETILE(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), SP_TYPE_FETILE, SPFeTile))
 
19
#define SP_FETILE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), SP_TYPE_FETILE, SPFeTileClass))
 
20
#define SP_IS_FETILE(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), SP_TYPE_FETILE))
 
21
#define SP_IS_FETILE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), SP_TYPE_FETILE))
21
22
 
22
23
/* FeTile base class */
23
24
class SPFeTileClass;
24
25
 
25
26
struct SPFeTile : public SPFilterPrimitive {
26
 
    /** TILE ATTRIBUTES HERE */
27
27
    
28
28
};
29
29
 
33
33
 
34
34
GType sp_feTile_get_type();
35
35
 
36
 
 
37
36
#endif /* !SP_FETILE_H_SEEN */
38
37
 
39
38
/*
45
44
  fill-column:99
46
45
  End:
47
46
*/
48
 
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :
 
47
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :