/usr/include/gtkmm-2.4/gtkmm/printer.h is in libgtkmm-2.4-dev 1:2.24.5-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | // -*- c++ -*-
// Generated by gmmproc 2.45.3 -- DO NOT MODIFY!
#ifndef _GTKMM_PRINTER_H
#define _GTKMM_PRINTER_H
#include <glibmm/ustring.h>
#include <sigc++/sigc++.h>
/* Copyright (C) 2006 The gtkmm Development Team
*
* 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.1 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, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <gtkmm/pagesetup.h>
#ifndef DOXYGEN_SHOULD_SKIP_THIS
typedef struct _GtkPrinter GtkPrinter;
typedef struct _GtkPrinterClass GtkPrinterClass;
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
#ifndef DOXYGEN_SHOULD_SKIP_THIS
namespace Gtk
{ class Printer_Class; } // namespace Gtk
#endif //DOXYGEN_SHOULD_SKIP_THIS
namespace Gtk
{
/** @addtogroup gtkmmEnums gtkmm Enums and Flags */
/**
*
* @ingroup gtkmmEnums
* @par Bitwise operators:
* <tt>%PrintCapabilities operator|(PrintCapabilities, PrintCapabilities)</tt><br>
* <tt>%PrintCapabilities operator&(PrintCapabilities, PrintCapabilities)</tt><br>
* <tt>%PrintCapabilities operator^(PrintCapabilities, PrintCapabilities)</tt><br>
* <tt>%PrintCapabilities operator~(PrintCapabilities)</tt><br>
* <tt>%PrintCapabilities& operator|=(PrintCapabilities&, PrintCapabilities)</tt><br>
* <tt>%PrintCapabilities& operator&=(PrintCapabilities&, PrintCapabilities)</tt><br>
* <tt>%PrintCapabilities& operator^=(PrintCapabilities&, PrintCapabilities)</tt><br>
*/
enum PrintCapabilities
{
PRINT_CAPABILITY_PAGE_SET = 1 << 0,
PRINT_CAPABILITY_COPIES = 1 << 1,
PRINT_CAPABILITY_COLLATE = 1 << 2,
PRINT_CAPABILITY_REVERSE = 1 << 3,
PRINT_CAPABILITY_SCALE = 1 << 4,
PRINT_CAPABILITY_GENERATE_PDF = 1 << 5,
PRINT_CAPABILITY_GENERATE_PS = 1 << 6,
PRINT_CAPABILITY_PREVIEW = 1 << 7,
PRINT_CAPABILITY_NUMBER_UP = 1 << 8,
PRINT_CAPABILITY_NUMBER_UP_LAYOUT = 1 << 9
};
/** @ingroup gtkmmEnums */
inline PrintCapabilities operator|(PrintCapabilities lhs, PrintCapabilities rhs)
{ return static_cast<PrintCapabilities>(static_cast<unsigned>(lhs) | static_cast<unsigned>(rhs)); }
/** @ingroup gtkmmEnums */
inline PrintCapabilities operator&(PrintCapabilities lhs, PrintCapabilities rhs)
{ return static_cast<PrintCapabilities>(static_cast<unsigned>(lhs) & static_cast<unsigned>(rhs)); }
/** @ingroup gtkmmEnums */
inline PrintCapabilities operator^(PrintCapabilities lhs, PrintCapabilities rhs)
{ return static_cast<PrintCapabilities>(static_cast<unsigned>(lhs) ^ static_cast<unsigned>(rhs)); }
/** @ingroup gtkmmEnums */
inline PrintCapabilities operator~(PrintCapabilities flags)
{ return static_cast<PrintCapabilities>(~static_cast<unsigned>(flags)); }
/** @ingroup gtkmmEnums */
inline PrintCapabilities& operator|=(PrintCapabilities& lhs, PrintCapabilities rhs)
{ return (lhs = static_cast<PrintCapabilities>(static_cast<unsigned>(lhs) | static_cast<unsigned>(rhs))); }
/** @ingroup gtkmmEnums */
inline PrintCapabilities& operator&=(PrintCapabilities& lhs, PrintCapabilities rhs)
{ return (lhs = static_cast<PrintCapabilities>(static_cast<unsigned>(lhs) & static_cast<unsigned>(rhs))); }
/** @ingroup gtkmmEnums */
inline PrintCapabilities& operator^=(PrintCapabilities& lhs, PrintCapabilities rhs)
{ return (lhs = static_cast<PrintCapabilities>(static_cast<unsigned>(lhs) ^ static_cast<unsigned>(rhs))); }
} // namespace Gtk
#ifndef DOXYGEN_SHOULD_SKIP_THIS
namespace Glib
{
template <>
class Value<Gtk::PrintCapabilities> : public Glib::Value_Flags<Gtk::PrintCapabilities>
{
public:
static GType value_type() G_GNUC_CONST;
};
} // namespace Glib
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
namespace Gtk
{
/** A Printer object represents a printer. You only need to deal directly with printers if you use the
* non-portable PrintUnixDialog API.
*
* A Printer object allows to get status information about the printer, such as its description, its location,
* the number of queued jobs, etc. Most importantly, a Printer object can be used to create a PrintJob object,
* which lets you print to the printer.
*
* @newin{2,10}
*
* @ingroup Printing
*/
class Printer : public Glib::Object
{
#ifndef DOXYGEN_SHOULD_SKIP_THIS
public:
typedef Printer CppObjectType;
typedef Printer_Class CppClassType;
typedef GtkPrinter BaseObjectType;
typedef GtkPrinterClass BaseClassType;
private: friend class Printer_Class;
static CppClassType printer_class_;
private:
// noncopyable
Printer(const Printer&);
Printer& operator=(const Printer&);
protected:
explicit Printer(const Glib::ConstructParams& construct_params);
explicit Printer(GtkPrinter* castitem);
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
public:
virtual ~Printer();
/** Get the GType for this class, for use with the underlying GObject type system.
*/
static GType get_type() G_GNUC_CONST;
#ifndef DOXYGEN_SHOULD_SKIP_THIS
static GType get_base_type() G_GNUC_CONST;
#endif
///Provides access to the underlying C GObject.
GtkPrinter* gobj() { return reinterpret_cast<GtkPrinter*>(gobject_); }
///Provides access to the underlying C GObject.
const GtkPrinter* gobj() const { return reinterpret_cast<GtkPrinter*>(gobject_); }
///Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.
GtkPrinter* gobj_copy();
private:
//This is not available on Win32.
//This source file will not be compiled on Win32,
//and no class defined in it will be registered by wrap_init().
public:
//TODO: _WRAP_CREATE() - probably not, it's only accessible through PrintUnixDialog + GtkPrintBackend should be ignored
//TODO: I think these are not needed as well, and that Printer should generally be read-only - marko.
//gtkmmproc error: gtk_printer_is_new : ignored method defs lookup failed//gtkmmproc error: gtk_printer_set_state_message : ignored method defs lookup failed//gtkmmproc error: gtk_printer_set_is_default : ignored method defs lookup failed//gtkmmproc error: gtk_printer_set_is_accepting_jobs : ignored method defs lookup failed//gtkmmproc error: gtk_printer_set_is_paused : ignored method defs lookup failed
//gtkmmproc error: gtk_printer_set_is_active : ignored method defs lookup failed//gtkmmproc error: gtk_printer_set_has_details : ignored method defs lookup failed//gtkmmproc error: gtk_printer_set_description : ignored method defs lookup failed
//gtkmmproc error: gtk_printer_set_icon_name : ignored method defs lookup failed//gtkmmproc error: gtk_printer_set_job_count : ignored method defs lookup failed//gtkmmproc error: gtk_printer_set_is_new : ignored method defs lookup failed//gtkmmproc error: gtk_printer_set_location : ignored method defs lookup failed
bool equal(const Glib::RefPtr<Printer>& other) const;
//GtkPrintBackend is in a "semi-private" header.
//_WRAP_METHOD(Glib::RefPtr<PrintBackend> get_backend(), gtk_printer_get_backend, refreturn)
//_WRAP_METHOD(Glib::RefPtr<const PrintBackend> get_backend() const, gtk_printer_get_backend, refreturn, constversion)
/** Returns the name of the printer.
*
* @newin{2,10}
*
* @return The name of @a printer.
*/
Glib::ustring get_name() const;
/** Returns the state message describing the current state
* of the printer.
*
* @newin{2,10}
*
* @return The state message of @a printer.
*/
Glib::ustring get_state_message() const;
/** Gets the description of the printer.
*
* @newin{2,10}
*
* @return The description of @a printer.
*/
Glib::ustring get_description() const;
/** Returns a description of the location of the printer.
*
* @newin{2,10}
*
* @return The location of @a printer.
*/
Glib::ustring get_location() const;
/** Gets the name of the icon to use for the printer.
*
* @newin{2,10}
*
* @return The icon name for @a printer.
*/
Glib::ustring get_icon_name() const;
/** Gets the number of jobs currently queued on the printer.
*
* @newin{2,10}
*
* @return The number of jobs on @a printer.
*/
int get_job_count() const;
/** Returns whether the printer is currently active (i.e.\
* accepts new jobs).
*
* @newin{2,10}
*
* @return <tt>true</tt> if @a printer is active.
*/
bool is_active() const;
/** Returns whether the printer is currently paused.
* A paused printer still accepts jobs, but it is not
* printing them.
*
* @newin{2,14}
*
* @return <tt>true</tt> if @a printer is paused.
*/
bool is_paused() const;
/** Returns whether the printer is accepting jobs
*
* @newin{2,14}
*
* @return <tt>true</tt> if @a printer is accepting jobs.
*/
bool is_accepting_jobs() const;
/** Returns whether the printer is virtual (i.e.\ does not
* represent actual printer hardware, but something like
* a CUPS class).
*
* @newin{2,10}
*
* @return <tt>true</tt> if @a printer is virtual.
*/
bool is_virtual() const;
/** Returns whether the printer is the default printer.
*
* @newin{2,10}
*
* @return <tt>true</tt> if @a printer is the default.
*/
bool is_default() const;
/** Returns whether the printer accepts input in
* PDF format.
*
* @newin{2,10}
*
* @return <tt>true</tt> if @a printer accepts PDF.
*/
bool accepts_pdf() const;
/** Returns whether the printer accepts input in
* PostScript format.
*
* @newin{2,10}
*
* @return <tt>true</tt> if @a printer accepts PostScript.
*/
bool accepts_ps() const;
/** Lists all the paper sizes @a printer supports.
* This will return and empty list unless the printer's details are
* available, see has_details() and request_details().
*
* @newin{2,12}
*
* @return A newly allocated list of newly allocated Gtk::PageSetup s.
*/
Glib::ListHandle< Glib::RefPtr<PageSetup> > list_papers();
/** Returns default page size of @a printer.
*
* @newin{2,14}
*
* @return A newly allocated Gtk::PageSetup with default page size of the printer.
*/
Glib::RefPtr<PageSetup> get_default_page_size() const;
/** Lists all the paper sizes @a printer supports.
* This will return and empty list unless the printer's details are
* available, see has_details() and request_details().
*
* @newin{2,12}
*
* @return A newly allocated list of newly allocated Gtk::PageSetup s.
*/
Glib::ListHandle< Glib::RefPtr<const PageSetup> > list_papers() const;
/** Returns whether the printer details are available.
*
* @newin{2,12}
*
* @return <tt>true</tt> if @a printer details are available.
*/
bool has_details() const;
/** Requests the printer details. When the details are available,
* the details_acquired signal will be emitted.
*
* @newin{2,12}
*/
void request_details();
/** Returns the printer's capabilities.
*
* This is useful when you're using Gtk::PrintUnixDialog's manual-capabilities
* setting and need to know which settings the printer can handle and which
* you must handle yourself.
*
* This will return 0 unless the printer's details are available, see
* has_details() and request_details().
*
* @newin{2,12}
*
* @return The printer's capabilities.
*/
PrintCapabilities get_capabilities() const;
/** Retrieve the hard margins of @a printer, i.e.\ the margins that define
* the area at the borders of the paper that the printer cannot print to.
*
* @note This will not succeed unless the printer's details are available,
* see has_details() and request_details().
*
* @newin{2,20}
*
* @param top A location to store the top margin in.
* @param bottom A location to store the bottom margin in.
* @param left A location to store the left margin in.
* @param right A location to store the right margin in.
* @return <tt>true</tt> iff the hard margins were retrieved.
*/
bool get_hard_margins(double& top, double& bottom, double& left, double& right) const;
/**
* @par Slot Prototype:
* <tt>void on_my_%details_acquired(bool success)</tt>
*
*/
Glib::SignalProxy1< void,bool > signal_details_acquired();
/** Name of the printer.
*
* @return A PropertyProxy_ReadOnly that allows you to get the value of the property,
* or receive notification when the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< Glib::ustring > property_name() const;
//GtkPrintBackend is in a "semi-private" header:
//_WRAP_PROPERTY("backend", Glib::RefPtr<PrintBackend>)
/** FALSE if this represents a real hardware printer.
*
* @return A PropertyProxy_ReadOnly that allows you to get the value of the property,
* or receive notification when the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< bool > property_is_virtual() const;
/** String giving the current state of the printer.
*
* @return A PropertyProxy_ReadOnly that allows you to get the value of the property,
* or receive notification when the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< Glib::ustring > property_state_message() const;
/** The location of the printer.
*
* @return A PropertyProxy_ReadOnly that allows you to get the value of the property,
* or receive notification when the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< Glib::ustring > property_location() const;
/** The icon name to use for the printer.
*
* @return A PropertyProxy_ReadOnly that allows you to get the value of the property,
* or receive notification when the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< Glib::ustring > property_icon_name() const;
/** Number of jobs queued in the printer.
*
* @return A PropertyProxy_ReadOnly that allows you to get the value of the property,
* or receive notification when the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< int > property_job_count() const;
/** TRUE if this printer can accept PDF.
*
* @return A PropertyProxy_ReadOnly that allows you to get the value of the property,
* or receive notification when the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< bool > property_accepts_pdf() const;
/** TRUE if this printer can accept PostScript.
*
* @return A PropertyProxy_ReadOnly that allows you to get the value of the property,
* or receive notification when the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< bool > property_accepts_ps() const;
/** TRUE if this printer is paused.
*
* @return A PropertyProxy_ReadOnly that allows you to get the value of the property,
* or receive notification when the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< bool > property_paused() const;
/** TRUE if this printer is accepting new jobs.
*
* @return A PropertyProxy_ReadOnly that allows you to get the value of the property,
* or receive notification when the value of the property changes.
*/
Glib::PropertyProxy_ReadOnly< bool > property_accepting_jobs() const;
public:
public:
//C++ methods used to invoke GTK+ virtual functions:
protected:
//GTK+ Virtual Functions (override these to change behaviour):
//Default Signal Handlers::
/// This is a default handler for the signal signal_details_acquired().
virtual void on_details_acquired(bool success);
};
/** @relates Gtk::Printer */
inline bool operator==(const Glib::RefPtr<Printer>& lhs, const Glib::RefPtr<Printer>& rhs)
{ return lhs->equal(rhs); }
/** @relates Gtk::Printer */
inline bool operator!=(const Glib::RefPtr<Printer>& lhs, const Glib::RefPtr<Printer>& rhs)
{ return !lhs->equal(rhs); }
/** For example,
* bool on_enumerate_printers(const Glib::RefPtr<Printer>& printer);
* @param printer A printer.
* @param result true to stop the enumeration, false to continue.
*
* @relates Gtk::Printer
*/
typedef sigc::slot< bool, const Glib::RefPtr<Printer>& > SlotPrinterEnumerator;
/** Calls a function for all Printers. If the callback returns true, the enumeration is stopped.
* @slot A function to call for each printer
* @parm wait If true, wait in a recursive mainloop until all printers are enumerated; otherwise return early.
*
* @relates Gtk::Printer
*/
void enumerate_printers(const SlotPrinterEnumerator& slot, bool wait = true);
} // namespace Gtk
namespace Glib
{
/** A Glib::wrap() method for this object.
*
* @param object The C instance.
* @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref.
* @result A C++ instance that wraps this C instance.
*
* @relates Gtk::Printer
*/
Glib::RefPtr<Gtk::Printer> wrap(GtkPrinter* object, bool take_copy = false);
}
#endif /* _GTKMM_PRINTER_H */
|