File: GtkHandleBox.xs

package info (click to toggle)
libgtk-perl 0.7009-12
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 3,956 kB
  • ctags: 2,260
  • sloc: perl: 13,998; xml: 9,919; ansic: 2,894; makefile: 64; cpp: 45
file content (40 lines) | stat: -rw-r--r-- 658 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

#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"

#include "GtkDefs.h"

MODULE = Gtk::HandleBox		PACKAGE = Gtk::HandleBox	PREFIX = gtk_handle_box_

#ifdef GTK_HANDLE_BOX

Gtk::HandleBox_Sink
new(Class)
	SV *	Class
	CODE:
	RETVAL = (GtkHandleBox*)(gtk_handle_box_new());
	OUTPUT:
	RETVAL

#if GTK_HVER >= 0x01010F

void
gtk_handle_box_set_shadow_type(handlebox, type)
	Gtk::HandleBox	handlebox
	Gtk::ShadowType	type

void
gtk_handle_box_set_handle_position(handlebox, position)
	Gtk::HandleBox	handlebox
	Gtk::PositionType	position

void
gtk_handle_box_set_snap_edge(handlebox, edge)
	Gtk::HandleBox	handlebox
	Gtk::PositionType	edge

#endif


#endif