~ubuntu-branches/ubuntu/natty/vice/natty

« back to all changes in this revision

Viewing changes to src/arch/unix/x11/xaw/widgets/Canvas.h

  • Committer: Bazaar Package Importer
  • Author(s): Laszlo Boszormenyi (GCS)
  • Date: 2010-02-11 18:30:16 UTC
  • mfrom: (1.1.8 upstream) (9.2.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100211183016-f6n8usn3tzp0u6dp
Tags: 2.2.dfsg-1
* New upstream release, C64 DTV is included so update package description
  and add it to the menu.
* Drop patch fixing build failure with gcc-4.4 , applied upstream.
* Fix some lintian problems and clean up debian/rules .

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 
21
21
 */
22
22
 
23
 
#ifndef _Canvas_h
24
 
#define _Canvas_h
 
23
#ifndef VICE_Canvas_h
 
24
#define VICE_Canvas_h
25
25
 
26
26
#include <X11/Core.h>
27
27
 
28
28
#ifndef XtNexposeProc
29
 
#define XtNexposeProc           "exposeProc"
30
 
#define XtCExposeProc           "ExposeProc"
 
29
#define XtNexposeProc "exposeProc"
 
30
#define XtCExposeProc "ExposeProc"
31
31
#endif
32
32
 
33
33
#ifndef XtNexposeProcData
34
 
#define XtNexposeProcData       "exposeProcData"
35
 
#define XtCExposeProcData       "ExposeProcData"
36
 
#endif
37
 
 
38
 
#ifndef XtNresizeProc
39
 
#define XtNresizeProc           "resizeProc"
40
 
#define XtCResizeProc           "ResizeProc"
41
 
#endif
42
 
 
43
 
#ifndef XtNresizeProcData
44
 
#define XtNresizeProcData       "resizeProcData"
45
 
#define XtCResizeProcData       "ResizeProcData"
 
34
#define XtNexposeProcData "exposeProcData"
 
35
#define XtCExposeProcData "ExposeProcData"
 
36
#endif
 
37
 
 
38
#ifndef XtNresizeProc
 
39
#define XtNresizeProc "resizeProc"
 
40
#define XtCResizeProc "ResizeProc"
 
41
#endif
 
42
 
 
43
#ifndef XtNresizeProcData
 
44
#define XtNresizeProcData "resizeProcData"
 
45
#define XtCResizeProcData "ResizeProcData"
46
46
#endif
47
47
 
48
48
#ifndef XtNvisual
49
 
#define XtNvisual               "visual"
50
 
#define XtCVisual               "Visual"
 
49
#define XtNvisual "visual"
 
50
#define XtCVisual "Visual"
51
51
#endif
52
52
 
53
53
extern WidgetClass xfwfcanvasWidgetClass;
54
54
 
55
55
typedef struct _CanvasClassRec *CanvasWidgetClass;
56
 
typedef struct _CanvasRec      *CanvasWidget;
 
56
typedef struct _CanvasRec *CanvasWidget;
57
57
 
58
 
typedef void(*XfwfCanvasExposeProc)(
 
58
typedef void(*XfwfCanvasExposeProc) (
59
59
#if NeedFunctionPrototypes
60
 
        Widget w,
61
 
        XExposeEvent *event,
62
 
        Region region,
63
 
        XtPointer client_data
 
60
    Widget w,
 
61
    XExposeEvent *event,
 
62
    Region region,
 
63
    XtPointer client_data
64
64
#endif
65
65
);
66
66
 
67
67
typedef void(*XfwfCanvasResizeProc)(
68
68
#if NeedFunctionPrototypes
69
 
        Widget w,
70
 
        XtPointer client_data
 
69
    Widget w,
 
70
    XtPointer client_data
71
71
#endif
72
72
);
73
73