Home Files
Adminer
Execute Command
PHP Eval
Symlink
File Upload
Owner :
www-data
PHP Version
5.6.40-0+deb8u12
Disk Space
40.97 GB
Server Addr
19-www4
Your IP
10.10.10.40
Edit File
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 */