Introduction | Gtk2_EntryDialog::new_simple |
Gtk2_EntryDialog | |
PEAR Manual | |
require_once 'Gtk2/EntryDialog.php'; |
void constructor
Gtk2_EntryDialog::__construct
(
GtkWindow $parent
,
GtkDialogFlags $flags
,
GtkMessageType $type
,
GtkButtonsType $buttons
,
string $message
,
string $default
)
Creates a new entry dialog instance. After creating it, you can modify it and finally use the run() to show it and await the input.
You might want to use a more simple constructor, e.g. get() or new_simple()
|
Parent window (can be null).
Dialog flags (use 0 as default)
Message type (e.g. Gtk::MESSAGE_QUESTION)
Buttons to show (e.g. Gtk::BUTTONS_OK)
Message to display.
Default text for the entry.
Introduction | Gtk2_EntryDialog::new_simple |
Gtk2_EntryDialog | |
PEAR Manual | |