File: gdk_event_configure.e

package info (click to toggle)
egtk 0.3.5.cvs20020302-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,900 kB
  • ctags: 5,118
  • sloc: ansic: 2,212; makefile: 247; sh: 113
file content (43 lines) | stat: -rw-r--r-- 649 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
-- Copyright 1998 Richie Bielak and others
-- Licensed under Eiffel Forum Freeware License, version 1;
-- (see forum.txt)
--
indexing

	description: "GDK_EVENT_CONFIGURE"
	cvs: "$Id: gdk_event_configure.e,v 1.1 2000/01/12 02:57:23 richieb Exp $"

class GDK_EVENT_CONFIGURE

inherit

	GDK_EVENT

creation

	make_from_pointer

feature

	x: INTEGER is
		do
			Result := c_gdk_event_configure_x (object)
		end

	y: INTEGER is
		do
			Result := c_gdk_event_configure_y (object)
		end

	width: INTEGER is
		do
			Result := c_gdk_event_configure_width (object)
		end

	height: INTEGER is
		do
			Result := c_gdk_event_configure_height (object)
		end

end