tweak-context.h revision 5ef24b8088d7de1d545e852c2de9e7f21e3a290e
#ifndef __SP_TWEAK_CONTEXT_H__
#define __SP_TWEAK_CONTEXT_H__
/*
* tweaking paths without node editing
*
* Authors:
* bulia byak
*
* Copyright (C) 2007 authors
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "event-context.h"
#define TC_MIN_PRESSURE 0.0
#define TC_MAX_PRESSURE 1.0
#define TC_DEFAULT_PRESSURE 0.35
enum {
};
/* extended input data */
/* attributes */
double width;
double force;
double fidelity;
bool is_drawing;
bool is_dilating;
bool has_dilated;
bool do_h;
bool do_s;
bool do_l;
bool do_o;
};
#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 :