~valavanisalex/ubuntu/precise/inkscape/fix-943984

« back to all changes in this revision

Viewing changes to inkscape-0.47pre1/src/zoom-context.h

  • Committer: Bazaar Package Importer
  • Author(s): Bryce Harrington
  • Date: 2009-07-02 17:09:45 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20090702170945-nn6d6zswovbwju1t
Tags: 0.47~pre1-0ubuntu1
* New upstream release.
  - Don't constrain maximization on small resolution devices (pre0)
    (LP: #348842)
  - Fixes segfault on startup (pre0)
    (LP: #391149)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __SP_ZOOM_CONTEXT_H__
 
2
#define __SP_ZOOM_CONTEXT_H__
 
3
 
 
4
/*
 
5
 * Handy zooming tool
 
6
 *
 
7
 * Authors:
 
8
 *   Lauris Kaplinski <lauris@kaplinski.com>
 
9
 *   Frank Felfe <innerspace@iname.com>
 
10
 *
 
11
 * Copyright (C) 1999-2002 Authors
 
12
 *
 
13
 * Released under GNU GPL, read the file 'COPYING' for more information
 
14
 */
 
15
 
 
16
#include "event-context.h"
 
17
 
 
18
#define SP_TYPE_ZOOM_CONTEXT (sp_zoom_context_get_type ())
 
19
#define SP_ZOOM_CONTEXT(obj) (GTK_CHECK_CAST ((obj), SP_TYPE_ZOOM_CONTEXT, SPZoomContext))
 
20
#define SP_IS_ZOOM_CONTEXT(obj) (GTK_CHECK_TYPE ((obj), SP_TYPE_ZOOM_CONTEXT))
 
21
 
 
22
class SPZoomContext;
 
23
class SPZoomContextClass;
 
24
 
 
25
struct SPZoomContext {
 
26
        SPEventContext event_context;
 
27
};
 
28
 
 
29
struct SPZoomContextClass {
 
30
        SPEventContextClass parent_class;
 
31
};
 
32
 
 
33
GType sp_zoom_context_get_type (void);
 
34
 
 
35
#endif