]> Dogcows Code - chaz/homebank/blob - src/homebank.h
import homebank-5.1.3
[chaz/homebank] / src / homebank.h
1 /* HomeBank -- Free, easy, personal accounting for everyone.
2 * Copyright (C) 1995-2017 Maxime DOYEN
3 *
4 * This file is part of HomeBank.
5 *
6 * HomeBank is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * HomeBank 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, see <http://www.gnu.org/licenses/>.
18 */
19
20 #ifndef _HOMEBANK_H_
21 #define _HOMEBANK_H_
22
23 #ifdef HAVE_CONFIG_H
24 #include <config.h>
25 #endif
26
27 #include <ctype.h> /* isprint */
28 #include <errno.h>
29 #include <math.h>
30 #include <libintl.h>
31 #include <locale.h>
32 #include <stdlib.h> /* atoi, atof, atol */
33 #include <string.h> /* memset, memcpy, strcmp, strcpy */
34 #include <time.h>
35
36 #include <glib.h>
37 #include <glib/gstdio.h>
38 #include <gtk/gtk.h>
39
40 #include "enums.h"
41 #include "hb-preferences.h"
42
43 #include "hb-transaction.h"
44 #include "hb-currency.h"
45 #include "hb-account.h"
46 #include "hb-archive.h"
47 #include "hb-assign.h"
48 #include "hb-category.h"
49 #include "hb-encoding.h"
50 #include "hb-export.h"
51 #include "hb-filter.h"
52 #include "hb-import.h"
53 #include "hb-misc.h"
54 #include "hb-payee.h"
55 #include "hb-report.h"
56 #include "hb-tag.h"
57 #include "hb-hbfile.h"
58 #include "hb-xml.h"
59
60 #include "ui-dialogs.h"
61 #include "ui-pref.h"
62 #include "ui-widgets.h"
63
64 #define _(str) gettext (str)
65 #define gettext_noop(str) (str)
66 #define N_(str) gettext_noop (str)
67
68 /* = = = = = = = = = = = = = = = = */
69 /* = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =*/
70
71 #define HB_UNSTABLE FALSE
72 #define HB_UNSTABLE_SHOW FALSE
73
74
75 #define HB_VERSION_MAJOR 5
76 #define HB_VERSION_MINOR 1
77 #define HB_VERSION_MICRO 3
78
79 #define HB_VERSION "5.1.3"
80 #define HB_VERSION_NUM (HB_VERSION_MAJOR*10000) + (HB_VERSION_MINOR*100) + HB_VERSION_MICRO
81
82 #define FILE_VERSION 1.2
83 #define PREF_VERSION 513
84
85 #if HB_UNSTABLE == FALSE
86 #define PROGNAME "HomeBank"
87 #define HB_DATA_PATH "homebank"
88 #else
89 #define PROGNAME "HomeBank " HB_VERSION " (unstable)"
90 #define HB_DATA_PATH "homebank_unstable"
91 #endif
92
93
94 #ifdef G_OS_WIN32
95 #define GETTEXT_PACKAGE "homebank"
96 #define LOCALE_DIR "locale"
97 #define PIXMAPS_DIR "images"
98 #define HELP_DIR "help"
99 #define PACKAGE_VERSION HB_VERSION
100 #define PACKAGE "homebank"
101 #define VERSION HB_VERSION
102
103 //#define PORTABLE_APP
104 //#define NOOFX
105
106 #define ENABLE_NLS 1
107 #endif
108
109
110 /* container spacing */
111 #define SPACING_TINY 3
112 #define SPACING_SMALL 6
113 #define SPACING_MEDIUM 12
114 #define SPACING_LARGE 18
115
116
117 #define HB_MINDATE 693596 //01/01/1900
118 #define HB_MAXDATE 803533 //31/12/2200
119
120 /* widget minimum width */
121 #define HB_MINWIDTH_LIST 161
122 #define HB_MINHEIGHT_LIST 260
123
124 #define HB_MINWIDTH_SEARCH 240
125 #define HB_MINWIDTH_COLUMN 48
126
127
128 /* miscellaneous */
129 #define PHI 1.61803399
130
131 /* official GTK_RESPONSE are negative */
132 #define GTK_RESPONSE_ADD 1
133 #define GTK_RESPONSE_ADDKEEP 2
134
135 #define HB_NUMBER_SAMPLE 1234567.89
136
137
138 typedef enum
139 {
140 FILETYPE_UNKNOW,
141 FILETYPE_HOMEBANK,
142 FILETYPE_OFX,
143 FILETYPE_QIF,
144 FILETYPE_CSV_HB,
145 // FILETYPE_AMIGA_HB,
146 NUM_FILETYPE
147 } HbFileType;
148
149
150 /* ---- icon size as defined into gtkiconfactory.c ---- */
151 /* GTK_ICON_SIZE_MENU 16
152 * GTK_ICON_SIZE_BUTTON 20
153 * GTK_ICON_SIZE_SMALL_TOOLBAR 18
154 * GTK_ICON_SIZE_LARGE_TOOLBAR 24 (default for toolbar)
155 * GTK_ICON_SIZE_DND 32
156 * GTK_ICON_SIZE_DIALOG 48
157 */
158
159 /* -------- named icons (Standard Icon Name) -------- */
160 #define ICONNAME_NEW "document-new"
161 #define ICONNAME_OPEN "document-open"
162 #define ICONNAME_SAVE "document-save"
163 #define ICONNAME_SAVE_AS "document-save-as" //obsolete
164 #define ICONNAME_REVERT "document-revert" //obsolete
165 #define ICONNAME_PRINT "document-print" //unused
166 #define ICONNAME_PROPERTIES "document-properties" //obsolete
167 #define ICONNAME_CLOSE "window-close" //obsolete
168 #define ICONNAME_QUIT "application-exit" //obsolete
169 #define ICONNAME_FIND "edit-find"
170 #define ICONNAME_CLEAR "edit-clear"
171 #define ICONNAME_WARNING "dialog-warning"
172 #define ICONNAME_ERROR "dialog-error"
173 #define ICONNAME_INFO "dialog-information"
174 #define ICONNAME_HELP "help-browser" //obsolete
175 #define ICONNAME_ABOUT "help-about" //obsolete
176 #define ICONNAME_PREFERENCES "preferences-system" //obsolete
177 #define ICONNAME_REFRESH "view-refresh"
178
179 #define ICONNAME_FOLDER "folder-symbolic"
180 #define ICONNAME_EMBLEM_SYSTEM "emblem-system-symbolic"
181
182
183 #define ICONNAME_LIST_ADD "list-add-symbolic"
184 #define ICONNAME_LIST_REMOVE "list-remove-symbolic"
185
186 //#define ICONNAME_HB_SCHED_SKIP "media-skip-forward"
187 //#define ICONNAME_HB_SCHED_POST "media-playback-start"
188
189 // custom or gnome not found
190 #define ICONNAME_HB_BUTTON_MENU "open-menu-symbolic"
191 #define ICONNAME_HB_TOGGLE_SIGN "toggle-sign-symbolic"
192
193
194 /* -------- named icons (Custom to homebank) -------- */
195 #define ICONNAME_HB_CURRENCY "hb-currency"
196 #define ICONNAME_HB_ACCOUNT "hb-account"
197 #define ICONNAME_HB_ARCHIVE "hb-archive"
198 #define ICONNAME_HB_ASSIGN "hb-assign"
199 #define ICONNAME_HB_BUDGET "hb-budget"
200 #define ICONNAME_HB_CATEGORY "hb-category"
201 #define ICONNAME_HB_PAYEE "hb-payee"
202 #define ICONNAME_HB_OPE_SHOW "hb-ope-show" //? "view-register
203 #define ICONNAME_HB_REP_STATS "hb-rep-stats"
204 #define ICONNAME_HB_REP_TIME "hb-rep-time"
205 #define ICONNAME_HB_REP_BALANCE "hb-rep-balance"
206 #define ICONNAME_HB_REP_BUDGET "hb-rep-budget"
207 #define ICONNAME_HB_REP_CAR "hb-rep-vehicle"
208
209 #define ICONNAME_HB_VIEW_LIST "hb-view-list" //"view-list-text"
210 #define ICONNAME_HB_VIEW_BAR "hb-view-bar" //"view-chart-bar"
211 #define ICONNAME_HB_VIEW_COLUMN "hb-view-column" //"view-chart-column"
212 #define ICONNAME_HB_VIEW_LINE "hb-view-line" //"view-chart-line"
213 #define ICONNAME_HB_VIEW_STACK "hb-view-stack" //"view-chart-stack"
214 #define ICONNAME_HB_VIEW_PIE "hb-view-pie" //"view-chart-pie"
215 #define ICONNAME_HB_VIEW_DONUT "hb-view-donut" //"view-chart-donut"
216 #define ICONNAME_HB_SHOW_LEGEND "hb-legend" //"view-legend"
217 #define ICONNAME_HB_SHOW_RATE "hb-rate" // obsolete ?
218 #define ICONNAME_HB_FILTER "hb-filter" //"edit-filter"
219
220 #define ICONNAME_HB_FILE_IMPORT "hb-file-import" //document-import
221 #define ICONNAME_HB_FILE_EXPORT "hb-file-export" //document-export
222 #define ICONNAME_HB_FILE_VALID "hb-file-valid"
223 #define ICONNAME_HB_FILE_INVALID "hb-file-invalid"
224
225 #define ICONNAME_HB_BUTTON_COLLAPSE "btn-collapse-symbolic"
226 #define ICONNAME_HB_BUTTON_EXPAND "btn-expand-symbolic"
227 #define ICONNAME_HB_BUTTON_SPLIT "btn-split"
228
229 #define ICONNAME_HB_OPE_AUTO "hb-ope-auto" //?
230 #define ICONNAME_HB_OPE_BUDGET "hb-ope-budget" //?
231 #define ICONNAME_HB_OPE_ADD "hb-ope-add" //? "edit-add"
232 #define ICONNAME_HB_OPE_HERIT "hb-ope-herit" //? "edit-clone"
233 #define ICONNAME_HB_OPE_EDIT "hb-ope-edit" //
234 #define ICONNAME_HB_OPE_MULTIEDIT "hb-ope-multiedit" //
235 #define ICONNAME_HB_OPE_DELETE "hb-ope-delete" //? "edit-delete"
236 #define ICONNAME_CONVERT "hb-ope-convert"
237 #define ICONNAME_HB_ASSIGN_RUN "hb-assign-run"
238
239 #define ICONNAME_HB_OPE_VALID "hb-ope-valid" // obsolete ?
240 #define ICONNAME_HB_OPE_CLEARED "hb-ope-cleared"
241 #define ICONNAME_HB_OPE_RECONCILED "hb-ope-reconciled"
242 #define ICONNAME_HB_OPE_REMIND "hb-ope-remind"
243
244
245
246 /*
247 ** Global application datas
248 */
249 struct HomeBank
250 {
251 // hbfile storage
252 GHashTable *h_cur; //currencies
253 GHashTable *h_acc; //accounts
254 GHashTable *h_pay; //payees
255 GHashTable *h_cat; //categories
256 GHashTable *h_tag; //tags
257 GHashTable *h_rul; //assign rules
258
259 GHashTable *h_memo; //memo/description
260
261 GList *arc_list; //archives
262
263 //#1419304 we keep the deleted txn to a stack trash
264 GTrashStack *txn_stk;
265
266 // hbfile (saved properties)
267 gchar *owner;
268 gshort auto_smode;
269 gshort auto_weekday;
270 gshort auto_nbdays;
271
272 guint32 vehicle_category;
273 guint32 kcur; // base currency
274
275 // hbfile (unsaved properties)
276 guint changes_count;
277 gboolean hbfile_is_new;
278 gchar *xhb_filepath;
279 gboolean xhb_hasbak; //file has backup (*.xhb~) used for revert menu sensitivity
280
281 // really global stuffs
282 gboolean first_run;
283 guint32 today; //today's date
284 gint define_off; //>0 when a stat, account window is opened
285 gboolean minor;
286
287 GtkWidget *mainwindow; //should be global to access attached window data
288 GtkIconTheme *icontheme;
289 //GdkPixbuf *lst_pixbuf[NUM_LST_PIXBUF];
290 //gint lst_pixbuf_maxwidth;
291
292 };
293
294 gint homebank_alienfile_recognize(gchar *filename);
295 gchar *homebank_filepath_with_extention(gchar *path, gchar *extension);
296 gchar *homebank_filename_without_extention(gchar *path);
297 void homebank_file_ensure_xhb(gchar *filename);
298 void homebank_backup_current_file(void);
299 gboolean homebank_util_url_show (const gchar *url);
300 gboolean homebank_lastopenedfiles_load(void);
301 gboolean homebank_lastopenedfiles_save(void);
302
303
304 void homebank_window_set_icon_from_file(GtkWindow *window, gchar *filename);
305
306 const gchar *homebank_app_get_config_dir (void);
307 const gchar *homebank_app_get_images_dir (void);
308 const gchar *homebank_app_get_pixmaps_dir (void);
309 const gchar *homebank_app_get_locale_dir (void);
310 const gchar *homebank_app_get_help_dir (void);
311 const gchar *homebank_app_get_datas_dir (void);
312 guint32 homebank_app_date_get_julian(void);
313
314 /* - - - - obsolete things - - - - */
315
316 /*
317 typedef struct _budget Budget;
318
319 struct _budget
320 {
321 guint key;
322 gushort flags;
323 guint cat_key;
324 guint year;
325 gdouble value[13];
326 };
327 */
328
329 /*
330 struct _investment
331 {
332 guint date;
333 gdouble buy_amount;
334 gdouble curr_amount;
335 gdouble commission;
336 guint number;
337 guint account;
338 gchar *name;
339 gchar *symbol;
340 gchar *note;
341 };
342 */
343
344 #endif
This page took 0.043392 seconds and 4 git commands to generate.