mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
2001-06-15 Dave Peticolas <dave@krondo.com>
* src/gnome/dialog-print-check.c: use libglade git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@4698 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
c229055150
commit
84e6cc750d
@ -1,5 +1,7 @@
|
||||
2001-06-15 Dave Peticolas <dave@krondo.com>
|
||||
|
||||
* src/gnome/dialog-print-check.c: use libglade
|
||||
|
||||
* src/gnome/dialog-find-transactions.c: use libglade
|
||||
|
||||
* src/guile/gnc.gwp: remove budgeting api
|
||||
|
@ -34,6 +34,7 @@ src/gnome/glade/fincalc_strings.c
|
||||
src/gnome/glade/find_strings.c
|
||||
src/gnome/glade/help_strings.c
|
||||
src/gnome/glade/price_strings.c
|
||||
src/gnome/glade/print_strings.c
|
||||
src/gnome/glade/progress_strings.c
|
||||
src/gnome/glade/qif_strings.c
|
||||
src/gnome/glade/register_strings.c
|
||||
|
@ -29,7 +29,6 @@
|
||||
#include <guile/gh.h>
|
||||
|
||||
#include "messages.h"
|
||||
#include "glade-gnc-dialogs.h"
|
||||
#include "dialog-print-check.h"
|
||||
#include "dialog-utils.h"
|
||||
#include "window-help.h"
|
||||
@ -42,6 +41,14 @@
|
||||
#define CHECK_PRINT_NUM_UNITS 4
|
||||
|
||||
|
||||
static void gnc_ui_print_check_dialog_ok_cb(GtkButton * button,
|
||||
gpointer user_data);
|
||||
static void gnc_ui_print_check_dialog_cancel_cb(GtkButton * button,
|
||||
gpointer user_data);
|
||||
static void gnc_ui_print_check_dialog_help_cb(GtkButton * button,
|
||||
gpointer user_data);
|
||||
|
||||
|
||||
/********************************************************************\
|
||||
* gnc_ui_print_check_dialog_create
|
||||
* make a new print check dialog and wait for it.
|
||||
@ -49,47 +56,44 @@
|
||||
|
||||
PrintCheckDialog *
|
||||
gnc_ui_print_check_dialog_create(SCM callback) {
|
||||
PrintCheckDialog * pcd = g_new0(PrintCheckDialog, 1);
|
||||
PrintCheckDialog * pcd = g_new0(PrintCheckDialog, 1);
|
||||
GladeXML *xml;
|
||||
|
||||
/* call the glade-defined creator */
|
||||
pcd->dialog = create_Print_Check_Dialog();
|
||||
xml = gnc_glade_xml_new ("print.glade", "Print Check Dialog");
|
||||
|
||||
glade_xml_signal_connect_data
|
||||
(xml, "gnc_ui_print_check_dialog_ok_cb",
|
||||
GTK_SIGNAL_FUNC (gnc_ui_print_check_dialog_ok_cb), pcd);
|
||||
|
||||
glade_xml_signal_connect_data
|
||||
(xml, "gnc_ui_print_check_dialog_cancel_cb",
|
||||
GTK_SIGNAL_FUNC (gnc_ui_print_check_dialog_cancel_cb), pcd);
|
||||
|
||||
glade_xml_signal_connect_data
|
||||
(xml, "gnc_ui_print_check_dialog_help_cb",
|
||||
GTK_SIGNAL_FUNC (gnc_ui_print_check_dialog_help_cb), pcd);
|
||||
|
||||
pcd->dialog = glade_xml_get_widget (xml, "Print Check Dialog");
|
||||
pcd->callback = callback;
|
||||
|
||||
/* now pick out the relevant child widgets */
|
||||
pcd->format_picker = gtk_object_get_data(GTK_OBJECT(pcd->dialog),
|
||||
"check_format_picker");
|
||||
pcd->position_picker = gtk_object_get_data(GTK_OBJECT(pcd->dialog),
|
||||
"check_position_picker");
|
||||
pcd->dformat_picker = gtk_object_get_data(GTK_OBJECT(pcd->dialog),
|
||||
"date_format_picker");
|
||||
pcd->format_picker = glade_xml_get_widget (xml, "check_format_picker");
|
||||
pcd->position_picker = glade_xml_get_widget (xml, "check_position_picker");
|
||||
pcd->dformat_picker = glade_xml_get_widget (xml, "date_format_picker");
|
||||
|
||||
pcd->payee_x = gtk_object_get_data(GTK_OBJECT(pcd->dialog),
|
||||
"payee_x_entry");
|
||||
pcd->payee_y = gtk_object_get_data(GTK_OBJECT(pcd->dialog),
|
||||
"payee_y_entry");
|
||||
pcd->date_x = gtk_object_get_data(GTK_OBJECT(pcd->dialog),
|
||||
"date_x_entry");
|
||||
pcd->date_y = gtk_object_get_data(GTK_OBJECT(pcd->dialog),
|
||||
"date_y_entry");
|
||||
pcd->words_x = gtk_object_get_data(GTK_OBJECT(pcd->dialog),
|
||||
"amount_words_x_entry");
|
||||
pcd->words_y = gtk_object_get_data(GTK_OBJECT(pcd->dialog),
|
||||
"amount_words_y_entry");
|
||||
pcd->number_x = gtk_object_get_data(GTK_OBJECT(pcd->dialog),
|
||||
"amount_numbers_x_entry");
|
||||
pcd->number_y = gtk_object_get_data(GTK_OBJECT(pcd->dialog),
|
||||
"amount_numbers_y_entry");
|
||||
pcd->memo_x = gtk_object_get_data(GTK_OBJECT(pcd->dialog),
|
||||
"memo_x_entry");
|
||||
pcd->memo_y = gtk_object_get_data(GTK_OBJECT(pcd->dialog),
|
||||
"memo_y_entry");
|
||||
pcd->check_position = gtk_object_get_data(GTK_OBJECT(pcd->dialog),
|
||||
"check_position_entry");
|
||||
pcd->format_entry = gtk_object_get_data(GTK_OBJECT(pcd->dialog),
|
||||
"date_format_entry");
|
||||
|
||||
pcd->units_picker = gtk_object_get_data(GTK_OBJECT(pcd->dialog),
|
||||
"units_picker");
|
||||
pcd->payee_x = glade_xml_get_widget (xml, "payee_x_entry");
|
||||
pcd->payee_y = glade_xml_get_widget (xml, "payee_y_entry");
|
||||
pcd->date_x = glade_xml_get_widget (xml, "date_x_entry");
|
||||
pcd->date_y = glade_xml_get_widget (xml, "date_y_entry");
|
||||
pcd->words_x = glade_xml_get_widget (xml, "amount_words_x_entry");
|
||||
pcd->words_y = glade_xml_get_widget (xml, "amount_words_y_entry");
|
||||
pcd->number_x = glade_xml_get_widget (xml, "amount_numbers_x_entry");
|
||||
pcd->number_y = glade_xml_get_widget (xml, "amount_numbers_y_entry");
|
||||
pcd->memo_x = glade_xml_get_widget (xml, "memo_x_entry");
|
||||
pcd->memo_y = glade_xml_get_widget (xml, "memo_y_entry");
|
||||
pcd->check_position = glade_xml_get_widget (xml, "check_position_entry");
|
||||
pcd->format_entry = glade_xml_get_widget (xml, "date_format_entry");
|
||||
pcd->units_picker = glade_xml_get_widget (xml, "units_picker");
|
||||
|
||||
/* fix the option menus so we can diagnose which option is
|
||||
selected */
|
||||
@ -98,10 +102,6 @@ gnc_ui_print_check_dialog_create(SCM callback) {
|
||||
gnc_option_menu_init(pcd->dformat_picker);
|
||||
gnc_option_menu_init(pcd->units_picker);
|
||||
|
||||
/* set data so we can find the struct in callbacks */
|
||||
gtk_object_set_data(GTK_OBJECT(pcd->dialog), "print_check_structure",
|
||||
pcd);
|
||||
|
||||
scm_protect_object(pcd->callback);
|
||||
|
||||
gtk_widget_show_all(pcd->dialog);
|
||||
@ -139,12 +139,10 @@ entry_to_double(GtkWidget * entry) {
|
||||
* gnc_ui_print_check_dialog_ok_cb
|
||||
\********************************************************************/
|
||||
|
||||
void
|
||||
static void
|
||||
gnc_ui_print_check_dialog_ok_cb(GtkButton * button,
|
||||
gpointer user_data) {
|
||||
GtkWidget * dialog = user_data;
|
||||
PrintCheckDialog * pcd =
|
||||
gtk_object_get_data(GTK_OBJECT(dialog), "print_check_structure");
|
||||
PrintCheckDialog * pcd = user_data;
|
||||
|
||||
SCM make_check_format = gh_eval_str("make-print-check-format");
|
||||
SCM callback;
|
||||
@ -234,11 +232,10 @@ gnc_ui_print_check_dialog_ok_cb(GtkButton * button,
|
||||
* gnc_ui_print_check_dialog_cancel_cb
|
||||
\********************************************************************/
|
||||
|
||||
void
|
||||
static void
|
||||
gnc_ui_print_check_dialog_cancel_cb(GtkButton * button,
|
||||
gpointer user_data) {
|
||||
PrintCheckDialog * pcd =
|
||||
gtk_object_get_data(GTK_OBJECT(user_data), "print_check_structure");
|
||||
PrintCheckDialog * pcd = user_data;
|
||||
|
||||
gnc_ui_print_check_dialog_destroy(pcd);
|
||||
}
|
||||
@ -247,9 +244,8 @@ gnc_ui_print_check_dialog_cancel_cb(GtkButton * button,
|
||||
* gnc_ui_print_check_dialog_help_cb
|
||||
\********************************************************************/
|
||||
|
||||
void
|
||||
static void
|
||||
gnc_ui_print_check_dialog_help_cb(GtkButton * button,
|
||||
gpointer user_data) {
|
||||
helpWindow(NULL, NULL, HH_PRINTCHECK);
|
||||
}
|
||||
|
||||
|
@ -53,13 +53,5 @@ typedef struct {
|
||||
|
||||
PrintCheckDialog * gnc_ui_print_check_dialog_create(SCM callback);
|
||||
void gnc_ui_print_check_dialog_destroy(PrintCheckDialog * pcd);
|
||||
void gnc_ui_print_check_dialog_ok_cb(GtkButton * button,
|
||||
gpointer user_data);
|
||||
|
||||
void gnc_ui_print_check_dialog_cancel_cb(GtkButton * button,
|
||||
gpointer user_data);
|
||||
|
||||
void gnc_ui_print_check_dialog_help_cb(GtkButton * button,
|
||||
gpointer user_data);
|
||||
|
||||
#endif
|
||||
|
@ -124,550 +124,3 @@ create_QIF_Import_Account_Picker (void)
|
||||
return QIF_Import_Account_Picker;
|
||||
}
|
||||
|
||||
GtkWidget*
|
||||
create_Print_Check_Dialog (void)
|
||||
{
|
||||
GtkWidget *Print_Check_Dialog;
|
||||
GtkWidget *dialog_vbox6;
|
||||
GtkWidget *notebook4;
|
||||
GtkWidget *vbox10;
|
||||
GtkWidget *hbox15;
|
||||
GtkWidget *vbox11;
|
||||
GtkWidget *label699;
|
||||
GtkWidget *label700;
|
||||
GtkWidget *label713;
|
||||
GtkWidget *vbox12;
|
||||
GtkWidget *check_format_picker;
|
||||
GtkWidget *check_format_picker_menu;
|
||||
GtkWidget *glade_menuitem;
|
||||
GtkWidget *check_position_picker;
|
||||
GtkWidget *check_position_picker_menu;
|
||||
GtkWidget *date_format_picker;
|
||||
GtkWidget *date_format_picker_menu;
|
||||
GtkWidget *label847675;
|
||||
GtkWidget *frame5;
|
||||
GtkWidget *vbox1x6;
|
||||
GtkWidget *hbox16;
|
||||
GtkWidget *vbox13;
|
||||
GtkWidget *label702;
|
||||
GtkWidget *label701;
|
||||
GtkWidget *label705;
|
||||
GtkWidget *label706;
|
||||
GtkWidget *label707;
|
||||
GtkWidget *label708;
|
||||
GtkWidget *label711;
|
||||
GtkWidget *label714;
|
||||
GtkWidget *label709;
|
||||
GtkWidget *vbox14;
|
||||
GtkWidget *label703;
|
||||
GtkObject *payee_x_entry_adj;
|
||||
GtkWidget *payee_x_entry;
|
||||
GtkObject *date_x_entry_adj;
|
||||
GtkWidget *date_x_entry;
|
||||
GtkObject *amount_words_x_entry_adj;
|
||||
GtkWidget *amount_words_x_entry;
|
||||
GtkObject *amount_numbers_x_entry_adj;
|
||||
GtkWidget *amount_numbers_x_entry;
|
||||
GtkObject *memo_x_entry_adj;
|
||||
GtkWidget *memo_x_entry;
|
||||
GtkObject *check_position_entry_adj;
|
||||
GtkWidget *check_position_entry;
|
||||
GtkObject *date_format_entry_adj;
|
||||
GtkWidget *date_format_entry;
|
||||
GtkWidget *units_picker;
|
||||
GtkWidget *units_picker_menu;
|
||||
GtkWidget *vbox38;
|
||||
GtkWidget *label744;
|
||||
GtkObject *payee_y_entry_adj;
|
||||
GtkWidget *payee_y_entry;
|
||||
GtkObject *date_y_entry_adj;
|
||||
GtkWidget *date_y_entry;
|
||||
GtkObject *amount_words_y_entry_adj;
|
||||
GtkWidget *amount_words_y_entry;
|
||||
GtkObject *amount_numbers_y_entry_adj;
|
||||
GtkWidget *amount_numbers_y_entry;
|
||||
GtkObject *memo_y_entry_adj;
|
||||
GtkWidget *memo_y_entry;
|
||||
GtkWidget *label745;
|
||||
GtkWidget *label746;
|
||||
GtkWidget *label747;
|
||||
GtkWidget *label847676;
|
||||
GtkWidget *dialog_action_area6;
|
||||
GtkWidget *button21;
|
||||
GtkWidget *button22;
|
||||
GtkWidget *button23;
|
||||
|
||||
Print_Check_Dialog = gnome_dialog_new (_("Print Check"), NULL);
|
||||
gtk_object_set_data (GTK_OBJECT (Print_Check_Dialog), "Print_Check_Dialog", Print_Check_Dialog);
|
||||
gtk_window_set_policy (GTK_WINDOW (Print_Check_Dialog), TRUE, TRUE, FALSE);
|
||||
|
||||
dialog_vbox6 = GNOME_DIALOG (Print_Check_Dialog)->vbox;
|
||||
gtk_object_set_data (GTK_OBJECT (Print_Check_Dialog), "dialog_vbox6", dialog_vbox6);
|
||||
gtk_widget_show (dialog_vbox6);
|
||||
|
||||
notebook4 = gtk_notebook_new ();
|
||||
gtk_widget_ref (notebook4);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "notebook4", notebook4,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (notebook4);
|
||||
gtk_box_pack_start (GTK_BOX (dialog_vbox6), notebook4, TRUE, TRUE, 0);
|
||||
|
||||
vbox10 = gtk_vbox_new (FALSE, 0);
|
||||
gtk_widget_ref (vbox10);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "vbox10", vbox10,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (vbox10);
|
||||
gtk_container_add (GTK_CONTAINER (notebook4), vbox10);
|
||||
|
||||
hbox15 = gtk_hbox_new (FALSE, 0);
|
||||
gtk_widget_ref (hbox15);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "hbox15", hbox15,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (hbox15);
|
||||
gtk_box_pack_start (GTK_BOX (vbox10), hbox15, FALSE, FALSE, 0);
|
||||
|
||||
vbox11 = gtk_vbox_new (TRUE, 0);
|
||||
gtk_widget_ref (vbox11);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "vbox11", vbox11,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (vbox11);
|
||||
gtk_box_pack_start (GTK_BOX (hbox15), vbox11, TRUE, TRUE, 5);
|
||||
|
||||
label699 = gtk_label_new (_("Check format:"));
|
||||
gtk_widget_ref (label699);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "label699", label699,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (label699);
|
||||
gtk_box_pack_start (GTK_BOX (vbox11), label699, FALSE, FALSE, 0);
|
||||
gtk_misc_set_alignment (GTK_MISC (label699), 1, 0.5);
|
||||
|
||||
label700 = gtk_label_new (_("Check position:"));
|
||||
gtk_widget_ref (label700);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "label700", label700,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (label700);
|
||||
gtk_box_pack_start (GTK_BOX (vbox11), label700, FALSE, FALSE, 0);
|
||||
gtk_misc_set_alignment (GTK_MISC (label700), 1, 0.5);
|
||||
|
||||
label713 = gtk_label_new (_("Date format:"));
|
||||
gtk_widget_ref (label713);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "label713", label713,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (label713);
|
||||
gtk_box_pack_start (GTK_BOX (vbox11), label713, FALSE, FALSE, 0);
|
||||
gtk_misc_set_alignment (GTK_MISC (label713), 1, 0.5);
|
||||
|
||||
vbox12 = gtk_vbox_new (TRUE, 0);
|
||||
gtk_widget_ref (vbox12);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "vbox12", vbox12,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (vbox12);
|
||||
gtk_box_pack_start (GTK_BOX (hbox15), vbox12, TRUE, TRUE, 0);
|
||||
|
||||
check_format_picker = gtk_option_menu_new ();
|
||||
gtk_widget_ref (check_format_picker);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "check_format_picker", check_format_picker,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (check_format_picker);
|
||||
gtk_box_pack_start (GTK_BOX (vbox12), check_format_picker, FALSE, FALSE, 0);
|
||||
check_format_picker_menu = gtk_menu_new ();
|
||||
glade_menuitem = gtk_menu_item_new_with_label (_("Quicken/QuickBooks (tm) US-Letter"));
|
||||
gtk_widget_show (glade_menuitem);
|
||||
gtk_menu_append (GTK_MENU (check_format_picker_menu), glade_menuitem);
|
||||
glade_menuitem = gtk_menu_item_new_with_label (_("Custom"));
|
||||
gtk_widget_show (glade_menuitem);
|
||||
gtk_menu_append (GTK_MENU (check_format_picker_menu), glade_menuitem);
|
||||
gtk_option_menu_set_menu (GTK_OPTION_MENU (check_format_picker), check_format_picker_menu);
|
||||
|
||||
check_position_picker = gtk_option_menu_new ();
|
||||
gtk_widget_ref (check_position_picker);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "check_position_picker", check_position_picker,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (check_position_picker);
|
||||
gtk_box_pack_start (GTK_BOX (vbox12), check_position_picker, FALSE, FALSE, 0);
|
||||
check_position_picker_menu = gtk_menu_new ();
|
||||
glade_menuitem = gtk_menu_item_new_with_label (_("Top"));
|
||||
gtk_widget_show (glade_menuitem);
|
||||
gtk_menu_append (GTK_MENU (check_position_picker_menu), glade_menuitem);
|
||||
glade_menuitem = gtk_menu_item_new_with_label (_("Middle"));
|
||||
gtk_widget_show (glade_menuitem);
|
||||
gtk_menu_append (GTK_MENU (check_position_picker_menu), glade_menuitem);
|
||||
glade_menuitem = gtk_menu_item_new_with_label (_("Bottom"));
|
||||
gtk_widget_show (glade_menuitem);
|
||||
gtk_menu_append (GTK_MENU (check_position_picker_menu), glade_menuitem);
|
||||
glade_menuitem = gtk_menu_item_new_with_label (_("Custom"));
|
||||
gtk_widget_show (glade_menuitem);
|
||||
gtk_menu_append (GTK_MENU (check_position_picker_menu), glade_menuitem);
|
||||
gtk_option_menu_set_menu (GTK_OPTION_MENU (check_position_picker), check_position_picker_menu);
|
||||
|
||||
date_format_picker = gtk_option_menu_new ();
|
||||
gtk_widget_ref (date_format_picker);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "date_format_picker", date_format_picker,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (date_format_picker);
|
||||
gtk_box_pack_start (GTK_BOX (vbox12), date_format_picker, FALSE, FALSE, 0);
|
||||
date_format_picker_menu = gtk_menu_new ();
|
||||
glade_menuitem = gtk_menu_item_new_with_label (_("December 31, 2000"));
|
||||
gtk_widget_show (glade_menuitem);
|
||||
gtk_menu_append (GTK_MENU (date_format_picker_menu), glade_menuitem);
|
||||
glade_menuitem = gtk_menu_item_new_with_label (_("31 December, 2000"));
|
||||
gtk_widget_show (glade_menuitem);
|
||||
gtk_menu_append (GTK_MENU (date_format_picker_menu), glade_menuitem);
|
||||
glade_menuitem = gtk_menu_item_new_with_label (_("Dec 31, 2000"));
|
||||
gtk_widget_show (glade_menuitem);
|
||||
gtk_menu_append (GTK_MENU (date_format_picker_menu), glade_menuitem);
|
||||
glade_menuitem = gtk_menu_item_new_with_label (_("31 Dec, 2000"));
|
||||
gtk_widget_show (glade_menuitem);
|
||||
gtk_menu_append (GTK_MENU (date_format_picker_menu), glade_menuitem);
|
||||
glade_menuitem = gtk_menu_item_new_with_label (_("12/31/2000"));
|
||||
gtk_widget_show (glade_menuitem);
|
||||
gtk_menu_append (GTK_MENU (date_format_picker_menu), glade_menuitem);
|
||||
glade_menuitem = gtk_menu_item_new_with_label (_("12/31/00"));
|
||||
gtk_widget_show (glade_menuitem);
|
||||
gtk_menu_append (GTK_MENU (date_format_picker_menu), glade_menuitem);
|
||||
glade_menuitem = gtk_menu_item_new_with_label (_("31/12/2000"));
|
||||
gtk_widget_show (glade_menuitem);
|
||||
gtk_menu_append (GTK_MENU (date_format_picker_menu), glade_menuitem);
|
||||
glade_menuitem = gtk_menu_item_new_with_label (_("31/12/00"));
|
||||
gtk_widget_show (glade_menuitem);
|
||||
gtk_menu_append (GTK_MENU (date_format_picker_menu), glade_menuitem);
|
||||
glade_menuitem = gtk_menu_item_new_with_label (_("Custom"));
|
||||
gtk_widget_show (glade_menuitem);
|
||||
gtk_menu_append (GTK_MENU (date_format_picker_menu), glade_menuitem);
|
||||
gtk_option_menu_set_menu (GTK_OPTION_MENU (date_format_picker), date_format_picker_menu);
|
||||
|
||||
label847675 = gtk_label_new (_("Options"));
|
||||
gtk_widget_ref (label847675);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "label847675", label847675,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (label847675);
|
||||
gtk_notebook_set_tab_label (GTK_NOTEBOOK (notebook4), gtk_notebook_get_nth_page (GTK_NOTEBOOK (notebook4), 0), label847675);
|
||||
|
||||
frame5 = gtk_frame_new (_("Custom check format"));
|
||||
gtk_widget_ref (frame5);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "frame5", frame5,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (frame5);
|
||||
gtk_container_add (GTK_CONTAINER (notebook4), frame5);
|
||||
|
||||
vbox1x6 = gtk_vbox_new (FALSE, 0);
|
||||
gtk_widget_ref (vbox1x6);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "vbox1x6", vbox1x6,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (vbox1x6);
|
||||
gtk_container_add (GTK_CONTAINER (frame5), vbox1x6);
|
||||
|
||||
hbox16 = gtk_hbox_new (FALSE, 0);
|
||||
gtk_widget_ref (hbox16);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "hbox16", hbox16,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (hbox16);
|
||||
gtk_box_pack_start (GTK_BOX (vbox1x6), hbox16, FALSE, FALSE, 0);
|
||||
|
||||
vbox13 = gtk_vbox_new (TRUE, 0);
|
||||
gtk_widget_ref (vbox13);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "vbox13", vbox13,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (vbox13);
|
||||
gtk_box_pack_start (GTK_BOX (hbox16), vbox13, FALSE, FALSE, 2);
|
||||
|
||||
label702 = gtk_label_new ("");
|
||||
gtk_widget_ref (label702);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "label702", label702,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (label702);
|
||||
gtk_box_pack_start (GTK_BOX (vbox13), label702, FALSE, FALSE, 0);
|
||||
|
||||
label701 = gtk_label_new (_("Payee:"));
|
||||
gtk_widget_ref (label701);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "label701", label701,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (label701);
|
||||
gtk_box_pack_start (GTK_BOX (vbox13), label701, FALSE, FALSE, 0);
|
||||
gtk_misc_set_alignment (GTK_MISC (label701), 1, 0.5);
|
||||
|
||||
label705 = gtk_label_new (_("Date:"));
|
||||
gtk_widget_ref (label705);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "label705", label705,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (label705);
|
||||
gtk_box_pack_start (GTK_BOX (vbox13), label705, FALSE, FALSE, 0);
|
||||
gtk_misc_set_alignment (GTK_MISC (label705), 1, 0.5);
|
||||
|
||||
label706 = gtk_label_new (_("Amount (words):"));
|
||||
gtk_widget_ref (label706);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "label706", label706,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (label706);
|
||||
gtk_box_pack_start (GTK_BOX (vbox13), label706, FALSE, FALSE, 0);
|
||||
gtk_misc_set_alignment (GTK_MISC (label706), 1, 0.5);
|
||||
|
||||
label707 = gtk_label_new (_("Amount (numbers):"));
|
||||
gtk_widget_ref (label707);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "label707", label707,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (label707);
|
||||
gtk_box_pack_start (GTK_BOX (vbox13), label707, FALSE, FALSE, 0);
|
||||
gtk_misc_set_alignment (GTK_MISC (label707), 1, 0.5);
|
||||
|
||||
label708 = gtk_label_new (_("Memo:"));
|
||||
gtk_widget_ref (label708);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "label708", label708,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (label708);
|
||||
gtk_box_pack_start (GTK_BOX (vbox13), label708, FALSE, FALSE, 0);
|
||||
gtk_misc_set_alignment (GTK_MISC (label708), 1, 0.5);
|
||||
|
||||
label711 = gtk_label_new (_("Check position:"));
|
||||
gtk_widget_ref (label711);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "label711", label711,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (label711);
|
||||
gtk_box_pack_start (GTK_BOX (vbox13), label711, FALSE, FALSE, 0);
|
||||
gtk_misc_set_alignment (GTK_MISC (label711), 1, 0.5);
|
||||
|
||||
label714 = gtk_label_new (_("Date format:"));
|
||||
gtk_widget_ref (label714);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "label714", label714,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (label714);
|
||||
gtk_box_pack_start (GTK_BOX (vbox13), label714, FALSE, FALSE, 0);
|
||||
gtk_misc_set_alignment (GTK_MISC (label714), 1, 0.5);
|
||||
|
||||
label709 = gtk_label_new (_("Units:"));
|
||||
gtk_widget_ref (label709);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "label709", label709,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (label709);
|
||||
gtk_box_pack_start (GTK_BOX (vbox13), label709, FALSE, FALSE, 0);
|
||||
gtk_misc_set_alignment (GTK_MISC (label709), 1, 0.5);
|
||||
|
||||
vbox14 = gtk_vbox_new (TRUE, 0);
|
||||
gtk_widget_ref (vbox14);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "vbox14", vbox14,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (vbox14);
|
||||
gtk_box_pack_start (GTK_BOX (hbox16), vbox14, FALSE, TRUE, 2);
|
||||
|
||||
label703 = gtk_label_new (_("x"));
|
||||
gtk_widget_ref (label703);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "label703", label703,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (label703);
|
||||
gtk_box_pack_start (GTK_BOX (vbox14), label703, FALSE, FALSE, 0);
|
||||
|
||||
payee_x_entry_adj = gtk_adjustment_new (0, 0, 100000, 0.1, 10, 10);
|
||||
payee_x_entry = gtk_spin_button_new (GTK_ADJUSTMENT (payee_x_entry_adj), 1, 3);
|
||||
gtk_widget_ref (payee_x_entry);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "payee_x_entry", payee_x_entry,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (payee_x_entry);
|
||||
gtk_box_pack_start (GTK_BOX (vbox14), payee_x_entry, FALSE, FALSE, 0);
|
||||
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (payee_x_entry), TRUE);
|
||||
|
||||
date_x_entry_adj = gtk_adjustment_new (0, 0, 100000, 0.1, 10, 10);
|
||||
date_x_entry = gtk_spin_button_new (GTK_ADJUSTMENT (date_x_entry_adj), 1, 3);
|
||||
gtk_widget_ref (date_x_entry);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "date_x_entry", date_x_entry,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (date_x_entry);
|
||||
gtk_box_pack_start (GTK_BOX (vbox14), date_x_entry, FALSE, FALSE, 0);
|
||||
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (date_x_entry), TRUE);
|
||||
|
||||
amount_words_x_entry_adj = gtk_adjustment_new (0, 0, 100000, 0.1, 10, 10);
|
||||
amount_words_x_entry = gtk_spin_button_new (GTK_ADJUSTMENT (amount_words_x_entry_adj), 1, 3);
|
||||
gtk_widget_ref (amount_words_x_entry);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "amount_words_x_entry", amount_words_x_entry,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (amount_words_x_entry);
|
||||
gtk_box_pack_start (GTK_BOX (vbox14), amount_words_x_entry, FALSE, FALSE, 0);
|
||||
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (amount_words_x_entry), TRUE);
|
||||
|
||||
amount_numbers_x_entry_adj = gtk_adjustment_new (0, 0, 100000, 0.1, 10, 10);
|
||||
amount_numbers_x_entry = gtk_spin_button_new (GTK_ADJUSTMENT (amount_numbers_x_entry_adj), 1, 3);
|
||||
gtk_widget_ref (amount_numbers_x_entry);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "amount_numbers_x_entry", amount_numbers_x_entry,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (amount_numbers_x_entry);
|
||||
gtk_box_pack_start (GTK_BOX (vbox14), amount_numbers_x_entry, FALSE, FALSE, 0);
|
||||
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (amount_numbers_x_entry), TRUE);
|
||||
|
||||
memo_x_entry_adj = gtk_adjustment_new (0, 0, 100000, 0.1, 10, 10);
|
||||
memo_x_entry = gtk_spin_button_new (GTK_ADJUSTMENT (memo_x_entry_adj), 1, 3);
|
||||
gtk_widget_ref (memo_x_entry);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "memo_x_entry", memo_x_entry,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (memo_x_entry);
|
||||
gtk_box_pack_start (GTK_BOX (vbox14), memo_x_entry, FALSE, FALSE, 0);
|
||||
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (memo_x_entry), TRUE);
|
||||
|
||||
check_position_entry_adj = gtk_adjustment_new (0, 0, 100000, 0.1, 10, 10);
|
||||
check_position_entry = gtk_spin_button_new (GTK_ADJUSTMENT (check_position_entry_adj), 1, 3);
|
||||
gtk_widget_ref (check_position_entry);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "check_position_entry", check_position_entry,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (check_position_entry);
|
||||
gtk_box_pack_start (GTK_BOX (vbox14), check_position_entry, FALSE, FALSE, 0);
|
||||
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (check_position_entry), TRUE);
|
||||
|
||||
date_format_entry_adj = gtk_adjustment_new (0, 0, 100000, 0.1, 10, 10);
|
||||
date_format_entry = gtk_spin_button_new (GTK_ADJUSTMENT (date_format_entry_adj), 1, 3);
|
||||
gtk_widget_ref (date_format_entry);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "date_format_entry", date_format_entry,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (date_format_entry);
|
||||
gtk_box_pack_start (GTK_BOX (vbox14), date_format_entry, FALSE, FALSE, 0);
|
||||
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (date_format_entry), TRUE);
|
||||
|
||||
units_picker = gtk_option_menu_new ();
|
||||
gtk_widget_ref (units_picker);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "units_picker", units_picker,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (units_picker);
|
||||
gtk_box_pack_start (GTK_BOX (vbox14), units_picker, FALSE, FALSE, 0);
|
||||
units_picker_menu = gtk_menu_new ();
|
||||
glade_menuitem = gtk_menu_item_new_with_label (_("Inches"));
|
||||
gtk_widget_show (glade_menuitem);
|
||||
gtk_menu_append (GTK_MENU (units_picker_menu), glade_menuitem);
|
||||
glade_menuitem = gtk_menu_item_new_with_label (_("Centimeters"));
|
||||
gtk_widget_show (glade_menuitem);
|
||||
gtk_menu_append (GTK_MENU (units_picker_menu), glade_menuitem);
|
||||
glade_menuitem = gtk_menu_item_new_with_label (_("Millimeters"));
|
||||
gtk_widget_show (glade_menuitem);
|
||||
gtk_menu_append (GTK_MENU (units_picker_menu), glade_menuitem);
|
||||
glade_menuitem = gtk_menu_item_new_with_label (_("Points"));
|
||||
gtk_widget_show (glade_menuitem);
|
||||
gtk_menu_append (GTK_MENU (units_picker_menu), glade_menuitem);
|
||||
gtk_option_menu_set_menu (GTK_OPTION_MENU (units_picker), units_picker_menu);
|
||||
gtk_option_menu_set_history (GTK_OPTION_MENU (units_picker), 1);
|
||||
|
||||
vbox38 = gtk_vbox_new (TRUE, 0);
|
||||
gtk_widget_ref (vbox38);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "vbox38", vbox38,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (vbox38);
|
||||
gtk_box_pack_start (GTK_BOX (hbox16), vbox38, FALSE, TRUE, 2);
|
||||
|
||||
label744 = gtk_label_new (_("y"));
|
||||
gtk_widget_ref (label744);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "label744", label744,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (label744);
|
||||
gtk_box_pack_start (GTK_BOX (vbox38), label744, FALSE, FALSE, 0);
|
||||
|
||||
payee_y_entry_adj = gtk_adjustment_new (0, 0, 100000, 0.1, 10, 10);
|
||||
payee_y_entry = gtk_spin_button_new (GTK_ADJUSTMENT (payee_y_entry_adj), 1, 3);
|
||||
gtk_widget_ref (payee_y_entry);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "payee_y_entry", payee_y_entry,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (payee_y_entry);
|
||||
gtk_box_pack_start (GTK_BOX (vbox38), payee_y_entry, FALSE, FALSE, 0);
|
||||
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (payee_y_entry), TRUE);
|
||||
|
||||
date_y_entry_adj = gtk_adjustment_new (0, 0, 100000, 0.1, 10, 10);
|
||||
date_y_entry = gtk_spin_button_new (GTK_ADJUSTMENT (date_y_entry_adj), 1, 3);
|
||||
gtk_widget_ref (date_y_entry);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "date_y_entry", date_y_entry,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (date_y_entry);
|
||||
gtk_box_pack_start (GTK_BOX (vbox38), date_y_entry, FALSE, FALSE, 0);
|
||||
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (date_y_entry), TRUE);
|
||||
|
||||
amount_words_y_entry_adj = gtk_adjustment_new (0, 0, 100000, 0.1, 10, 10);
|
||||
amount_words_y_entry = gtk_spin_button_new (GTK_ADJUSTMENT (amount_words_y_entry_adj), 1, 3);
|
||||
gtk_widget_ref (amount_words_y_entry);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "amount_words_y_entry", amount_words_y_entry,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (amount_words_y_entry);
|
||||
gtk_box_pack_start (GTK_BOX (vbox38), amount_words_y_entry, FALSE, FALSE, 0);
|
||||
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (amount_words_y_entry), TRUE);
|
||||
|
||||
amount_numbers_y_entry_adj = gtk_adjustment_new (0, 0, 100000, 0.1, 10, 10);
|
||||
amount_numbers_y_entry = gtk_spin_button_new (GTK_ADJUSTMENT (amount_numbers_y_entry_adj), 1, 3);
|
||||
gtk_widget_ref (amount_numbers_y_entry);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "amount_numbers_y_entry", amount_numbers_y_entry,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (amount_numbers_y_entry);
|
||||
gtk_box_pack_start (GTK_BOX (vbox38), amount_numbers_y_entry, FALSE, FALSE, 0);
|
||||
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (amount_numbers_y_entry), TRUE);
|
||||
|
||||
memo_y_entry_adj = gtk_adjustment_new (0, 0, 100000, 0.1, 10, 10);
|
||||
memo_y_entry = gtk_spin_button_new (GTK_ADJUSTMENT (memo_y_entry_adj), 1, 3);
|
||||
gtk_widget_ref (memo_y_entry);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "memo_y_entry", memo_y_entry,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (memo_y_entry);
|
||||
gtk_box_pack_start (GTK_BOX (vbox38), memo_y_entry, FALSE, FALSE, 0);
|
||||
gtk_spin_button_set_numeric (GTK_SPIN_BUTTON (memo_y_entry), TRUE);
|
||||
|
||||
label745 = gtk_label_new ("");
|
||||
gtk_widget_ref (label745);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "label745", label745,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (label745);
|
||||
gtk_box_pack_start (GTK_BOX (vbox38), label745, FALSE, FALSE, 0);
|
||||
|
||||
label746 = gtk_label_new (_(" "));
|
||||
gtk_widget_ref (label746);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "label746", label746,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (label746);
|
||||
gtk_box_pack_start (GTK_BOX (vbox38), label746, FALSE, FALSE, 0);
|
||||
|
||||
label747 = gtk_label_new (_(" "));
|
||||
gtk_widget_ref (label747);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "label747", label747,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (label747);
|
||||
gtk_box_pack_start (GTK_BOX (vbox38), label747, FALSE, FALSE, 0);
|
||||
|
||||
label847676 = gtk_label_new (_("Custom format"));
|
||||
gtk_widget_ref (label847676);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "label847676", label847676,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (label847676);
|
||||
gtk_notebook_set_tab_label (GTK_NOTEBOOK (notebook4), gtk_notebook_get_nth_page (GTK_NOTEBOOK (notebook4), 1), label847676);
|
||||
|
||||
dialog_action_area6 = GNOME_DIALOG (Print_Check_Dialog)->action_area;
|
||||
gtk_object_set_data (GTK_OBJECT (Print_Check_Dialog), "dialog_action_area6", dialog_action_area6);
|
||||
gtk_widget_show (dialog_action_area6);
|
||||
gtk_button_box_set_layout (GTK_BUTTON_BOX (dialog_action_area6), GTK_BUTTONBOX_SPREAD);
|
||||
gtk_button_box_set_spacing (GTK_BUTTON_BOX (dialog_action_area6), 8);
|
||||
|
||||
gnome_dialog_append_button (GNOME_DIALOG (Print_Check_Dialog), GNOME_STOCK_BUTTON_OK);
|
||||
button21 = g_list_last (GNOME_DIALOG (Print_Check_Dialog)->buttons)->data;
|
||||
gtk_widget_ref (button21);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "button21", button21,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (button21);
|
||||
GTK_WIDGET_SET_FLAGS (button21, GTK_CAN_DEFAULT);
|
||||
|
||||
gnome_dialog_append_button (GNOME_DIALOG (Print_Check_Dialog), GNOME_STOCK_BUTTON_CANCEL);
|
||||
button22 = g_list_last (GNOME_DIALOG (Print_Check_Dialog)->buttons)->data;
|
||||
gtk_widget_ref (button22);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "button22", button22,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (button22);
|
||||
GTK_WIDGET_SET_FLAGS (button22, GTK_CAN_DEFAULT);
|
||||
|
||||
gnome_dialog_append_button (GNOME_DIALOG (Print_Check_Dialog), GNOME_STOCK_BUTTON_HELP);
|
||||
button23 = g_list_last (GNOME_DIALOG (Print_Check_Dialog)->buttons)->data;
|
||||
gtk_widget_ref (button23);
|
||||
gtk_object_set_data_full (GTK_OBJECT (Print_Check_Dialog), "button23", button23,
|
||||
(GtkDestroyNotify) gtk_widget_unref);
|
||||
gtk_widget_show (button23);
|
||||
GTK_WIDGET_SET_FLAGS (button23, GTK_CAN_DEFAULT);
|
||||
|
||||
gtk_signal_connect (GTK_OBJECT (button21), "clicked",
|
||||
GTK_SIGNAL_FUNC (gnc_ui_print_check_dialog_ok_cb),
|
||||
Print_Check_Dialog);
|
||||
gtk_signal_connect (GTK_OBJECT (button22), "clicked",
|
||||
GTK_SIGNAL_FUNC (gnc_ui_print_check_dialog_cancel_cb),
|
||||
Print_Check_Dialog);
|
||||
gtk_signal_connect (GTK_OBJECT (button23), "clicked",
|
||||
GTK_SIGNAL_FUNC (gnc_ui_print_check_dialog_help_cb),
|
||||
Print_Check_Dialog);
|
||||
|
||||
return Print_Check_Dialog;
|
||||
}
|
||||
|
||||
|
@ -3,4 +3,3 @@
|
||||
*/
|
||||
|
||||
GtkWidget* create_QIF_Import_Account_Picker (void);
|
||||
GtkWidget* create_Print_Check_Dialog (void);
|
||||
|
@ -6,6 +6,7 @@ glade_DATA = \
|
||||
find.glade \
|
||||
help.glade \
|
||||
price.glade \
|
||||
print.glade \
|
||||
progress.glade \
|
||||
qif.glade \
|
||||
register.glade \
|
||||
@ -22,6 +23,7 @@ STRING_FILES = \
|
||||
find_strings.c \
|
||||
help_strings.c \
|
||||
price_strings.c \
|
||||
print_strings.c \
|
||||
progress_strings.c \
|
||||
qif_strings.c \
|
||||
register_strings.c \
|
||||
|
894
src/gnome/glade/print.glade
Normal file
894
src/gnome/glade/print.glade
Normal file
@ -0,0 +1,894 @@
|
||||
<?xml version="1.0"?>
|
||||
<GTK-Interface>
|
||||
|
||||
<project>
|
||||
<name>Glade</name>
|
||||
<program_name>glade</program_name>
|
||||
<directory></directory>
|
||||
<source_directory></source_directory>
|
||||
<pixmaps_directory></pixmaps_directory>
|
||||
<language>C</language>
|
||||
<gnome_support>True</gnome_support>
|
||||
<gettext_support>True</gettext_support>
|
||||
<output_main_file>False</output_main_file>
|
||||
<output_support_files>False</output_support_files>
|
||||
<output_build_files>False</output_build_files>
|
||||
<backup_source_files>False</backup_source_files>
|
||||
<output_translatable_strings>True</output_translatable_strings>
|
||||
<translatable_strings_file>print_strings.c</translatable_strings_file>
|
||||
</project>
|
||||
|
||||
<widget>
|
||||
<class>GnomeDialog</class>
|
||||
<name>Print Check Dialog</name>
|
||||
<title>Print Check</title>
|
||||
<type>GTK_WINDOW_TOPLEVEL</type>
|
||||
<position>GTK_WIN_POS_NONE</position>
|
||||
<modal>False</modal>
|
||||
<allow_shrink>True</allow_shrink>
|
||||
<allow_grow>True</allow_grow>
|
||||
<auto_shrink>False</auto_shrink>
|
||||
<auto_close>False</auto_close>
|
||||
<hide_on_close>False</hide_on_close>
|
||||
|
||||
<widget>
|
||||
<class>GtkVBox</class>
|
||||
<child_name>GnomeDialog:vbox</child_name>
|
||||
<name>dialog-vbox6</name>
|
||||
<homogeneous>False</homogeneous>
|
||||
<spacing>8</spacing>
|
||||
<child>
|
||||
<padding>4</padding>
|
||||
<expand>True</expand>
|
||||
<fill>True</fill>
|
||||
</child>
|
||||
|
||||
<widget>
|
||||
<class>GtkHButtonBox</class>
|
||||
<child_name>GnomeDialog:action_area</child_name>
|
||||
<name>dialog-action_area6</name>
|
||||
<layout_style>GTK_BUTTONBOX_SPREAD</layout_style>
|
||||
<spacing>8</spacing>
|
||||
<child_min_width>85</child_min_width>
|
||||
<child_min_height>27</child_min_height>
|
||||
<child_ipad_x>7</child_ipad_x>
|
||||
<child_ipad_y>0</child_ipad_y>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>True</fill>
|
||||
<pack>GTK_PACK_END</pack>
|
||||
</child>
|
||||
|
||||
<widget>
|
||||
<class>GtkButton</class>
|
||||
<name>button21</name>
|
||||
<can_default>True</can_default>
|
||||
<can_focus>True</can_focus>
|
||||
<signal>
|
||||
<name>clicked</name>
|
||||
<handler>gnc_ui_print_check_dialog_ok_cb</handler>
|
||||
<data>Print_Check_Dialog</data>
|
||||
<last_modification_time>Tue, 28 Mar 2000 19:36:10 GMT</last_modification_time>
|
||||
</signal>
|
||||
<stock_button>GNOME_STOCK_BUTTON_OK</stock_button>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkButton</class>
|
||||
<name>button22</name>
|
||||
<can_default>True</can_default>
|
||||
<can_focus>True</can_focus>
|
||||
<signal>
|
||||
<name>clicked</name>
|
||||
<handler>gnc_ui_print_check_dialog_cancel_cb</handler>
|
||||
<data>Print_Check_Dialog</data>
|
||||
<last_modification_time>Tue, 28 Mar 2000 19:36:22 GMT</last_modification_time>
|
||||
</signal>
|
||||
<stock_button>GNOME_STOCK_BUTTON_CANCEL</stock_button>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkButton</class>
|
||||
<name>button23</name>
|
||||
<can_default>True</can_default>
|
||||
<can_focus>True</can_focus>
|
||||
<signal>
|
||||
<name>clicked</name>
|
||||
<handler>gnc_ui_print_check_dialog_help_cb</handler>
|
||||
<data>Print_Check_Dialog</data>
|
||||
<last_modification_time>Tue, 28 Mar 2000 19:36:37 GMT</last_modification_time>
|
||||
</signal>
|
||||
<stock_button>GNOME_STOCK_BUTTON_HELP</stock_button>
|
||||
</widget>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkNotebook</class>
|
||||
<name>notebook4</name>
|
||||
<can_focus>True</can_focus>
|
||||
<show_tabs>True</show_tabs>
|
||||
<show_border>True</show_border>
|
||||
<tab_pos>GTK_POS_TOP</tab_pos>
|
||||
<scrollable>False</scrollable>
|
||||
<tab_hborder>2</tab_hborder>
|
||||
<tab_vborder>2</tab_vborder>
|
||||
<popup_enable>False</popup_enable>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>True</expand>
|
||||
<fill>True</fill>
|
||||
</child>
|
||||
|
||||
<widget>
|
||||
<class>GtkVBox</class>
|
||||
<name>vbox10</name>
|
||||
<homogeneous>False</homogeneous>
|
||||
<spacing>0</spacing>
|
||||
|
||||
<widget>
|
||||
<class>GtkHBox</class>
|
||||
<name>hbox15</name>
|
||||
<homogeneous>False</homogeneous>
|
||||
<spacing>0</spacing>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
|
||||
<widget>
|
||||
<class>GtkVBox</class>
|
||||
<name>vbox11</name>
|
||||
<homogeneous>True</homogeneous>
|
||||
<spacing>0</spacing>
|
||||
<child>
|
||||
<padding>5</padding>
|
||||
<expand>True</expand>
|
||||
<fill>True</fill>
|
||||
</child>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label699</name>
|
||||
<label>Check format:</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>1</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label700</name>
|
||||
<label>Check position:</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>1</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label713</name>
|
||||
<label>Date format:</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>1</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkVBox</class>
|
||||
<name>vbox12</name>
|
||||
<homogeneous>True</homogeneous>
|
||||
<spacing>0</spacing>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>True</expand>
|
||||
<fill>True</fill>
|
||||
</child>
|
||||
|
||||
<widget>
|
||||
<class>GtkOptionMenu</class>
|
||||
<name>check_format_picker</name>
|
||||
<can_focus>True</can_focus>
|
||||
<items>Quicken/QuickBooks (tm) US-Letter
|
||||
Custom
|
||||
</items>
|
||||
<initial_choice>0</initial_choice>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkOptionMenu</class>
|
||||
<name>check_position_picker</name>
|
||||
<can_focus>True</can_focus>
|
||||
<items>Top
|
||||
Middle
|
||||
Bottom
|
||||
Custom
|
||||
</items>
|
||||
<initial_choice>0</initial_choice>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkOptionMenu</class>
|
||||
<name>date_format_picker</name>
|
||||
<can_focus>True</can_focus>
|
||||
<items>December 31, 2000
|
||||
31 December, 2000
|
||||
Dec 31, 2000
|
||||
31 Dec, 2000
|
||||
12/31/2000
|
||||
12/31/00
|
||||
31/12/2000
|
||||
31/12/00
|
||||
Custom
|
||||
</items>
|
||||
<initial_choice>0</initial_choice>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
</widget>
|
||||
</widget>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<child_name>Notebook:tab</child_name>
|
||||
<name>label847675</name>
|
||||
<label>Options</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>0.5</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkFrame</class>
|
||||
<name>frame5</name>
|
||||
<label>Custom check format</label>
|
||||
<label_xalign>0</label_xalign>
|
||||
<shadow_type>GTK_SHADOW_ETCHED_IN</shadow_type>
|
||||
|
||||
<widget>
|
||||
<class>GtkVBox</class>
|
||||
<name>vbox1x6</name>
|
||||
<homogeneous>False</homogeneous>
|
||||
<spacing>0</spacing>
|
||||
|
||||
<widget>
|
||||
<class>GtkHBox</class>
|
||||
<name>hbox16</name>
|
||||
<homogeneous>False</homogeneous>
|
||||
<spacing>0</spacing>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
|
||||
<widget>
|
||||
<class>GtkVBox</class>
|
||||
<name>vbox13</name>
|
||||
<homogeneous>True</homogeneous>
|
||||
<spacing>0</spacing>
|
||||
<child>
|
||||
<padding>2</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label702</name>
|
||||
<label></label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>0.5</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label701</name>
|
||||
<label>Payee:</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>1</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label705</name>
|
||||
<label>Date:</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>1</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label706</name>
|
||||
<label>Amount (words):</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>1</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label707</name>
|
||||
<label>Amount (numbers):</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>1</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label708</name>
|
||||
<label>Memo:</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>1</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label711</name>
|
||||
<label>Check position:</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>1</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label714</name>
|
||||
<label>Date format:</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>1</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label709</name>
|
||||
<label>Units:</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>1</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkVBox</class>
|
||||
<name>vbox14</name>
|
||||
<homogeneous>True</homogeneous>
|
||||
<spacing>0</spacing>
|
||||
<child>
|
||||
<padding>2</padding>
|
||||
<expand>False</expand>
|
||||
<fill>True</fill>
|
||||
</child>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label703</name>
|
||||
<label>x</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>0.5</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkSpinButton</class>
|
||||
<name>payee_x_entry</name>
|
||||
<can_focus>True</can_focus>
|
||||
<climb_rate>1</climb_rate>
|
||||
<digits>3</digits>
|
||||
<numeric>True</numeric>
|
||||
<update_policy>GTK_UPDATE_ALWAYS</update_policy>
|
||||
<snap>False</snap>
|
||||
<wrap>False</wrap>
|
||||
<value>0</value>
|
||||
<lower>0</lower>
|
||||
<upper>100000</upper>
|
||||
<step>0.1</step>
|
||||
<page>10</page>
|
||||
<page_size>10</page_size>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkSpinButton</class>
|
||||
<name>date_x_entry</name>
|
||||
<can_focus>True</can_focus>
|
||||
<climb_rate>1</climb_rate>
|
||||
<digits>3</digits>
|
||||
<numeric>True</numeric>
|
||||
<update_policy>GTK_UPDATE_ALWAYS</update_policy>
|
||||
<snap>False</snap>
|
||||
<wrap>False</wrap>
|
||||
<value>0</value>
|
||||
<lower>0</lower>
|
||||
<upper>100000</upper>
|
||||
<step>0.1</step>
|
||||
<page>10</page>
|
||||
<page_size>10</page_size>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkSpinButton</class>
|
||||
<name>amount_words_x_entry</name>
|
||||
<can_focus>True</can_focus>
|
||||
<climb_rate>1</climb_rate>
|
||||
<digits>3</digits>
|
||||
<numeric>True</numeric>
|
||||
<update_policy>GTK_UPDATE_ALWAYS</update_policy>
|
||||
<snap>False</snap>
|
||||
<wrap>False</wrap>
|
||||
<value>0</value>
|
||||
<lower>0</lower>
|
||||
<upper>100000</upper>
|
||||
<step>0.1</step>
|
||||
<page>10</page>
|
||||
<page_size>10</page_size>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkSpinButton</class>
|
||||
<name>amount_numbers_x_entry</name>
|
||||
<can_focus>True</can_focus>
|
||||
<climb_rate>1</climb_rate>
|
||||
<digits>3</digits>
|
||||
<numeric>True</numeric>
|
||||
<update_policy>GTK_UPDATE_ALWAYS</update_policy>
|
||||
<snap>False</snap>
|
||||
<wrap>False</wrap>
|
||||
<value>0</value>
|
||||
<lower>0</lower>
|
||||
<upper>100000</upper>
|
||||
<step>0.1</step>
|
||||
<page>10</page>
|
||||
<page_size>10</page_size>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkSpinButton</class>
|
||||
<name>memo_x_entry</name>
|
||||
<can_focus>True</can_focus>
|
||||
<climb_rate>1</climb_rate>
|
||||
<digits>3</digits>
|
||||
<numeric>True</numeric>
|
||||
<update_policy>GTK_UPDATE_ALWAYS</update_policy>
|
||||
<snap>False</snap>
|
||||
<wrap>False</wrap>
|
||||
<value>0</value>
|
||||
<lower>0</lower>
|
||||
<upper>100000</upper>
|
||||
<step>0.1</step>
|
||||
<page>10</page>
|
||||
<page_size>10</page_size>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkSpinButton</class>
|
||||
<name>check_position_entry</name>
|
||||
<can_focus>True</can_focus>
|
||||
<climb_rate>1</climb_rate>
|
||||
<digits>3</digits>
|
||||
<numeric>True</numeric>
|
||||
<update_policy>GTK_UPDATE_ALWAYS</update_policy>
|
||||
<snap>False</snap>
|
||||
<wrap>False</wrap>
|
||||
<value>0</value>
|
||||
<lower>0</lower>
|
||||
<upper>100000</upper>
|
||||
<step>0.1</step>
|
||||
<page>10</page>
|
||||
<page_size>10</page_size>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkSpinButton</class>
|
||||
<name>date_format_entry</name>
|
||||
<can_focus>True</can_focus>
|
||||
<climb_rate>1</climb_rate>
|
||||
<digits>3</digits>
|
||||
<numeric>True</numeric>
|
||||
<update_policy>GTK_UPDATE_ALWAYS</update_policy>
|
||||
<snap>False</snap>
|
||||
<wrap>False</wrap>
|
||||
<value>0</value>
|
||||
<lower>0</lower>
|
||||
<upper>100000</upper>
|
||||
<step>0.1</step>
|
||||
<page>10</page>
|
||||
<page_size>10</page_size>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkOptionMenu</class>
|
||||
<name>units_picker</name>
|
||||
<can_focus>True</can_focus>
|
||||
<items>Inches
|
||||
Centimeters
|
||||
Millimeters
|
||||
Points
|
||||
</items>
|
||||
<initial_choice>1</initial_choice>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkVBox</class>
|
||||
<name>vbox38</name>
|
||||
<homogeneous>True</homogeneous>
|
||||
<spacing>0</spacing>
|
||||
<child>
|
||||
<padding>2</padding>
|
||||
<expand>False</expand>
|
||||
<fill>True</fill>
|
||||
</child>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label744</name>
|
||||
<label>y</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>0.5</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkSpinButton</class>
|
||||
<name>payee_y_entry</name>
|
||||
<can_focus>True</can_focus>
|
||||
<climb_rate>1</climb_rate>
|
||||
<digits>3</digits>
|
||||
<numeric>True</numeric>
|
||||
<update_policy>GTK_UPDATE_ALWAYS</update_policy>
|
||||
<snap>False</snap>
|
||||
<wrap>False</wrap>
|
||||
<value>0</value>
|
||||
<lower>0</lower>
|
||||
<upper>100000</upper>
|
||||
<step>0.1</step>
|
||||
<page>10</page>
|
||||
<page_size>10</page_size>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkSpinButton</class>
|
||||
<name>date_y_entry</name>
|
||||
<can_focus>True</can_focus>
|
||||
<climb_rate>1</climb_rate>
|
||||
<digits>3</digits>
|
||||
<numeric>True</numeric>
|
||||
<update_policy>GTK_UPDATE_ALWAYS</update_policy>
|
||||
<snap>False</snap>
|
||||
<wrap>False</wrap>
|
||||
<value>0</value>
|
||||
<lower>0</lower>
|
||||
<upper>100000</upper>
|
||||
<step>0.1</step>
|
||||
<page>10</page>
|
||||
<page_size>10</page_size>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkSpinButton</class>
|
||||
<name>amount_words_y_entry</name>
|
||||
<can_focus>True</can_focus>
|
||||
<climb_rate>1</climb_rate>
|
||||
<digits>3</digits>
|
||||
<numeric>True</numeric>
|
||||
<update_policy>GTK_UPDATE_ALWAYS</update_policy>
|
||||
<snap>False</snap>
|
||||
<wrap>False</wrap>
|
||||
<value>0</value>
|
||||
<lower>0</lower>
|
||||
<upper>100000</upper>
|
||||
<step>0.1</step>
|
||||
<page>10</page>
|
||||
<page_size>10</page_size>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkSpinButton</class>
|
||||
<name>amount_numbers_y_entry</name>
|
||||
<can_focus>True</can_focus>
|
||||
<climb_rate>1</climb_rate>
|
||||
<digits>3</digits>
|
||||
<numeric>True</numeric>
|
||||
<update_policy>GTK_UPDATE_ALWAYS</update_policy>
|
||||
<snap>False</snap>
|
||||
<wrap>False</wrap>
|
||||
<value>0</value>
|
||||
<lower>0</lower>
|
||||
<upper>100000</upper>
|
||||
<step>0.1</step>
|
||||
<page>10</page>
|
||||
<page_size>10</page_size>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkSpinButton</class>
|
||||
<name>memo_y_entry</name>
|
||||
<can_focus>True</can_focus>
|
||||
<climb_rate>1</climb_rate>
|
||||
<digits>3</digits>
|
||||
<numeric>True</numeric>
|
||||
<update_policy>GTK_UPDATE_ALWAYS</update_policy>
|
||||
<snap>False</snap>
|
||||
<wrap>False</wrap>
|
||||
<value>0</value>
|
||||
<lower>0</lower>
|
||||
<upper>100000</upper>
|
||||
<step>0.1</step>
|
||||
<page>10</page>
|
||||
<page_size>10</page_size>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label745</name>
|
||||
<label></label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>0.5</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label746</name>
|
||||
<label> </label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>0.5</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label747</name>
|
||||
<label> </label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>0.5</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
</widget>
|
||||
</widget>
|
||||
</widget>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<child_name>Notebook:tab</child_name>
|
||||
<name>label847676</name>
|
||||
<label>Custom format</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>0.5</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
</widget>
|
||||
</widget>
|
||||
</widget>
|
||||
</widget>
|
||||
|
||||
</GTK-Interface>
|
48
src/gnome/glade/print_strings.c
Normal file
48
src/gnome/glade/print_strings.c
Normal file
@ -0,0 +1,48 @@
|
||||
/*
|
||||
* Translatable strings file generated by Glade.
|
||||
* Add this file to your project's POTFILES.in.
|
||||
* DO NOT compile it as part of your application.
|
||||
*/
|
||||
|
||||
gchar *s = N_("Print Check");
|
||||
gchar *s = N_("Check format:");
|
||||
gchar *s = N_("Check position:");
|
||||
gchar *s = N_("Date format:");
|
||||
gchar *s = N_("Quicken/QuickBooks (tm) US-Letter\n"
|
||||
"Custom\n"
|
||||
"");
|
||||
gchar *s = N_("Top\n"
|
||||
"Middle\n"
|
||||
"Bottom\n"
|
||||
"Custom\n"
|
||||
"");
|
||||
gchar *s = N_("December 31, 2000\n"
|
||||
"31 December, 2000\n"
|
||||
"Dec 31, 2000\n"
|
||||
"31 Dec, 2000\n"
|
||||
"12/31/2000\n"
|
||||
"12/31/00\n"
|
||||
"31/12/2000\n"
|
||||
"31/12/00\n"
|
||||
"Custom\n"
|
||||
"");
|
||||
gchar *s = N_("Options");
|
||||
gchar *s = N_("Custom check format");
|
||||
gchar *s = N_("Payee:");
|
||||
gchar *s = N_("Date:");
|
||||
gchar *s = N_("Amount (words):");
|
||||
gchar *s = N_("Amount (numbers):");
|
||||
gchar *s = N_("Memo:");
|
||||
gchar *s = N_("Check position:");
|
||||
gchar *s = N_("Date format:");
|
||||
gchar *s = N_("Units:");
|
||||
gchar *s = N_("x");
|
||||
gchar *s = N_("Inches\n"
|
||||
"Centimeters\n"
|
||||
"Millimeters\n"
|
||||
"Points\n"
|
||||
"");
|
||||
gchar *s = N_("y");
|
||||
gchar *s = N_(" ");
|
||||
gchar *s = N_(" ");
|
||||
gchar *s = N_("Custom format");
|
@ -175,877 +175,4 @@
|
||||
</widget>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GnomeDialog</class>
|
||||
<name>Print Check Dialog</name>
|
||||
<title>Print Check</title>
|
||||
<type>GTK_WINDOW_TOPLEVEL</type>
|
||||
<position>GTK_WIN_POS_NONE</position>
|
||||
<modal>False</modal>
|
||||
<allow_shrink>True</allow_shrink>
|
||||
<allow_grow>True</allow_grow>
|
||||
<auto_shrink>False</auto_shrink>
|
||||
<auto_close>False</auto_close>
|
||||
<hide_on_close>False</hide_on_close>
|
||||
|
||||
<widget>
|
||||
<class>GtkVBox</class>
|
||||
<child_name>GnomeDialog:vbox</child_name>
|
||||
<name>dialog-vbox6</name>
|
||||
<homogeneous>False</homogeneous>
|
||||
<spacing>8</spacing>
|
||||
<child>
|
||||
<padding>4</padding>
|
||||
<expand>True</expand>
|
||||
<fill>True</fill>
|
||||
</child>
|
||||
|
||||
<widget>
|
||||
<class>GtkHButtonBox</class>
|
||||
<child_name>GnomeDialog:action_area</child_name>
|
||||
<name>dialog-action_area6</name>
|
||||
<layout_style>GTK_BUTTONBOX_SPREAD</layout_style>
|
||||
<spacing>8</spacing>
|
||||
<child_min_width>85</child_min_width>
|
||||
<child_min_height>27</child_min_height>
|
||||
<child_ipad_x>7</child_ipad_x>
|
||||
<child_ipad_y>0</child_ipad_y>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>True</fill>
|
||||
<pack>GTK_PACK_END</pack>
|
||||
</child>
|
||||
|
||||
<widget>
|
||||
<class>GtkButton</class>
|
||||
<name>button21</name>
|
||||
<can_default>True</can_default>
|
||||
<can_focus>True</can_focus>
|
||||
<signal>
|
||||
<name>clicked</name>
|
||||
<handler>gnc_ui_print_check_dialog_ok_cb</handler>
|
||||
<data>Print_Check_Dialog</data>
|
||||
<last_modification_time>Tue, 28 Mar 2000 19:36:10 GMT</last_modification_time>
|
||||
</signal>
|
||||
<stock_button>GNOME_STOCK_BUTTON_OK</stock_button>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkButton</class>
|
||||
<name>button22</name>
|
||||
<can_default>True</can_default>
|
||||
<can_focus>True</can_focus>
|
||||
<signal>
|
||||
<name>clicked</name>
|
||||
<handler>gnc_ui_print_check_dialog_cancel_cb</handler>
|
||||
<data>Print_Check_Dialog</data>
|
||||
<last_modification_time>Tue, 28 Mar 2000 19:36:22 GMT</last_modification_time>
|
||||
</signal>
|
||||
<stock_button>GNOME_STOCK_BUTTON_CANCEL</stock_button>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkButton</class>
|
||||
<name>button23</name>
|
||||
<can_default>True</can_default>
|
||||
<can_focus>True</can_focus>
|
||||
<signal>
|
||||
<name>clicked</name>
|
||||
<handler>gnc_ui_print_check_dialog_help_cb</handler>
|
||||
<data>Print_Check_Dialog</data>
|
||||
<last_modification_time>Tue, 28 Mar 2000 19:36:37 GMT</last_modification_time>
|
||||
</signal>
|
||||
<stock_button>GNOME_STOCK_BUTTON_HELP</stock_button>
|
||||
</widget>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkNotebook</class>
|
||||
<name>notebook4</name>
|
||||
<can_focus>True</can_focus>
|
||||
<show_tabs>True</show_tabs>
|
||||
<show_border>True</show_border>
|
||||
<tab_pos>GTK_POS_TOP</tab_pos>
|
||||
<scrollable>False</scrollable>
|
||||
<tab_hborder>2</tab_hborder>
|
||||
<tab_vborder>2</tab_vborder>
|
||||
<popup_enable>False</popup_enable>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>True</expand>
|
||||
<fill>True</fill>
|
||||
</child>
|
||||
|
||||
<widget>
|
||||
<class>GtkVBox</class>
|
||||
<name>vbox10</name>
|
||||
<homogeneous>False</homogeneous>
|
||||
<spacing>0</spacing>
|
||||
|
||||
<widget>
|
||||
<class>GtkHBox</class>
|
||||
<name>hbox15</name>
|
||||
<homogeneous>False</homogeneous>
|
||||
<spacing>0</spacing>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
|
||||
<widget>
|
||||
<class>GtkVBox</class>
|
||||
<name>vbox11</name>
|
||||
<homogeneous>True</homogeneous>
|
||||
<spacing>0</spacing>
|
||||
<child>
|
||||
<padding>5</padding>
|
||||
<expand>True</expand>
|
||||
<fill>True</fill>
|
||||
</child>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label699</name>
|
||||
<label>Check format:</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>1</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label700</name>
|
||||
<label>Check position:</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>1</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label713</name>
|
||||
<label>Date format:</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>1</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkVBox</class>
|
||||
<name>vbox12</name>
|
||||
<homogeneous>True</homogeneous>
|
||||
<spacing>0</spacing>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>True</expand>
|
||||
<fill>True</fill>
|
||||
</child>
|
||||
|
||||
<widget>
|
||||
<class>GtkOptionMenu</class>
|
||||
<name>check_format_picker</name>
|
||||
<can_focus>True</can_focus>
|
||||
<items>Quicken/QuickBooks (tm) US-Letter
|
||||
Custom
|
||||
</items>
|
||||
<initial_choice>0</initial_choice>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkOptionMenu</class>
|
||||
<name>check_position_picker</name>
|
||||
<can_focus>True</can_focus>
|
||||
<items>Top
|
||||
Middle
|
||||
Bottom
|
||||
Custom
|
||||
</items>
|
||||
<initial_choice>0</initial_choice>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkOptionMenu</class>
|
||||
<name>date_format_picker</name>
|
||||
<can_focus>True</can_focus>
|
||||
<items>December 31, 2000
|
||||
31 December, 2000
|
||||
Dec 31, 2000
|
||||
31 Dec, 2000
|
||||
12/31/2000
|
||||
12/31/00
|
||||
31/12/2000
|
||||
31/12/00
|
||||
Custom
|
||||
</items>
|
||||
<initial_choice>0</initial_choice>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
</widget>
|
||||
</widget>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<child_name>Notebook:tab</child_name>
|
||||
<name>label847675</name>
|
||||
<label>Options</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>0.5</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkFrame</class>
|
||||
<name>frame5</name>
|
||||
<label>Custom check format</label>
|
||||
<label_xalign>0</label_xalign>
|
||||
<shadow_type>GTK_SHADOW_ETCHED_IN</shadow_type>
|
||||
|
||||
<widget>
|
||||
<class>GtkVBox</class>
|
||||
<name>vbox1x6</name>
|
||||
<homogeneous>False</homogeneous>
|
||||
<spacing>0</spacing>
|
||||
|
||||
<widget>
|
||||
<class>GtkHBox</class>
|
||||
<name>hbox16</name>
|
||||
<homogeneous>False</homogeneous>
|
||||
<spacing>0</spacing>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
|
||||
<widget>
|
||||
<class>GtkVBox</class>
|
||||
<name>vbox13</name>
|
||||
<homogeneous>True</homogeneous>
|
||||
<spacing>0</spacing>
|
||||
<child>
|
||||
<padding>2</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label702</name>
|
||||
<label></label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>0.5</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label701</name>
|
||||
<label>Payee:</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>1</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label705</name>
|
||||
<label>Date:</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>1</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label706</name>
|
||||
<label>Amount (words):</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>1</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label707</name>
|
||||
<label>Amount (numbers):</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>1</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label708</name>
|
||||
<label>Memo:</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>1</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label711</name>
|
||||
<label>Check position:</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>1</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label714</name>
|
||||
<label>Date format:</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>1</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label709</name>
|
||||
<label>Units:</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>1</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkVBox</class>
|
||||
<name>vbox14</name>
|
||||
<homogeneous>True</homogeneous>
|
||||
<spacing>0</spacing>
|
||||
<child>
|
||||
<padding>2</padding>
|
||||
<expand>False</expand>
|
||||
<fill>True</fill>
|
||||
</child>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label703</name>
|
||||
<label>x</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>0.5</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkSpinButton</class>
|
||||
<name>payee_x_entry</name>
|
||||
<can_focus>True</can_focus>
|
||||
<climb_rate>1</climb_rate>
|
||||
<digits>3</digits>
|
||||
<numeric>True</numeric>
|
||||
<update_policy>GTK_UPDATE_ALWAYS</update_policy>
|
||||
<snap>False</snap>
|
||||
<wrap>False</wrap>
|
||||
<value>0</value>
|
||||
<lower>0</lower>
|
||||
<upper>100000</upper>
|
||||
<step>0.1</step>
|
||||
<page>10</page>
|
||||
<page_size>10</page_size>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkSpinButton</class>
|
||||
<name>date_x_entry</name>
|
||||
<can_focus>True</can_focus>
|
||||
<climb_rate>1</climb_rate>
|
||||
<digits>3</digits>
|
||||
<numeric>True</numeric>
|
||||
<update_policy>GTK_UPDATE_ALWAYS</update_policy>
|
||||
<snap>False</snap>
|
||||
<wrap>False</wrap>
|
||||
<value>0</value>
|
||||
<lower>0</lower>
|
||||
<upper>100000</upper>
|
||||
<step>0.1</step>
|
||||
<page>10</page>
|
||||
<page_size>10</page_size>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkSpinButton</class>
|
||||
<name>amount_words_x_entry</name>
|
||||
<can_focus>True</can_focus>
|
||||
<climb_rate>1</climb_rate>
|
||||
<digits>3</digits>
|
||||
<numeric>True</numeric>
|
||||
<update_policy>GTK_UPDATE_ALWAYS</update_policy>
|
||||
<snap>False</snap>
|
||||
<wrap>False</wrap>
|
||||
<value>0</value>
|
||||
<lower>0</lower>
|
||||
<upper>100000</upper>
|
||||
<step>0.1</step>
|
||||
<page>10</page>
|
||||
<page_size>10</page_size>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkSpinButton</class>
|
||||
<name>amount_numbers_x_entry</name>
|
||||
<can_focus>True</can_focus>
|
||||
<climb_rate>1</climb_rate>
|
||||
<digits>3</digits>
|
||||
<numeric>True</numeric>
|
||||
<update_policy>GTK_UPDATE_ALWAYS</update_policy>
|
||||
<snap>False</snap>
|
||||
<wrap>False</wrap>
|
||||
<value>0</value>
|
||||
<lower>0</lower>
|
||||
<upper>100000</upper>
|
||||
<step>0.1</step>
|
||||
<page>10</page>
|
||||
<page_size>10</page_size>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkSpinButton</class>
|
||||
<name>memo_x_entry</name>
|
||||
<can_focus>True</can_focus>
|
||||
<climb_rate>1</climb_rate>
|
||||
<digits>3</digits>
|
||||
<numeric>True</numeric>
|
||||
<update_policy>GTK_UPDATE_ALWAYS</update_policy>
|
||||
<snap>False</snap>
|
||||
<wrap>False</wrap>
|
||||
<value>0</value>
|
||||
<lower>0</lower>
|
||||
<upper>100000</upper>
|
||||
<step>0.1</step>
|
||||
<page>10</page>
|
||||
<page_size>10</page_size>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkSpinButton</class>
|
||||
<name>check_position_entry</name>
|
||||
<can_focus>True</can_focus>
|
||||
<climb_rate>1</climb_rate>
|
||||
<digits>3</digits>
|
||||
<numeric>True</numeric>
|
||||
<update_policy>GTK_UPDATE_ALWAYS</update_policy>
|
||||
<snap>False</snap>
|
||||
<wrap>False</wrap>
|
||||
<value>0</value>
|
||||
<lower>0</lower>
|
||||
<upper>100000</upper>
|
||||
<step>0.1</step>
|
||||
<page>10</page>
|
||||
<page_size>10</page_size>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkSpinButton</class>
|
||||
<name>date_format_entry</name>
|
||||
<can_focus>True</can_focus>
|
||||
<climb_rate>1</climb_rate>
|
||||
<digits>3</digits>
|
||||
<numeric>True</numeric>
|
||||
<update_policy>GTK_UPDATE_ALWAYS</update_policy>
|
||||
<snap>False</snap>
|
||||
<wrap>False</wrap>
|
||||
<value>0</value>
|
||||
<lower>0</lower>
|
||||
<upper>100000</upper>
|
||||
<step>0.1</step>
|
||||
<page>10</page>
|
||||
<page_size>10</page_size>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkOptionMenu</class>
|
||||
<name>units_picker</name>
|
||||
<can_focus>True</can_focus>
|
||||
<items>Inches
|
||||
Centimeters
|
||||
Millimeters
|
||||
Points
|
||||
</items>
|
||||
<initial_choice>1</initial_choice>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkVBox</class>
|
||||
<name>vbox38</name>
|
||||
<homogeneous>True</homogeneous>
|
||||
<spacing>0</spacing>
|
||||
<child>
|
||||
<padding>2</padding>
|
||||
<expand>False</expand>
|
||||
<fill>True</fill>
|
||||
</child>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label744</name>
|
||||
<label>y</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>0.5</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkSpinButton</class>
|
||||
<name>payee_y_entry</name>
|
||||
<can_focus>True</can_focus>
|
||||
<climb_rate>1</climb_rate>
|
||||
<digits>3</digits>
|
||||
<numeric>True</numeric>
|
||||
<update_policy>GTK_UPDATE_ALWAYS</update_policy>
|
||||
<snap>False</snap>
|
||||
<wrap>False</wrap>
|
||||
<value>0</value>
|
||||
<lower>0</lower>
|
||||
<upper>100000</upper>
|
||||
<step>0.1</step>
|
||||
<page>10</page>
|
||||
<page_size>10</page_size>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkSpinButton</class>
|
||||
<name>date_y_entry</name>
|
||||
<can_focus>True</can_focus>
|
||||
<climb_rate>1</climb_rate>
|
||||
<digits>3</digits>
|
||||
<numeric>True</numeric>
|
||||
<update_policy>GTK_UPDATE_ALWAYS</update_policy>
|
||||
<snap>False</snap>
|
||||
<wrap>False</wrap>
|
||||
<value>0</value>
|
||||
<lower>0</lower>
|
||||
<upper>100000</upper>
|
||||
<step>0.1</step>
|
||||
<page>10</page>
|
||||
<page_size>10</page_size>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkSpinButton</class>
|
||||
<name>amount_words_y_entry</name>
|
||||
<can_focus>True</can_focus>
|
||||
<climb_rate>1</climb_rate>
|
||||
<digits>3</digits>
|
||||
<numeric>True</numeric>
|
||||
<update_policy>GTK_UPDATE_ALWAYS</update_policy>
|
||||
<snap>False</snap>
|
||||
<wrap>False</wrap>
|
||||
<value>0</value>
|
||||
<lower>0</lower>
|
||||
<upper>100000</upper>
|
||||
<step>0.1</step>
|
||||
<page>10</page>
|
||||
<page_size>10</page_size>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkSpinButton</class>
|
||||
<name>amount_numbers_y_entry</name>
|
||||
<can_focus>True</can_focus>
|
||||
<climb_rate>1</climb_rate>
|
||||
<digits>3</digits>
|
||||
<numeric>True</numeric>
|
||||
<update_policy>GTK_UPDATE_ALWAYS</update_policy>
|
||||
<snap>False</snap>
|
||||
<wrap>False</wrap>
|
||||
<value>0</value>
|
||||
<lower>0</lower>
|
||||
<upper>100000</upper>
|
||||
<step>0.1</step>
|
||||
<page>10</page>
|
||||
<page_size>10</page_size>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkSpinButton</class>
|
||||
<name>memo_y_entry</name>
|
||||
<can_focus>True</can_focus>
|
||||
<climb_rate>1</climb_rate>
|
||||
<digits>3</digits>
|
||||
<numeric>True</numeric>
|
||||
<update_policy>GTK_UPDATE_ALWAYS</update_policy>
|
||||
<snap>False</snap>
|
||||
<wrap>False</wrap>
|
||||
<value>0</value>
|
||||
<lower>0</lower>
|
||||
<upper>100000</upper>
|
||||
<step>0.1</step>
|
||||
<page>10</page>
|
||||
<page_size>10</page_size>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label745</name>
|
||||
<label></label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>0.5</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label746</name>
|
||||
<label> </label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>0.5</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<name>label747</name>
|
||||
<label> </label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>0.5</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
<child>
|
||||
<padding>0</padding>
|
||||
<expand>False</expand>
|
||||
<fill>False</fill>
|
||||
</child>
|
||||
</widget>
|
||||
</widget>
|
||||
</widget>
|
||||
</widget>
|
||||
</widget>
|
||||
|
||||
<widget>
|
||||
<class>GtkLabel</class>
|
||||
<child_name>Notebook:tab</child_name>
|
||||
<name>label847676</name>
|
||||
<label>Custom format</label>
|
||||
<justify>GTK_JUSTIFY_CENTER</justify>
|
||||
<wrap>False</wrap>
|
||||
<xalign>0.5</xalign>
|
||||
<yalign>0.5</yalign>
|
||||
<xpad>0</xpad>
|
||||
<ypad>0</ypad>
|
||||
</widget>
|
||||
</widget>
|
||||
</widget>
|
||||
</widget>
|
||||
|
||||
</GTK-Interface>
|
||||
|
Loading…
Reference in New Issue
Block a user