Code

Mnemonics in fill and stroke dialog and menu
[inkscape.git] / src / 2geom / forward.h
1 /**
2  * \file
3  * \brief  Contains forward declarations of 2geom types
4  *
5  * Authors:
6  *  Johan Engelen <goejendaagh@zonnet.nl>
7  *
8  * Copyright 2008  authors
9  *
10  * This library is free software; you can redistribute it and/or
11  * modify it either under the terms of the GNU Lesser General Public
12  * License version 2.1 as published by the Free Software Foundation
13  * (the "LGPL") or, at your option, under the terms of the Mozilla
14  * Public License Version 1.1 (the "MPL"). If you do not alter this
15  * notice, a recipient may use your version of this file under either
16  * the MPL or the LGPL.
17  *
18  * You should have received a copy of the LGPL along with this library
19  * in the file COPYING-LGPL-2.1; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21  * You should have received a copy of the MPL along with this library
22  * in the file COPYING-MPL-1.1
23  *
24  * The contents of this file are subject to the Mozilla Public License
25  * Version 1.1 (the "License"); you may not use this file except in
26  * compliance with the License. You may obtain a copy of the License at
27  * http://www.mozilla.org/MPL/
28  *
29  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY
30  * OF ANY KIND, either express or implied. See the LGPL or the MPL for
31  * the specific language governing rights and limitations.
32  */
34 #ifndef SEEN_GEOM_FORWARD_H
35 #define SEEN_GEOM_FORWARD_H
37 #include <vector>   // include this dependency so PathVector can be defined more explicitly
39 namespace Geom {
41 class Bezier;
42 template <unsigned> class BezierCurve;
43 template<> class BezierCurve<0>;
44 typedef BezierCurve<2> QuadraticBezier;
45 typedef BezierCurve<1> LineSegment;
46 typedef BezierCurve<3> CubicBezier;
47 class EllipticalArc;
48 class SVGEllipticalArc;
50 class HLineSegment;
51 class VLineSegment;
53 typedef double Coord;
54 class Point;
56 class Exception;
57 class LogicalError;
58 class RangeError;
59 class NotImplemented;
60 class InvariantsViolation;
61 class NotInvertible;
62 class ContinuityError;
64 class Interval;
65 class OptInterval;
66 class Linear;
67 class Hat;
68 class Tri;
70 class Matrix;
71 class Translate;
72 class Rotate;
73 class Scale;
75 class Curve;
76 class Path;
77 typedef std::vector<Path> PathVector;
79 template <class> class D2;
80 template <typename> class Piecewise;
81 class SBasis;
82 class SBasisCurve;
84 typedef D2<Interval> Rect;
85 class OptRect;
87 class Shape;
88 class Region;
90 class SVGPathSink;
91 template <typename> class SVGPathGenerator;
93 }
95 #endif // SEEN_GEOM_FORWARD_H
97 /*
98   Local Variables:
99   mode:c++
100   c-file-style:"stroustrup"
101   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
102   indent-tabs-mode:nil
103   fill-column:99
104   End:
105 */
106 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :