canvas-grid.h revision 7073d105e612f7dc898c292742bee9655d2a51b2
#ifndef INKSCAPE_CANVAS_GRID_H
#define INKSCAPE_CANVAS_GRID_H
/*
* Inkscape::CXYGrid
*
* Generic (and quite unintelligent) grid item for gnome canvas
*
* Copyright (C) Johan Engelen 2006-2007 <johan@shouraizou.nl>
* Copyright (C) Lauris Kaplinski 2000
*
*/
#include <display/sp-canvas.h>
#include <gtkmm.h>
#include "ui/widget/color-picker.h"
#include "ui/widget/scalar-unit.h"
#include "ui/widget/registered-widget.h"
#include "ui/widget/registry.h"
#include "ui/widget/tolerance-slider.h"
#include "xml/node-event-vector.h"
#include "snapper.h"
#include "line-snapper.h"
struct SPDesktop;
struct SPNamedView;
enum GridType {
GRID_RECTANGULAR = 0,
GRID_AXONOMETRIC = 1
};
#define GRID_MAXTYPENR 1
#define INKSCAPE_GRID_CANVASITEM(obj) (GTK_CHECK_CAST ((obj), INKSCAPE_TYPE_GRID_CANVASITEM, GridCanvasItem))
#define INKSCAPE_GRID_CANVASITEM_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), INKSCAPE_TYPE_GRID_CANVASITEM, GridCanvasItem))
#define INKSCAPE_IS_GRID_CANVASITEM_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((klass), INKSCAPE_TYPE_GRID_CANVASITEM))
/** \brief All the variables that are tracked for a grid specific
canvas item. */
};
struct GridCanvasItemClass {
};
/* Standard Gtk function */
GtkType grid_canvasitem_get_type (void);
virtual ~CanvasGrid();
// TODO: see effect.h and effect.cpp from live_effects how to link enums to SVGname to typename properly. (johan)
const char * getName();
const char * getSVGName();
static CanvasGrid* NewGrid(SPNamedView * nv, Inkscape::XML::Node * repr, SPDocument *doc, GridType gridtype);
virtual void onReprAttrChanged (Inkscape::XML::Node * /*repr*/, const gchar */*key*/, const gchar */*oldval*/, const gchar */*newval*/, bool /*is_interactive*/) = 0;
static void on_repr_attr_changed (Inkscape::XML::Node * repr, const gchar *key, const gchar *oldval, const gchar *newval, bool is_interactive, void * data);
bool isEnabled();
bool visible;
CanvasGrid(const CanvasGrid&);
};
virtual ~CanvasXYGrid();
void readRepr();
void onReprAttrChanged (Inkscape::XML::Node * repr, const gchar *key, const gchar *oldval, const gchar *newval, bool is_interactive);
be different in the X or Y direction, hense two
variables */
CanvasXYGrid(const CanvasXYGrid&);
void updateWidgets();
bool render_dotted;
};
{
bool ThisSnapperMightSnap() const;
void _addSnappedLine(SnappedConstraints &sc, NR::Point const snapped_point, NR::Coord const snapped_distance, NR::Point const normal_to_line, const NR::Point point_on_line) const;
};
}; /* namespace Inkscape */
#endif