1 /* $Id: text.h,v 1.2 2004/03/13 03:33:22 meffie Exp $
2  *
3  * GNU Paint
4  * Copyright 2000-2003, 2007  Li-Cheng (Andy) Tai
5  *
6  * Authors: Li-Cheng (Andy) Tai
7  *          Michael A. Meffie III <meffiem@neo.rr.com>
8  *
9  * This program is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License
11  * as published by the Free Software Foundation; either version 2
12  * of the License, or (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be
15  * useful, but WITHOUT ANY WARRANTY; without even the implied
16  * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
17  * PURPOSE. See the GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public
20  * License along with this program; if not, write to the Free
21  * Software Foundation, Inc., 59 Temple Place, Suite 330,
22  * Boston, MA 02111-1307 USA
23  */
24 
25 #ifndef __TEXT_H__
26 #define __TEXT_H__
27 
28 #include "canvas.h"
29 #include <pango/pango.h>
30 
31 
32 gpaint_tool* text_create(const char *name);
33 
34 
35 #endif
36