mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Remove private header files that are only used by one .c file.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@2824 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
78f978cc54
commit
2104ee86ac
@ -41,7 +41,6 @@ gnomeapp_DATA = gnucash.desktop
|
|||||||
|
|
||||||
noinst_HEADERS = \
|
noinst_HEADERS = \
|
||||||
account-tree.h \
|
account-tree.h \
|
||||||
account-treeP.h \
|
|
||||||
cursors.h \
|
cursors.h \
|
||||||
dialog-account.h \
|
dialog-account.h \
|
||||||
dialog-account-picker.h \
|
dialog-account-picker.h \
|
||||||
@ -66,11 +65,9 @@ noinst_HEADERS = \
|
|||||||
print-session.h \
|
print-session.h \
|
||||||
query-user.h \
|
query-user.h \
|
||||||
reconcile-list.h \
|
reconcile-list.h \
|
||||||
reconcile-listP.h \
|
|
||||||
window-help.h \
|
window-help.h \
|
||||||
window-html.h \
|
window-html.h \
|
||||||
window-main.h \
|
window-main.h \
|
||||||
window-mainP.h \
|
|
||||||
window-reconcile.h \
|
window-reconcile.h \
|
||||||
window-register.h \
|
window-register.h \
|
||||||
window-report.h
|
window-report.h
|
||||||
|
@ -125,7 +125,7 @@ gnomeappdir = ${datadir}/gnome/apps/Applications
|
|||||||
|
|
||||||
gnomeapp_DATA = gnucash.desktop
|
gnomeapp_DATA = gnucash.desktop
|
||||||
|
|
||||||
noinst_HEADERS = account-tree.h account-treeP.h cursors.h dialog-account.h dialog-account-picker.h dialog-budget.h dialog-fincalc.h dialog-find-transactions.h dialog-options.h dialog-print-check.h dialog-qif-import.h dialog-totd.h dialog-transfer.h dialog-utils.h extensions.h glade-cb-gnc-dialogs.h glade-gnc-dialogs.h glade-support-gnc-dialogs.h gnc-currency-edit.h gnc-datedelta.h gnc-dateedit.h gnome-top-level.h gtkselect.h print-session.h query-user.h reconcile-list.h reconcile-listP.h window-help.h window-html.h window-main.h window-mainP.h window-reconcile.h window-register.h window-report.h
|
noinst_HEADERS = account-tree.h cursors.h dialog-account.h dialog-account-picker.h dialog-budget.h dialog-fincalc.h dialog-find-transactions.h dialog-options.h dialog-print-check.h dialog-qif-import.h dialog-totd.h dialog-transfer.h dialog-utils.h extensions.h glade-cb-gnc-dialogs.h glade-gnc-dialogs.h glade-support-gnc-dialogs.h gnc-currency-edit.h gnc-datedelta.h gnc-dateedit.h gnome-top-level.h gtkselect.h print-session.h query-user.h reconcile-list.h window-help.h window-html.h window-main.h window-reconcile.h window-register.h window-report.h
|
||||||
|
|
||||||
|
|
||||||
EXTRA_DIST = .cvsignore gnc-dialogs.glade gnucash.desktop
|
EXTRA_DIST = .cvsignore gnc-dialogs.glade gnucash.desktop
|
||||||
|
@ -34,15 +34,51 @@
|
|||||||
#include "FileDialog.h"
|
#include "FileDialog.h"
|
||||||
#include "window-main.h"
|
#include "window-main.h"
|
||||||
#include "dialog-utils.h"
|
#include "dialog-utils.h"
|
||||||
#include "account-treeP.h"
|
#include "account-tree.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
|
||||||
|
|
||||||
|
/* Signal codes */
|
||||||
|
enum
|
||||||
|
{
|
||||||
|
SELECT_ACCOUNT,
|
||||||
|
UNSELECT_ACCOUNT,
|
||||||
|
ACTIVATE_ACCOUNT,
|
||||||
|
LAST_SIGNAL
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/** Static Globals ****************************************************/
|
||||||
static GtkCTreeClass *parent_class = NULL;
|
static GtkCTreeClass *parent_class = NULL;
|
||||||
static guint account_tree_signals[LAST_SIGNAL];
|
static guint account_tree_signals[LAST_SIGNAL];
|
||||||
|
|
||||||
static GSList *account_trees = NULL;
|
static GSList *account_trees = NULL;
|
||||||
|
|
||||||
|
|
||||||
|
/** Static function declarations **************************************/
|
||||||
|
static void gnc_account_tree_init(GNCAccountTree *tree);
|
||||||
|
static void gnc_account_tree_class_init(GNCAccountTreeClass *klass);
|
||||||
|
static gint gnc_account_tree_key_press(GtkWidget *widget, GdkEventKey *event);
|
||||||
|
static gint gnc_account_tree_button_press(GtkWidget *widget,
|
||||||
|
GdkEventButton *event);
|
||||||
|
static void gnc_account_tree_select_row(GtkCTree *ctree,
|
||||||
|
GtkCTreeNode *row,
|
||||||
|
gint column);
|
||||||
|
static void gnc_account_tree_unselect_row(GtkCTree *ctree,
|
||||||
|
GtkCTreeNode *row,
|
||||||
|
gint column);
|
||||||
|
static GtkCTreeNode * gnc_account_tree_insert_row(GNCAccountTree *tree,
|
||||||
|
GtkCTreeNode *parent,
|
||||||
|
GtkCTreeNode *sibling,
|
||||||
|
Account *acc);
|
||||||
|
static void gnc_account_tree_fill(GNCAccountTree *tree,
|
||||||
|
GHashTable *expanded_accounts,
|
||||||
|
GtkCTreeNode *parent,
|
||||||
|
AccountGroup *accts);
|
||||||
|
static void gnc_account_tree_set_view_info_real(GNCAccountTree *tree);
|
||||||
|
static void gnc_account_tree_update_column_visibility (GNCAccountTree *tree);
|
||||||
|
static void gnc_account_tree_destroy(GtkObject *object);
|
||||||
|
|
||||||
|
|
||||||
GtkType
|
GtkType
|
||||||
gnc_account_tree_get_type()
|
gnc_account_tree_get_type()
|
||||||
{
|
{
|
||||||
|
@ -1,73 +0,0 @@
|
|||||||
/********************************************************************\
|
|
||||||
* account-treeP.h -- private GNOME account tree functions *
|
|
||||||
* Copyright (C) 1998,1999 Linas Vepstas *
|
|
||||||
* Copyright (C) 2000 Dave Peticolas <peticola@cs.ucdavis.edu> *
|
|
||||||
* *
|
|
||||||
* This program is free software; you can redistribute it and/or *
|
|
||||||
* modify it under the terms of the GNU General Public License as *
|
|
||||||
* published by the Free Software Foundation; either version 2 of *
|
|
||||||
* the License, or (at your option) any later version. *
|
|
||||||
* *
|
|
||||||
* This program is distributed in the hope that it will be useful, *
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
||||||
* GNU General Public License for more details. *
|
|
||||||
* *
|
|
||||||
* You should have received a copy of the GNU General Public License*
|
|
||||||
* along with this program; if not, contact: *
|
|
||||||
* *
|
|
||||||
* Free Software Foundation Voice: +1-617-542-5942 *
|
|
||||||
* 59 Temple Place - Suite 330 Fax: +1-617-542-2652 *
|
|
||||||
* Boston, MA 02111-1307, USA gnu@gnu.org *
|
|
||||||
\********************************************************************/
|
|
||||||
|
|
||||||
#ifndef __ACCOUNT_TREEP_H__
|
|
||||||
#define __ACCOUNT_TREEP_H__
|
|
||||||
|
|
||||||
#include "account-tree.h"
|
|
||||||
|
|
||||||
|
|
||||||
enum
|
|
||||||
{
|
|
||||||
SELECT_ACCOUNT,
|
|
||||||
UNSELECT_ACCOUNT,
|
|
||||||
ACTIVATE_ACCOUNT,
|
|
||||||
LAST_SIGNAL
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
/** PROTOTYPES ******************************************************/
|
|
||||||
static void gnc_account_tree_init(GNCAccountTree *tree);
|
|
||||||
|
|
||||||
static void gnc_account_tree_class_init(GNCAccountTreeClass *klass);
|
|
||||||
|
|
||||||
static gint gnc_account_tree_key_press(GtkWidget *widget, GdkEventKey *event);
|
|
||||||
|
|
||||||
static gint gnc_account_tree_button_press(GtkWidget *widget,
|
|
||||||
GdkEventButton *event);
|
|
||||||
|
|
||||||
static void gnc_account_tree_select_row(GtkCTree *ctree,
|
|
||||||
GtkCTreeNode *row,
|
|
||||||
gint column);
|
|
||||||
|
|
||||||
static void gnc_account_tree_unselect_row(GtkCTree *ctree,
|
|
||||||
GtkCTreeNode *row,
|
|
||||||
gint column);
|
|
||||||
|
|
||||||
static GtkCTreeNode * gnc_account_tree_insert_row(GNCAccountTree *tree,
|
|
||||||
GtkCTreeNode *parent,
|
|
||||||
GtkCTreeNode *sibling,
|
|
||||||
Account *acc);
|
|
||||||
|
|
||||||
static void gnc_account_tree_fill(GNCAccountTree *tree,
|
|
||||||
GHashTable *expanded_accounts,
|
|
||||||
GtkCTreeNode *parent,
|
|
||||||
AccountGroup *accts);
|
|
||||||
|
|
||||||
static void gnc_account_tree_set_view_info_real(GNCAccountTree *tree);
|
|
||||||
|
|
||||||
static void gnc_account_tree_update_column_visibility (GNCAccountTree *tree);
|
|
||||||
|
|
||||||
static void gnc_account_tree_destroy(GtkObject *object);
|
|
||||||
|
|
||||||
#endif
|
|
@ -27,7 +27,7 @@
|
|||||||
#include <gnome.h>
|
#include <gnome.h>
|
||||||
|
|
||||||
#include "gnucash.h"
|
#include "gnucash.h"
|
||||||
#include "reconcile-listP.h"
|
#include "reconcile-list.h"
|
||||||
#include "dialog-utils.h"
|
#include "dialog-utils.h"
|
||||||
#include "FileDialog.h"
|
#include "FileDialog.h"
|
||||||
#include "messages.h"
|
#include "messages.h"
|
||||||
@ -35,10 +35,30 @@
|
|||||||
#include "util.h"
|
#include "util.h"
|
||||||
|
|
||||||
|
|
||||||
|
/* Signal codes */
|
||||||
|
enum
|
||||||
|
{
|
||||||
|
TOGGLE_RECONCILED,
|
||||||
|
LAST_SIGNAL
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
/** Static Globals ****************************************************/
|
||||||
static GtkCListClass *parent_class = NULL;
|
static GtkCListClass *parent_class = NULL;
|
||||||
static guint reconcile_list_signals[LAST_SIGNAL] = {0};
|
static guint reconcile_list_signals[LAST_SIGNAL] = {0};
|
||||||
|
|
||||||
|
|
||||||
|
/** Static function declarations **************************************/
|
||||||
|
static void gnc_reconcile_list_init(GNCReconcileList *list);
|
||||||
|
static void gnc_reconcile_list_class_init(GNCReconcileListClass *klass);
|
||||||
|
static void gnc_reconcile_list_select_row(GtkCList *clist, gint row,
|
||||||
|
gint column, GdkEvent *event);
|
||||||
|
static void gnc_reconcile_list_unselect_row(GtkCList *clist, gint row,
|
||||||
|
gint column, GdkEvent *event);
|
||||||
|
static void gnc_reconcile_list_destroy(GtkObject *object);
|
||||||
|
static void gnc_reconcile_list_fill(GNCReconcileList *list);
|
||||||
|
|
||||||
|
|
||||||
GtkType
|
GtkType
|
||||||
gnc_reconcile_list_get_type()
|
gnc_reconcile_list_get_type()
|
||||||
{
|
{
|
||||||
|
@ -1,51 +0,0 @@
|
|||||||
/********************************************************************\
|
|
||||||
* reconcile-listP.h -- private GNOME reconcile list functions *
|
|
||||||
* Copyright (C) 1998,1999 Linas Vepstas *
|
|
||||||
* *
|
|
||||||
* This program is free software; you can redistribute it and/or *
|
|
||||||
* modify it under the terms of the GNU General Public License as *
|
|
||||||
* published by the Free Software Foundation; either version 2 of *
|
|
||||||
* the License, or (at your option) any later version. *
|
|
||||||
* *
|
|
||||||
* This program is distributed in the hope that it will be useful, *
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
||||||
* GNU General Public License for more details. *
|
|
||||||
* *
|
|
||||||
* You should have received a copy of the GNU General Public License*
|
|
||||||
* along with this program; if not, contact: *
|
|
||||||
* *
|
|
||||||
* Free Software Foundation Voice: +1-617-542-5942 *
|
|
||||||
* 59 Temple Place - Suite 330 Fax: +1-617-542-2652 *
|
|
||||||
* Boston, MA 02111-1307, USA gnu@gnu.org *
|
|
||||||
\********************************************************************/
|
|
||||||
|
|
||||||
#ifndef __RECONCILE_LISTP_H__
|
|
||||||
#define __RECONCILE_LISTP_H__
|
|
||||||
|
|
||||||
#include "reconcile-list.h"
|
|
||||||
|
|
||||||
|
|
||||||
enum
|
|
||||||
{
|
|
||||||
TOGGLE_RECONCILED,
|
|
||||||
LAST_SIGNAL
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
static void gnc_reconcile_list_init(GNCReconcileList *list);
|
|
||||||
|
|
||||||
static void gnc_reconcile_list_class_init(GNCReconcileListClass *klass);
|
|
||||||
|
|
||||||
static void gnc_reconcile_list_select_row(GtkCList *clist, gint row,
|
|
||||||
gint column, GdkEvent *event);
|
|
||||||
|
|
||||||
static void gnc_reconcile_list_unselect_row(GtkCList *clist, gint row,
|
|
||||||
gint column, GdkEvent *event);
|
|
||||||
|
|
||||||
static void gnc_reconcile_list_destroy(GtkObject *object);
|
|
||||||
|
|
||||||
static void gnc_reconcile_list_fill(GNCReconcileList *list);
|
|
||||||
|
|
||||||
|
|
||||||
#endif
|
|
@ -43,7 +43,6 @@
|
|||||||
#include "RegWindow.h"
|
#include "RegWindow.h"
|
||||||
#include "Refresh.h"
|
#include "Refresh.h"
|
||||||
#include "window-main.h"
|
#include "window-main.h"
|
||||||
#include "window-mainP.h"
|
|
||||||
#include "window-reconcile.h"
|
#include "window-reconcile.h"
|
||||||
#include "window-register.h"
|
#include "window-register.h"
|
||||||
#include "window-help.h"
|
#include "window-help.h"
|
||||||
@ -55,13 +54,27 @@
|
|||||||
#include "dialog-find-transactions.h"
|
#include "dialog-find-transactions.h"
|
||||||
#include "dialog-totd.h"
|
#include "dialog-totd.h"
|
||||||
#include "file-history.h"
|
#include "file-history.h"
|
||||||
|
#include "gtkselect.h"
|
||||||
#include "EuroUtils.h"
|
#include "EuroUtils.h"
|
||||||
#include "Scrub.h"
|
#include "Scrub.h"
|
||||||
#include "util.h"
|
#include "util.h"
|
||||||
#include "gnc.h"
|
#include "gnc.h"
|
||||||
|
|
||||||
#include "gtkselect.h"
|
|
||||||
|
|
||||||
|
/* Main Window information structure */
|
||||||
|
typedef struct _GNCMainInfo GNCMainInfo;
|
||||||
|
struct _GNCMainInfo
|
||||||
|
{
|
||||||
|
GtkWidget *account_tree;
|
||||||
|
GtkWidget *totals_combo;
|
||||||
|
GList *totals_list;
|
||||||
|
|
||||||
|
SCM main_window_change_callback_id;
|
||||||
|
SCM euro_change_callback_id;
|
||||||
|
SCM toolbar_change_callback_id;
|
||||||
|
|
||||||
|
GSList *account_sensitives;
|
||||||
|
};
|
||||||
|
|
||||||
/* This static indicates the debugging module that this .o belongs to. */
|
/* This static indicates the debugging module that this .o belongs to. */
|
||||||
static short module = MOD_GUI;
|
static short module = MOD_GUI;
|
||||||
@ -76,14 +89,16 @@ enum {
|
|||||||
FMB_QUIT,
|
FMB_QUIT,
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/** Static function declarations ***************************************/
|
||||||
* An accumulator for a given currency.
|
static GNCMainInfo * gnc_get_main_info();
|
||||||
|
|
||||||
|
|
||||||
|
/* An accumulator for a given currency.
|
||||||
*
|
*
|
||||||
* This is used during the update to the status bar to contain the
|
* This is used during the update to the status bar to contain the
|
||||||
* accumulation for a single currency. These are placed in a GList and
|
* accumulation for a single currency. These are placed in a GList and
|
||||||
* kept around for the duration of the calculation. There may, in fact
|
* kept around for the duration of the calculation. There may, in fact
|
||||||
* be better ways to do this, but none occurred.
|
* be better ways to do this, but none occurred. */
|
||||||
*/
|
|
||||||
struct _GNCCurrencyAcc {
|
struct _GNCCurrencyAcc {
|
||||||
const char *currency;
|
const char *currency;
|
||||||
double assets;
|
double assets;
|
||||||
@ -91,13 +106,11 @@ struct _GNCCurrencyAcc {
|
|||||||
};
|
};
|
||||||
typedef struct _GNCCurrencyAcc GNCCurrencyAcc;
|
typedef struct _GNCCurrencyAcc GNCCurrencyAcc;
|
||||||
|
|
||||||
/*
|
/* An item to appear in the selector box in the status bar.
|
||||||
* An item to appear in the selector box in the status bar.
|
|
||||||
*
|
*
|
||||||
* This is maintained for the duration, where there is one per currency,
|
* This is maintained for the duration, where there is one per
|
||||||
* plus (eventually) one for the default currency accumulation (like the
|
* currency, plus (eventually) one for the default currency
|
||||||
* EURO).
|
* accumulation (like the EURO). */
|
||||||
*/
|
|
||||||
struct _GNCCurrencyItem {
|
struct _GNCCurrencyItem {
|
||||||
const char *currency;
|
const char *currency;
|
||||||
GtkWidget *listitem;
|
GtkWidget *listitem;
|
||||||
@ -107,13 +120,11 @@ struct _GNCCurrencyItem {
|
|||||||
};
|
};
|
||||||
typedef struct _GNCCurrencyItem GNCCurrencyItem;
|
typedef struct _GNCCurrencyItem GNCCurrencyItem;
|
||||||
|
|
||||||
/*
|
/* Build a single currency item.
|
||||||
* Build a single currency item.
|
|
||||||
*
|
*
|
||||||
* This function handles the building of a single currency item for the
|
* This function handles the building of a single currency item for
|
||||||
* selector. It looks like the old code in the update function, but now
|
* the selector. It looks like the old code in the update function,
|
||||||
* only handles a single currency.
|
* but now only handles a single currency. */
|
||||||
*/
|
|
||||||
static GNCCurrencyItem *
|
static GNCCurrencyItem *
|
||||||
gnc_ui_build_currency_item(const char *currency)
|
gnc_ui_build_currency_item(const char *currency)
|
||||||
{
|
{
|
||||||
@ -177,13 +188,10 @@ gnc_ui_build_currency_item(const char *currency)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/* Get a currency accumulator.
|
||||||
* Get a currency accumulator.
|
|
||||||
*
|
*
|
||||||
* This will search the given list, and if no accumulator is found, wil
|
* This will search the given list, and if no accumulator is found,
|
||||||
* allocate a fresh one. This may cause problems with currencies that have
|
* will allocate a fresh one. */
|
||||||
* the same name... let the buyer beware.
|
|
||||||
*/
|
|
||||||
static GNCCurrencyAcc *
|
static GNCCurrencyAcc *
|
||||||
gnc_ui_get_currency_accumulator(GList **list, const char *currency)
|
gnc_ui_get_currency_accumulator(GList **list, const char *currency)
|
||||||
{
|
{
|
||||||
@ -207,15 +215,13 @@ gnc_ui_get_currency_accumulator(GList **list, const char *currency)
|
|||||||
return found;
|
return found;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/* Get a currency item.
|
||||||
* Get a currency item.
|
|
||||||
*
|
*
|
||||||
* This will search the given list, and if no accumulator is found, will
|
* This will search the given list, and if no accumulator is found, will
|
||||||
* create a fresh one.
|
* create a fresh one.
|
||||||
*
|
*
|
||||||
* It looks just like the function above, with some extra stuff to get the
|
* It looks just like the function above, with some extra stuff to get
|
||||||
* item into the list.
|
* the item into the list. */
|
||||||
*/
|
|
||||||
static GNCCurrencyItem *
|
static GNCCurrencyItem *
|
||||||
gnc_ui_get_currency_item(GList **list, const char *currency, GtkWidget *holder)
|
gnc_ui_get_currency_item(GList **list, const char *currency, GtkWidget *holder)
|
||||||
{
|
{
|
||||||
|
@ -1,76 +0,0 @@
|
|||||||
/*******************************************************************\
|
|
||||||
* window-main.h -- private GNOME main window functions *
|
|
||||||
* Copyright (C) 1997 Robin D. Clark *
|
|
||||||
* *
|
|
||||||
* This program is free software; you can redistribute it and/or *
|
|
||||||
* modify it under the terms of the GNU General Public License as *
|
|
||||||
* published by the Free Software Foundation; either version 2 of *
|
|
||||||
* the License, or (at your option) any later version. *
|
|
||||||
* *
|
|
||||||
* This program is distributed in the hope that it will be useful, *
|
|
||||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
||||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
||||||
* GNU General Public License for more details. *
|
|
||||||
* *
|
|
||||||
|
|
||||||
* You should have received a copy of the GNU General Public License*
|
|
||||||
* along with this program; if not, contact: *
|
|
||||||
* *
|
|
||||||
* Free Software Foundation Voice: +1-617-542-5942 *
|
|
||||||
* 59 Temple Place - Suite 330 Fax: +1-617-542-2652 *
|
|
||||||
* Boston, MA 02111-1307, USA gnu@gnu.org *
|
|
||||||
\********************************************************************/
|
|
||||||
|
|
||||||
#ifndef __WINDOW_MAINP_H__
|
|
||||||
#define __WINDOW_MAINP_H__
|
|
||||||
|
|
||||||
|
|
||||||
typedef struct _GNCMainInfo GNCMainInfo;
|
|
||||||
struct _GNCMainInfo
|
|
||||||
{
|
|
||||||
GtkWidget *account_tree;
|
|
||||||
GtkWidget *totals_combo;
|
|
||||||
GList *totals_list;
|
|
||||||
|
|
||||||
SCM main_window_change_callback_id;
|
|
||||||
SCM euro_change_callback_id;
|
|
||||||
SCM toolbar_change_callback_id;
|
|
||||||
|
|
||||||
GSList *account_sensitives;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
/** PROTOTYPES ******************************************************/
|
|
||||||
static void gnc_ui_refresh_statusbar(void);
|
|
||||||
static void gnc_ui_exit_cb(GtkWidget *widget, gpointer data);
|
|
||||||
static void gnc_ui_about_cb(GtkWidget *widget, gpointer data);
|
|
||||||
static void gnc_ui_help_cb(GtkWidget *widget, gpointer data);
|
|
||||||
static void gnc_ui_add_account(GtkWidget *widget, gpointer data);
|
|
||||||
static void gnc_ui_delete_account_cb(GtkWidget *widget, gpointer data);
|
|
||||||
static void gnc_ui_mainWindow_toolbar_open(GtkWidget *widget, gpointer data);
|
|
||||||
static void gnc_ui_mainWindow_toolbar_open_subs(GtkWidget *widget,
|
|
||||||
gpointer data);
|
|
||||||
static void gnc_ui_mainWindow_toolbar_edit(GtkWidget *widget, gpointer data);
|
|
||||||
static void gnc_ui_mainWindow_reconcile(GtkWidget *widget, gpointer data);
|
|
||||||
static void gnc_ui_mainWindow_transfer(GtkWidget *widget, gpointer data);
|
|
||||||
static void gnc_ui_mainWindow_adjust_balance(GtkWidget *widget, gpointer data);
|
|
||||||
static void gnc_ui_mainWindow_scrub(GtkWidget *widget, gpointer data);
|
|
||||||
static void gnc_ui_mainWindow_scrub_sub(GtkWidget *widget, gpointer data);
|
|
||||||
static void gnc_ui_mainWindow_scrub_all(GtkWidget *widget, gpointer data);
|
|
||||||
static void gnc_ui_options_cb(GtkWidget *widget, gpointer data);
|
|
||||||
static void gnc_ui_filemenu_cb(GtkWidget *widget, gpointer menuItem);
|
|
||||||
|
|
||||||
static GNCMainInfo * gnc_get_main_info();
|
|
||||||
|
|
||||||
static gboolean gnc_ui_mainWindow_delete_cb(GtkWidget *widget,
|
|
||||||
GdkEvent *event,
|
|
||||||
gpointer user_data);
|
|
||||||
|
|
||||||
static gboolean gnc_ui_mainWindow_destroy_event_cb(GtkWidget *widget,
|
|
||||||
GdkEvent *event,
|
|
||||||
gpointer user_data);
|
|
||||||
|
|
||||||
static void gnc_ui_mainWindow_destroy_cb(GtkObject *object,
|
|
||||||
gpointer user_data);
|
|
||||||
|
|
||||||
#endif
|
|
Loading…
Reference in New Issue
Block a user