#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
* Jabiertxo ARRAIZA
*
* Copyright (C) 2009 authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#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)
}
}
}
enum {
};
SprayTool();
//ToolBase event_context;
//Inkscape::UI::Dialog::Dialog *dialog_option;//Attribut de type SprayOptionClass, localisé dans scr/ui/dialog
/* extended input data */
/* attributes */
bool usepressurewidth;
bool usepressurepopulation;
bool usepressurescale;
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;
bool is_drawing;
bool is_dilating;
bool has_dilated;
bool no_overlap;
bool picker;
bool pick_center;
bool pick_inverse_value;
bool pick_fill;
bool pick_stroke;
bool pick_no_overlap;
bool over_transparent;
bool over_no_transparent;
double offset;
int pick;
bool do_trace;
bool pick_to_size;
bool pick_to_presence;
bool pick_to_color;
bool pick_to_opacity;
bool invert_picked;
double gamma_picked;
double rand_picked;
virtual void setCloneTilerPrefs();
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 :