GnuCash  2.6.99
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
gnc-tree-view-price.h
Go to the documentation of this file.
1 /********************************************************************\
2  * gnc-tree-view-price.h -- GtkTreeView implementation to display *
3  * prices in a GtkTreeView. *
4  * Copyright (C) 2003,2005 David Hampton <[email protected]> *
5  * *
6  * This program is free software; you can redistribute it and/or *
7  * modify it under the terms of the GNU General Public License as *
8  * published by the Free Software Foundation; either version 2 of *
9  * the License, or (at your option) any later version. *
10  * *
11  * This program is distributed in the hope that it will be useful, *
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14  * GNU General Public License for more details. *
15  * *
16  * You should have received a copy of the GNU General Public License*
17  * along with this program; if not, contact: *
18  * *
19  * Free Software Foundation Voice: +1-617-542-5942 *
20  * 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
21  * Boston, MA 02110-1301, USA [email protected] *
22  * *
23 \********************************************************************/
24 
34 #ifndef __GNC_TREE_VIEW_PRICE_H
35 #define __GNC_TREE_VIEW_PRICE_H
36 
37 #include <gtk/gtk.h>
38 #include "gnc-tree-view.h"
39 
40 #include "gnc-pricedb.h"
41 #include "gnc-ui-util.h"
42 
43 G_BEGIN_DECLS
44 
45 /* type macros */
46 #define GNC_TYPE_TREE_VIEW_PRICE (gnc_tree_view_price_get_type ())
47 #define GNC_TREE_VIEW_PRICE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GNC_TYPE_TREE_VIEW_PRICE, GncTreeViewPrice))
48 #define GNC_TREE_VIEW_PRICE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GNC_TYPE_TREE_VIEW_PRICE, GncTreeViewPriceClass))
49 #define GNC_IS_TREE_VIEW_PRICE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GNC_TYPE_TREE_VIEW_PRICE))
50 #define GNC_IS_TREE_VIEW_PRICE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GNC_TYPE_TREE_VIEW_PRICE))
51 #define GNC_TREE_VIEW_PRICE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GNC_TYPE_TREE_VIEW_PRICE, GncTreeViewPriceClass))
52 
53 /* typedefs & structures */
54 typedef struct
55 {
56  GncTreeView gnc_tree_view;
57  int stamp;
59 
60 typedef struct
61 {
62  GncTreeViewClass gnc_tree_view;
64 
65 
66 
67 /* Standard g_object type */
68 GType gnc_tree_view_price_get_type (void);
69 
70 
88 GtkTreeView *gnc_tree_view_price_new (QofBook *book,
89  const gchar *first_property_name,
90  ...);
97 #ifdef OLD
98 
109 void gnc_tree_view_price_add_kvp_column (GncTreeViewPrice *view,
110  const gchar *column_title,
111  const gchar *kvp_key);
112 #endif
113 
138 typedef gboolean (*gnc_tree_view_price_ns_filter_func)(gnc_commodity_namespace*, gpointer data);
139 typedef gboolean (*gnc_tree_view_price_cm_filter_func)(gnc_commodity *, gpointer data);
140 typedef gboolean (*gnc_tree_view_price_pc_filter_func)(GNCPrice *, gpointer data);
141 void gnc_tree_view_price_set_filter (GncTreeViewPrice *view,
143  gnc_tree_view_price_cm_filter_func cm_func,
144  gnc_tree_view_price_pc_filter_func pc_func,
145  gpointer data,
146  GDestroyNotify destroy);
162 
163 
176 
177 
194  GNCPrice *price);
195 
196 
209 
210 
213 G_END_DECLS
214 
215 #endif /* __GNC_TREE_VIEW_PRICE_H */
216 
a simple price database for gnucash
utility functions for the GnuCash UI
common utilities for manipulating a GtkTreeView within gnucash
gboolean(* gnc_tree_view_price_ns_filter_func)(gnc_commodity_namespace *, gpointer data)
GNCPrice * gnc_tree_view_price_get_selected_price(GncTreeViewPrice *view)
GList * gnc_tree_view_price_get_selected_prices(GncTreeViewPrice *view)
void gnc_tree_view_price_set_selected_price(GncTreeViewPrice *view, GNCPrice *price)
GNCPrice * gnc_tree_view_price_get_cursor_price(GncTreeViewPrice *view)
GtkTreeView * gnc_tree_view_price_new(QofBook *book, const gchar *first_property_name,...)