~ubuntu-branches/debian/sid/swt-gtk/sid

« back to all changes in this revision

Viewing changes to org/eclipse/swt/internal/gtk/GdkEventMotion.java

  • Committer: Bazaar Package Importer
  • Author(s): Adrian Perez
  • Date: 2009-12-07 10:22:24 UTC
  • mfrom: (1.2.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20091207102224-70w2tax575mcks1w
Tags: 3.5.1-1
* New upstream release. Closes: #558663.
* debian/control: 
  - Add Vcs-* fields for Git repository.
  - Allow DM-Uploads.
  - Remove "Conflicts", package should live with eclipse.
* debian/rules: Fix default-java path around AWT_LIB_PATH.
* debian/copyright: Minor update.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*******************************************************************************
2
 
 * Copyright (c) 2000, 2006 IBM Corporation and others. All rights reserved.
 
2
 * Copyright (c) 2000, 2008 IBM Corporation and others. All rights reserved.
3
3
 * The contents of this file are made available under the terms
4
4
 * of the GNU Lesser General Public License (LGPL) Version 2.1 that
5
5
 * accompanies this distribution (lgpl-v21.txt).  The LGPL is also
16
16
 
17
17
 
18
18
public class GdkEventMotion extends GdkEvent {
 
19
        /** @field cast=(GdkWindow *) */
19
20
        public int /*long*/ window;
 
21
        /** @field cast=(gint8) */
20
22
        public byte send_event;
 
23
        /** @field cast=(guint32) */
21
24
        public int time;
 
25
        /** @field cast=(gdouble) */
22
26
        public double x;
 
27
        /** @field cast=(gdouble) */
23
28
        public double y;
 
29
        /** @field cast=(gdouble *) */
24
30
        public int /*long*/ axes;
 
31
        /** @field cast=(guint) */
25
32
        public int state;
 
33
        /** @field cast=(gint16) */
26
34
        public short is_hint;
 
35
        /** @field cast=(GdkDevice *) */
27
36
        public int /*long*/ device;
 
37
        /** @field cast=(gdouble) */
28
38
        public double x_root;
 
39
        /** @field cast=(gdouble) */
29
40
        public double y_root;
30
41
        public static final int sizeof = OS.GdkEventMotion_sizeof();
31
42
}