Re: [glade--]Re: glade-- and gtkmm-1.3



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




[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]