#ifndef __INKSCAPE_CTRLLINE_H__ #define __INKSCAPE_CTRLLINE_H__ /* * Simple straight line * * Author: * Lauris Kaplinski * * Copyright (C) 1999-2002 Lauris Kaplinski * * Released under GNU GPL */ #include "sp-canvas.h" #define SP_TYPE_CTRLLINE (sp_ctrlline_get_type ()) #define SP_CTRLLINE(obj) (GTK_CHECK_CAST ((obj), SP_TYPE_CTRLLINE, SPCtrlLine)) #define SP_IS_CTRLLINE(obj) (GTK_CHECK_TYPE ((obj), SP_TYPE_CTRLLINE)) struct SPCtrlLine; struct SPCtrlLineClass; GtkType sp_ctrlline_get_type (void); void sp_ctrlline_set_rgba32 (SPCtrlLine *cl, guint32 rgba); void sp_ctrlline_set_coords (SPCtrlLine *cl, gdouble x0, gdouble y0, gdouble x1, gdouble y1); void sp_ctrlline_set_coords (SPCtrlLine *cl, const NR::Point start, const NR::Point end); #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:encoding=utf-8:textwidth=99 :