guideline.h revision fe2599adb39a3ca12d330a63e316e63524aa8178
#ifndef SEEN_SP_GUIDELINE_H
#define SEEN_SP_GUIDELINE_H
/*
* The visual representation of SPGuide.
*
* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
* Johan Engelen
*
* Copyright (C) 2000-2002 Lauris Kaplinski
* Copyright (C) 2007 Johan Engelen
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "sp-canvas-item.h"
#define SP_TYPE_GUIDELINE (sp_guideline_get_type())
struct SPGuideLine {
char* label;
double angle;
unsigned int sensitive : 1;
};
struct SPGuideLineClass {
};
SPCanvasItem *sp_guideline_new(SPCanvasGroup *parent, char* label, Geom::Point point_on_line, Geom::Point normal);
#endif // SEEN_SP_GUIDELINE_H
/*
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 :