~ubuntu-branches/ubuntu/oneiric/gpe-expenses/oneiric

« back to all changes in this revision

Viewing changes to doc/man/man3/GUI.3

  • Committer: Bazaar Package Importer
  • Author(s): Neil Williams
  • Date: 2007-12-07 00:08:39 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20071207000839-sh6utdxr23ymhd8d
Tags: 0.1.4-1
* New upstream release
* use machine operable debian/copyright, migrate to standards 3.7.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.TH "Gtk interface" 3 "9 Sep 2007" "Version 0.1.3" "gpe-expenses" \" -*- nroff -*-
 
1
.TH "Gtk interface" 3 "10 Dec 2007" "Version 0.1.4" "gpe-expenses" \" -*- nroff -*-
2
2
.ad l
3
3
.nh
4
4
.SH NAME
25
25
 
26
26
.in +1c
27
27
.ti -1c
28
 
.RI "void \fBopen_expenses_window\fP (\fBGpeExpenseData\fP *context)"
 
28
.RI "void \fBopen_expenses_window\fP (GpeExpenseData *context)"
29
29
.br
30
30
.RI "\fIMain gpe-expenses window. \fP"
31
31
.in -1c
32
32
.SH "Function Documentation"
33
33
.PP 
34
 
.SS "void open_expenses_window (\fBGpeExpenseData\fP * context)"
 
34
.SS "void open_expenses_window (GpeExpenseData * context)"
35
35
.PP
36
36
Main gpe-expenses window. 
37
37
.PP
42
42
.PP
43
43
 
44
44
.PP
45
 
Definition at line 876 of file expenses-gtk.c.
46
 
.PP
47
 
References _, GpeExpenseData::book, and GPE_QOF_EXPENSES.
 
45
Definition at line 904 of file expenses-gtk.c.
48
46
.PP
49
47
.nf
50
 
877 {
51
 
878         gboolean large_screen;
52
 
879         gboolean mode_landscape;
53
 
880         GtkWidget *window;
54
 
881         GtkWidget *vbox;
55
 
882 
56
 
883         g_return_if_fail(context);
57
 
884         ENTER (' ');
58
 
885         vbox = gtk_vbox_new (FALSE, 0);
59
 
886 
60
 
887         large_screen = (gdk_screen_width() > 400);
61
 
888         mode_landscape = (gdk_screen_width() > gdk_screen_height());
62
 
889         gpe_pim_categories_init ();
63
 
890         window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
64
 
891         gtk_window_set_default_size (GTK_WINDOW (window), 240, 320);
65
 
892         gtk_window_set_title (GTK_WINDOW (window), _('Expenses'));
66
 
893         gpe_set_window_icon (window, 'icon');
67
 
894 
68
 
895         gtk_box_pack_start (GTK_BOX (vbox), set_toolbar(context), FALSE, FALSE, 0);
69
 
896         g_signal_connect (G_OBJECT (window), 'delete-event',
70
 
897                         G_CALLBACK (gtk_main_quit), NULL);
71
 
898         
72
 
899         gtk_box_pack_start (GTK_BOX (vbox), set_list_view(context), TRUE, TRUE, 0);
73
 
900 
74
 
901         gtk_container_add (GTK_CONTAINER (window), vbox);
75
 
902         gtk_widget_show_all (window);
76
 
903         /* Populate the list from qof_object_foreach */
77
 
904         qof_object_foreach(GPE_QOF_EXPENSES, context->book, 
78
 
905                 exp_show_entities, context);
79
 
906         LEAVE (' ');
80
 
907 }
 
48
905 {
 
49
906         gboolean large_screen;
 
50
907         gboolean mode_landscape;
 
51
908         GtkWidget *window;
 
52
909         GtkWidget *vbox;
 
53
910 
 
54
911         g_return_if_fail(context);
 
55
912         ENTER (' ');
 
56
913         vbox = gtk_vbox_new (FALSE, 0);
 
57
914 
 
58
915         large_screen = (gdk_screen_width() > 400);
 
59
916         mode_landscape = (gdk_screen_width() > gdk_screen_height());
 
60
917         gpe_pim_categories_init ();
 
61
918         window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
 
62
919         gtk_window_set_default_size (GTK_WINDOW (window), 240, 320);
 
63
920         gtk_window_set_title (GTK_WINDOW (window), _('Expenses'));
 
64
921         gpe_set_window_icon (window, 'icon');
 
65
922 
 
66
923         gtk_box_pack_start (GTK_BOX (vbox), set_toolbar(context), FALSE, FALSE, 0);
 
67
924         g_signal_connect (G_OBJECT (window), 'delete-event',
 
68
925                         G_CALLBACK (gtk_main_quit), NULL);
 
69
926         
 
70
927         gtk_box_pack_start (GTK_BOX (vbox), set_list_view(context), TRUE, TRUE, 0);
 
71
928 
 
72
929         gtk_container_add (GTK_CONTAINER (window), vbox);
 
73
930         gtk_widget_show_all (window);
 
74
931         /* Populate the list from qof_object_foreach */
 
75
932         qof_object_foreach(GPE_QOF_EXPENSES, context->book, 
 
76
933                 exp_show_entities, context);
 
77
934         LEAVE (' ');
 
78
935 }
81
79
.fi
82
80
.PP
83
81