diff options
author | Radek Doulik <rodo@src.gnome.org> | 2003-01-22 01:23:38 +0800 |
---|---|---|
committer | Radek Doulik <rodo@src.gnome.org> | 2003-01-22 01:23:38 +0800 |
commit | 16b54010c94762d2032c7a61c6b2847f8ba2c3ea (patch) | |
tree | 3c0d499305e356946be44e5bdf5a9015a788280a /calendar/gui | |
parent | 52f0cb50fe082682c5c33e81c2e42a6e9a757123 (diff) | |
download | gsoc2013-evolution-16b54010c94762d2032c7a61c6b2847f8ba2c3ea.tar gsoc2013-evolution-16b54010c94762d2032c7a61c6b2847f8ba2c3ea.tar.gz gsoc2013-evolution-16b54010c94762d2032c7a61c6b2847f8ba2c3ea.tar.bz2 gsoc2013-evolution-16b54010c94762d2032c7a61c6b2847f8ba2c3ea.tar.lz gsoc2013-evolution-16b54010c94762d2032c7a61c6b2847f8ba2c3ea.tar.xz gsoc2013-evolution-16b54010c94762d2032c7a61c6b2847f8ba2c3ea.tar.zst gsoc2013-evolution-16b54010c94762d2032c7a61c6b2847f8ba2c3ea.zip |
applied patch from Frederic Crozat <fcrozat@mandrakesoft.com>
svn path=/trunk/; revision=19540
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/print.c | 46 | ||||
-rw-r--r-- | calendar/gui/tasks-control.c | 7 |
2 files changed, 26 insertions, 27 deletions
diff --git a/calendar/gui/print.c b/calendar/gui/print.c index 64873bce2e..a9c6509530 100644 --- a/calendar/gui/print.c +++ b/calendar/gui/print.c @@ -35,11 +35,11 @@ #include <libgnomeui/gnome-stock-icons.h> #include <libgnomeprint/gnome-print.h> #include <libgnomeprint/gnome-print-paper.h> -#include <libgnomeprint/gnome-print-master.h> -#include <libgnomeprintui/gnome-print-master-preview.h> +#include <libgnomeprint/gnome-print-job.h> +#include <libgnomeprintui/gnome-print-job-preview.h> #include <libgnomeprintui/gnome-print-paper-selector.h> #include <libgnomeprintui/gnome-print-preview.h> -#include <libgnomeprintui/gnome-printer-dialog.h> +#include <libgnomeprintui/gnome-print-dialog.h> #include <e-util/e-dialog-widgets.h> #include <e-util/e-time-utils.h> #include <gal/widgets/e-unicode.h> @@ -2409,7 +2409,7 @@ print_calendar (GnomeCalendar *gcal, gboolean preview, time_t date, { #if 0 GnomePrintConfig *config; - GnomePrintMaster *gpm; + GnomePrintJob *gpm; GnomePrintContext *pc; int copies, collate; double l, r, t, b; @@ -2465,18 +2465,18 @@ print_calendar (GnomeCalendar *gcal, gboolean preview, time_t date, /* FIXME: allow configuration of paper size */ - gpm = gnome_print_master_new (); + gpm = gnome_print_job_new (); if (paper_info == NULL) paper_info = gnome_paper_with_name (gnome_paper_name_default ()); - gnome_print_master_set_paper (gpm, paper_info); + gnome_print_job_set_paper (gpm, paper_info); if (printer) - gnome_print_master_set_printer (gpm, printer); + gnome_print_job_set_printer (gpm, printer); - gnome_print_master_set_copies (gpm, copies, collate); + gnome_print_job_set_copies (gpm, copies, collate); - pc = gnome_print_master_get_context (gpm); + pc = gnome_print_job_get_context (gpm); l = gnome_paper_lmargin (paper_info); r = gnome_paper_pswidth (paper_info) @@ -2506,19 +2506,19 @@ print_calendar (GnomeCalendar *gcal, gboolean preview, time_t date, g_assert_not_reached (); } - gnome_print_master_close (gpm); + gnome_print_job_close (gpm); if (preview) { - GnomePrintMasterPreview *gpmp; + GnomePrintJobPreview *gpmp; gboolean landscape = FALSE; if (default_view == PRINT_VIEW_MONTH) landscape = TRUE; - gpmp = gnome_print_master_preview_new_with_orientation (gpm, _("Print Preview"), landscape); + gpmp = gnome_print_job_preview_new_with_orientation (gpm, _("Print Preview"), landscape); gtk_widget_show (GTK_WIDGET (gpmp)); } else { - gnome_print_master_print (gpm); + gnome_print_job_print (gpm); } g_object_unref (gpm); @@ -2531,7 +2531,7 @@ print_comp (CalComponent *comp, CalClient *client, gboolean preview) { #if 0 GnomePrinter *printer; - GnomePrintMaster *gpm; + GnomePrintJob *gpm; GnomePrintContext *pc; int copies, collate; double l, r, t, b; @@ -2581,18 +2581,18 @@ print_comp (CalComponent *comp, CalClient *client, gboolean preview) /* FIXME: allow configuration of paper size */ - gpm = gnome_print_master_new (); + gpm = gnome_print_job_new (); if (paper_info == NULL) paper_info = gnome_paper_with_name (gnome_paper_name_default ()); - gnome_print_master_set_paper (gpm, paper_info); + gnome_print_job_set_paper (gpm, paper_info); if (printer) - gnome_print_master_set_printer (gpm, printer); + gnome_print_job_set_printer (gpm, printer); - gnome_print_master_set_copies (gpm, copies, collate); + gnome_print_job_set_copies (gpm, copies, collate); - pc = gnome_print_master_get_context (gpm); + pc = gnome_print_job_get_context (gpm); l = gnome_paper_lmargin (paper_info); r = gnome_paper_pswidth (paper_info) @@ -2603,16 +2603,16 @@ print_comp (CalComponent *comp, CalClient *client, gboolean preview) print_comp_item (pc, comp, client, l, r, t, b); - gnome_print_master_close (gpm); + gnome_print_job_close (gpm); if (preview) { - GnomePrintMasterPreview *gpmp; + GnomePrintJobPreview *gpmp; - gpmp = gnome_print_master_preview_new (gpm, + gpmp = gnome_print_job_preview_new (gpm, _("Print Preview")); gtk_widget_show (GTK_WIDGET (gpmp)); } else { - gnome_print_master_print (gpm); + gnome_print_job_print (gpm); } g_object_unref (gpm); diff --git a/calendar/gui/tasks-control.c b/calendar/gui/tasks-control.c index b7526a68bc..1716758edb 100644 --- a/calendar/gui/tasks-control.c +++ b/calendar/gui/tasks-control.c @@ -32,12 +32,11 @@ #include <libgnomeui/gnome-stock-icons.h> #include <libgnomeprint/gnome-print.h> #include <libgnomeprint/gnome-print-paper.h> -#include <libgnomeprint/gnome-print-master.h> -#include <libgnomeprintui/gnome-print-master-preview.h> +#include <libgnomeprint/gnome-print-job.h> +#include <libgnomeprintui/gnome-print-job-preview.h> #include <libgnomeprintui/gnome-print-paper-selector.h> -#include <libgnomeprintui/gnome-print-copies.h> #include <libgnomeprintui/gnome-print-preview.h> -#include <libgnomeprintui/gnome-printer-dialog.h> +#include <libgnomeprintui/gnome-print-dialog.h> #include <bonobo/bonobo-control.h> #include <bonobo/bonobo-property-bag.h> #include <bonobo/bonobo-ui-util.h> |