diff --git a/ChangeLog b/ChangeLog index 6b5519ced1..42bb3a4448 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2007-06-15 Matthias Clasen + + * gtk/Makefile.am: Don't install gtkbuilderprivate.h + + * gtk/gtk.h: Include gtkbuilder.h + + * NEWS: Updates + 2007-06-15 Johan Dahlin * gtk/gtkbuilder.c (gtk_builder_add_from_file): diff --git a/NEWS b/NEWS index a2cdee6d9c..e887ef974e 100644 --- a/NEWS +++ b/NEWS @@ -1,9 +1,17 @@ Overview of Changes from GTK+ 2.11.2 to 2.11.3 ============================================== +* GtkBuilder: GTK+ supports constructing user interfaces + from XML descriptions now, similar to libglade. + +* The new tooltip code now has convenience api to set + text tooltips: gtk_widget_set_tooltip_text(), + gtk_widget_set_tooltip_markup() + * GtkTextView, GtkEntry: - - gtk_widget_modify_cursor() is a new function in the gtk_widget_modify - family to override the style-provided cursor color + - gtk_widget_modify_cursor() is a new function in the + gtk_widget_modify family to override the style-provided + cursor colors - Use a block cursor in overwrite mode * GtkFileChooser: @@ -12,6 +20,7 @@ Overview of Changes from GTK+ 2.11.2 to 2.11.3 * GtkMenu: - GtkMenuItem gained a submenu property + - GtkMenuShell obtained a move-selected signal * OS X port: - Many improvements @@ -49,6 +58,9 @@ Overview of Changes from GTK+ 2.11.2 to 2.11.3 158008 Stock button for Dont Save, Discard Changes, Do Not Save 334576 GtkCellRendererProgress ignores xalign attribute 344836 Add orientation property to CellRendererProgress + 172535 Add support for UI builders in gtk+ + 446833 gtk_menu_shell_move_selected should be a vcall + 447586 gtknotebook.c: decreasing unknown size pointer * Updated translations Spanish (es) diff --git a/gtk/Makefile.am b/gtk/Makefile.am index 92a78b8537..0143cea482 100644 --- a/gtk/Makefile.am +++ b/gtk/Makefile.am @@ -145,7 +145,6 @@ gtk_public_h_sources = \ gtkbox.h \ gtkbuilder.h \ gtkbuildable.h \ - gtkbuilderprivate.h \ gtkbutton.h \ gtkcalendar.h \ gtkcelleditable.h \ @@ -347,6 +346,7 @@ gtk_private_h_sources = \ gtksearchenginesimple.h \ gtkdndcursors.h \ gtkentryprivate.h \ + gtkbuilderprivate.h \ gtkfilechooserdefault.h \ gtkfilechooserembed.h \ gtkfilechooserentry.h \ diff --git a/gtk/gtk.h b/gtk/gtk.h index 70f04b7984..bdfaef9b07 100644 --- a/gtk/gtk.h +++ b/gtk/gtk.h @@ -46,6 +46,7 @@ #include #include #include +#include #include #include #include