Re: [PHP-GTK] GTKDialog
[email protected] (Rich Payne) Thu, 9 Aug 2001 09:05:48 -0400 (EDT)
| Newsgroups | php.gtk |
|---|---|
| Message-ID | <[email protected]> |
On Thu, 9 Aug 2001, David Broker wrote: > At 08:34 AM 09/08/2001 -0400, Rich Payne wrote: > > >Have a look at the Gtk+ docs, they explain what a GtkDialog is fairly > >well. > > > >http://developer.gnome.org/doc/API/gtk/index.html > > > >--rdp > > Hi, > Thanks you! I saw those, but the different languages confused (lack of > objects and such). > So the variables "action_area" and "vbox" are available on a GTKDialog object? > How do I pack stuff into these areas? Like this: > > $dialog = &new GTKDialog(); > $dialog->vbox->pack_start($label); > $dialog->action_area->pack_start($button); Alomst, I think Zend can't currently handle that syntax, so you'll need to do: $dialog = &new GTKDialog(); $vbox=$dialog->vbox $vbox->pack_start($label); make sense? --rdp -- Rich Payne [email protected] www.alphalinux.org