previousconstructor Gtk2_EntryDialog (Previous) (Next) Gtk2_EntryDialog::getnext

View this page in Last updated: Sun, 18 Oct 2009
English | Brazilian Portuguese | Chinese | Dutch | French | German | Hungarian | Japanese | Polish | Russian | Spanish | Turkish

Gtk2_EntryDialog::new_simple

Gtk2_EntryDialog::new_simple() – Simplified constructor with not so much parameters.

Synopsis

require_once 'Gtk2/EntryDialog.php';

Gtk2_EntryDialog Gtk2_EntryDialog::new_simple ( string $message , string $default = null , GtkWindow $parent = null )

Description

Simplified constructor with not so much parameters.

Message type is Gtk::MESSAGE_QUESTION, the flags will be Gtk::DIALOG_MODAL if the parent is set. Only one button, OK, will be visible.

<?php
require_once 'Gtk2/EntryDialog.php';

$id Gtk2_EntryDialog::new_simple(
    
'What\'s your name?',       //the message
    
'Don\'t know'               //The default text
);

$answer $id->run();
$id->destroy();
if (
$answer == Gtk::RESPONSE_OK) {
    echo 
'The name is: ';
    
var_dump($id->get_text());
} else {
    echo 
"You cancelled\r\n";
}
?>

Parameter

string $message

Message to display.

string $default

Default text for the entry.

GtkWindow $parent

Parent window (can be null).

previousconstructor Gtk2_EntryDialog (Previous) (Next) Gtk2_EntryDialog::getnext

Download Documentation Last updated: Sun, 18 Oct 2009
Do you think that something on this page is wrong? Please file a bug report or add a note.
User Notes:
There are no user contributed notes for this page.