gtkmm r1116 - in trunk: . docs/reference



Author: murrayc
Date: Mon Mar 16 15:57:50 2009
New Revision: 1116
URL: http://svn.gnome.org/viewvc/gtkmm?rev=1116&view=rev

Log:
2.16.0:

2009-03-16  Murray Cumming  <murrayc murrayc com>

* docs/reference/Makefile.am: Break the html and devhelp install/uninstall 
rules up and generally base them on what is now in pangomm, thanks to 
Theppitak Karoonboonyanan, to fix the distcheck.


Modified:
   trunk/ChangeLog
   trunk/NEWS
   trunk/configure.in
   trunk/docs/reference/Makefile.am

Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS	(original)
+++ trunk/NEWS	Mon Mar 16 15:57:50 2009
@@ -1,3 +1,38 @@
+2.16.0 (stable):
+
+Gtk:
+* Builder:
+  - get_widget_derived(): Reference-counting correction.
+  - create_from_file(), add_from_file(), create_from_string(), 
+    add_from_string(): Add method overloads that take a char* for the object 
+    ID, to avoid ambiguity with the two other overloads that take ustring or 
+    StringArrayHandle.
+* Entry:
+  - *_icon_* methods(): Rearrange parameters to make these consistent and 
+  so we can have more default parameter values.
+  - Added icon_press and icon_release signals.
+* FileChooserButton: Added the file_set signal, noticed by Damon Register. 
+* Stock: Added CAPS_LOCK_WARNING.
+* Style: Added get_style_property_value() and templated get_style_property().
+* Added Orientable and Activatable interfaces, though they cannot be used yet 
+  because that would break ABI of existing classes.
+  (Murray Cumming)
+
+Gdk:
+* PixbufAnimation: create_from_file(): Throw an exception when the GError is 
+  not null. (Murray Cumming)
+
+Maemo-specific API:
+* TextBuffer: get/set_rich_text_format(), set_rich_text_format_all(), 
+  get/set_can_paste_rich_text(): Remove these Maemo-specific methods which have 
+  been superseded by the generic TextBuffer serialization functions.
+  (Daniel Elstner, Openismus)
+* Enums
+  - Added Maemo-specific Gtk::HildonSizeType, wrapping HildonSizeType, 
+  which was inexplicably added to GTK+ in Maemo 5.
+  - Likewise added Gtk::Hildon::InputMode, wrapping HildonGtkInputMode.
+  (Daniel Elstner, Openismus)
+    
 2.15.5 (unstable):
 (2.15.4 was skipped)
 

Modified: trunk/configure.in
==============================================================================
--- trunk/configure.in	(original)
+++ trunk/configure.in	Mon Mar 16 15:57:50 2009
@@ -14,8 +14,8 @@
 
 #We use pushdef here because we can't use shell variables before AC_INIT, but we want to use a variable with AC_INIT:
 pushdef([GTKMM_MAJOR_VERSION],     [2])
-pushdef([GTKMM_MINOR_VERSION],     [15])
-pushdef([GTKMM_MICRO_VERSION],     [5])
+pushdef([GTKMM_MINOR_VERSION],     [16])
+pushdef([GTKMM_MICRO_VERSION],     [0])
 pushdef([GTKMM_EXTRA_VERSION],     [])
 pushdef([GTKMM_VERSION], GTKMM_MAJOR_VERSION.GTKMM_MINOR_VERSION.GTKMM_MICRO_VERSION[]GTKMM_EXTRA_VERSION)
 AC_INIT([gtkmm], GTKMM_VERSION, [gtkmm-list gnome org])

Modified: trunk/docs/reference/Makefile.am
==============================================================================
--- trunk/docs/reference/Makefile.am	(original)
+++ trunk/docs/reference/Makefile.am	Mon Mar 16 15:57:50 2009
@@ -67,7 +67,7 @@
 
 hierarchy_to_install = widget_hierarchy.png widget_hierarchy.html
 
-install-reference: html/index.html $(devhelp_file)
+install-reference-html: html/index.html $(devhelp_file)
 	@$(NORMAL_INSTALL)
 	$(mkinstalldirs) $(DESTDIR)$(referencedir)
 	@dir='$(<D)'; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.dot ; do \
@@ -75,23 +75,31 @@
 	  echo " $(INSTALL_DATA) $$p $(DESTDIR)$(referencedir)/$$f"; \
 	  $(INSTALL_DATA) $$p $(DESTDIR)$(referencedir)/$$f; \
 	done
-	$(mkinstalldirs) $(DESTDIR)$(devhelpdir)
-	$(INSTALL_DATA) $(devhelp_file) $(DESTDIR)$(devhelpdir)/$$f;
 	$(INSTALL_DATA) $(srcdir)/widget_hierarchy.png $(DESTDIR)$(referencetopdir)/$$f;
 	$(INSTALL_DATA) $(srcdir)/widget_hierarchy.html $(DESTDIR)$(referencetopdir)/$$f;
 
+install-reference-devhelp: $(devhelp_file)
+	@$(NORMAL_INSTALL)
+	$(mkinstalldirs) $(DESTDIR)$(devhelpdir)
+	$(INSTALL_DATA) $< $(DESTDIR)$(devhelpdir)
+
+install-reference: install-reference-html install-reference-devhelp
 
-uninstall-reference: html/index.html
+uninstall-reference-html: html/index.html
 	@$(NORMAL_UNINSTALL)
 	@dir='$(<D)'; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.dot ; do \
 	  f="`echo $$p | sed -e 's|^.*/||'`"; \
 	  echo " rm -f $(DESTDIR)$(referencedir)/$$f"; \
 	  rm -f $(DESTDIR)$(referencedir)/$$f; \
 	done
-	rm -f $(DESTDIR)$(devhelpdir)/$(devhelp_file)
 	rm -f $(DESTDIR)$(referencetopdir)/widget_hierarchy.png
 	rm -f $(DESTDIR)$(referencetopdir)/widget_hierarchy.html
 
+uninstall-reference-devhelp:
+	rm -f $(DESTDIR)$(devhelpdir)/$(devhelp_file)
+
+uninstall-reference: uninstall-reference-html uninstall-reference-devhelp
+
 all-local: html/index.html
 
 install-data-local: install-reference



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