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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#include <gtk/gtk.h>
#include "GtkTypes.h"
#include "GdkTypes.h"
#include "MiscTypes.h"
#include "GtkDefs.h"
#ifndef boolSV
# define boolSV(b) ((b) ? &sv_yes : &sv_no)
#endif
MODULE = Gtk::InputDialog PACKAGE = Gtk::InputDialog PREFIX = gtk_input_dialog_
#ifdef GTK_INPUT_DIALOG
Gtk::InputDialog_Sink
new(Class)
SV * Class
CODE:
RETVAL = GTK_INPUT_DIALOG(gtk_input_dialog_new());
OUTPUT:
RETVAL
Gtk::Widget_Up
axis_list(dialog)
Gtk::InputDialog dialog
CODE:
RETVAL = dialog->axis_list;
OUTPUT:
RETVAL
Gtk::Widget_Up
axis_listbox(dialog)
Gtk::InputDialog dialog
CODE:
RETVAL = dialog->axis_listbox;
OUTPUT:
RETVAL
Gtk::Widget_Up
mode_optionmenu(dialog)
Gtk::InputDialog dialog
CODE:
RETVAL = dialog->mode_optionmenu;
OUTPUT:
RETVAL
Gtk::Widget_Up
close_button(dialog)
Gtk::InputDialog dialog
CODE:
RETVAL = dialog->close_button;
OUTPUT:
RETVAL
Gtk::Widget_Up
save_button(dialog)
Gtk::InputDialog dialog
CODE:
RETVAL = dialog->save_button;
OUTPUT:
RETVAL
int
current_device(dialog)
Gtk::InputDialog dialog
CODE:
RETVAL = dialog->current_device;
OUTPUT:
RETVAL
#endif
|