canvas-text.h revision 24be9baeb3585155f4b723dbda0726a4930b5c05
#ifndef SEEN_SP_CANVASTEXT_H
#define SEEN_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-item.h"
#define SP_TYPE_CANVASTEXT (sp_canvastext_get_type ())
enum CanvasTextAnchorPositionEnum {
};
bool outline;
bool background;
double border;
SPDesktop *desktop; // the desktop to which this text is attached; needed for coordinate transforms (TODO: these should be eliminated)
double fontsize;
double anchor_offset_x;
double anchor_offset_y;
};
GType sp_canvastext_get_type (void);
SPCanvasItem *sp_canvastext_new(SPCanvasGroup *parent, SPDesktop *desktop, Geom::Point pos, gchar const *text);
#endif // SEEN_SP_CANVASTEXT_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 :