Discussion:
opening glade2 file on ubuntu 11.10
Saku Masukita
2011-11-07 22:52:08 UTC
Permalink
Hello,

A couple of years ago I was asking whether there would be
some tool to convert glade2 files to glade3 files but the answer
was negative (and that if anything such conversion must be part
of GTK+ and not glade). To date I still don't think such a tool exists.

Is there a script or an easy way out to carry out the conversion?

Thanks,

Saku
Saku Masukita
2011-11-07 23:02:42 UTC
Permalink
Hi all,

To add to my email, how do I install glade 2 on Ubuntu 11.10?
I tried downloading the glade-2.12.2.tar.gz and got the following
output when I run configure:

----------------------------------------------------------------------------------------------------------

...

checking for IceConnectionNumber in -lICE... yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for GLADE_GTK... configure: error: Package requirements
(libxml-2.0 >= 2.4.1 gtk+-2.0 >= 2.8.0) were not met:

No package 'libxml-2.0' found
No package 'gtk+-2.0' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables GLADE_GTK_CFLAGS
and GLADE_GTK_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

--------------------------------------------------------------------------------------------------------------

Also, I'm not sure what the complaints are about, when I inspect my
/usr/lib directory I get:

$ ls /usr/lib/{*xml*,*gtk*}
/usr/lib/libcanberra-gtk3.so.0 /usr/lib/libgtk-3.so.0.200.0
/usr/lib/libgwibber-gtk.so.2.0.0
/usr/lib/libcanberra-gtk3.so.0.1.8 /usr/lib/libgtkmm-2.4.so.1
/usr/lib/libindicate-gtk.so.3
/usr/lib/libcanberra-gtk.so.0 /usr/lib/libgtkmm-2.4.so.1.1.0
/usr/lib/libindicate-gtk.so.3.0.2
/usr/lib/libcanberra-gtk.so.0.1.8 /usr/lib/libgtkmm-3.0.so.1
/usr/lib/libnm-gtk.so.0
/usr/lib/libdbusmenu-gtk3.so.4 /usr/lib/libgtkmm-3.0.so.1.1.0
/usr/lib/libnm-gtk.so.0.0.0
/usr/lib/libdbusmenu-gtk3.so.4.0.5 /usr/lib/libgtksourceview-3.0.so.0
/usr/lib/libpeas-gtk-1.0.so.0
/usr/lib/libdbusmenu-gtk.so.4 /usr/lib/libgtksourceview-3.0.so.0.0.0
/usr/lib/libpeas-gtk-1.0.so.0.200.0
/usr/lib/libdbusmenu-gtk.so.4.0.5 /usr/lib/libgtkspell3.so.0
/usr/lib/libwebkitgtk-1.0.so.0
/usr/lib/libgdu-gtk.so.0 /usr/lib/libgtkspell3.so.0.0.0
/usr/lib/libwebkitgtk-1.0.so.0.7.3
/usr/lib/libgdu-gtk.so.0.0.0 /usr/lib/libgtkspell.so.0
/usr/lib/libwebkitgtk-3.0.so.0
/usr/lib/libgtk-3.a /usr/lib/libgtkspell.so.0.0.0
/usr/lib/libwebkitgtk-3.0.so.0.7.3
/usr/lib/libgtk-3.la /usr/lib/libgtk-vnc-2.0.so.0
/usr/lib/libxml2.so.2
/usr/lib/libgtk-3.so /usr/lib/libgtk-vnc-2.0.so.0.0.2
/usr/lib/libxml2.so.2.7.8
/usr/lib/libgtk-3.so.0 /usr/lib/libgwibber-gtk.so.2

/usr/lib/gtk-2.0:
2.10.0 modules

/usr/lib/gtk-3.0:
3.0.0 modules

/usr/lib/gtk-sharp-beans:
gio-sharp.dll gio-sharp.dll.config gtk-sharp-beans.dll
gtk-sharp-beans.dll.config

/usr/lib/libgtk-3-0:
gtk-query-immodules-3.0 gtk-update-icon-cache-3.0

/usr/lib/webkitgtk-1.0-0:
libexec

/usr/lib/webkitgtk-3.0-0:
libexec

------------------------------------------------------------------------------------------------------------------------

Even if I need to convert the glade2 file to glade3 by hand I'm going to
have to have glade2
installed on the system in order to see what conversions I need to do.

Thanks,

Saku

On Mon, Nov 7, 2011 at 11:52 PM, Saku Masukita
Post by Saku Masukita
Hello,
A couple of years ago I was asking whether there would be
some tool to convert glade2 files to glade3 files but the answer
was negative (and that if anything such conversion must be part
of GTK+ and not glade). To date I still don't think such a tool exists.
Is there a script or an easy way out to carry out the conversion?
Thanks,
Saku
Tristan Van Berkom
2011-11-08 00:27:41 UTC
Permalink
Hello,
You do not need a conversion tool to load a file created with Glade 2.

While Glade 3 is a completely new code base, it is built upon the same
xml format as Glade 2 was generating.

What you should have, is the latest version of Glade 3.8 stable, Glade 3.10
forward will no longer recognize the old libglade format.

With Glade 3.8 you should be able to load your old Glade file created with
Glade 2 and then use the menubar: "Project->Properties" to get the project
dialog and change the target format to be GtkBuilder instead of libglade.

This action will do the conversion, after which you might get some warnings
about usage of widgets that are deprecated or unsupported by GtkBuilder.

Ideally, Glade 3.8 is intended to eventually cover the full GtkBuilder feature
set offered by GTK+ 2.24 (there may remain a couple unsupported widgets
but I think it's mostly covered)... if you can load your project in the latest
Glade and there is no usage of deprecated widgets, then you should be
able to load that file in Glade 3.10 (if you wish to make the switch to GTK+-3).

That was a lot of information, the key point though is you should be able
to load your older file created with Glade 2 using Glade 3.8.x without any
problems (if you hit a snag though, please let us know).

Cheers,
-Tristan

On Mon, Nov 7, 2011 at 6:02 PM, Saku Masukita
Post by Saku Masukita
Hi all,
To add to my email, how do I install glade 2 on Ubuntu 11.10?
I tried downloading the glade-2.12.2.tar.gz and got the following
----------------------------------------------------------------------------------------------------------
...
checking for IceConnectionNumber in -lICE... yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for GLADE_GTK... configure: error: Package requirements (libxml-2.0
No package 'libxml-2.0' found
No package 'gtk+-2.0' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables GLADE_GTK_CFLAGS
and GLADE_GTK_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
--------------------------------------------------------------------------------------------------------------
Also, I'm not sure what the complaints are about, when I inspect my /usr/lib
$ ls /usr/lib/{*xml*,*gtk*}
/usr/lib/libcanberra-gtk3.so.0      /usr/lib/libgtk-3.so.0.200.0
/usr/lib/libgwibber-gtk.so.2.0.0
/usr/lib/libcanberra-gtk3.so.0.1.8  /usr/lib/libgtkmm-2.4.so.1
/usr/lib/libindicate-gtk.so.3
/usr/lib/libcanberra-gtk.so.0       /usr/lib/libgtkmm-2.4.so.1.1.0
/usr/lib/libindicate-gtk.so.3.0.2
/usr/lib/libcanberra-gtk.so.0.1.8   /usr/lib/libgtkmm-3.0.so.1
/usr/lib/libnm-gtk.so.0
/usr/lib/libdbusmenu-gtk3.so.4      /usr/lib/libgtkmm-3.0.so.1.1.0
/usr/lib/libnm-gtk.so.0.0.0
/usr/lib/libdbusmenu-gtk3.so.4.0.5  /usr/lib/libgtksourceview-3.0.so.0
/usr/lib/libpeas-gtk-1.0.so.0
/usr/lib/libdbusmenu-gtk.so.4       /usr/lib/libgtksourceview-3.0.so.0.0.0
/usr/lib/libpeas-gtk-1.0.so.0.200.0
/usr/lib/libdbusmenu-gtk.so.4.0.5   /usr/lib/libgtkspell3.so.0
/usr/lib/libwebkitgtk-1.0.so.0
/usr/lib/libgdu-gtk.so.0            /usr/lib/libgtkspell3.so.0.0.0
/usr/lib/libwebkitgtk-1.0.so.0.7.3
/usr/lib/libgdu-gtk.so.0.0.0        /usr/lib/libgtkspell.so.0
/usr/lib/libwebkitgtk-3.0.so.0
/usr/lib/libgtk-3.a                 /usr/lib/libgtkspell.so.0.0.0
/usr/lib/libwebkitgtk-3.0.so.0.7.3
/usr/lib/libgtk-3.la                /usr/lib/libgtk-vnc-2.0.so.0
/usr/lib/libxml2.so.2
/usr/lib/libgtk-3.so                /usr/lib/libgtk-vnc-2.0.so.0.0.2
/usr/lib/libxml2.so.2.7.8
/usr/lib/libgtk-3.so.0              /usr/lib/libgwibber-gtk.so.2
2.10.0  modules
3.0.0  modules
gio-sharp.dll  gio-sharp.dll.config  gtk-sharp-beans.dll
gtk-sharp-beans.dll.config
gtk-query-immodules-3.0  gtk-update-icon-cache-3.0
libexec
libexec
------------------------------------------------------------------------------------------------------------------------
Even if I need to convert the glade2 file to glade3 by hand I'm going to
have to have glade2
installed on the system in order to see what conversions I need to do.
Thanks,
Saku
Post by Saku Masukita
Hello,
A couple of years ago I was asking whether there would be
some tool to convert glade2 files to glade3 files but the answer
was negative (and that if anything such conversion must be part
of GTK+ and not glade). To date I still don't think such a tool exists.
Is there a script or an easy way out to carry out the conversion?
Thanks,
Saku
_______________________________________________
http://lists.ximian.com/mailman/listinfo/glade-devel
_______________________________________________
Glade-devel maillist - Glade-***@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/glade-devel
Saku Masukita
2011-11-08 16:25:21 UTC
Permalink
Hi,

I thought I'd forward this to the list just in case it got lost...

--- Forwarded Message
---------------------------------------------------------------------------------------

Hi Tristan,

Thank you for your feedback. I was able to open my glade file with glade
3.8 which I was
able to install under ubuntu 11.10 with "sudo apt-get install glade-gtk2"
which is a separate
package from "glade". When I open the file I notice a few things which I
remember being
slightly different:

1. There are some buttons which are smaller than I remember them.

2. There are some clist widgets which lack the headers I had placed there
which were set in the GUI and not programmatically. For example:

<widget class="GtkCList"
id="inv_items_clist1">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="n_columns">19</property>
<property
name="column_widths">100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100</property>
<property
name="selection_mode">GTK_SELECTION_SINGLE</property>
<property
name="show_titles">True</property>
<property
name="shadow_type">GTK_SHADOW_IN</property>

<child>
<widget class="GtkLabel" id="label857">
<property
name="visible">True</property>
<property name="label"
translatable="yes">Cont. Cat. ID</property>
<property
name="use_underline">False</property>
<property
name="use_markup">False</property>
<property
name="justify">GTK_JUSTIFY_LEFT</property>
<property name="wrap">False</property>
<property
name="selectable">False</property>
<property name="xalign">0.5</property>
<property name="yalign">0.5</property>
<property name="xpad">0</property>
<property name="ypad">0</property>
</widget>
</child>

The label "Cont. Cat. ID" here is gone.

Also, when I click on the Projects menu item I see the following entries:
"Previous Project", "Next Project", and "Unsaved 1". I see no entry to
change the file format to GtkBuilder. Am I looking in the wrong place?

Thanks,

Saku
Saku Masukita
2012-01-14 19:32:54 UTC
Permalink
Hello,

Sorry to bother you again about this issue. I am using glade 3.10.0 on
Ubuntu 11.10.
I am working on an open source project where I have a large glade file
which I have
converted from glade 2 to glade 3. Now most of it displays fine in glade 3
but when I try
to save it I get the following long list of errors. Any idea of whether
they are benign or
not and how I can make them go away if possible?

Thanks a lot for your kind help,

Saku

[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu:whm_help_about_item1]
Object class 'Image Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu:whm_help_about_item1]
Property 'Use Action Appearance' of object class 'Image Menu Item' was
introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu:whm_help_about_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu:whm_help_about_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu:whm_help_about_item1]
Property 'Image widget' of object class 'Image Menu Item' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu:whm_help_about_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu:whm_help_about_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu:whm_help_website_item1]
Object class 'Image Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu:whm_help_website_item1]
Property 'Use Action Appearance' of object class 'Image Menu Item' was
introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu:whm_help_website_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu:whm_help_website_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu:whm_help_website_item1]
Property 'Image widget' of object class 'Image Menu Item' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu:whm_help_website_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu:whm_help_website_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu:whm_help_context_item1]
Object class 'Image Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu:whm_help_context_item1]
Property 'Use Action Appearance' of object class 'Image Menu Item' was
introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu:whm_help_context_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu:whm_help_context_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu:whm_help_context_item1]
Property 'Image widget' of object class 'Image Menu Item' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu:whm_help_context_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu:whm_help_context_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu:whm_help_usermanual_item1]
Object class 'Image Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu:whm_help_usermanual_item1]
Property 'Use Action Appearance' of object class 'Image Menu Item' was
introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu:whm_help_usermanual_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu:whm_help_usermanual_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu:whm_help_usermanual_item1]
Property 'Image widget' of object class 'Image Menu Item' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu:whm_help_usermanual_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu:whm_help_usermanual_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1:whm_help_item1_menu]
Object class 'Popup Menu' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1] Object class 'Menu Item'
was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1] Property 'Use Action
Appearance' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1] Property 'Label' of
object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1] Property 'Use Underline'
of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_help_item1] Packing property
'Position' of object class 'Menu Shell' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_history_item1]
Object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_history_item1]
Property 'Use Action Appearance' of object class 'Menu Item' was introduced
in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_history_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_history_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_history_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_history_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_cashregister_item1]
Object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_cashregister_item1]
Property 'Use Action Appearance' of object class 'Menu Item' was introduced
in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_cashregister_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_cashregister_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_cashregister_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_cashregister_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_solditems_item1:whm_go_solditems_item1_menu:whm_go_solditems_refunded_item1]
Object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_solditems_item1:whm_go_solditems_item1_menu:whm_go_solditems_refunded_item1]
Property 'Use Action Appearance' of object class 'Menu Item' was introduced
in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_solditems_item1:whm_go_solditems_item1_menu:whm_go_solditems_refunded_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_solditems_item1:whm_go_solditems_item1_menu:whm_go_solditems_refunded_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_solditems_item1:whm_go_solditems_item1_menu:whm_go_solditems_refunded_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_solditems_item1:whm_go_solditems_item1_menu:whm_go_solditems_refunded_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_solditems_item1:whm_go_solditems_item1_menu:whm_go_solditems_returned_item1]
Object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_solditems_item1:whm_go_solditems_item1_menu:whm_go_solditems_returned_item1]
Property 'Use Action Appearance' of object class 'Menu Item' was introduced
in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_solditems_item1:whm_go_solditems_item1_menu:whm_go_solditems_returned_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_solditems_item1:whm_go_solditems_item1_menu:whm_go_solditems_returned_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_solditems_item1:whm_go_solditems_item1_menu:whm_go_solditems_returned_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_solditems_item1:whm_go_solditems_item1_menu:whm_go_solditems_returned_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_solditems_item1:whm_go_solditems_item1_menu:whm_go_solditems_sent_item1]
Object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_solditems_item1:whm_go_solditems_item1_menu:whm_go_solditems_sent_item1]
Property 'Use Action Appearance' of object class 'Menu Item' was introduced
in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_solditems_item1:whm_go_solditems_item1_menu:whm_go_solditems_sent_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_solditems_item1:whm_go_solditems_item1_menu:whm_go_solditems_sent_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_solditems_item1:whm_go_solditems_item1_menu:whm_go_solditems_sent_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_solditems_item1:whm_go_solditems_item1_menu:whm_go_solditems_sent_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_solditems_item1:whm_go_solditems_item1_menu]
Object class 'Popup Menu' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_solditems_item1]
Object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_solditems_item1]
Property 'Use Action Appearance' of object class 'Menu Item' was introduced
in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_solditems_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_solditems_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_solditems_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_solditems_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_sales_item1]
Object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_sales_item1]
Property 'Use Action Appearance' of object class 'Menu Item' was introduced
in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_sales_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_sales_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_sales_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_sales_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_containers_item1]
Object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_containers_item1]
Property 'Use Action Appearance' of object class 'Menu Item' was introduced
in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_containers_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_containers_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_containers_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_containers_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_containercategories_item1]
Object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_containercategories_item1]
Property 'Use Action Appearance' of object class 'Menu Item' was introduced
in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_containercategories_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_containercategories_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_containercategories_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_containercategories_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchaseditems_item1:whm_go_purchaseditems_item1_menu:whm_go_purchaseditems_refunded_item1]
Object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchaseditems_item1:whm_go_purchaseditems_item1_menu:whm_go_purchaseditems_refunded_item1]
Property 'Use Action Appearance' of object class 'Menu Item' was introduced
in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchaseditems_item1:whm_go_purchaseditems_item1_menu:whm_go_purchaseditems_refunded_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchaseditems_item1:whm_go_purchaseditems_item1_menu:whm_go_purchaseditems_refunded_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchaseditems_item1:whm_go_purchaseditems_item1_menu:whm_go_purchaseditems_refunded_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchaseditems_item1:whm_go_purchaseditems_item1_menu:whm_go_purchaseditems_refunded_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchaseditems_item1:whm_go_purchaseditems_item1_menu:whm_go_purchaseditems_returned_item1]
Object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchaseditems_item1:whm_go_purchaseditems_item1_menu:whm_go_purchaseditems_returned_item1]
Property 'Use Action Appearance' of object class 'Menu Item' was introduced
in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchaseditems_item1:whm_go_purchaseditems_item1_menu:whm_go_purchaseditems_returned_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchaseditems_item1:whm_go_purchaseditems_item1_menu:whm_go_purchaseditems_returned_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchaseditems_item1:whm_go_purchaseditems_item1_menu:whm_go_purchaseditems_returned_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchaseditems_item1:whm_go_purchaseditems_item1_menu:whm_go_purchaseditems_returned_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchaseditems_item1:whm_go_purchaseditems_item1_menu:whm_go_purchaseditems_received_item1]
Object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchaseditems_item1:whm_go_purchaseditems_item1_menu:whm_go_purchaseditems_received_item1]
Property 'Use Action Appearance' of object class 'Menu Item' was introduced
in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchaseditems_item1:whm_go_purchaseditems_item1_menu:whm_go_purchaseditems_received_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchaseditems_item1:whm_go_purchaseditems_item1_menu:whm_go_purchaseditems_received_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchaseditems_item1:whm_go_purchaseditems_item1_menu:whm_go_purchaseditems_received_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchaseditems_item1:whm_go_purchaseditems_item1_menu:whm_go_purchaseditems_received_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchaseditems_item1:whm_go_purchaseditems_item1_menu]
Object class 'Popup Menu' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchaseditems_item1]
Object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchaseditems_item1]
Property 'Use Action Appearance' of object class 'Menu Item' was introduced
in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchaseditems_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchaseditems_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchaseditems_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchaseditems_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchases_item1]
Object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchases_item1]
Property 'Use Action Appearance' of object class 'Menu Item' was introduced
in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchases_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchases_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchases_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_purchases_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_itemcatalogue_item1]
Object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_itemcatalogue_item1]
Property 'Use Action Appearance' of object class 'Menu Item' was introduced
in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_itemcatalogue_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_itemcatalogue_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_itemcatalogue_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_itemcatalogue_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_customers_item1]
Object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_customers_item1]
Property 'Use Action Appearance' of object class 'Menu Item' was introduced
in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_customers_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_customers_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_customers_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_customers_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_representatives_item1]
Object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_representatives_item1]
Property 'Use Action Appearance' of object class 'Menu Item' was introduced
in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_representatives_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_representatives_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_representatives_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_representatives_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_suppliers_item1]
Object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_suppliers_item1]
Property 'Use Action Appearance' of object class 'Menu Item' was introduced
in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_suppliers_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_suppliers_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_suppliers_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_suppliers_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_inventory_item1]
Object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_inventory_item1]
Property 'Use Action Appearance' of object class 'Menu Item' was introduced
in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_inventory_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_inventory_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_inventory_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_inventory_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_separator1]
Object class 'Separator Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_separator1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_next_item1]
Object class 'Image Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_next_item1]
Property 'Use Action Appearance' of object class 'Image Menu Item' was
introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_next_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_next_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_next_item1]
Property 'Image widget' of object class 'Image Menu Item' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_next_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_previous_item1]
Object class 'Image Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_previous_item1]
Property 'Use Action Appearance' of object class 'Image Menu Item' was
introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_previous_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_previous_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_previous_item1]
Property 'Image widget' of object class 'Image Menu Item' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu:whm_go_previous_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1:whm_go_item1_menu] Object
class 'Popup Menu' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1] Object class 'Menu Item'
was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1] Property 'Use Action
Appearance' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1] Property 'Label' of object
class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1] Property 'Use Underline' of
object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_go_item1] Packing property 'Position'
of object class 'Menu Shell' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_view_item1:whm_view_item1_menu:whm_view_templates_item1]
Object class 'Image Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_view_item1:whm_view_item1_menu:whm_view_templates_item1]
Property 'Use Action Appearance' of object class 'Image Menu Item' was
introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_view_item1:whm_view_item1_menu:whm_view_templates_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_view_item1:whm_view_item1_menu:whm_view_templates_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_view_item1:whm_view_item1_menu:whm_view_templates_item1]
Property 'Image widget' of object class 'Image Menu Item' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_view_item1:whm_view_item1_menu:whm_view_templates_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_view_item1:whm_view_item1_menu:whm_view_templates_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_view_item1:whm_view_item1_menu]
Object class 'Popup Menu' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_view_item1] Object class 'Menu Item'
was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_view_item1] Property 'Use Action
Appearance' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_view_item1] Property 'Label' of
object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_view_item1] Property 'Use Underline'
of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_view_item1] Packing property
'Position' of object class 'Menu Shell' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu:whm_edit_preferences_label_item1]
Object class 'Image Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu:whm_edit_preferences_label_item1]
Property 'Use Action Appearance' of object class 'Image Menu Item' was
introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu:whm_edit_preferences_label_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu:whm_edit_preferences_label_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu:whm_edit_preferences_label_item1]
Property 'Image widget' of object class 'Image Menu Item' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu:whm_edit_preferences_label_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu:whm_edit_preferences_label_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu:whm_edit_preferences_packinglist_item1]
Object class 'Image Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu:whm_edit_preferences_packinglist_item1]
Property 'Use Action Appearance' of object class 'Image Menu Item' was
introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu:whm_edit_preferences_packinglist_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu:whm_edit_preferences_packinglist_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu:whm_edit_preferences_packinglist_item1]
Property 'Image widget' of object class 'Image Menu Item' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu:whm_edit_preferences_packinglist_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu:whm_edit_preferences_packinglist_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu:whm_edit_preferences_invoice_item1]
Object class 'Image Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu:whm_edit_preferences_invoice_item1]
Property 'Use Action Appearance' of object class 'Image Menu Item' was
introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu:whm_edit_preferences_invoice_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu:whm_edit_preferences_invoice_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu:whm_edit_preferences_invoice_item1]
Property 'Image widget' of object class 'Image Menu Item' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu:whm_edit_preferences_invoice_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu:whm_edit_preferences_invoice_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu:whm_edit_preferences_barcode_item1]
Object class 'Image Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu:whm_edit_preferences_barcode_item1]
Property 'Use Action Appearance' of object class 'Image Menu Item' was
introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu:whm_edit_preferences_barcode_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu:whm_edit_preferences_barcode_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu:whm_edit_preferences_barcode_item1]
Property 'Image widget' of object class 'Image Menu Item' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu:whm_edit_preferences_barcode_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu:whm_edit_preferences_barcode_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1:whm_edit_preferences_item1_menu]
Object class 'Popup Menu' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1]
Object class 'Image Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1]
Property 'Use Action Appearance' of object class 'Image Menu Item' was
introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1]
Property 'Image widget' of object class 'Image Menu Item' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_preferences_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_separator1]
Object class 'Separator Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_separator1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_companyinfo_item1]
Object class 'Image Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_companyinfo_item1]
Property 'Use Action Appearance' of object class 'Image Menu Item' was
introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_companyinfo_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_companyinfo_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_companyinfo_item1]
Property 'Image widget' of object class 'Image Menu Item' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_companyinfo_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu:whm_edit_companyinfo_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1:whm_edit_item1_menu]
Object class 'Popup Menu' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1] Object class 'Menu Item'
was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1] Property 'Use Action
Appearance' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1] Property 'Label' of
object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1] Property 'Use Underline'
of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_edit_item1] Packing property
'Position' of object class 'Menu Shell' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_quit_item1]
Object class 'Image Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_quit_item1]
Property 'Use Action Appearance' of object class 'Image Menu Item' was
introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_quit_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_quit_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_quit_item1]
Property 'Image widget' of object class 'Image Menu Item' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_quit_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_quit_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_separator1]
Object class 'Separator Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_separator1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_snapshot_item1]
Object class 'Image Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_snapshot_item1]
Property 'Use Action Appearance' of object class 'Image Menu Item' was
introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_snapshot_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_snapshot_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_snapshot_item1]
Property 'Image widget' of object class 'Image Menu Item' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_snapshot_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_snapshot_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_export_item1:whm_file_export_item1_menu:whm_file_export_comma_item1]
Object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_export_item1:whm_file_export_item1_menu:whm_file_export_comma_item1]
Property 'Use Action Appearance' of object class 'Menu Item' was introduced
in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_export_item1:whm_file_export_item1_menu:whm_file_export_comma_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_export_item1:whm_file_export_item1_menu:whm_file_export_comma_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_export_item1:whm_file_export_item1_menu:whm_file_export_comma_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_export_item1:whm_file_export_item1_menu:whm_file_export_comma_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_export_item1:whm_file_export_item1_menu:whm_file_export_sql_item1]
Object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_export_item1:whm_file_export_item1_menu:whm_file_export_sql_item1]
Property 'Use Action Appearance' of object class 'Menu Item' was introduced
in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_export_item1:whm_file_export_item1_menu:whm_file_export_sql_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_export_item1:whm_file_export_item1_menu:whm_file_export_sql_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_export_item1:whm_file_export_item1_menu:whm_file_export_sql_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_export_item1:whm_file_export_item1_menu:whm_file_export_sql_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_export_item1:whm_file_export_item1_menu:whm_file_export_xml_item1]
Object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_export_item1:whm_file_export_item1_menu:whm_file_export_xml_item1]
Property 'Use Action Appearance' of object class 'Menu Item' was introduced
in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_export_item1:whm_file_export_item1_menu:whm_file_export_xml_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_export_item1:whm_file_export_item1_menu:whm_file_export_xml_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_export_item1:whm_file_export_item1_menu:whm_file_export_xml_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_export_item1:whm_file_export_item1_menu:whm_file_export_xml_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_export_item1:whm_file_export_item1_menu]
Object class 'Popup Menu' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_export_item1]
Object class 'Image Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_export_item1]
Property 'Use Action Appearance' of object class 'Image Menu Item' was
introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_export_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_export_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_export_item1]
Property 'Image widget' of object class 'Image Menu Item' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_export_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_import_item1:whm_file_import_item1_menu:whm_file_import_comma_item1]
Object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_import_item1:whm_file_import_item1_menu:whm_file_import_comma_item1]
Property 'Use Action Appearance' of object class 'Menu Item' was introduced
in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_import_item1:whm_file_import_item1_menu:whm_file_import_comma_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_import_item1:whm_file_import_item1_menu:whm_file_import_comma_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_import_item1:whm_file_import_item1_menu:whm_file_import_comma_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_import_item1:whm_file_import_item1_menu:whm_file_import_comma_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_import_item1:whm_file_import_item1_menu:whm_file_import_sql_item1]
Object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_import_item1:whm_file_import_item1_menu:whm_file_import_sql_item1]
Property 'Use Action Appearance' of object class 'Menu Item' was introduced
in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_import_item1:whm_file_import_item1_menu:whm_file_import_sql_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_import_item1:whm_file_import_item1_menu:whm_file_import_sql_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_import_item1:whm_file_import_item1_menu:whm_file_import_sql_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_import_item1:whm_file_import_item1_menu:whm_file_import_sql_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_import_item1:whm_file_import_item1_menu:whm_file_import_xml_item1]
Object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_import_item1:whm_file_import_item1_menu:whm_file_import_xml_item1]
Property 'Use Action Appearance' of object class 'Menu Item' was introduced
in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_import_item1:whm_file_import_item1_menu:whm_file_import_xml_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_import_item1:whm_file_import_item1_menu:whm_file_import_xml_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_import_item1:whm_file_import_item1_menu:whm_file_import_xml_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_import_item1:whm_file_import_item1_menu:whm_file_import_xml_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_import_item1:whm_file_import_item1_menu]
Object class 'Popup Menu' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_import_item1]
Object class 'Image Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_import_item1]
Property 'Use Action Appearance' of object class 'Image Menu Item' was
introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_import_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_import_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_import_item1]
Property 'Image widget' of object class 'Image Menu Item' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_import_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_initialize_item1]
Object class 'Image Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_initialize_item1]
Property 'Use Action Appearance' of object class 'Image Menu Item' was
introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_initialize_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_initialize_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_initialize_item1]
Property 'Image widget' of object class 'Image Menu Item' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_initialize_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_initialize_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_connect_item1]
Object class 'Image Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_connect_item1]
Property 'Use Action Appearance' of object class 'Image Menu Item' was
introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_connect_item1]
Property 'Label' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_connect_item1]
Property 'Use Underline' of object class 'Menu Item' was introduced in gtk+
2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_connect_item1]
Property 'Image widget' of object class 'Image Menu Item' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_connect_item1]
Packing property 'Position' of object class 'Menu Shell' was introduced in
gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu:whm_file_connect_item1]
Signal 'activate' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1:whm_file_item1_menu]
Object class 'Popup Menu' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1] Object class 'Menu Item'
was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1] Property 'Use Action
Appearance' of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1] Property 'Label' of
object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1] Property 'Use Underline'
of object class 'Menu Item' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1:whm_file_item1] Packing property
'Position' of object class 'Menu Shell' was introduced in gtk+ 2.16
[whm_window1:vbox218:whm_menubar1] Object class 'Menu Bar' was introduced
in gtk+ 2.16

On Tue, Nov 8, 2011 at 1:27 AM, Tristan Van Berkom <
Post by Saku Masukita
Hello,
You do not need a conversion tool to load a file created with Glade 2.
While Glade 3 is a completely new code base, it is built upon the same
xml format as Glade 2 was generating.
What you should have, is the latest version of Glade 3.8 stable, Glade 3.10
forward will no longer recognize the old libglade format.
With Glade 3.8 you should be able to load your old Glade file created with
Glade 2 and then use the menubar: "Project->Properties" to get the project
dialog and change the target format to be GtkBuilder instead of libglade.
This action will do the conversion, after which you might get some warnings
about usage of widgets that are deprecated or unsupported by GtkBuilder.
Ideally, Glade 3.8 is intended to eventually cover the full GtkBuilder feature
set offered by GTK+ 2.24 (there may remain a couple unsupported widgets
but I think it's mostly covered)... if you can load your project in the latest
Glade and there is no usage of deprecated widgets, then you should be
able to load that file in Glade 3.10 (if you wish to make the switch to GTK+-3).
That was a lot of information, the key point though is you should be able
to load your older file created with Glade 2 using Glade 3.8.x without any
problems (if you hit a snag though, please let us know).
Cheers,
-Tristan
On Mon, Nov 7, 2011 at 6:02 PM, Saku Masukita
Post by Saku Masukita
Hi all,
To add to my email, how do I install glade 2 on Ubuntu 11.10?
I tried downloading the glade-2.12.2.tar.gz and got the following
----------------------------------------------------------------------------------------------------------
Post by Saku Masukita
...
checking for IceConnectionNumber in -lICE... yes
checking for pkg-config... /usr/bin/pkg-config
checking pkg-config is at least version 0.9.0... yes
checking for GLADE_GTK... configure: error: Package requirements
(libxml-2.0
Post by Saku Masukita
No package 'libxml-2.0' found
No package 'gtk+-2.0' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables GLADE_GTK_CFLAGS
and GLADE_GTK_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
--------------------------------------------------------------------------------------------------------------
Post by Saku Masukita
Also, I'm not sure what the complaints are about, when I inspect my
/usr/lib
Post by Saku Masukita
$ ls /usr/lib/{*xml*,*gtk*}
/usr/lib/libcanberra-gtk3.so.0 /usr/lib/libgtk-3.so.0.200.0
/usr/lib/libgwibber-gtk.so.2.0.0
/usr/lib/libcanberra-gtk3.so.0.1.8 /usr/lib/libgtkmm-2.4.so.1
/usr/lib/libindicate-gtk.so.3
/usr/lib/libcanberra-gtk.so.0 /usr/lib/libgtkmm-2.4.so.1.1.0
/usr/lib/libindicate-gtk.so.3.0.2
/usr/lib/libcanberra-gtk.so.0.1.8 /usr/lib/libgtkmm-3.0.so.1
/usr/lib/libnm-gtk.so.0
/usr/lib/libdbusmenu-gtk3.so.4 /usr/lib/libgtkmm-3.0.so.1.1.0
/usr/lib/libnm-gtk.so.0.0.0
/usr/lib/libdbusmenu-gtk3.so.4.0.5 /usr/lib/libgtksourceview-3.0.so.0
/usr/lib/libpeas-gtk-1.0.so.0
/usr/lib/libdbusmenu-gtk.so.4
/usr/lib/libgtksourceview-3.0.so.0.0.0
Post by Saku Masukita
/usr/lib/libpeas-gtk-1.0.so.0.200.0
/usr/lib/libdbusmenu-gtk.so.4.0.5 /usr/lib/libgtkspell3.so.0
/usr/lib/libwebkitgtk-1.0.so.0
/usr/lib/libgdu-gtk.so.0 /usr/lib/libgtkspell3.so.0.0.0
/usr/lib/libwebkitgtk-1.0.so.0.7.3
/usr/lib/libgdu-gtk.so.0.0.0 /usr/lib/libgtkspell.so.0
/usr/lib/libwebkitgtk-3.0.so.0
/usr/lib/libgtk-3.a /usr/lib/libgtkspell.so.0.0.0
/usr/lib/libwebkitgtk-3.0.so.0.7.3
/usr/lib/libgtk-3.la /usr/lib/libgtk-vnc-2.0.so.0
/usr/lib/libxml2.so.2
/usr/lib/libgtk-3.so /usr/lib/libgtk-vnc-2.0.so.0.0.2
/usr/lib/libxml2.so.2.7.8
/usr/lib/libgtk-3.so.0 /usr/lib/libgwibber-gtk.so.2
2.10.0 modules
3.0.0 modules
gio-sharp.dll gio-sharp.dll.config gtk-sharp-beans.dll
gtk-sharp-beans.dll.config
gtk-query-immodules-3.0 gtk-update-icon-cache-3.0
libexec
libexec
------------------------------------------------------------------------------------------------------------------------
Post by Saku Masukita
Even if I need to convert the glade2 file to glade3 by hand I'm going to
have to have glade2
installed on the system in order to see what conversions I need to do.
Thanks,
Saku
On Mon, Nov 7, 2011 at 11:52 PM, Saku Masukita <
Post by Saku Masukita
Hello,
A couple of years ago I was asking whether there would be
some tool to convert glade2 files to glade3 files but the answer
was negative (and that if anything such conversion must be part
of GTK+ and not glade). To date I still don't think such a tool exists.
Is there a script or an easy way out to carry out the conversion?
Thanks,
Saku
_______________________________________________
http://lists.ximian.com/mailman/listinfo/glade-devel
Tristan Van Berkom
2012-01-15 05:53:17 UTC
Permalink
Post by Saku Masukita
Hello,
Sorry to bother you again about this issue. I am using glade 3.10.0 on
Ubuntu 11.10.
I am working on an open source project where I have a large glade file
which I have
converted from glade 2 to glade 3. Now most of it displays fine in
glade 3 but when I try
to save it I get the following long list of errors. Any idea of
whether they are benign or
not and how I can make them go away if possible?
Those messages are there to help you catch any widgets that will
not be available on the target machines where you intend to distribute
your application.

Since you converted from Glade 2, I assume your target is a very
old version of GTK+.

To get rid of the warnings, open the Project Properties dialog
(File->Properties, or in older versions of Glade Edit->Preferences)
and set your target to a version that is >= 2.16).

Note that if your application requires GTK+2 and not GTK+3, then
you should stick with Glade 3.8, Glade 3.10 is intended for
GTK+3 projects only and will give you access to some widgets
that are not available in GTK+2.

Note also that Glade 3.8 and Glade 3.10 are parallel installable.

Cheers,
-Tristan



_______________________________________________
Glade-devel maillist - Glade-***@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/glade-devel
Saku Masukita
2012-01-15 12:00:15 UTC
Permalink
Post by Tristan Van Berkom
Post by Saku Masukita
Hello,
Sorry to bother you again about this issue. I am using glade 3.10.0 on
Ubuntu 11.10.
I am working on an open source project where I have a large glade file
which I have
converted from glade 2 to glade 3. Now most of it displays fine in
glade 3 but when I try
to save it I get the following long list of errors. Any idea of
whether they are benign or
not and how I can make them go away if possible?
Those messages are there to help you catch any widgets that will
not be available on the target machines where you intend to distribute
your application.
Since you converted from Glade 2, I assume your target is a very
old version of GTK+.
To get rid of the warnings, open the Project Properties dialog
(File->Properties, or in older versions of Glade Edit->Preferences)
and set your target to a version that is >= 2.16).
Well, I am running glade 3.10.0 and when I go to File -> Properties
I have the following options available:
2.20 2.22 2.24 3.0

When I was clicking 3.0 I was getting the error message that I was
having deprecated widgets or version mismatches. I resolved this
issue by clicking first 2.20 -> execute, 2.22 -> execute, 2.24 -> execute,
and finally 3.0 -> execute. Now I have no version mismatches.
Post by Tristan Van Berkom
Note that if your application requires GTK+2 and not GTK+3, then
you should stick with Glade 3.8, Glade 3.10 is intended for
GTK+3 projects only and will give you access to some widgets
that are not available in GTK+2.
Hi, no point in sticking to old versions of GTK+. If GTK+3 is what is
currently in use I want to use this version otherwise my application
will soon stop being supported by the various distros.
Post by Tristan Van Berkom
Note also that Glade 3.8 and Glade 3.10 are parallel installable.
Now I just get the following errors when I launch glade:

$ glade whm.glade
GladeUI-Message: No displayable values for property
GtkMessageDialog::message-type
GladeUI-Message: No displayable values for property GtkTreeSelection::mode
GladeUI-Message: 14 missing displayable value for
GtkCellRendererAccel::accel-mods

(glade:2432): GladeUI-CRITICAL **: Unable to load module
'gtksourceview-3.0' from any search paths

(glade:2432): GladeUI-WARNING **: Failed to load external library
'gtksourceview-3.0'

(glade:2432): GladeUI-WARNING **: We could not find the symbol
"gtk_source_view_get_type"

(glade:2432): GladeUI-WARNING **: Could not get the type from
"GtkSourceView"

(glade:2432): GladeUI-WARNING **: Failed to load the GType for
'GtkSourceView'

(glade:2432): GladeUI-WARNING **: Tried to include undefined widget class
'GtkSourceView' in a widget group

(glade:2432): Gtk-CRITICAL **: gtk_style_provider_get_style_property:
assertion `g_type_is_a (gtk_widget_path_get_object_type (path),
pspec->owner_type)' failed

(glade:2432): Gtk-CRITICAL **: gtk_style_provider_get_style_property:
assertion `g_type_is_a (gtk_widget_path_get_object_type (path),
pspec->owner_type)' failed

(glade:2432): Gtk-CRITICAL **: gtk_style_provider_get_style_property:
assertion `g_type_is_a (gtk_widget_path_get_object_type (path),
pspec->owner_type)' failed

(glade:2432): Gtk-CRITICAL **: gtk_style_provider_get_style_property:
assertion `g_type_is_a (gtk_widget_path_get_object_type (path),
pspec->owner_type)' failed

(glade:2432): Gtk-CRITICAL **: gtk_style_provider_get_style_property:
assertion `g_type_is_a (gtk_widget_path_get_object_type (path),
pspec->owner_type)' failed

(glade:2432): Gtk-CRITICAL **: gtk_style_provider_get_style_property:
assertion `g_type_is_a (gtk_widget_path_get_object_type (path),
pspec->owner_type)' failed

(glade:2432): Gtk-CRITICAL **: gtk_style_provider_get_style_property:
assertion `g_type_is_a (gtk_widget_path_get_object_type (path),
pspec->owner_type)' failed

(glade:2432): Gtk-CRITICAL **: gtk_style_provider_get_style_property:
assertion `g_type_is_a (gtk_widget_path_get_object_type (path),
pspec->owner_type)' failed

(glade:2432): Gtk-CRITICAL **: gtk_style_provider_get_style_property:
assertion `g_type_is_a (gtk_widget_path_get_object_type (path),
pspec->owner_type)' failed

(glade:2432): Gtk-CRITICAL **: gtk_style_provider_get_style_property:
assertion `g_type_is_a (gtk_widget_path_get_object_type (path),
pspec->owner_type)' failed

(glade:2432): Gtk-CRITICAL **: gtk_style_provider_get_style_property:
assertion `g_type_is_a (gtk_widget_path_get_object_type (path),
pspec->owner_type)' failed

(glade:2432): Gtk-CRITICAL **: gtk_style_provider_get_style_property:
assertion `g_type_is_a (gtk_widget_path_get_object_type (path),
pspec->owner_type)' failed
GladeUI-Message: The DevHelp installed on your system is too old, devhelp
feature will be disabled.

(glade:2432): Gtk-CRITICAL **: gtk_cell_view_set_displayed_row: assertion
`GTK_IS_TREE_MODEL (cell_view->priv->model)' failed

Are these messages OK?

Thanks again,

I plan to rewrite my code for GTK+ 3.

Regards,

Saku

Loading...