curve-drag-point.h revision 0d68d82e47abab250c99dd534da2e2d26b697b2d
/** @file
* Control point that is dragged during path drag
*/
/* Authors:
* Krzysztof KosiĆski <tweenk.pl@gmail.com>
*
* Copyright (C) 2009 Authors
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifndef SEEN_UI_TOOL_CURVE_DRAG_POINT_H
#define SEEN_UI_TOOL_CURVE_DRAG_POINT_H
#include "ui/tool/control-point.h"
struct PathSharedData;
void setTimeValue(double t) { _t = t; }
void _insertNode(bool take_selection);
double _t;
static bool _drags_stroke;
static bool _segment_was_degenerate;
};
} // namespace UI
} // namespace Inkscape
#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 :