star-context.h revision 6ccdb18a54dcf42ccf8a0854542a6cfc973c9061
#ifndef __SP_STAR_CONTEXT_H__
#define __SP_STAR_CONTEXT_H__
/*
* Star drawing context
*
* Authors:
* Mitsuru Oka <oka326@parkcity.ne.jp>
* Lauris Kaplinski <lauris@kaplinski.com>
*
* Copyright (C) 1999-2002 Lauris Kaplinski
* Copyright (C) 2001-2002 Mitsuru Oka
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <stddef.h>
#include <sigc++/sigc++.h>
#include <2geom/point.h>
#include "event-context.h"
#define SP_TYPE_STAR_CONTEXT (sp_star_context_get_type ())
//#define SP_STAR_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), SP_TYPE_STAR_CONTEXT, SPStarContext))
#define SP_STAR_CONTEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), SP_TYPE_STAR_CONTEXT, SPStarContextClass))
//#define SP_IS_STAR_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SP_TYPE_STAR_CONTEXT))
#define SP_IS_STAR_CONTEXT_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), SP_TYPE_STAR_CONTEXT))
#define SP_STAR_CONTEXT(obj) ((SPStarContext*)obj)
#define SP_IS_STAR_CONTEXT(obj) (((SPEventContext*)obj)->types.count(typeid(SPStarContext)))
class CStarContext;
class SPStarContext : public SPEventContext {
public:
SPStarContext();
CStarContext* cstarcontext;
SPItem *item;
Geom::Point center;
/* Number of corners */
gint magnitude;
/* Outer/inner radius ratio */
gdouble proportion;
/* flat sides or not? */
bool isflatsided;
/* rounded corners ratio */
gdouble rounded;
// randomization
gdouble randomized;
sigc::connection sel_changed_connection;
Inkscape::MessageContext *_message_context;
static const std::string prefsPath;
};
struct SPStarContextClass {
SPEventContextClass parent_class;
};
class CStarContext : public CEventContext {
public:
CStarContext(SPStarContext* starcontext);
virtual void setup();
virtual void finish();
virtual void set(Inkscape::Preferences::Entry* val);
virtual gint root_handler(GdkEvent* event);
virtual const std::string& getPrefsPath();
private:
SPStarContext* spstarcontext;
};
GType sp_star_context_get_type (void);
#endif