#ifndef __SP_SPIRAL_CONTEXT_H__ #define __SP_SPIRAL_CONTEXT_H__ /** \file * Spiral drawing context */ /* * Authors: * Mitsuru Oka * Lauris Kaplinski * * Copyright (C) 1999-2001 Lauris Kaplinski * Copyright (C) 2001-2002 Mitsuru Oka * * Released under GNU GPL */ #include #include <2geom/point.h> #include "ui/tools/tool-base.h" #define SP_SPIRAL_CONTEXT(obj) (dynamic_cast((Inkscape::UI::Tools::ToolBase*)obj)) #define SP_IS_SPIRAL_CONTEXT(obj) (dynamic_cast((const Inkscape::UI::Tools::ToolBase*)obj) != NULL) class SPSpiral; namespace Inkscape { namespace UI { namespace Tools { class SpiralTool : public ToolBase { public: SpiralTool(); virtual ~SpiralTool(); static const std::string prefsPath; virtual void setup(); virtual void finish(); virtual void set(const Inkscape::Preferences::Entry& val); virtual bool root_handler(GdkEvent* event); virtual const std::string& getPrefsPath(); private: SPSpiral * spiral; Geom::Point center; gdouble revo; gdouble exp; gdouble t0; sigc::connection sel_changed_connection; void drag(Geom::Point const &p, guint state); void finishItem(); void cancel(); void selection_changed(Inkscape::Selection *selection); }; } } } #endif