|
GnuCash
2.6.99
|
Files | |
| file | gnc-plugin-page-owner-tree.c |
| Functions providing a page which lists owners of one type. This type can be vendors, customers or employees. | |
| file | gnc-plugin-page-owner-tree.h |
| Functions providing a page which lists owners of one type. This type can be vendors, customers or employees. | |
Data Structures | |
| struct | GncPluginPageOwnerTreePrivate |
| struct | action_owners_struct |
| struct | GncPluginPageOwnerTree |
| struct | GncPluginPageOwnerTreeClass |
Macros | |
| #define | PLUGIN_PAGE_ACCT_TREE_CM_CLASS "plugin-page-owner-tree" |
| #define | DELETE_DIALOG_FILTER "filter" |
| #define | DELETE_DIALOG_OWNER "owner" |
| #define | GNC_PLUGIN_PAGE_OWNER_TREE_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), GNC_TYPE_PLUGIN_PAGE_OWNER_TREE, GncPluginPageOwnerTreePrivate)) |
| #define | OWNER_TYPE_LABEL "OwnerType" |
| #define | GNC_TYPE_PLUGIN_PAGE_OWNER_TREE (gnc_plugin_page_owner_tree_get_type ()) |
| #define | GNC_PLUGIN_PAGE_OWNER_TREE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GNC_TYPE_PLUGIN_PAGE_OWNER_TREE, GncPluginPageOwnerTree)) |
| #define | GNC_PLUGIN_PAGE_OWNER_TREE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GNC_TYPE_PLUGIN_PAGE_OWNER_TREE, GncPluginPageOwnerTreeClass)) |
| #define | GNC_IS_PLUGIN_PAGE_OWNER_TREE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GNC_TYPE_PLUGIN_PAGE_OWNER_TREE)) |
| #define | GNC_IS_PLUGIN_PAGE_OWNER_TREE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GNC_TYPE_PLUGIN_PAGE_OWNER_TREE)) |
| #define | GNC_PLUGIN_PAGE_OWNER_TREE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GNC_TYPE_PLUGIN_PAGE_OWNER_TREE, GncPluginPageOwnerTreeClass)) |
| #define | GNC_PLUGIN_PAGE_OWNER_TREE_NAME "GncPluginPageOwnerTree" |
Typedefs | |
|
typedef struct GncPluginPageOwnerTreePrivate | GncPluginPageOwnerTreePrivate |
Enumerations | |
| enum | { OWNER_SELECTED, LAST_SIGNAL } |
Functions | |
| GType | gnc_plugin_page_owner_tree_get_type (void) |
| GncPluginPage * | gnc_plugin_page_owner_tree_new (GncOwnerType owner_type) |
| GncOwner * | gnc_plugin_page_owner_tree_get_current_owner (GncPluginPageOwnerTree *page) |
| GncOwner * gnc_plugin_page_owner_tree_get_current_owner | ( | GncPluginPageOwnerTree * | page | ) |
Given a pointer to an owner tree plugin page, return the selected owner (if any).
| page | The "owner tree" page. |
Definition at line 506 of file gnc-plugin-page-owner-tree.c.
| GType gnc_plugin_page_owner_tree_get_type | ( | void | ) |
Retrieve the type number for an "owner tree" plugin page.
Definition at line 314 of file gnc-plugin-page-owner-tree.c.
| GncPluginPage * gnc_plugin_page_owner_tree_new | ( | GncOwnerType | owner_type | ) |
Create a new "owner tree" plugin page.
| owner_type | The owner type to create a page for. Can be any of the owner types defined in GnuCash, like vendor, customer,... |
Definition at line 342 of file gnc-plugin-page-owner-tree.c.
1.8.6