GnuCash  2.6.99
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Files | Data Structures | Macros | Typedefs | Enumerations | Functions
TaxTable

Files

file  gncTaxTable.h
 Tax Table programming interface.
 

Data Structures

struct  _gncAccountValue
 
struct  GncTaxTable
 
struct  GncTaxTableEntry
 

Macros

#define GNC_ID_TAXTABLE   "gncTaxTable"
 
#define GNC_TYPE_TAXTABLE   (gnc_taxtable_get_type ())
 
#define GNC_TAXTABLE(o)   (G_TYPE_CHECK_INSTANCE_CAST ((o), GNC_TYPE_TAXTABLE, GncTaxTable))
 
#define GNC_TAXTABLE_CLASS(k)   (G_TYPE_CHECK_CLASS_CAST((k), GNC_TYPE_TAXTABLE, GncTaxTableClass))
 
#define GNC_IS_TAXTABLE(o)   (G_TYPE_CHECK_INSTANCE_TYPE ((o), GNC_TYPE_TAXTABLE))
 
#define GNC_IS_TAXTABLE_CLASS(k)   (G_TYPE_CHECK_CLASS_TYPE ((k), GNC_TYPE_TAXTABLE))
 
#define GNC_TAXTABLE_GET_CLASS(o)   (G_TYPE_INSTANCE_GET_CLASS ((o), GNC_TYPE_TAXTABLE, GncTaxTableClass))
 
#define GNC_TT_NAME   "tax table name"
 
#define GNC_TT_REFCOUNT   "reference count"
 
#define gncTaxTableGetGUID(x)   qof_instance_get_guid(QOF_INSTANCE(x))
 
#define gncTaxTableRetGUID(x)   (x ? *(qof_instance_get_guid(QOF_INSTANCE(x))) : *(guid_null()))
 
#define gncTaxTableLookupDirect(G, B)   gncTaxTableLookup((B), &(G))
 

Typedefs

typedef struct _gncTaxTable GncTaxTable
 
typedef struct _gncTaxTableClass GncTaxTableClass
 
typedef struct _gncTaxTableEntry GncTaxTableEntry
 
typedef struct _gncAccountValue GncAccountValue
 

Enumerations

enum  GncAmountType { GNC_AMT_TYPE_VALUE = 1, GNC_AMT_TYPE_PERCENT }
 
enum  GncTaxIncluded { GNC_TAXINCLUDED_YES = 1, GNC_TAXINCLUDED_NO, GNC_TAXINCLUDED_USEGLOBAL }
 

Functions

GType gnc_taxtable_get_type (void)
 
const char * gncAmountTypeToString (GncAmountType type)
 
gboolean gncAmountStringToType (const char *str, GncAmountType *type)
 
const char * gncTaxIncludedTypeToString (GncTaxIncluded type)
 
gboolean gncTaxIncludedStringToType (const char *str, GncTaxIncluded *type)
 
void gncTaxTableAddEntry (GncTaxTable *table, GncTaxTableEntry *entry)
 
void gncTaxTableRemoveEntry (GncTaxTable *table, GncTaxTableEntry *entry)
 
void gncTaxTableChanged (GncTaxTable *table)
 
void gncTaxTableBeginEdit (GncTaxTable *table)
 
void gncTaxTableCommitEdit (GncTaxTable *table)
 
gboolean gncTaxTableEqual (const GncTaxTable *a, const GncTaxTable *b)
 
int gncTaxTableCompare (const GncTaxTable *a, const GncTaxTable *b)
 
int gncTaxTableEntryCompare (const GncTaxTableEntry *a, const GncTaxTableEntry *b)
 
gboolean gncTaxTableEntryEqual (const GncTaxTableEntry *a, const GncTaxTableEntry *b)
 
GList * gncAccountValueAdd (GList *list, Account *acc, gnc_numeric value)
 
GList * gncAccountValueAddList (GList *l1, GList *l2)
 
gnc_numeric gncAccountValueTotal (GList *list)
 
void gncAccountValueDestroy (GList *list)
 

Create/Destroy Functions

GncTaxTablegncTaxTableCreate (QofBook *book)
 
void gncTaxTableDestroy (GncTaxTable *table)
 
GncTaxTableEntrygncTaxTableEntryCreate (void)
 
void gncTaxTableEntryDestroy (GncTaxTableEntry *entry)
 

Set Functions

void gncTaxTableSetName (GncTaxTable *table, const char *name)
 
void gncTaxTableIncRef (GncTaxTable *table)
 
void gncTaxTableDecRef (GncTaxTable *table)
 
void gncTaxTableEntrySetAccount (GncTaxTableEntry *entry, Account *account)
 
void gncTaxTableEntrySetType (GncTaxTableEntry *entry, GncAmountType type)
 
void gncTaxTableEntrySetAmount (GncTaxTableEntry *entry, gnc_numeric amount)
 

Get Functions

typedef GList GncTaxTableEntryList
 
GncTaxTablegncTaxTableLookupByName (QofBook *book, const char *name)
 
GList * gncTaxTableGetTables (QofBook *book)
 
const char * gncTaxTableGetName (const GncTaxTable *table)
 
GncTaxTablegncTaxTableGetParent (const GncTaxTable *table)
 
GncTaxTablegncTaxTableReturnChild (GncTaxTable *table, gboolean make_new)
 
GncTaxTableEntryList * gncTaxTableGetEntries (const GncTaxTable *table)
 
gint64 gncTaxTableGetRefcount (const GncTaxTable *table)
 
Timespec gncTaxTableLastModified (const GncTaxTable *table)
 
AccountgncTaxTableEntryGetAccount (const GncTaxTableEntry *entry)
 
GncAmountType gncTaxTableEntryGetType (const GncTaxTableEntry *entry)
 
gnc_numeric gncTaxTableEntryGetAmount (const GncTaxTableEntry *entry)
 
#define gncTaxTableGetChild(t)   gncTaxTableReturnChild((t),FALSE)
 

Detailed Description

Macro Definition Documentation

#define GNC_TT_NAME   "tax table name"

QOF parameter definitions

Definition at line 199 of file gncTaxTable.h.

#define gncTaxTableGetGUID (   x)    qof_instance_get_guid(QOF_INSTANCE(x))
Deprecated:
routine

Definition at line 203 of file gncTaxTable.h.

Enumeration Type Documentation

How to interpret the amount. You can interpret it as a VALUE or a PERCENT.

Enumerator
GNC_AMT_TYPE_VALUE 

tax is a number

GNC_AMT_TYPE_PERCENT 

tax is a percentage

Definition at line 93 of file gncTaxTable.h.

How to interpret the TaxIncluded

Enumerator
GNC_TAXINCLUDED_YES 

tax is included

GNC_TAXINCLUDED_NO 

tax is not included

GNC_TAXINCLUDED_USEGLOBAL 

use the global setting

Definition at line 100 of file gncTaxTable.h.

Function Documentation

GList* gncAccountValueAdd ( GList *  list,
Account acc,
gnc_numeric  value 
)

This will add value to the account-value for acc, creating a new list object if necessary

Definition at line 923 of file gncTaxTable.c.

924 {
925  GList *li;
926  GncAccountValue *res = NULL;
927 
928  g_return_val_if_fail (acc, list);
929  g_return_val_if_fail (gnc_numeric_check (value) == GNC_ERROR_OK, list);
930 
931  /* Try to find the account in the list */
932  for (li = list; li; li = li->next)
933  {
934  res = li->data;
935  if (res->account == acc)
936  {
937  res->value = gnc_numeric_add (res->value, value, GNC_DENOM_AUTO,
939  return list;
940  }
941  }
942  /* Nope, didn't find it. */
943 
944  res = g_new0 (GncAccountValue, 1);
945  res->account = acc;
946  res->value = value;
947  return g_list_prepend (list, res);
948 }
gnc_numeric gnc_numeric_add(gnc_numeric a, gnc_numeric b, gint64 denom, gint how)
GNCNumericErrorCode gnc_numeric_check(gnc_numeric a)
#define GNC_DENOM_AUTO
Definition: gnc-numeric.h:246
GList* gncAccountValueAddList ( GList *  l1,
GList *  l2 
)

Merge l2 into l1. l2 is not touched.

Definition at line 951 of file gncTaxTable.c.

952 {
953  GList *li;
954 
955  for (li = l2; li; li = li->next )
956  {
957  GncAccountValue *val = li->data;
958  l1 = gncAccountValueAdd (l1, val->account, val->value);
959  }
960 
961  return l1;
962 }
GList * gncAccountValueAdd(GList *list, Account *acc, gnc_numeric value)
Definition: gncTaxTable.c:923
void gncAccountValueDestroy ( GList *  list)

Destroy a list of accountvalues

Definition at line 978 of file gncTaxTable.c.

979 {
980  GList *node;
981  for ( node = list; node ; node = node->next)
982  g_free (node->data);
983 
984  g_list_free (list);
985 }
gnc_numeric gncAccountValueTotal ( GList *  list)

return the total for this list

Definition at line 965 of file gncTaxTable.c.

966 {
967  gnc_numeric total = gnc_numeric_zero ();
968 
969  for ( ; list ; list = list->next)
970  {
971  GncAccountValue *val = list->data;
972  total = gnc_numeric_add (total, val->value, GNC_DENOM_AUTO, GNC_HOW_DENOM_LCD);
973  }
974  return total;
975 }
gnc_numeric gnc_numeric_add(gnc_numeric a, gnc_numeric b, gint64 denom, gint how)
#define GNC_DENOM_AUTO
Definition: gnc-numeric.h:246