~valavanisalex/ubuntu/oneiric/inkscape/inkscape_0.48.1-2ubuntu4

« back to all changes in this revision

Viewing changes to src/live_effects/effect-enum.h

  • Committer: Bazaar Package Importer
  • Author(s): Kees Cook, Ted Gould, Kees Cook
  • Date: 2009-06-24 14:00:43 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20090624140043-07stp20mry48hqup
Tags: 0.47~pre0-0ubuntu1
* New upstream release

[ Ted Gould ]
* debian/control: Adding libgsl0 and removing version specifics on boost

[ Kees Cook ]
* debian/watch: updated to run uupdate and mangle pre-release versions.
* Dropped patches that have been taken upstream:
  - 01_mips
  - 02-poppler-0.8.3
  - 03-chinese-inkscape
  - 05_fix_latex_patch
  - 06_gcc-4.4
  - 07_cdr2svg
  - 08_skip-bad-utf-on-pdf-import
  - 09_gtk-clist
  - 10_belarussian
  - 11_libpng
  - 12_desktop
  - 13_slider
  - 100_svg_import_improvements
  - 102_sp_pattern_painter_free
  - 103_bitmap_type_print

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef INKSCAPE_LIVEPATHEFFECT_ENUM_H
 
2
#define INKSCAPE_LIVEPATHEFFECT_ENUM_H
 
3
 
 
4
/*
 
5
 * Inkscape::LivePathEffect::EffectType
 
6
 *
 
7
* Copyright (C) Johan Engelen 2008 <j.b.c.engelen@utwente.nl>
 
8
 *
 
9
 * Released under GNU GPL, read the file 'COPYING' for more information
 
10
 */
 
11
 
 
12
#include "util/enums.h"
 
13
 
 
14
namespace Inkscape {
 
15
namespace LivePathEffect {
 
16
 
 
17
enum EffectType {
 
18
    BEND_PATH = 0,
 
19
    PATTERN_ALONG_PATH,
 
20
    FREEHAND_SHAPE,
 
21
    SKETCH,
 
22
    ROUGH_HATCHES,
 
23
    VONKOCH,
 
24
    KNOT,
 
25
    GEARS,
 
26
    CURVE_STITCH,
 
27
    CIRCLE_WITH_RADIUS,
 
28
    PERSPECTIVE_PATH,
 
29
    SPIRO,
 
30
    LATTICE,
 
31
    ENVELOPE,
 
32
    CONSTRUCT_GRID,
 
33
    PERP_BISECTOR,
 
34
    TANGENT_TO_CURVE,
 
35
    MIRROR_SYMMETRY,
 
36
    CIRCLE_3PTS,
 
37
    ANGLE_BISECTOR,
 
38
    PARALLEL,
 
39
    COPY_ROTATE,
 
40
    OFFSET,
 
41
    RULER,
 
42
    BOOLOPS,
 
43
    INTERPOLATE,
 
44
    TEXT_LABEL,
 
45
    PATH_LENGTH,
 
46
    LINE_SEGMENT,
 
47
    DOEFFECTSTACK_TEST,
 
48
    DYNASTROKE,
 
49
    RECURSIVE_SKELETON,
 
50
    INVALID_LPE // This must be last (I made it such that it is not needed anymore I think..., Don't trust on it being last. - johan)
 
51
};
 
52
 
 
53
extern const Util::EnumData<EffectType> LPETypeData[];  /// defined in effect.cpp
 
54
extern const Util::EnumDataConverter<EffectType> LPETypeConverter; /// defined in effect.cpp
 
55
 
 
56
} //namespace LivePathEffect
 
57
} //namespace Inkscape
 
58
 
 
59
#endif
 
60
 
 
61
/*
 
62
  Local Variables:
 
63
  mode:c++
 
64
  c-file-style:"stroustrup"
 
65
  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
 
66
  indent-tabs-mode:nil
 
67
  fill-column:99
 
68
  End:
 
69
*/
 
70
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :