* Build:
- SUN Forte C++ (see README.SUN):
Now builds. This is probably the first time since
gtkmm 2.0.x. There are still some "anachronism"
warnings, which someone might like to fix with a
patch.
- gcc++ 3.4 (cvs): Lots of issues fixed, though you
might see an internal compiler error.
* Documentation:
- Book: Mention CellRenderer's "editable" property.
Changes 2.2.9:
* Build:
- Removed DISABLE_DEPRECATED macros so that gtkmm 2.2
can build with GTK+ 2.3.x. I didn't release this previously
because previous versions of GTK+ 2.3.x were broken with
gtkmm, but it's OK now.
- Removed unnecessary namespace qualification to fix build
with the Intel compiler.
* Glib::ObjectBase: The default constructor, never before used,
now generates a custom GType, for use when creating new
implementations of Glib::Interfaces - for instance, see the
new custom tree model example in gtkmm.
* examples: Added treecustommodel example, though it's much
better in gtkmm 2.4.
* documentation:
- Corrected name and install location of devhelp file.
- Fixed some documentation that mentinod freeing C objects.
- Added docs/internals/gtk_patches.txt with URLs of some
patches/bugs that were needed to underlying libraries,
as a clue for future developers.
* spec file: Added devhelp file.
by moving the inclusion of buildlink3.mk files outside of the protected
region. This bug would be seen by users that have set PREFER_PKGSRC
or PREFER_NATIVE to non-default values.
BUILDLINK_PACKAGES should be ordered so that for any package in the
list, that package doesn't depend on any packages to the left of it
in the list. This ordering property is used to check for builtin
packages in the correct order. The problem was that including a
buildlink3.mk file for <pkg> correctly ensured that <pkg> was removed
from BUILDLINK_PACKAGES and appended to the end. However, since the
inclusion of any other buildlink3.mk files within that buildlink3.mk
was in a region that was protected against multiple inclusion, those
dependencies weren't also moved to the end of BUILDLINK_PACKAGES.
Changes:
2.2.8:
* Fixed "inacccessible base" build errors with gcc 3.3.2. (Bradley Bell)
* win32: Re-enabled our wrappers for parts of the GTK+ API that are now properly
exported on Windows by GTK+. See README.win32 for more details. (Cedric Gustin
)
* Documentation:
- book:
-Updated DrawingArea chapter for gtkmm2 (the last chapter that needed to be
updated)
(Ainsley Pereira)
- Mentioned Treeviews with popup menus, with example. (Murray Cumming)
- The libglademm chapter has a clearer explanation of the memory management,
and
mentions the new get_widget_derived() method. (Murray Cumming)
- Distribute doxygen tags for use by the documentation of related projects.
(Bradley Bell)
- Build and install a devhelp file for the reference docs. This doesn't
work yet, but hopefully it's easy to fix. (roel@stack.be)
gtkmm (previously known as Gtk--) is the official C++ interface for the
popular GUI library GTK+. Highlights include typesafe callbacks, widgets
extensible via inheritance and a comprehensive set of widget classes that
can be freely combined to quickly create complex user interfaces. Here's
an overview, with documentation and status. gtkmm is free software
distributed under the GNU Library General Public License (LGPL).
Aside from the C++ interface to Gtk 2.x, this package also provides
bindings for glib, atk and pango (all of them related with the toolkit).