// -*- c++ -*- // Generated by gtkmmproc -- DO NOT MODIFY! #ifndef _GTKMM_PRINTJOB_H #define _GTKMM_PRINTJOB_H #include /* 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 Library 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include #include #include #include #include #ifndef DOXYGEN_SHOULD_SKIP_THIS typedef struct _GtkPrintJob GtkPrintJob; typedef struct _GtkPrintJobClass GtkPrintJobClass; #endif /* DOXYGEN_SHOULD_SKIP_THIS */ namespace Gtk { class PrintJob_Class; } // namespace Gtk namespace Gtk { /** @addtogroup gtkmmEnums Enums and Flags */ /** * @ingroup gtkmmEnums * @par Bitwise operators: * %PrintCapabilities operator|(PrintCapabilities, PrintCapabilities)
* %PrintCapabilities operator&(PrintCapabilities, PrintCapabilities)
* %PrintCapabilities operator^(PrintCapabilities, PrintCapabilities)
* %PrintCapabilities operator~(PrintCapabilities)
* %PrintCapabilities& operator|=(PrintCapabilities&, PrintCapabilities)
* %PrintCapabilities& operator&=(PrintCapabilities&, PrintCapabilities)
* %PrintCapabilities& operator^=(PrintCapabilities&, PrintCapabilities)
*/ 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 }; /** @ingroup gtkmmEnums */ inline PrintCapabilities operator|(PrintCapabilities lhs, PrintCapabilities rhs) { return static_cast(static_cast(lhs) | static_cast(rhs)); } /** @ingroup gtkmmEnums */ inline PrintCapabilities operator&(PrintCapabilities lhs, PrintCapabilities rhs) { return static_cast(static_cast(lhs) & static_cast(rhs)); } /** @ingroup gtkmmEnums */ inline PrintCapabilities operator^(PrintCapabilities lhs, PrintCapabilities rhs) { return static_cast(static_cast(lhs) ^ static_cast(rhs)); } /** @ingroup gtkmmEnums */ inline PrintCapabilities operator~(PrintCapabilities flags) { return static_cast(~static_cast(flags)); } /** @ingroup gtkmmEnums */ inline PrintCapabilities& operator|=(PrintCapabilities& lhs, PrintCapabilities rhs) { return (lhs = static_cast(static_cast(lhs) | static_cast(rhs))); } /** @ingroup gtkmmEnums */ inline PrintCapabilities& operator&=(PrintCapabilities& lhs, PrintCapabilities rhs) { return (lhs = static_cast(static_cast(lhs) & static_cast(rhs))); } /** @ingroup gtkmmEnums */ inline PrintCapabilities& operator^=(PrintCapabilities& lhs, PrintCapabilities rhs) { return (lhs = static_cast(static_cast(lhs) ^ static_cast(rhs))); } } // namespace Gtk #ifndef DOXYGEN_SHOULD_SKIP_THIS namespace Glib { template <> class Value : public Glib::Value_Flags { public: static GType value_type() G_GNUC_CONST; }; } // namespace Glib #endif /* DOXYGEN_SHOULD_SKIP_THIS */ namespace Gtk { /** A PrintJob 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 PrintUnixDialog API. * * Use get_surface() to obtain the cairo surface onto which the pages must be drawn. * Use send() to send the finished job to the printer.If you don't use cairo then * PrintJob also supports printing of manually generated postscript, via set_source_file(). * * @newin2p10 * * @ingroup Printing */ class PrintJob : public Glib::Object { #ifndef DOXYGEN_SHOULD_SKIP_THIS public: typedef PrintJob CppObjectType; typedef PrintJob_Class CppClassType; typedef GtkPrintJob BaseObjectType; typedef GtkPrintJobClass BaseClassType; private: friend class PrintJob_Class; static CppClassType printjob_class_; private: // noncopyable PrintJob(const PrintJob&); PrintJob& operator=(const PrintJob&); protected: explicit PrintJob(const Glib::ConstructParams& construct_params); explicit PrintJob(GtkPrintJob* castitem); #endif /* DOXYGEN_SHOULD_SKIP_THIS */ public: virtual ~PrintJob(); #ifndef DOXYGEN_SHOULD_SKIP_THIS static GType get_type() G_GNUC_CONST; static GType get_base_type() G_GNUC_CONST; #endif ///Provides access to the underlying C GObject. GtkPrintJob* gobj() { return reinterpret_cast(gobject_); } ///Provides access to the underlying C GObject. const GtkPrintJob* gobj() const { return reinterpret_cast(gobject_); } ///Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs. GtkPrintJob* gobj_copy(); private: //This is not available in on Win32. //This source file will not be compiled, //and the class will not be registered in wrap_init.h or wrap_init.cc protected: explicit PrintJob(const Glib::ustring& title, const Glib::RefPtr& printer, const Glib::RefPtr& settings, const Glib::RefPtr& page_setup); public: static Glib::RefPtr create(const Glib::ustring& title, const Glib::RefPtr& printer, const Glib::RefPtr& settings, const Glib::RefPtr& page_setup); Glib::RefPtr get_settings(); Glib::RefPtr get_settings() const; Glib::RefPtr get_printer(); Glib::RefPtr get_printer() const; Glib::ustring get_title() const; PrintStatus get_status() const; // this appears in gtkprinter-private.h #ifdef GLIBMM_EXCEPTIONS_ENABLED void set_source_file(const std::string& filename); #else void set_source_file(const std::string& filename, std::auto_ptr& error); #endif //GLIBMM_EXCEPTIONS_ENABLED #ifdef GLIBMM_EXCEPTIONS_ENABLED Cairo::RefPtr get_surface(); #else Cairo::RefPtr get_surface(std::auto_ptr& error); #endif //GLIBMM_EXCEPTIONS_ENABLED //TODO: _WRAP_METHOD(Cairo::RefPtr get_surface() const, gtk_print_job_get_surface, constversion, errthrow) void set_track_print_status(bool track_status = true); bool get_track_print_status() const; #ifdef GLIBMM_EXCEPTIONS_ENABLED /** For example, * void on_print_job_complete(const Glib::RefPtr& job); * * @throws exception */ typedef sigc::slot< void, const Glib::RefPtr& > SlotPrintJobComplete; #else /** For example, * void on_print_job_complete(const Glib::RefPtr& job, std::auto_ptr& error); */ typedef sigc::slot< void, const Glib::RefPtr&, std::auto_ptr& > SlotPrintJobComplete; #endif /** TODO: document this * */ void send(const SlotPrintJobComplete& slot); /** * @par Prototype: * void %status_changed() */ Glib::SignalProxy0< void > signal_status_changed(); #ifdef GLIBMM_PROPERTIES_ENABLED /** Title of the print job. * * You rarely need to use properties because there are get_ and set_ methods for almost all of them. * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when * the value of the property changes. */ Glib::PropertyProxy_ReadOnly property_title() const; #endif //#GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED /** Printer to print the job to. * * You rarely need to use properties because there are get_ and set_ methods for almost all of them. * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when * the value of the property changes. */ Glib::PropertyProxy_ReadOnly< Glib::RefPtr > property_printer() const; #endif //#GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED /** Printer settings. * * You rarely need to use properties because there are get_ and set_ methods for almost all of them. * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when * the value of the property changes. */ Glib::PropertyProxy_ReadOnly< Glib::RefPtr > property_settings() const; #endif //#GLIBMM_PROPERTIES_ENABLED #ifdef GLIBMM_PROPERTIES_ENABLED /** Page Setup. * * You rarely need to use properties because there are get_ and set_ methods for almost all of them. * @return A PropertyProxy that allows you to get or set the property of the value, or receive notification when * the value of the property changes. */ Glib::PropertyProxy_ReadOnly< Glib::RefPtr > property_page_setup() const; #endif //#GLIBMM_PROPERTIES_ENABLED public: public: //C++ methods used to invoke GTK+ virtual functions: #ifdef GLIBMM_VFUNCS_ENABLED #endif //GLIBMM_VFUNCS_ENABLED protected: //GTK+ Virtual Functions (override these to change behaviour): #ifdef GLIBMM_VFUNCS_ENABLED #endif //GLIBMM_VFUNCS_ENABLED //Default Signal Handlers:: #ifdef GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED virtual void on_status_changed(); #endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED }; } // namespace Gtk namespace Glib { /** @relates Gtk::PrintJob * @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. */ Glib::RefPtr wrap(GtkPrintJob* object, bool take_copy = false); } #endif /* _GTKMM_PRINTJOB_H */