Code

Pot and Dutch translation update
[inkscape.git] / src / sp-namedview.h
1 #ifndef INKSCAPE_SP_NAMEDVIEW_H
2 #define INKSCAPE_SP_NAMEDVIEW_H
4 /*
5  * <sodipodi:namedview> implementation
6  *
7  * Authors:
8  *   Lauris Kaplinski <lauris@kaplinski.com>
9  *
10  * Copyright (C) 2006 Johan Engelen <johan@shouraizou.nl>
11  * Copyright (C) Lauris Kaplinski 2000-2002
12  *
13  * Released under GNU GPL, read the file 'COPYING' for more information
14  */
16 #define SP_TYPE_NAMEDVIEW (sp_namedview_get_type())
17 #define SP_NAMEDVIEW(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), SP_TYPE_NAMEDVIEW, SPNamedView))
18 #define SP_NAMEDVIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), SP_TYPE_NAMEDVIEW, SPNamedViewClass))
19 #define SP_IS_NAMEDVIEW(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), SP_TYPE_NAMEDVIEW))
20 #define SP_IS_NAMEDVIEW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((klass), SP_TYPE_NAMEDVIEW))
22 #include "helper/helper-forward.h"
23 #include "sp-object-group.h"
24 #include "sp-metric.h"
25 #include "snap.h"
27 namespace Inkscape {
28 class CanvasGrid;
29 }
31 enum {
32     SP_BORDER_LAYER_BOTTOM,
33     SP_BORDER_LAYER_TOP
34 };
36 struct SPNamedView : public SPObjectGroup {
37     unsigned int editable : 1;
38     unsigned int showguides : 1;
39     unsigned int showborder : 1;
40     unsigned int showpageshadow : 1;
41     unsigned int borderlayer : 2;
43     double zoom;
44     double cx;
45     double cy;
46     gint window_width;
47     gint window_height;
48     gint window_x;
49     gint window_y;
50     gint window_maximized;
52     SnapManager snap_manager;
53     GSList * grids;
54     bool grids_visible;
56     SPUnit const *doc_units;
57     SPUnit const *units;
58     
59     GQuark default_layer_id;
61     double connector_spacing;
63     guint32 guidecolor;
64     guint32 guidehicolor;
65     guint32 bordercolor;
66     guint32 pagecolor;
67     guint32 pageshadow;
69     GSList *guides;
70     GSList *views;
72     gint viewcount;
74     void show(SPDesktop *desktop);
75     void hide(SPDesktop const *desktop);
76     void activateGuides(gpointer desktop, gboolean active);
77     gchar const *getName() const;
78     guint getViewCount();
79     GSList const *getViewList() const;
80     SPMetric getDefaultMetric() const;
82     void translateGuides(Geom::Translate const &translation);
83     void scrollAllDesktops(double dx, double dy, bool is_scrolling);
84 };
86 struct SPNamedViewClass {
87     SPObjectGroupClass parent_class;
88 };
90 GType sp_namedview_get_type();
92 SPNamedView *sp_document_namedview(SPDocument *document, gchar const *name);
94 void sp_namedview_window_from_document(SPDesktop *desktop);
95 void sp_namedview_document_from_window(SPDesktop *desktop);
96 void sp_namedview_update_layers_from_document (SPDesktop *desktop);
98 void sp_namedview_toggle_guides(SPDocument *doc, Inkscape::XML::Node *repr);
99 void sp_namedview_show_grids(SPNamedView *namedview, bool show, bool dirty_document);
100 Inkscape::CanvasGrid * sp_namedview_get_first_enabled_grid(SPNamedView *namedview);
102 #endif /* !INKSCAPE_SP_NAMEDVIEW_H */
105 /*
106   Local Variables:
107   mode:c++
108   c-file-style:"stroustrup"
109   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
110   indent-tabs-mode:nil
111   fill-column:99
112   End:
113 */
114 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :