Add a reconcile button to the toolbar of a register page.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@13702 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
David Hampton
2006-03-26 00:21:54 +00:00
parent 37d712666a
commit c369d4771a
3 changed files with 7 additions and 1 deletions

View File

@@ -1,5 +1,9 @@
2006-03-25 David Hampton <david@hampton-pc.rainbolthampton.net>
* src/gnome/gnc-plugin-page-register.c:
* src/gnome/ui/gnc-plugin-page-register-ui.xml: Add a reconcile
button to the toolbar of a register page. Fixes 136522.
* src/gnome/window-reconcile.c: Add a context menu to the
reconcile window. Fixes 120830.

View File

@@ -228,7 +228,7 @@ static GtkActionEntry gnc_plugin_page_register_actions [] =
{ "ActionsTransferAction", GNC_STOCK_TRANSFER, N_("_Transfer..."), "<control>t",
N_("Transfer funds from one account to another"),
G_CALLBACK (gnc_plugin_page_register_cmd_transfer) },
{ "ActionsReconcileAction", NULL, N_("_Reconcile..."), NULL,
{ "ActionsReconcileAction", GTK_STOCK_INDEX, N_("_Reconcile..."), NULL,
N_("Reconcile the selected account"),
G_CALLBACK (gnc_plugin_page_register_cmd_reconcile) },
{ "ActionsStockSplitAction", NULL, N_("Stoc_k Split..."), NULL,
@@ -331,6 +331,7 @@ static action_toolbar_labels toolbar_labels[] = {
{ "SplitTransactionAction", N_("Split") },
{ "ScheduleTransactionAction", N_("Schedule") },
{ "BlankTransactionAction", N_("Blank") },
{ "ActionsReconcileAction", N_("Reconcile") },
{ NULL, NULL },
};

View File

@@ -75,6 +75,7 @@
<toolitem name="ToolbarScheduleTransaction" action="ScheduleTransactionAction"/>
<separator name="ToolbarSep68"/>
<toolitem name="ToolbarTransfer" action="ActionsTransferAction"/>
<toolitem name="ActionsReconcile" action="ActionsReconcileAction"/>
</placeholder>
</toolbar>