On Wed, 2002-05-01 at 13:43, ml wrote:
> Hi,
>
> is it possible to use glade and libglade to build object
> property dialogs etc. for dia objects? Thanks in advance!
>
You can use glade to create the widgets you're wanting in a window, and
then cut this part of code inside your Dia plugin.
For example, create a window in glade, insert what you want, and instead
of the gtk_container_add(GTK_CONTAINER(window1), box1) you'll just have
to return box1.
Personnaly I don't find this very useful unless you have many widgets to
manage in the property dialog.
Tell us if it works :)