~ubuntu-branches/ubuntu/quantal/gtkmm3.0/quantal

« back to all changes in this revision

Viewing changes to gtk/gtkmm/printer.h

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2012-03-01 23:42:36 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20120301234236-12w6m0hkomhi7h53
Tags: 3.3.16-0ubuntu1
* New upstream version
* debian/control.in: updated the glib requirement

Show diffs side-by-side

added added

removed removed

Lines of Context:
365
365
 
366
366
  
367
367
  /**
368
 
   * @par Prototype:
 
368
   * @par Slot Prototype:
369
369
   * <tt>void on_my_%details_acquired(bool success)</tt>
 
370
   *
 
371
   * Gets emitted in response to a request for detailed information
 
372
   * about a printer from the print backend. The @a success parameter
 
373
   * indicates if the information was actually obtained.
 
374
   * 
 
375
   * @newin{2,10}
 
376
   * @param success <tt>true</tt> if the details were successfully acquired.
370
377
   */
371
378
 
 
379
 
372
380
  Glib::SignalProxy1< void,bool > signal_details_acquired();
373
381
 
374
382
 
375
383
  #ifdef GLIBMM_PROPERTIES_ENABLED
376
 
/** Name of the printer.
 
384
/** 
377
385
   *
378
386
   * You rarely need to use properties because there are get_ and set_ methods for almost all of them.
379
387
   * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
387
395
  //_WRAP_PROPERTY("backend", Glib::RefPtr<PrintBackend>)
388
396
 
389
397
  #ifdef GLIBMM_PROPERTIES_ENABLED
390
 
/** FALSE if this represents a real hardware printer.
 
398
/** 
391
399
   *
392
400
   * You rarely need to use properties because there are get_ and set_ methods for almost all of them.
393
401
   * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
398
406
 
399
407
 
400
408
  #ifdef GLIBMM_PROPERTIES_ENABLED
401
 
/** String giving the current state of the printer.
 
409
/** 
402
410
   *
403
411
   * You rarely need to use properties because there are get_ and set_ methods for almost all of them.
404
412
   * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
409
417
 
410
418
 
411
419
  #ifdef GLIBMM_PROPERTIES_ENABLED
412
 
/** The location of the printer.
 
420
/** 
413
421
   *
414
422
   * You rarely need to use properties because there are get_ and set_ methods for almost all of them.
415
423
   * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
420
428
 
421
429
 
422
430
  #ifdef GLIBMM_PROPERTIES_ENABLED
423
 
/** The icon name to use for the printer.
 
431
/** 
424
432
   *
425
433
   * You rarely need to use properties because there are get_ and set_ methods for almost all of them.
426
434
   * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
431
439
 
432
440
 
433
441
  #ifdef GLIBMM_PROPERTIES_ENABLED
434
 
/** Number of jobs queued in the printer.
 
442
/** 
435
443
   *
436
444
   * You rarely need to use properties because there are get_ and set_ methods for almost all of them.
437
445
   * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
442
450
 
443
451
 
444
452
  #ifdef GLIBMM_PROPERTIES_ENABLED
445
 
/** TRUE if this printer can accept PDF.
 
453
/** 
446
454
   *
447
455
   * You rarely need to use properties because there are get_ and set_ methods for almost all of them.
448
456
   * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
453
461
 
454
462
 
455
463
  #ifdef GLIBMM_PROPERTIES_ENABLED
456
 
/** TRUE if this printer can accept PostScript.
 
464
/** 
457
465
   *
458
466
   * You rarely need to use properties because there are get_ and set_ methods for almost all of them.
459
467
   * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
464
472
 
465
473
 
466
474
  #ifdef GLIBMM_PROPERTIES_ENABLED
467
 
/** TRUE if this printer is paused.
 
475
/** 
468
476
   *
469
477
   * You rarely need to use properties because there are get_ and set_ methods for almost all of them.
470
478
   * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
475
483
 
476
484
 
477
485
  #ifdef GLIBMM_PROPERTIES_ENABLED
478
 
/** TRUE if this printer is accepting new jobs.
 
486
/** 
479
487
   *
480
488
   * You rarely need to use properties because there are get_ and set_ methods for almost all of them.
481
489
   * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when
494
502
  //GTK+ Virtual Functions (override these to change behaviour):
495
503
 
496
504
  //Default Signal Handlers::
 
505
  /// This is a default handler for the signal signal_details_acquired().
497
506
  virtual void on_details_acquired(bool success);
498
507
 
499
508