Updated Esperanto translation
[gtkhtml.git] / components / editor / gtkhtml-face-action.h
blob3806cf4c2f58042ac476051ae8620b7415a8378e
1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
2 /* gtkhtml-face-action.h
4 * Copyright (C) 2008 Novell, Inc.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of version 2 of the GNU Lesser General Public
8 * License as published by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this program; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
21 #ifndef GTKHTML_FACE_ACTION_H
22 #define GTKHTML_FACE_ACTION_H
24 #include "gtkhtml-editor-common.h"
26 /* Standard GObject macros */
27 #define GTKHTML_TYPE_FACE_ACTION \
28 (gtkhtml_face_action_get_type ())
29 #define GTKHTML_FACE_ACTION(obj) \
30 (G_TYPE_CHECK_INSTANCE_CAST \
31 ((obj), GTKHTML_TYPE_FACE_ACTION, GtkhtmlFaceAction))
32 #define GTKHTML_FACE_ACTION_CLASS(cls) \
33 (G_TYPE_CHECK_CLASS_CAST \
34 ((cls), GTKHTML_TYPE_FACE_ACTION, GtkhtmlFaceActionClass))
35 #define GTKHTML_IS_FACE_ACTION(obj) \
36 (G_TYPE_CHECK_INSTANCE_TYPE \
37 ((obj), GTKHTML_TYPE_FACE_ACTION))
38 #define GTKHTML_IS_FACE_ACTION_CLASS(cls) \
39 (G_TYPE_CHECK_CLASS_TYPE \
40 ((cls), GTKHTML_TYPE_FACE_ACTION))
41 #define GTKHTML_FACE_ACTION_GET_CLASS(obj) \
42 (G_TYPE_INSTANCE_GET_CLASS \
43 ((obj), GTKHTML_TYPE_FACE_ACTION, GtkhtmlFaceActionClass))
45 G_BEGIN_DECLS
47 typedef struct _GtkhtmlFaceAction GtkhtmlFaceAction;
48 typedef struct _GtkhtmlFaceActionClass GtkhtmlFaceActionClass;
49 typedef struct _GtkhtmlFaceActionPrivate GtkhtmlFaceActionPrivate;
51 struct _GtkhtmlFaceAction {
52 GtkAction parent;
53 GtkhtmlFaceActionPrivate *priv;
56 struct _GtkhtmlFaceActionClass {
57 GtkActionClass parent_class;
60 GType gtkhtml_face_action_get_type (void);
61 GtkAction * gtkhtml_face_action_new (const gchar *name,
62 const gchar *label,
63 const gchar *tooltip,
64 const gchar *stock_id);
66 G_END_DECLS
68 #endif /* GTKHTML_FACE_ACTION_H */