summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStef Walter <stefw@collabora.co.uk>2011-11-09 17:10:35 +0100
committerStef Walter <stefw@collabora.co.uk>2011-11-09 17:10:35 +0100
commit3bffaf39e4e32daa1942e32f68c10ff35d509bd7 (patch)
treeafbc0b7861c0f211dd38e8f9e15030aaeff67aa7
parentc84c8f8ab0168e288e5f92a09d9dc9f4ef1d0192 (diff)
downloadgcr-3bffaf39e4e32daa1942e32f68c10ff35d509bd7.tar.gz
gcr: Add tree and list mode for GcrCollectionModel
* Way for callers to turn off the nesting behavior of GcrCollectionModel * Specify GCR_COLLECTION_MODEL_LIST at startup. * No stable software yet uses GcrCollectionModel, so changing API.
-rw-r--r--docs/reference/gcr/gcr-sections.txt4
-rw-r--r--gcr/gcr-collection-model.c65
-rw-r--r--gcr/gcr-collection-model.h7
-rw-r--r--gcr/gcr-combo-selector.c1
-rw-r--r--gcr/gcr-list-selector.c1
-rw-r--r--gcr/gcr-tree-selector.c1
6 files changed, 61 insertions, 18 deletions
diff --git a/docs/reference/gcr/gcr-sections.txt b/docs/reference/gcr/gcr-sections.txt
index 6d48882..9e52421 100644
--- a/docs/reference/gcr/gcr-sections.txt
+++ b/docs/reference/gcr/gcr-sections.txt
@@ -344,6 +344,7 @@ gcr_union_collection_get_type
<FILE>gcr-collection-model</FILE>
GcrCollectionModel
GcrCollectionModelClass
+GcrCollectionModelMode
gcr_collection_model_new
gcr_collection_model_new_full
gcr_collection_model_set_columns
@@ -364,6 +365,9 @@ GCR_COLLECTION_MODEL_GET_CLASS
GCR_IS_COLLECTION_MODEL
GCR_IS_COLLECTION_MODEL_CLASS
GCR_TYPE_COLLECTION_MODEL
+GCR_TYPE_COLLECTION_MODEL_MODE
+gcr_collection_model_mode_get_type
+<SUBSECTION Private>
GcrCollectionModelPrivate
</SECTION>
diff --git a/gcr/gcr-collection-model.c b/gcr/gcr-collection-model.c
index 79493e0..57a68e7 100644
--- a/gcr/gcr-collection-model.c
+++ b/gcr/gcr-collection-model.c
@@ -22,6 +22,7 @@
#include "config.h"
#include "gcr-collection-model.h"
+#include "gcr-enum-types.h"
#include <gtk/gtk.h>
@@ -66,12 +67,23 @@
* The class for #GcrCollectionModel.
*/
+/**
+ * GcrCollectionModelMode:
+ * @GCR_COLLECTION_MODEL_LIST: only objects in the top collection, no child objects
+ * @GCR_COLLECTION_MODEL_TREE: show objects in the collection, and child objects in a tree form
+ *
+ * If set GcrCollectionModel is created with a mode of %GCR_COLLECTION_MODEL_TREE,
+ * then any included objects that are themselves a #GcrCollection, will have all child
+ * objects include as child rows in a tree form.
+ */
+
#define COLLECTION_MODEL_STAMP 0xAABBCCDD
enum {
PROP_0,
PROP_COLLECTION,
- PROP_COLUMNS
+ PROP_COLUMNS,
+ PROP_MODE
};
typedef struct {
@@ -95,6 +107,7 @@ typedef struct _GcrCollectionColumn {
} GcrCollectionColumn;
struct _GcrCollectionModelPrivate {
+ GcrCollectionModelMode mode;
GcrCollection *collection;
GHashTable *selected;
GSequence *root_sequence;
@@ -528,7 +541,8 @@ add_object_to_sequence (GcrCollectionModel *self,
gtk_tree_path_free (path);
}
- if (GCR_IS_COLLECTION (object)) {
+ if (self->pv->mode == GCR_COLLECTION_MODEL_TREE &&
+ GCR_IS_COLLECTION (object)) {
row->children = g_sequence_new (NULL);
add_children_to_sequence (self, row->children, seq,
GCR_COLLECTION (object), emit);
@@ -600,6 +614,7 @@ remove_object_from_sequence (GcrCollectionModel *self,
g_signal_handlers_disconnect_by_func (object, on_object_notify, self);
if (row->children) {
+ g_assert (self->pv->mode == GCR_COLLECTION_MODEL_TREE);
g_assert (GCR_IS_COLLECTION (object));
remove_children_from_sequence (self, row->children, GCR_COLLECTION (object), emit);
g_assert (g_sequence_get_length (row->children) == 0);
@@ -1126,6 +1141,9 @@ gcr_collection_model_set_property (GObject *object, guint prop_id,
GcrColumn *columns;
switch (prop_id) {
+ case PROP_MODE:
+ self->pv->mode = g_value_get_enum (value);
+ break;
case PROP_COLLECTION:
g_return_if_fail (self->pv->collection == NULL);
self->pv->collection = g_value_dup_object (value);
@@ -1156,14 +1174,15 @@ gcr_collection_model_get_property (GObject *object, guint prop_id,
GcrCollectionModel *self = GCR_COLLECTION_MODEL (object);
switch (prop_id) {
+ case PROP_MODE:
+ g_value_set_enum (value, self->pv->mode);
+ break;
case PROP_COLLECTION:
g_value_set_object (value, self->pv->collection);
break;
-
case PROP_COLUMNS:
g_value_set_pointer (value, (gpointer)self->pv->columns);
break;
-
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
@@ -1225,6 +1244,11 @@ gcr_collection_model_class_init (GcrCollectionModelClass *klass)
gobject_class->set_property = gcr_collection_model_set_property;
gobject_class->get_property = gcr_collection_model_get_property;
+ g_object_class_install_property (gobject_class, PROP_MODE,
+ g_param_spec_enum ("mode", "Mode", "Tree or list mode",
+ GCR_TYPE_COLLECTION_MODEL_MODE, GCR_COLLECTION_MODEL_TREE,
+ G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
+
g_object_class_install_property (gobject_class, PROP_COLLECTION,
g_param_spec_object ("collection", "Object Collection", "Collection to get objects from",
GCR_TYPE_COLLECTION, G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
@@ -1236,14 +1260,11 @@ gcr_collection_model_class_init (GcrCollectionModelClass *klass)
g_type_class_add_private (klass, sizeof (GcrCollectionModelPrivate));
}
-/* -----------------------------------------------------------------------------
- * PUBLIC
- */
-
/**
* gcr_collection_model_new: (skip)
- * @collection: The collection to represent
- * @...: The column names and types.
+ * @collection: the collection to represent
+ * @mode: whether list or tree mode
+ * @...: the column names and types
*
* Create a new #GcrCollectionModel. The variable argument list should contain
* pairs of property names, and #GType values. The variable argument list should
@@ -1253,7 +1274,9 @@ gcr_collection_model_class_init (GcrCollectionModelClass *klass)
* with g_object_unref().
*/
GcrCollectionModel*
-gcr_collection_model_new (GcrCollection *collection, ...)
+gcr_collection_model_new (GcrCollection *collection,
+ GcrCollectionModelMode mode,
+ ...)
{
GcrColumn column;
GcrCollectionModel *self;
@@ -1264,7 +1287,7 @@ gcr_collection_model_new (GcrCollection *collection, ...)
/* With a null terminator */
array = g_array_new (TRUE, TRUE, sizeof (GcrColumn));
- va_start (va, collection);
+ va_start (va, mode);
while ((arg = va_arg (va, const gchar*)) != NULL) {
memset (&column, 0, sizeof (column));
column.property_name = g_strdup (arg);
@@ -1274,7 +1297,7 @@ gcr_collection_model_new (GcrCollection *collection, ...)
}
va_end (va);
- self = gcr_collection_model_new_full (collection, (GcrColumn*)array->data);
+ self = gcr_collection_model_new_full (collection, mode, (GcrColumn*)array->data);
g_object_set_data_full (G_OBJECT (self), "gcr_collection_model_new",
g_array_free (array, FALSE), free_owned_columns);
return self;
@@ -1282,8 +1305,9 @@ gcr_collection_model_new (GcrCollection *collection, ...)
/**
* gcr_collection_model_new_full: (skip)
- * @collection: The collection to represent
- * @columns: The columns the model should contain
+ * @collection: the collection to represent
+ * @mode: whether list or tree mode
+ * @columns: the columns the model should contain
*
* Create a new #GcrCollectionModel.
*
@@ -1291,9 +1315,14 @@ gcr_collection_model_new (GcrCollection *collection, ...)
* with g_object_unref()
*/
GcrCollectionModel*
-gcr_collection_model_new_full (GcrCollection *collection, const GcrColumn *columns)
-{
- GcrCollectionModel *self = g_object_new (GCR_TYPE_COLLECTION_MODEL, "collection", collection, NULL);
+gcr_collection_model_new_full (GcrCollection *collection,
+ GcrCollectionModelMode mode,
+ const GcrColumn *columns)
+{
+ GcrCollectionModel *self = g_object_new (GCR_TYPE_COLLECTION_MODEL,
+ "collection", collection,
+ "mode", mode,
+ NULL);
gcr_collection_model_set_columns (self, columns);
return self;
}
diff --git a/gcr/gcr-collection-model.h b/gcr/gcr-collection-model.h
index fcd98e1..73980ac 100644
--- a/gcr/gcr-collection-model.h
+++ b/gcr/gcr-collection-model.h
@@ -27,6 +27,11 @@
#include "gcr-collection.h"
#include "gcr-column.h"
+typedef enum {
+ GCR_COLLECTION_MODEL_LIST = 0,
+ GCR_COLLECTION_MODEL_TREE
+} GcrCollectionModelMode;
+
#define GCR_TYPE_COLLECTION_MODEL (gcr_collection_model_get_type ())
#define GCR_COLLECTION_MODEL(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GCR_TYPE_COLLECTION_MODEL, GcrCollectionModel))
#define GCR_COLLECTION_MODEL_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GCR_TYPE_COLLECTION_MODEL, GcrCollectionModelClass))
@@ -52,9 +57,11 @@ struct _GcrCollectionModelClass {
GType gcr_collection_model_get_type (void);
GcrCollectionModel* gcr_collection_model_new (GcrCollection *collection,
+ GcrCollectionModelMode mode,
...) G_GNUC_NULL_TERMINATED;
GcrCollectionModel* gcr_collection_model_new_full (GcrCollection *collection,
+ GcrCollectionModelMode mode,
const GcrColumn *columns);
guint gcr_collection_model_set_columns (GcrCollectionModel *self,
diff --git a/gcr/gcr-combo-selector.c b/gcr/gcr-combo-selector.c
index 56e06fe..afbe4d7 100644
--- a/gcr/gcr-combo-selector.c
+++ b/gcr/gcr-combo-selector.c
@@ -79,6 +79,7 @@ gcr_combo_selector_constructor (GType type, guint n_props, GObjectConstructParam
g_return_val_if_fail (self, NULL);
self->pv->model = gcr_collection_model_new (self->pv->collection,
+ GCR_COLLECTION_MODEL_LIST,
"icon", G_TYPE_ICON,
"markup", G_TYPE_STRING,
NULL);
diff --git a/gcr/gcr-list-selector.c b/gcr/gcr-list-selector.c
index 87d354e..fc7a9d4 100644
--- a/gcr/gcr-list-selector.c
+++ b/gcr/gcr-list-selector.c
@@ -220,6 +220,7 @@ gcr_list_selector_constructed (GObject *object)
gtk_tree_view_set_headers_visible (GTK_TREE_VIEW (self), FALSE);
self->pv->model = gcr_collection_model_new (self->pv->collection,
+ GCR_COLLECTION_MODEL_LIST,
"icon", G_TYPE_ICON,
"markup", G_TYPE_STRING,
NULL);
diff --git a/gcr/gcr-tree-selector.c b/gcr/gcr-tree-selector.c
index fb5261f..1c3a7c9 100644
--- a/gcr/gcr-tree-selector.c
+++ b/gcr/gcr-tree-selector.c
@@ -148,6 +148,7 @@ gcr_tree_selector_constructor (GType type, guint n_props, GObjectConstructParam
g_return_val_if_fail (self->pv->columns, NULL);
self->pv->model = gcr_collection_model_new_full (self->pv->collection,
+ GCR_COLLECTION_MODEL_TREE,
self->pv->columns);
gtk_tree_view_set_model (GTK_TREE_VIEW (self), GTK_TREE_MODEL (self->pv->model));