/usr/share/idl/bonobo-2.0/Bonobo_Print.idl is in libbonobo2-common 2.24.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | /*
* 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 */
|