[gtkmm] ComboBoxText: Re-implemented with GtkComboBoxText.



commit 37da1d15c2e9200ba5c6762da163579709065231
Author: Murray Cumming <murrayc murrayc com>
Date:   Mon Oct 18 10:13:45 2010 +0200

    ComboBoxText: Re-implemented with GtkComboBoxText.
    
    * gtk/gtkmm/comboboxtext.[h|cc]: Removed, replacing with:
      * gtk/src/comboboxtext.[hg|ccg], wrapping the new GtkComboBoxText class.
      As a bonus this means that insert_text() will now work, and we can now
      define this widget and its data items in Glade.
      * gtk/gtkmm.h: Do not include the removed
      comboboxentry.h and comboboxentrytext.h headers.

 ChangeLog                 |   11 +++
 gtk/gtkmm.h               |    2 -
 gtk/gtkmm/comboboxtext.cc |  159 ---------------------------------------------
 gtk/gtkmm/comboboxtext.h  |  112 -------------------------------
 gtk/gtkmm/filelist.am     |    2 -
 gtk/src/filelist.am       |    1 +
 6 files changed, 12 insertions(+), 275 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 5dce4f2..2735c94 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,16 @@
 2010-10-18  Murray Cumming  <murrayc murrayc com>
 
+	ComboBoxText: Re-implemented with GtkComboBoxText.
+
+	* gtk/gtkmm/comboboxtext.[h|cc]: Removed, replacing with:
+  * gtk/src/comboboxtext.[hg|ccg], wrapping the new GtkComboBoxText class.
+  As a bonus this means that insert_text() will now work, and we can now
+  define this widget and its data items in Glade.
+  * gtk/gtkmm.h: Do not include the removed
+  comboboxentry.h and comboboxentrytext.h headers.
+
+2010-10-18  Murray Cumming  <murrayc murrayc com>
+
 	Added ComboBox::set_popup_fixed_width() and RadioButton::join_group().
 
 	* gdk/src/gdk_methods.defs:
diff --git a/gtk/gtkmm.h b/gtk/gtkmm.h
index cfc8943..ddcce62 100644
--- a/gtk/gtkmm.h
+++ b/gtk/gtkmm.h
@@ -120,8 +120,6 @@ extern const int gtkmm_micro_version;
 #include <gtkmm/colorbutton.h>
 #include <gtkmm/colorselection.h>
 #include <gtkmm/combobox.h>
-#include <gtkmm/comboboxentry.h>
-#include <gtkmm/comboboxentrytext.h>
 #include <gtkmm/comboboxtext.h>
 #include <gtkmm/container.h>
 #include <gtkmm/dialog.h>
diff --git a/gtk/gtkmm/filelist.am b/gtk/gtkmm/filelist.am
index f28189e..1a83d56 100644
--- a/gtk/gtkmm/filelist.am
+++ b/gtk/gtkmm/filelist.am
@@ -8,7 +8,6 @@ gtkmm_files_extra_cc =			\
 	accelkey.cc			\
 	accelmap.cc			\
 	cellrenderer_generation.cc	\
-	comboboxtext.cc			\
 	listviewtext.cc			\
 	object.cc \
 	radiobuttongroup.cc		\
@@ -25,7 +24,6 @@ gtkmm_files_extra_h =			\
 	base.h				\
 	border.h			\
 	cellrenderer_generation.h	\
-	comboboxtext.h			\
 	listviewtext.h			\
 	object.h \
 	radiobuttongroup.h		\
diff --git a/gtk/src/filelist.am b/gtk/src/filelist.am
index 0eb6b47..990ec45 100644
--- a/gtk/src/filelist.am
+++ b/gtk/src/filelist.am
@@ -52,6 +52,7 @@ gtkmm_files_any_hg =		\
 	colorbutton.hg		\
 	colorselection.hg	\
 	combobox.hg	\
+	comboboxtext.hg	\
 	container.hg		\
 	dialog.hg		\
 	drawingarea.hg		\



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