13
0
livetrax/libs/gtkmm2/gtk/gtkmm/printoperationpreview.h

202 lines
5.6 KiB
C
Raw Normal View History

// -*- c++ -*-
// Generated by gtkmmproc -- DO NOT MODIFY!
#ifndef _GTKMM_PRINTOPERATIONPREVIEW_H
#define _GTKMM_PRINTOPERATIONPREVIEW_H
#include <glibmm.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 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 <gtk/gtkprintoperationpreview.h>
#include <glibmm/interface.h>
#include <gtkmm/pagesetup.h>
#include <gtkmm/printcontext.h>
#ifndef DOXYGEN_SHOULD_SKIP_THIS
typedef struct _GtkPrintOperationPreview GtkPrintOperationPreview;
typedef struct _GtkPrintOperationPreviewClass GtkPrintOperationPreviewClass;
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
namespace Gtk
{ class PrintOperationPreview_Class; } // namespace Gtk
namespace Gtk
{
//TODO: There is no GtkPrintOperationPreview documentation either.
/**
* @newin2p10
*
* @ingroup Printing
*/
class PrintOperationPreview : public Glib::Interface
{
#ifndef DOXYGEN_SHOULD_SKIP_THIS
public:
typedef PrintOperationPreview CppObjectType;
typedef PrintOperationPreview_Class CppClassType;
typedef GtkPrintOperationPreview BaseObjectType;
typedef GtkPrintOperationPreviewIface BaseClassType;
private:
friend class PrintOperationPreview_Class;
static CppClassType printoperationpreview_class_;
// noncopyable
PrintOperationPreview(const PrintOperationPreview&);
PrintOperationPreview& operator=(const PrintOperationPreview&);
protected:
PrintOperationPreview(); // you must derive from this class
public:
// This is public so that C++ wrapper instances can be
// created for C instances of unwrapped types.
// For instance, if an unexpected C type implements the C interface.
explicit PrintOperationPreview(GtkPrintOperationPreview* castitem);
protected:
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
public:
virtual ~PrintOperationPreview();
static void add_interface(GType gtype_implementer);
#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.
GtkPrintOperationPreview* gobj() { return reinterpret_cast<GtkPrintOperationPreview*>(gobject_); }
///Provides access to the underlying C GObject.
const GtkPrintOperationPreview* gobj() const { return reinterpret_cast<GtkPrintOperationPreview*>(gobject_); }
private:
public:
/** Renders a page to the preview, using the print context that
* was passed to the Gtk::PrintOperation::preview handler together
* with @a preview .
*
* Note that this function requires a suitable cairo context to
* be associated with the print context.
*
* @newin2p10
* @param page_nr The page to render.
*/
void render_page(int page_nr);
/** Ends a preview.
*
* This function must be called to finish a custom print preview.
*
* @newin2p10
*/
void end_preview();
/** Returns: <tt>true</tt> if the page has been selected for printing
* @param page_nr A page number.
* @return <tt>true</tt> if the page has been selected for printing
*
* @newin2p10.
*/
bool is_selected(int page_nr) const;
#ifdef GLIBMM_VFUNCS_ENABLED
virtual void render_page_vfunc(int page_nr);
#endif //GLIBMM_VFUNCS_ENABLED
#ifdef GLIBMM_VFUNCS_ENABLED
virtual void end_preview_vfunc();
#endif //GLIBMM_VFUNCS_ENABLED
#ifdef GLIBMM_VFUNCS_ENABLED
virtual bool is_selected_vfunc(int page_nr) const;
#endif //GLIBMM_VFUNCS_ENABLED
/**
* @par Prototype:
* <tt>void on_my_%ready(const Glib::RefPtr<PrintContext>& context)</tt>
*/
Glib::SignalProxy1< void,const Glib::RefPtr<PrintContext>& > signal_ready();
/**
* @par Prototype:
* <tt>void on_my_%got_page_size(const Glib::RefPtr<PrintContext>& context, const Glib::RefPtr<PageSetup>& page_setup)</tt>
*/
Glib::SignalProxy2< void,const Glib::RefPtr<PrintContext>&,const Glib::RefPtr<PageSetup>& > signal_got_page_size();
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_ready(const Glib::RefPtr<PrintContext>& context);
virtual void on_got_page_size(const Glib::RefPtr<PrintContext>& context, const Glib::RefPtr<PageSetup>& page_setup);
#endif //GLIBMM_DEFAULT_SIGNAL_HANDLERS_ENABLED
};
} // 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::PrintOperationPreview
*/
Glib::RefPtr<Gtk::PrintOperationPreview> wrap(GtkPrintOperationPreview* object, bool take_copy = false);
} // namespace Glib
#endif /* _GTKMM_PRINTOPERATIONPREVIEW_H */