spray-tool.h revision c752a3b8a278d43c8a20d09d8d40b0753e6d1a08
#ifndef __SP_SPRAY_CONTEXT_H__
#define __SP_SPRAY_CONTEXT_H__
/*
* Spray Tool
*
* Authors:
* Pierre-Antoine MARC
* Pierre CACLIN
* Aurel-Aimé MARMION
* Julien LERAY
* Benoît LAVORATA
* Vincent MONTAGNE
* Pierre BARBRY-BLOT
*
* Copyright (C) 2009 authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include <2geom/point.h>
#include "ui/tools/tool-base.h"
#define SP_SPRAY_CONTEXT(obj) (dynamic_cast<Inkscape::UI::Tools::SprayTool*>((Inkscape::UI::Tools::ToolBase*)obj))
#define SP_IS_SPRAY_CONTEXT(obj) (dynamic_cast<const Inkscape::UI::Tools::SprayTool*>((const Inkscape::UI::Tools::ToolBase*)obj) != NULL)
namespace Inkscape {
namespace UI {
namespace Dialog {
class Dialog;
}
}
}
#define SAMPLING_SIZE 8 /* fixme: ?? */
#define TC_MIN_PRESSURE 0.0
#define TC_MAX_PRESSURE 1.0
#define TC_DEFAULT_PRESSURE 0.35
namespace Inkscape {
namespace UI {
namespace Tools {
enum {
SPRAY_MODE_COPY,
SPRAY_MODE_CLONE,
SPRAY_MODE_SINGLE_PATH,
SPRAY_OPTION,
};
class SprayTool : public ToolBase {
public:
SprayTool();
virtual ~SprayTool();
//ToolBase event_context;
//Inkscape::UI::Dialog::Dialog *dialog_option;//Attribut de type SprayOptionClass, localisé dans scr/ui/dialog
/* extended input data */
gdouble pressure;
/* attributes */
bool dragging; /* mouse state: mouse is dragging */
bool usepressure;
bool usetilt;
bool usetext;
double width;
double ratio;
double tilt;
double rotation_variation;
double population;
double scale_variation;
double scale;
double mean;
double standard_deviation;
gint distrib;
gint mode;
bool is_drawing;
bool is_dilating;
bool has_dilated;
Geom::Point last_push;
SPCanvasItem *dilate_area;
bool overlap;
double offset;
sigc::connection style_set_connection;
static const std::string prefsPath;
virtual void setup();
virtual void set(const Inkscape::Preferences::Entry& val);
virtual bool root_handler(GdkEvent* event);
virtual const std::string& getPrefsPath();
void update_cursor(bool /*with_shift*/);
};
}
}
}
#endif
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :