Tk::DialogBox - create and manipulate a dialog screen. |
Tk::DialogBox - create and manipulate a dialog screen.
use Tk::DialogBox ... $d = $top->DialogBox(-title => "Title", -buttons => ["OK", "Cancel"]); $w = $d->add(Widget, args); ... $button = $d->Show;
DialogBox is very similar to Dialog except that it allows any widget in the top frame. DialogBox creates two frames---``top'' and ``bottom''. The bottom frame shows all the specified buttons, lined up from left to right. The top frame acts as a container for all other widgets that can be added with the add() method. The non-standard options recognized by DialogBox are as follows:
DialogBox supports only two methods as of now:
There is no way of removing a widget once it has been added to the top frame.
There is no control over the appearance of the buttons in the bottom frame nor is there any way to control the placement of the two frames with respect to each other e.g. widgets to the left, buttons to the right instead of widgets on the top and buttons on the bottom always.
Rajappa Iyer rsi@earthling.net
This code is distributed under the same terms as Perl.
Tk::DialogBox - create and manipulate a dialog screen. |