|
GnuCash 2.4.99
|
00001 /* 00002 * gnc-plugin-account-tree.h -- 00003 * 00004 * Copyright (C) 2003 Jan Arne Petersen 00005 * Author: Jan Arne Petersen <jpetersen@uni-bonn.de> 00006 * 00007 * This program is free software; you can redistribute it and/or 00008 * modify it under the terms of the GNU General Public License as 00009 * published by the Free Software Foundation; either version 2 of 00010 * the License, or (at your option) any later version. 00011 * 00012 * This program is distributed in the hope that it will be useful, 00013 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 * GNU General Public License for more details. 00016 * 00017 * You should have received a copy of the GNU General Public License 00018 * along with this program; if not, contact: 00019 * 00020 * Free Software Foundation Voice: +1-617-542-5942 00021 * 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 00022 * Boston, MA 02110-1301, USA gnu@gnu.org 00023 */ 00024 00034 #ifndef __GNC_PLUGIN_ACCOUNT_TREE_H 00035 #define __GNC_PLUGIN_ACCOUNT_TREE_H 00036 00037 #include <gtk/gtk.h> 00038 00039 #include "gnc-plugin.h" 00040 00041 G_BEGIN_DECLS 00042 00043 /* type macros */ 00044 #define GNC_TYPE_PLUGIN_ACCOUNT_TREE (gnc_plugin_account_tree_get_type ()) 00045 #define GNC_PLUGIN_ACCOUNT_TREE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GNC_TYPE_PLUGIN_ACCOUNT_TREE, GncPluginAccountTree)) 00046 #define GNC_PLUGIN_ACCOUNT_TREE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GNC_TYPE_PLUGIN_ACCOUNT_TREE, GncPluginAccountTreeClass)) 00047 #define GNC_IS_PLUGIN_ACCOUNT_TREE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GNC_TYPE_PLUGIN_ACCOUNT_TREE)) 00048 #define GNC_IS_PLUGIN_ACCOUNT_TREE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GNC_TYPE_PLUGIN_ACCOUNT_TREE)) 00049 #define GNC_PLUGIN_ACCOUNT_TREE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GNC_TYPE_PLUGIN_ACCOUNT_TREE, GncPluginAccountTreeClass)) 00050 00051 #define GNC_PLUGIN_ACCOUNT_TREE_NAME "gnc-plugin-account-tree" 00052 00053 /* typedefs & structures */ 00054 00056 typedef struct 00057 { 00059 GncPlugin gnc_plugin; 00060 } GncPluginAccountTree; 00061 00063 typedef struct 00064 { 00066 GncPluginClass gnc_plugin; 00067 } GncPluginAccountTreeClass; 00068 00069 00074 GType gnc_plugin_account_tree_get_type (void); 00075 00076 00081 GncPlugin *gnc_plugin_account_tree_new (void); 00082 00083 G_END_DECLS 00084 00085 #endif /* __GNC_PLUGIN_ACCOUNT_TREE_H */ 00086
1.7.4