/* LibAbi * Copyright (C) 2005 Robert Staudinger * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA * 02111-1307, USA. */ #ifndef __ABI_TOPAZ_TOOLBAR_H__ #define __ABI_TOPAZ_TOOLBAR_H__ #include G_BEGIN_DECLS #define ABI_TYPE_TOPAZ_TOOLBAR (abi_topaz_toolbar_get_type ()) #define ABI_TOPAZ_TOOLBAR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), ABI_TYPE_TOPAZ_TOOLBAR, AbiTopazToolbar)) #define ABI_TOPAZ_TOOLBAR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), ABI_TYPE_TOPAZ_TOOLBAR, AbiTopazToolbarClass)) #define ABI_IS_TOPAZ_TOOLBAR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), ABI_TYPE_TOPAZ_TOOLBAR)) #define ABI_IS_TOPAZ_TOOLBAR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), ABI_TYPE_TOPAZ_TOOLBAR)) #define ABI_TOPAZ_TOOLBAR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), ABI_TYPE_TOPAZ_TOOLBAR, AbiTopazToolbarClass)) typedef struct _AbiTopazToolbar AbiTopazToolbar; typedef struct _AbiTopazToolbarClass AbiTopazToolbarClass; GType abi_topaz_toolbar_get_type (void) G_GNUC_CONST; GtkWidget* abi_topaz_toolbar_new (void); void abi_topaz_toolbar_add_font (AbiTopazToolbar *self, const gchar *family); void abi_topaz_toolbar_add_style (AbiTopazToolbar *self, const gchar *style); void abi_topaz_toolbar_clear_styles (AbiTopazToolbar *self); G_END_DECLS #endif /* __ABI_TOPAZ_TOOLBAR_H__ */