X-Git-Url: https://git.brokenzipper.com/gitweb?p=chaz%2Fhomebank;a=blobdiff_plain;f=src%2Fdsp-mainwindow.h;fp=src%2Fdsp_mainwindow.h;h=b53bf6a87f138482866cd47dfd237a4094451b63;hp=06e1906f6c30de7b7e5509f88216a5fe6a381b15;hb=236cb5e47660876f46488ea8f76ecd5bebfa1fac;hpb=8892e90b335f94c296462a91534334b674226cd9 diff --git a/src/dsp_mainwindow.h b/src/dsp-mainwindow.h similarity index 88% rename from src/dsp_mainwindow.h rename to src/dsp-mainwindow.h index 06e1906..b53bf6a 100644 --- a/src/dsp_mainwindow.h +++ b/src/dsp-mainwindow.h @@ -1,5 +1,5 @@ /* HomeBank -- Free, easy, personal accounting for everyone. - * Copyright (C) 1995-2018 Maxime DOYEN + * Copyright (C) 1995-2019 Maxime DOYEN * * This file is part of HomeBank. * @@ -43,6 +43,7 @@ struct hbfile_data GtkWidget *RE_pie; GtkWidget *GR_upc; + GtkWidget *LV_upc; GtkWidget *LB_maxpostdate; GtkWidget *BT_sched_skip; @@ -50,7 +51,11 @@ struct hbfile_data GtkWidget *BT_sched_editpost; GtkWidget *RA_type; - + + GtkWidget *stack; + // max is 2=HUB_TXN_TYPE_REMIND, so 3 elt + GtkWidget *LV_txn[3]; + gchar *wintitle; Account *acc; @@ -80,6 +85,18 @@ struct hbfile_data }; +typedef struct _pnlaccgrp PnlAccGrp; + +struct _pnlaccgrp +{ + GPtrArray *acclist; + gboolean expanded; +}; + +//temporary ? +void ui_mainwindow_defarchive(Archive *arc); + + GtkWidget *create_hbfile_window(GtkWidget *do_widget); void ui_mainwindow_populate_accounts(GtkWidget *widget, gpointer user_data); gboolean ui_mainwindow_open_backup_check_confirm(gchar *filepath);