~ubuntu-branches/debian/sid/java-gnome/sid

« back to all changes in this revision

Viewing changes to src/defs/GdkEventMotion.defs

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2010-04-11 21:28:43 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20100411212843-g18x13q4fn02ox4a
Tags: 4.0.15-1
* Team upload
* New upstream release
* Change maintainers into Maintainers.
* Remove Thomas from Uploaders.
* Switch to source format 3.0.
* Update Standards-Version: 3.8.4.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
(define-boxed EventMotion
 
2
  (in-module "Gdk")
 
3
  (c-name "GdkEventMotion")
 
4
  (fields
 
5
    '("GdkEventType" "type")
 
6
    '("GdkWindow*" "window")
 
7
    '("gint8" "send_event")
 
8
    '("guint32" "time")
 
9
    '("gdouble" "x")
 
10
    '("gdouble" "y")
 
11
    '("gdouble*" "axes")
 
12
    '("guint" "state")
 
13
    '("gint16" "is_hint")
 
14
    '("GdkDevice*" "device")
 
15
    '("gdouble" "x_root")
 
16
    '("gdouble" "y_root")
 
17
  )
 
18
)
 
19