|
Server : Apache/2.2.17 (Unix) mod_ssl/2.2.17 OpenSSL/0.9.8e-fips-rhel5 DAV/2 PHP/5.2.17 System : Linux localhost 2.6.18-419.el5 #1 SMP Fri Feb 24 22:47:42 UTC 2017 x86_64 User : nobody ( 99) PHP Version : 5.2.17 Disable Function : NONE Directory : /proc/22697/root/usr/share/idl/bonobo-2.0/ |
Upload File : |
/*
* bonobo-print.idl: Bonobo remote printing support
*
* Author:
* Michael Meeks (michael@helixcode.com)
*
* Copyright (C) 2000 Helix Code, Inc.
*/
#ifndef BONOBO_PRINT_IDL
#define BONOBO_PRINT_IDL
#include "Bonobo_Storage.idl"
module Bonobo {
struct PrintScissor {
double width_first_page, width_per_page;
double height_first_page, height_per_page;
};
struct PrintDimensions {
double width, height;
};
interface Print : Bonobo::Unknown {
/**
* render:
*
* This returns a gnome-print Meta stream of the object
* rendered into an infinite page at the origin with size
* determined by the PrintDimensions. The PrintScissor tells
* it at what points it will be split across pages so it can
* adjust its rendering if required.
**/
Stream render (in PrintDimensions pd,
in PrintScissor scissor);
void unImplemented1 ();
void unImplemented2 ();
void unImplemented3 ();
void unImplemented4 ();
};
};
#endif /* BONOBO_PRINT_IDL */