1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
/* CtkPrintJob
 * Copyright (C) 2006 John (J5) Palmieri  <johnp@redhat.com>
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library. If not, see <http://www.gnu.org/licenses/>.
 */

/**
 * SECTION:ctkprintjob
 * @Title: CtkPrintJob
 * @Short_description: Represents a print job
 * @Include: ctk/ctkunixprint.h
 *
 * A #CtkPrintJob object represents a job that is sent to a
 * printer. You only need to deal directly with print jobs if
 * you use the non-portable #CtkPrintUnixDialog API.
 *
 * Use ctk_print_job_get_surface() to obtain the cairo surface
 * onto which the pages must be drawn. Use ctk_print_job_send()
 * to send the finished job to the printer. If you don’t use cairo
 * #CtkPrintJob also supports printing of manually generated postscript,
 * via ctk_print_job_set_source_file().
 */
#include "config.h"
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <fcntl.h>
#include <errno.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <sys/types.h>
#include <sys/stat.h>

#include <glib/gstdio.h>
#include "ctkintl.h"
#include "ctkprivate.h"

#include "ctkprintjob.h"
#include "ctkprinter.h"
#include "ctkprinter-private.h"
#include "ctkprintbackend.h"

#ifndef O_BINARY
#define O_BINARY 0
#endif

struct _CtkPrintJobPrivate
{
  gchar *title;

  GIOChannel *spool_io;
  cairo_surface_t *surface;

  CtkPrintStatus status;
  CtkPrintBackend *backend;
  CtkPrinter *printer;
  CtkPrintSettings *settings;
  CtkPageSetup *page_setup;

  CtkPrintPages print_pages;
  CtkPageRange *page_ranges;
  gint num_page_ranges;
  CtkPageSet page_set;
  gint num_copies;
  gdouble scale;
  guint number_up;
  CtkNumberUpLayout number_up_layout;

  guint printer_set           : 1;
  guint page_setup_set        : 1;
  guint settings_set          : 1;
  guint track_print_status    : 1;
  guint rotate_to_orientation : 1;
  guint collate               : 1;
  guint reverse               : 1;
};

static void     ctk_print_job_finalize     (GObject               *object);
static void     ctk_print_job_set_property (GObject               *object,
					    guint                  prop_id,
					    const GValue          *value,
					    GParamSpec            *pspec);
static void     ctk_print_job_get_property (GObject               *object,
					    guint                  prop_id,
					    GValue                *value,
					    GParamSpec            *pspec);
static void     ctk_print_job_constructed  (GObject               *object);

enum {
  STATUS_CHANGED,
  LAST_SIGNAL
};

enum {
  PROP_0,
  PROP_TITLE,
  PROP_PRINTER,
  PROP_PAGE_SETUP,
  PROP_SETTINGS,
  PROP_TRACK_PRINT_STATUS
};

static guint signals[LAST_SIGNAL] = { 0 };

G_DEFINE_TYPE_WITH_PRIVATE (CtkPrintJob, ctk_print_job, G_TYPE_OBJECT)<--- There is an unknown macro here somewhere. Configuration is required. If G_DEFINE_TYPE_WITH_PRIVATE is a macro then please configure it.

static void
ctk_print_job_class_init (CtkPrintJobClass *class)
{
  GObjectClass *object_class;
  object_class = (GObjectClass *) class;

  object_class->finalize = ctk_print_job_finalize;
  object_class->constructed = ctk_print_job_constructed;
  object_class->set_property = ctk_print_job_set_property;
  object_class->get_property = ctk_print_job_get_property;

  g_object_class_install_property (object_class,
                                   PROP_TITLE,
                                   g_param_spec_string ("title",
						        P_("Title"),
						        P_("Title of the print job"),
						        NULL,
							CTK_PARAM_READWRITE |
						        G_PARAM_CONSTRUCT_ONLY));

  g_object_class_install_property (object_class,
                                   PROP_PRINTER,
                                   g_param_spec_object ("printer",
						        P_("Printer"),
						        P_("Printer to print the job to"),
						        CTK_TYPE_PRINTER,
							CTK_PARAM_READWRITE |
						        G_PARAM_CONSTRUCT_ONLY));

  g_object_class_install_property (object_class,
                                   PROP_SETTINGS,
                                   g_param_spec_object ("settings",
						        P_("Settings"),
						        P_("Printer settings"),
						        CTK_TYPE_PRINT_SETTINGS,
							CTK_PARAM_READWRITE |
						        G_PARAM_CONSTRUCT_ONLY));

  g_object_class_install_property (object_class,
                                   PROP_PAGE_SETUP,
                                   g_param_spec_object ("page-setup",
						        P_("Page Setup"),
						        P_("Page Setup"),
						        CTK_TYPE_PAGE_SETUP,
							CTK_PARAM_READWRITE |
						        G_PARAM_CONSTRUCT_ONLY));

  g_object_class_install_property (object_class,
				   PROP_TRACK_PRINT_STATUS,
				   g_param_spec_boolean ("track-print-status",
							 P_("Track Print Status"),
							 P_("TRUE if the print job will continue to emit "
							    "status-changed signals after the print data "
							    "has been sent to the printer or print server."),
							 FALSE,
							 CTK_PARAM_READWRITE));
  

  /**
   * CtkPrintJob::status-changed:
   * @job: the #CtkPrintJob object on which the signal was emitted
   *
   * Gets emitted when the status of a job changes. The signal handler
   * can use ctk_print_job_get_status() to obtain the new status.
   *
   * Since: 2.10
   */
  signals[STATUS_CHANGED] =
    g_signal_new (I_("status-changed"),
		  G_TYPE_FROM_CLASS (class),
		  G_SIGNAL_RUN_LAST,
		  G_STRUCT_OFFSET (CtkPrintJobClass, status_changed),
		  NULL, NULL,
		  NULL,
		  G_TYPE_NONE, 0);
}

static void
ctk_print_job_init (CtkPrintJob *job)
{
  CtkPrintJobPrivate *priv;

  priv = job->priv = ctk_print_job_get_instance_private (job);

  priv->spool_io = NULL;

  priv->title = g_strdup ("");
  priv->surface = NULL;
  priv->backend = NULL;
  priv->printer = NULL;

  priv->printer_set = FALSE;
  priv->settings_set = FALSE;
  priv->page_setup_set = FALSE;
  priv->status = CTK_PRINT_STATUS_INITIAL;
  priv->track_print_status = FALSE;

  priv->print_pages = CTK_PRINT_PAGES_ALL;
  priv->page_ranges = NULL;
  priv->num_page_ranges = 0;
  priv->collate = FALSE;
  priv->reverse = FALSE;
  priv->num_copies = 1;
  priv->scale = 1.0;
  priv->page_set = CTK_PAGE_SET_ALL;
  priv->rotate_to_orientation = FALSE;
  priv->number_up = 1;
  priv->number_up_layout = CTK_NUMBER_UP_LAYOUT_LEFT_TO_RIGHT_TOP_TO_BOTTOM;
}


static void
ctk_print_job_constructed (GObject *object)
{
  CtkPrintJob *job = CTK_PRINT_JOB (object);
  CtkPrintJobPrivate *priv = job->priv;

  G_OBJECT_CLASS (ctk_print_job_parent_class)->constructed (object);

  g_assert (priv->printer_set &&
	    priv->settings_set &&
	    priv->page_setup_set);
  
  _ctk_printer_prepare_for_print (priv->printer,
				  job,
				  priv->settings,
				  priv->page_setup);
}


static void
ctk_print_job_finalize (GObject *object)
{
  CtkPrintJob *job = CTK_PRINT_JOB (object);
  CtkPrintJobPrivate *priv = job->priv;

  if (priv->surface)
    cairo_surface_destroy (priv->surface);

  if (priv->backend)
    g_object_unref (priv->backend);

  if (priv->spool_io != NULL)
    {
      g_io_channel_unref (priv->spool_io);
      priv->spool_io = NULL;
    }

  if (priv->printer)
    g_object_unref (priv->printer);

  if (priv->settings)
    g_object_unref (priv->settings);

  if (priv->page_setup)
    g_object_unref (priv->page_setup);

  g_free (priv->page_ranges);
  priv->page_ranges = NULL;

  g_free (priv->title);
  priv->title = NULL;

  G_OBJECT_CLASS (ctk_print_job_parent_class)->finalize (object);
}

/**
 * ctk_print_job_new:
 * @title: the job title
 * @printer: a #CtkPrinter
 * @settings: a #CtkPrintSettings
 * @page_setup: a #CtkPageSetup
 *
 * Creates a new #CtkPrintJob.
 *
 * Returns: a new #CtkPrintJob
 *
 * Since: 2.10
 **/
CtkPrintJob *
ctk_print_job_new (const gchar      *title,
		   CtkPrinter       *printer,
		   CtkPrintSettings *settings,
		   CtkPageSetup     *page_setup)
{
  GObject *result;
  result = g_object_new (CTK_TYPE_PRINT_JOB,
                         "title", title,
			 "printer", printer,
			 "settings", settings,
			 "page-setup", page_setup,
			 NULL);
  return (CtkPrintJob *) result;
}

/**
 * ctk_print_job_get_settings:
 * @job: a #CtkPrintJob
 * 
 * Gets the #CtkPrintSettings of the print job.
 * 
 * Returns: (transfer none): the settings of @job
 *
 * Since: 2.10
 */
CtkPrintSettings *
ctk_print_job_get_settings (CtkPrintJob *job)
{
  g_return_val_if_fail (CTK_IS_PRINT_JOB (job), NULL);
  
  return job->priv->settings;
}

/**
 * ctk_print_job_get_printer:
 * @job: a #CtkPrintJob
 * 
 * Gets the #CtkPrinter of the print job.
 * 
 * Returns: (transfer none): the printer of @job
 *
 * Since: 2.10
 */
CtkPrinter *
ctk_print_job_get_printer (CtkPrintJob *job)
{
  g_return_val_if_fail (CTK_IS_PRINT_JOB (job), NULL);
  
  return job->priv->printer;
}

/**
 * ctk_print_job_get_title:
 * @job: a #CtkPrintJob
 * 
 * Gets the job title.
 * 
 * Returns: the title of @job
 *
 * Since: 2.10
 */
const gchar *
ctk_print_job_get_title (CtkPrintJob *job)
{
  g_return_val_if_fail (CTK_IS_PRINT_JOB (job), NULL);
  
  return job->priv->title;
}

/**
 * ctk_print_job_get_status:
 * @job: a #CtkPrintJob
 * 
 * Gets the status of the print job.
 * 
 * Returns: the status of @job
 *
 * Since: 2.10
 */
CtkPrintStatus
ctk_print_job_get_status (CtkPrintJob *job)
{
  g_return_val_if_fail (CTK_IS_PRINT_JOB (job), CTK_PRINT_STATUS_FINISHED);
  
  return job->priv->status;
}

void
ctk_print_job_set_status (CtkPrintJob   *job,
			  CtkPrintStatus status)
{
  CtkPrintJobPrivate *priv;

  g_return_if_fail (CTK_IS_PRINT_JOB (job));

  priv = job->priv;

  if (priv->status == status)
    return;

  priv->status = status;
  g_signal_emit (job, signals[STATUS_CHANGED], 0);
}

/**
 * ctk_print_job_set_source_file:
 * @job: a #CtkPrintJob
 * @filename: (type filename): the file to be printed
 * @error: return location for errors
 * 
 * Make the #CtkPrintJob send an existing document to the 
 * printing system. The file can be in any format understood
 * by the platforms printing system (typically PostScript,
 * but on many platforms PDF may work too). See 
 * ctk_printer_accepts_pdf() and ctk_printer_accepts_ps().
 * 
 * Returns: %FALSE if an error occurred
 *
 * Since: 2.10
 **/
gboolean
ctk_print_job_set_source_file (CtkPrintJob *job,
			       const gchar *filename,
			       GError     **error)
{
  CtkPrintJobPrivate *priv;
  GError *tmp_error;

  tmp_error = NULL;

  g_return_val_if_fail (CTK_IS_PRINT_JOB (job), FALSE);

  priv = job->priv;

  priv->spool_io = g_io_channel_new_file (filename, "r", &tmp_error);

  if (tmp_error == NULL)
    g_io_channel_set_encoding (priv->spool_io, NULL, &tmp_error);

  if (tmp_error != NULL)
    {
      g_propagate_error (error, tmp_error);
      return FALSE;
    }

  return TRUE;
}

/**
 * ctk_print_job_set_source_fd:
 * @job: a #CtkPrintJob
 * @fd: a file descriptor
 * @error: return location for errors
 *
 * Make the #CtkPrintJob send an existing document to the
 * printing system. The file can be in any format understood
 * by the platforms printing system (typically PostScript,
 * but on many platforms PDF may work too). See
 * ctk_printer_accepts_pdf() and ctk_printer_accepts_ps().
 *
 * This is similar to ctk_print_job_set_source_file(),
 * but takes expects an open file descriptor for the file,
 * instead of a filename.
 *
 * Returns: %FALSE if an error occurred
 *
 * Since: 3.22
 */
gboolean
ctk_print_job_set_source_fd (CtkPrintJob  *job,
                             int           fd,
                             GError      **error)
{
  g_return_val_if_fail (CTK_IS_PRINT_JOB (job), FALSE);
  g_return_val_if_fail (fd >= 0, FALSE);

  job->priv->spool_io = g_io_channel_unix_new (fd);
  if (g_io_channel_set_encoding (job->priv->spool_io, NULL, error) != G_IO_STATUS_NORMAL)
    return FALSE;

  return TRUE;
}

/**
 * ctk_print_job_get_surface:
 * @job: a #CtkPrintJob
 * @error: (allow-none): return location for errors, or %NULL
 * 
 * Gets a cairo surface onto which the pages of
 * the print job should be rendered.
 * 
 * Returns: (transfer none): the cairo surface of @job
 *
 * Since: 2.10
 **/
cairo_surface_t *
ctk_print_job_get_surface (CtkPrintJob  *job,
			   GError      **error)
{
  CtkPrintJobPrivate *priv;
  gchar *filename = NULL;
  gdouble width, height;
  CtkPaperSize *paper_size;
  int fd;
  GError *tmp_error;

  tmp_error = NULL;

  g_return_val_if_fail (CTK_IS_PRINT_JOB (job), NULL);

  priv = job->priv;

  if (priv->surface)
    return priv->surface;
 
  g_return_val_if_fail (priv->spool_io == NULL, NULL);
 
  fd = g_file_open_tmp ("ctkprint_XXXXXX", 
			 &filename, 
			 &tmp_error);
  if (fd == -1)
    {
      g_free (filename);
      g_propagate_error (error, tmp_error);
      return NULL;
    }

  fchmod (fd, S_IRUSR | S_IWUSR);
  
#ifdef G_ENABLE_DEBUG
  /* If we are debugging printing don't delete the tmp files */
  if (CTK_DEBUG_CHECK (PRINTING)) ;
  else
#endif /* G_ENABLE_DEBUG */
  g_unlink (filename);
  g_free (filename);

  paper_size = ctk_page_setup_get_paper_size (priv->page_setup);
  width = ctk_paper_size_get_width (paper_size, CTK_UNIT_POINTS);
  height = ctk_paper_size_get_height (paper_size, CTK_UNIT_POINTS);
 
  priv->spool_io = g_io_channel_unix_new (fd);
  g_io_channel_set_close_on_unref (priv->spool_io, TRUE);
  g_io_channel_set_encoding (priv->spool_io, NULL, &tmp_error);
  
  if (tmp_error != NULL)
    {
      g_io_channel_unref (priv->spool_io);
      priv->spool_io = NULL;
      g_propagate_error (error, tmp_error);
      return NULL;
    }

  priv->surface = _ctk_printer_create_cairo_surface (priv->printer,
						     priv->settings,
						     width, height,
						     priv->spool_io);
  
  return priv->surface;
}

/**
 * ctk_print_job_set_track_print_status:
 * @job: a #CtkPrintJob
 * @track_status: %TRUE to track status after printing
 * 
 * If track_status is %TRUE, the print job will try to continue report
 * on the status of the print job in the printer queues and printer. This
 * can allow your application to show things like “out of paper” issues,
 * and when the print job actually reaches the printer.
 * 
 * This function is often implemented using some form of polling, so it should
 * not be enabled unless needed.
 *
 * Since: 2.10
 */
void
ctk_print_job_set_track_print_status (CtkPrintJob *job,
				      gboolean     track_status)
{
  CtkPrintJobPrivate *priv;

  g_return_if_fail (CTK_IS_PRINT_JOB (job));

  priv = job->priv;

  track_status = track_status != FALSE;

  if (priv->track_print_status != track_status)
    {
      priv->track_print_status = track_status;
      
      g_object_notify (G_OBJECT (job), "track-print-status");
    }
}

/**
 * ctk_print_job_get_track_print_status:
 * @job: a #CtkPrintJob
 *
 * Returns wheter jobs will be tracked after printing.
 * For details, see ctk_print_job_set_track_print_status().
 *
 * Returns: %TRUE if print job status will be reported after printing
 *
 * Since: 2.10
 */
gboolean
ctk_print_job_get_track_print_status (CtkPrintJob *job)
{
  CtkPrintJobPrivate *priv;

  g_return_val_if_fail (CTK_IS_PRINT_JOB (job), FALSE);

  priv = job->priv;
  
  return priv->track_print_status;
}

static void
ctk_print_job_set_property (GObject      *object,
	                    guint         prop_id,
	                    const GValue *value,
                            GParamSpec   *pspec)

{
  CtkPrintJob *job = CTK_PRINT_JOB (object);
  CtkPrintJobPrivate *priv = job->priv;
  CtkPrintSettings *settings;

  switch (prop_id)
    {
    case PROP_TITLE:
      g_free (priv->title);
      priv->title = g_value_dup_string (value);
      break;
    
    case PROP_PRINTER:
      priv->printer = CTK_PRINTER (g_value_dup_object (value));
      priv->printer_set = TRUE;
      priv->backend = g_object_ref (ctk_printer_get_backend (priv->printer));
      break;

    case PROP_PAGE_SETUP:
      priv->page_setup = CTK_PAGE_SETUP (g_value_dup_object (value));
      priv->page_setup_set = TRUE;
      break;
      
    case PROP_SETTINGS:
      /* We save a copy of the settings since we modify
       * if when preparing the printer job. */
      settings = CTK_PRINT_SETTINGS (g_value_get_object (value));
      priv->settings = ctk_print_settings_copy (settings);
      priv->settings_set = TRUE;
      break;

    case PROP_TRACK_PRINT_STATUS:
      ctk_print_job_set_track_print_status (job, g_value_get_boolean (value));
      break;

    default:
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
      break;
    }
}

static void
ctk_print_job_get_property (GObject    *object,
			    guint       prop_id,
			    GValue     *value,
			    GParamSpec *pspec)
{
  CtkPrintJob *job = CTK_PRINT_JOB (object);
  CtkPrintJobPrivate *priv = job->priv;

  switch (prop_id)
    {
    case PROP_TITLE:
      g_value_set_string (value, priv->title);
      break;
    case PROP_PRINTER:
      g_value_set_object (value, priv->printer);
      break;
    case PROP_SETTINGS:
      g_value_set_object (value, priv->settings);
      break;
    case PROP_PAGE_SETUP:
      g_value_set_object (value, priv->page_setup);
      break;
    case PROP_TRACK_PRINT_STATUS:
      g_value_set_boolean (value, priv->track_print_status);
      break;
    default:
      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
      break;
    }
}

/**
 * ctk_print_job_send:
 * @job: a CtkPrintJob
 * @callback: function to call when the job completes or an error occurs
 * @user_data: user data that gets passed to @callback
 * @dnotify: destroy notify for @user_data
 * 
 * Sends the print job off to the printer.  
 * 
 * Since: 2.10
 **/
void
ctk_print_job_send (CtkPrintJob             *job,
                    CtkPrintJobCompleteFunc  callback,
                    gpointer                 user_data,
		    GDestroyNotify           dnotify)
{
  CtkPrintJobPrivate *priv;

  g_return_if_fail (CTK_IS_PRINT_JOB (job));

  priv = job->priv;
  g_return_if_fail (priv->spool_io != NULL);
  
  ctk_print_job_set_status (job, CTK_PRINT_STATUS_SENDING_DATA);
  
  g_io_channel_seek_position (priv->spool_io, 0, G_SEEK_SET, NULL);
  
  ctk_print_backend_print_stream (priv->backend, job,
				  priv->spool_io,
                                  callback, user_data, dnotify);
}

/**
 * ctk_print_job_get_pages:
 * @job: a #CtkPrintJob
 *
 * Gets the #CtkPrintPages setting for this job.
 *
 * Returns: the #CtkPrintPages setting
 *
 * Since: 3.0
 */
CtkPrintPages
ctk_print_job_get_pages (CtkPrintJob *job)
{
  return job->priv->print_pages;
}

/**
 * ctk_print_job_set_pages:
 * @job: a #CtkPrintJob
 * @pages: the #CtkPrintPages setting
 *
 * Sets the #CtkPrintPages setting for this job.
 *
 * Since: 3.0
 */
void
ctk_print_job_set_pages (CtkPrintJob   *job,
                         CtkPrintPages  pages)
{
  job->priv->print_pages = pages;
}

/**
 * ctk_print_job_get_page_ranges:
 * @job: a #CtkPrintJob
 * @n_ranges: (out): return location for the number of ranges
 *
 * Gets the page ranges for this job.
 *
 * Returns: (array length=n_ranges) (transfer none): a pointer to an
 * array of #CtkPageRange structs
 *
 * Since: 3.0
 */
CtkPageRange *
ctk_print_job_get_page_ranges (CtkPrintJob *job,
                               gint        *n_ranges)
{
  *n_ranges = job->priv->num_page_ranges;
  return job->priv->page_ranges;
}

/**
 * ctk_print_job_set_page_ranges:
 * @job: a #CtkPrintJob
 * @ranges: (array length=n_ranges) (transfer full): pointer to an array of
 *    #CtkPageRange structs
 * @n_ranges: the length of the @ranges array
 *
 * Sets the page ranges for this job.
 *
 * Since: 3.0
 */
void
ctk_print_job_set_page_ranges (CtkPrintJob  *job,
                               CtkPageRange *ranges,
                               gint          n_ranges)
{
  g_free (job->priv->page_ranges);
  job->priv->page_ranges = ranges;
  job->priv->num_page_ranges = n_ranges;
}

/**
 * ctk_print_job_get_page_set:
 * @job: a #CtkPrintJob
 *
 * Gets the #CtkPageSet setting for this job.
 *
 * Returns: the #CtkPageSet setting
 *
 * Since: 3.0
 */
CtkPageSet
ctk_print_job_get_page_set (CtkPrintJob *job)
{
  return job->priv->page_set;
}

/**
 * ctk_print_job_set_page_set:
 * @job: a #CtkPrintJob
 * @page_set: a #CtkPageSet setting
 *
 * Sets the #CtkPageSet setting for this job.
 *
 * Since: 3.0
 */
void
ctk_print_job_set_page_set (CtkPrintJob *job,
                            CtkPageSet   page_set)
{
  job->priv->page_set = page_set;
}

/**
 * ctk_print_job_get_num_copies:
 * @job: a #CtkPrintJob
 *
 * Gets the number of copies of this job.
 *
 * Returns: the number of copies
 *
 * Since: 3.0
 */
gint
ctk_print_job_get_num_copies (CtkPrintJob *job)
{
  return job->priv->num_copies;
}

/**
 * ctk_print_job_set_num_copies:
 * @job: a #CtkPrintJob
 * @num_copies: the number of copies
 *
 * Sets the number of copies for this job.
 *
 * Since: 3.0
 */
void
ctk_print_job_set_num_copies (CtkPrintJob *job,
                              gint         num_copies)
{
  job->priv->num_copies = num_copies;
}

/**
 * ctk_print_job_get_scale:
 * @job: a #CtkPrintJob
 *
 * Gets the scale for this job (where 1.0 means unscaled).
 *
 * Returns: the scale
 *
 * Since: 3.0
 */
gdouble
ctk_print_job_get_scale (CtkPrintJob *job)

{
  return job->priv->scale;
}

/**
 * ctk_print_job_set_scale:
 * @job: a #CtkPrintJob
 * @scale: the scale
 *
 * Sets the scale for this job (where 1.0 means unscaled).
 *
 * Since: 3.0
 */
void
ctk_print_job_set_scale (CtkPrintJob *job,
                         gdouble      scale)
{
  job->priv->scale = scale;
}

/**
 * ctk_print_job_get_n_up:
 * @job: a #CtkPrintJob
 *
 * Gets the n-up setting for this job.
 *
 * Returns: the n-up setting
 *
 * Since: 3.0
 */
guint
ctk_print_job_get_n_up (CtkPrintJob *job)
{
  return job->priv->number_up;
}

/**
 * ctk_print_job_set_n_up:
 * @job: a #CtkPrintJob
 * @n_up: the n-up value
 *
 * Sets the n-up setting for this job.
 *
 * Since: 3.0
 */
void
ctk_print_job_set_n_up (CtkPrintJob *job,
                        guint        n_up)
{
  job->priv->number_up = n_up;
}

/**
 * ctk_print_job_get_n_up_layout:
 * @job: a #CtkPrintJob
 *
 * Gets the n-up layout setting for this job.
 *
 * Returns: the n-up layout
 *
 * Since: 3.0
 */
CtkNumberUpLayout
ctk_print_job_get_n_up_layout (CtkPrintJob *job)
{
  return job->priv->number_up_layout;
}

/**
 * ctk_print_job_set_n_up_layout:
 * @job: a #CtkPrintJob
 * @layout: the n-up layout setting
 *
 * Sets the n-up layout setting for this job.
 *
 * Since: 3.0
 */
void
ctk_print_job_set_n_up_layout (CtkPrintJob       *job,
                               CtkNumberUpLayout  layout)
{
  job->priv->number_up_layout = layout;
}

/**
 * ctk_print_job_get_rotate:
 * @job: a #CtkPrintJob
 *
 * Gets whether the job is printed rotated.
 *
 * Returns: whether the job is printed rotated
 *
 * Since: 3.0
 */
gboolean
ctk_print_job_get_rotate (CtkPrintJob *job)
{
  return job->priv->rotate_to_orientation;
}

/**
 * ctk_print_job_set_rotate:
 * @job: a #CtkPrintJob
 * @rotate: whether to print rotated
 *
 * Sets whether this job is printed rotated.
 *
 * Since: 3.0
 */
void
ctk_print_job_set_rotate (CtkPrintJob *job,
                          gboolean     rotate)
{
  job->priv->rotate_to_orientation = rotate;
}

/**
 * ctk_print_job_get_collate:
 * @job: a #CtkPrintJob
 *
 * Gets whether this job is printed collated.
 *
 * Returns: whether the job is printed collated
 *
 * Since: 3.0
 */
gboolean
ctk_print_job_get_collate (CtkPrintJob *job)
{
  return job->priv->collate;
}

/**
 * ctk_print_job_set_collate:
 * @job: a #CtkPrintJob
 * @collate: whether the job is printed collated
 *
 * Sets whether this job is printed collated.
 *
 * Since: 3.0
 */
void
ctk_print_job_set_collate (CtkPrintJob *job,
                           gboolean     collate)
{
  job->priv->collate = collate;
}

/**
 * ctk_print_job_get_reverse:
 * @job: a #CtkPrintJob
 *
 * Gets whether this job is printed reversed.
 *
 * Returns: whether the job is printed reversed.
 *
 * Since: 3.0
 */
gboolean
ctk_print_job_get_reverse (CtkPrintJob *job)
{
  return job->priv->reverse;
}

/**
 * ctk_print_job_set_reverse:
 * @job: a #CtkPrintJob
 * @reverse: whether the job is printed reversed
 *
 * Sets whether this job is printed reversed.
 *
 * Since: 3.0
 */
void
ctk_print_job_set_reverse (CtkPrintJob *job,
                           gboolean     reverse)
{
  job->priv->reverse = reverse;
}