canvas-text.h revision 045dbd46344e3ca3c53f678c2d3b4087fbbcacb7
#ifndef __SP_CANVASTEXT_H__
#define __SP_CANVASTEXT_H__
/*
* Canvas text.
*
* Authors:
* Lauris Kaplinski <lauris@kaplinski.com>
* Maximilian Albert <maximilian.albert@gmail.com>
*
* Copyright (C) 2000-2002 Lauris Kaplinski
* Copyright (C) 2008 Maximilian Albert
*
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#include "sp-canvas.h"
struct SPItem;
#define SP_TYPE_CANVASTEXT (sp_canvastext_get_type ())
char* text;
double fontsize;
double anchor_x;
double anchor_y;
};
GtkType sp_canvastext_get_type (void);
#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 :