Index: QxGalleryList.js
===================================================================
RCS file: /cvsroot/qooxdoo/qooxdoo/source/script/widgets/QxGalleryList.js,v
retrieving revision 1.11
diff -u -r1.11 QxGalleryList.js
--- QxGalleryList.js	17 Feb 2006 20:42:45 -0000	1.11
+++ QxGalleryList.js	8 Mar 2006 21:37:27 -0000
@@ -56,9 +56,6 @@
 QxGalleryList.addProperty({ name : "thumbMaxHeight", type : QxConst.TYPEOF_NUMBER, defaultValue : 60 });
 QxGalleryList.addProperty({ name : "decorHeight", type : QxConst.TYPEOF_NUMBER, defaultValue : 40 });
 
-proto.getManager = function() {
-  return this._manager;
-};
 
 
 
@@ -75,6 +72,34 @@
 
 
 
+/*
+---------------------------------------------------------------------------
+  UTILITIES
+---------------------------------------------------------------------------
+*/
+
+proto.getManager = function() {
+  return this._manager;
+};
+
+
+proto.update = function(vGalleryList)
+{
+  this._manager.deselectAll();
+
+  this._list = vGalleryList;
+
+  var el = this.getElement();
+  el.replaceChild(this.createView(), el.firstChild);
+};
+
+
+proto.removeAll = function()
+{
+  this._manager.deselectAll();
+  this.getElement().innerHTML = QxConst.CORE_EMPTY;
+};
+
 
 /*
 ---------------------------------------------------------------------------
