Re: [glade--]Re: glade-- and gtkmm-1.3
Christof Petig <[email protected]>
| Newsgroups | gmane.comp.gnome.glademm |
|---|---|
| Organization | Adolf Petig GmbH & Co. KG |
| Message-ID | <[email protected]> |
Petr Ferschmann wrote:
> Hello
>
> I downloaded glademm from cvs but it doesn't detect gtkmm-1.3. What I am
> doing bad? Some where I read something about checkouting another release in
> cvs (using -r parameter). Is it true?
>
> ad 2) I am using this for configuring with gtkmm-1.3
> PKG_CHECK_MODULES(GTKMM, gtkmm-2.0 >= 1.3.0)
> AC_SUBST(GTKMM_CFLAGS)
> AC_SUBST(GTKMM_LIBS)
perfect. This is missing from glademm's configure.in. But it looks for
it at its run time (which is much more important).
>
> ad 1) How much differs glade and glade-2 in file format?
See yourself:
---- glade 1 ------
<GTK-Interface>
<project>...</project>
<widget>
<class>GtkWindow</class>
<name>window1</name>
<title>window1</title>
<type>GTK_WINDOW_TOPLEVEL</type>
...
<widget>
<class>
...
--- glade 2 --------
<glade-interface>
<widget class="GtkWindow" id="window1">
<property name="visible">True</property>
<property name="title" translatable="yes">window1</property>
...
<child>
<widget class="GtkVBox" id="vbox1">
<property name="visible">True</property>
...
------
Christof