Don't install gtkbuilderprivate.h

2007-06-15  Matthias Clasen  <mclasen@redhat.com>

        * gtk/Makefile.am: Don't install gtkbuilderprivate.h

        * gtk/gtk.h: Include gtkbuilder.h

        * NEWS: Updates



svn path=/trunk/; revision=18148
This commit is contained in:
Matthias Clasen
2007-06-15 20:43:49 +00:00
committed by Matthias Clasen
parent f7e4cb7ef2
commit 73f4a357aa
4 changed files with 24 additions and 3 deletions

View File

@ -1,3 +1,11 @@
2007-06-15 Matthias Clasen <mclasen@redhat.com>
* gtk/Makefile.am: Don't install gtkbuilderprivate.h
* gtk/gtk.h: Include gtkbuilder.h
* NEWS: Updates
2007-06-15 Johan Dahlin <jdahlin@async.com.br> 2007-06-15 Johan Dahlin <jdahlin@async.com.br>
* gtk/gtkbuilder.c (gtk_builder_add_from_file): * gtk/gtkbuilder.c (gtk_builder_add_from_file):

16
NEWS
View File

@ -1,9 +1,17 @@
Overview of Changes from GTK+ 2.11.2 to 2.11.3 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: * GtkTextView, GtkEntry:
- gtk_widget_modify_cursor() is a new function in the gtk_widget_modify - gtk_widget_modify_cursor() is a new function in the
family to override the style-provided cursor color gtk_widget_modify family to override the style-provided
cursor colors
- Use a block cursor in overwrite mode - Use a block cursor in overwrite mode
* GtkFileChooser: * GtkFileChooser:
@ -12,6 +20,7 @@ Overview of Changes from GTK+ 2.11.2 to 2.11.3
* GtkMenu: * GtkMenu:
- GtkMenuItem gained a submenu property - GtkMenuItem gained a submenu property
- GtkMenuShell obtained a move-selected signal
* OS X port: * OS X port:
- Many improvements - 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 158008 Stock button for Dont Save, Discard Changes, Do Not Save
334576 GtkCellRendererProgress ignores xalign attribute 334576 GtkCellRendererProgress ignores xalign attribute
344836 Add orientation property to CellRendererProgress 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 * Updated translations
Spanish (es) Spanish (es)

View File

@ -145,7 +145,6 @@ gtk_public_h_sources = \
gtkbox.h \ gtkbox.h \
gtkbuilder.h \ gtkbuilder.h \
gtkbuildable.h \ gtkbuildable.h \
gtkbuilderprivate.h \
gtkbutton.h \ gtkbutton.h \
gtkcalendar.h \ gtkcalendar.h \
gtkcelleditable.h \ gtkcelleditable.h \
@ -347,6 +346,7 @@ gtk_private_h_sources = \
gtksearchenginesimple.h \ gtksearchenginesimple.h \
gtkdndcursors.h \ gtkdndcursors.h \
gtkentryprivate.h \ gtkentryprivate.h \
gtkbuilderprivate.h \
gtkfilechooserdefault.h \ gtkfilechooserdefault.h \
gtkfilechooserembed.h \ gtkfilechooserembed.h \
gtkfilechooserentry.h \ gtkfilechooserentry.h \

View File

@ -46,6 +46,7 @@
#include <gtk/gtkbindings.h> #include <gtk/gtkbindings.h>
#include <gtk/gtkbox.h> #include <gtk/gtkbox.h>
#include <gtk/gtkbuildable.h> #include <gtk/gtkbuildable.h>
#include <gtk/gtkbuilder.h>
#include <gtk/gtkbutton.h> #include <gtk/gtkbutton.h>
#include <gtk/gtkcalendar.h> #include <gtk/gtkcalendar.h>
#include <gtk/gtkcelllayout.h> #include <gtk/gtkcelllayout.h>