~ubuntu-branches/ubuntu/oneiric/evince/oneiric-updates

« back to all changes in this revision

Viewing changes to libdocument/ev-document-print.h

  • Committer: Bazaar Package Importer
  • Author(s): Frederic Peters
  • Date: 2011-04-14 16:20:57 UTC
  • mfrom: (1.6.4 upstream)
  • mto: (1.3.5 experimental)
  • mto: This revision was merged to the branch mainline in revision 138.
  • Revision ID: james.westby@ubuntu.com-20110414162057-0ofhbd139zs6ev6y
ImportĀ upstreamĀ versionĀ 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 *
16
16
 * You should have received a copy of the GNU General Public License
17
17
 * along with this program; if not, write to the Free Software
18
 
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
 
18
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19
19
 */
20
20
 
21
21
#ifndef EV_DOCUMENT_PRINT_H
30
30
 
31
31
#define EV_TYPE_DOCUMENT_PRINT             (ev_document_print_get_type ())
32
32
#define EV_DOCUMENT_PRINT(o)               (G_TYPE_CHECK_INSTANCE_CAST ((o), EV_TYPE_DOCUMENT_PRINT, EvDocumentPrint))
33
 
#define EV_DOCUMENT_PRINT_IFACE(k)         (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT_PRINT, EvDocumentPrintIface))
 
33
#define EV_DOCUMENT_PRINT_IFACE(k)         (G_TYPE_CHECK_CLASS_CAST((k), EV_TYPE_DOCUMENT_PRINT, EvDocumentPrintInterface))
34
34
#define EV_IS_DOCUMENT_PRINT(o)            (G_TYPE_CHECK_INSTANCE_TYPE ((o), EV_TYPE_DOCUMENT_PRINT))
35
35
#define EV_IS_DOCUMENT_PRINT_IFACE(k)      (G_TYPE_CHECK_CLASS_TYPE ((k), EV_TYPE_DOCUMENT_PRINT))
36
 
#define EV_DOCUMENT_PRINT_GET_IFACE(inst)  (G_TYPE_INSTANCE_GET_INTERFACE ((inst), EV_TYPE_DOCUMENT_PRINT, EvDocumentPrintIface))
37
 
 
38
 
typedef struct _EvDocumentPrint      EvDocumentPrint;
39
 
typedef struct _EvDocumentPrintIface EvDocumentPrintIface;
40
 
 
41
 
struct _EvDocumentPrintIface
 
36
#define EV_DOCUMENT_PRINT_GET_IFACE(inst)  (G_TYPE_INSTANCE_GET_INTERFACE ((inst), EV_TYPE_DOCUMENT_PRINT, EvDocumentPrintInterface))
 
37
 
 
38
typedef struct _EvDocumentPrint          EvDocumentPrint;
 
39
typedef struct _EvDocumentPrintInterface EvDocumentPrintInterface;
 
40
 
 
41
struct _EvDocumentPrintInterface
42
42
{
43
43
        GTypeInterface base_iface;
44
44