| Server IP : 182.53.201.61 / Your IP : 216.73.217.175 Web Server : Apache/2.2.15 (Fedora) System : Linux km10.dyndns.org 2.6.31.5-127.fc12.i686.PAE #1 SMP Sat Nov 7 21:25:57 EST 2009 i686 User : apache ( 48) PHP Version : 5.3.3 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /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 */