aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-07-05 21:32:26 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-07-06 04:40:50 +0800
commit552d1cc022b265d49f35566acf2f2119a09b94ba (patch)
treec4d412116e4d3a9c27e4cf3529d2eb98db34a4c1
parent2ce22e2506d9e5d396b91bbe3fdbc5a623e1552d (diff)
downloadgsoc2013-evolution-552d1cc022b265d49f35566acf2f2119a09b94ba.tar
gsoc2013-evolution-552d1cc022b265d49f35566acf2f2119a09b94ba.tar.gz
gsoc2013-evolution-552d1cc022b265d49f35566acf2f2119a09b94ba.tar.bz2
gsoc2013-evolution-552d1cc022b265d49f35566acf2f2119a09b94ba.tar.lz
gsoc2013-evolution-552d1cc022b265d49f35566acf2f2119a09b94ba.tar.xz
gsoc2013-evolution-552d1cc022b265d49f35566acf2f2119a09b94ba.tar.zst
gsoc2013-evolution-552d1cc022b265d49f35566acf2f2119a09b94ba.zip
GalViewCollection cleanups.
-rw-r--r--e-util/gal-view-collection.c103
-rw-r--r--e-util/gal-view-collection.h20
2 files changed, 52 insertions, 71 deletions
diff --git a/e-util/gal-view-collection.c b/e-util/gal-view-collection.c
index 814f751659..dadbbfb251 100644
--- a/e-util/gal-view-collection.c
+++ b/e-util/gal-view-collection.c
@@ -1,4 +1,6 @@
/*
+ * gal-view-collection.c
+ *
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
@@ -12,18 +14,8 @@
* You should have received a copy of the GNU Lesser General Public
* License along with the program; if not, see <http://www.gnu.org/licenses/>
*
- *
- * Authors:
- * Chris Lahey <clahey@ximian.com>
- *
- * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
- *
*/
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include "gal-view-collection.h"
#include <ctype.h>
@@ -33,30 +25,24 @@
#include <libxml/parser.h>
#include <libedataserver/libedataserver.h>
-#include <glib/gi18n.h>
-
#include "e-unicode.h"
#include "e-xml-utils.h"
-G_DEFINE_TYPE (GalViewCollection, gal_view_collection, G_TYPE_OBJECT)
-
-#define d(x)
-
enum {
CHANGED,
LAST_SIGNAL
};
-static guint gal_view_collection_signals[LAST_SIGNAL] = { 0, };
+static guint signals[LAST_SIGNAL];
+
+G_DEFINE_TYPE (GalViewCollection, gal_view_collection, G_TYPE_OBJECT)
static void
gal_view_collection_changed (GalViewCollection *collection)
{
g_return_if_fail (GAL_IS_VIEW_COLLECTION (collection));
- g_signal_emit (
- collection,
- gal_view_collection_signals[CHANGED], 0);
+ g_signal_emit (collection, signals[CHANGED], 0);
}
static void
@@ -133,12 +119,13 @@ gal_view_generate_id (GalViewCollection *collection,
static void
gal_view_collection_dispose (GObject *object)
{
- GalViewCollection *collection = GAL_VIEW_COLLECTION (object);
- gint i;
+ GalViewCollection *collection;
+ gint ii;
- for (i = 0; i < collection->view_count; i++) {
- gal_view_collection_item_free (collection->view_data[i]);
- }
+ collection = GAL_VIEW_COLLECTION (object);
+
+ for (ii = 0; ii < collection->view_count; ii++)
+ gal_view_collection_item_free (collection->view_data[ii]);
g_free (collection->view_data);
collection->view_data = NULL;
collection->view_count = 0;
@@ -149,34 +136,41 @@ gal_view_collection_dispose (GObject *object)
g_list_free (collection->factory_list);
collection->factory_list = NULL;
- for (i = 0; i < collection->removed_view_count; i++) {
- gal_view_collection_item_free (collection->removed_view_data[i]);
- }
+ for (ii = 0; ii < collection->removed_view_count; ii++)
+ gal_view_collection_item_free (collection->removed_view_data[ii]);
g_free (collection->removed_view_data);
collection->removed_view_data = NULL;
collection->removed_view_count = 0;
- g_free (collection->system_dir);
- collection->system_dir = NULL;
+ /* Chain up to parent's dispose() method. */
+ G_OBJECT_CLASS (gal_view_collection_parent_class)->dispose (object);
+}
- g_free (collection->local_dir);
- collection->local_dir = NULL;
+static void
+gal_view_collection_finalize (GObject *object)
+{
+ GalViewCollection *collection;
+
+ collection = GAL_VIEW_COLLECTION (object);
+ g_free (collection->system_dir);
+ g_free (collection->local_dir);
g_free (collection->default_view);
- collection->default_view = NULL;
- /* Chain up to parent's dispose() method. */
- G_OBJECT_CLASS (gal_view_collection_parent_class)->dispose (object);
+ /* Chain up to parent's finalize() method. */
+ G_OBJECT_CLASS (gal_view_collection_parent_class)->finalize (object);
}
static void
gal_view_collection_class_init (GalViewCollectionClass *class)
{
- GObjectClass *object_class = G_OBJECT_CLASS (class);
+ GObjectClass *object_class;
+ object_class = G_OBJECT_CLASS (class);
object_class->dispose = gal_view_collection_dispose;
+ object_class->finalize = gal_view_collection_finalize;
- gal_view_collection_signals[CHANGED] = g_signal_new (
+ signals[CHANGED] = g_signal_new (
"changed",
G_OBJECT_CLASS_TYPE (object_class),
G_SIGNAL_RUN_LAST,
@@ -184,25 +178,11 @@ gal_view_collection_class_init (GalViewCollectionClass *class)
NULL, NULL,
g_cclosure_marshal_VOID__VOID,
G_TYPE_NONE, 0);
-
- class->changed = NULL;
}
static void
gal_view_collection_init (GalViewCollection *collection)
{
- collection->view_data = NULL;
- collection->view_count = 0;
- collection->factory_list = NULL;
-
- collection->removed_view_data = NULL;
- collection->removed_view_count = 0;
-
- collection->system_dir = NULL;
- collection->local_dir = NULL;
-
- collection->loaded = FALSE;
- collection->default_view = NULL;
collection->default_view_built_in = TRUE;
}
@@ -574,11 +554,16 @@ gint
gal_view_collection_get_view_index_by_id (GalViewCollection *collection,
const gchar *view_id)
{
- gint i;
- for (i = 0; i < collection->view_count; i++) {
- if (!strcmp (collection->view_data[i]->id, view_id))
- return i;
+ gint ii;
+
+ g_return_val_if_fail (GAL_IS_VIEW_COLLECTION (collection), -1);
+ g_return_val_if_fail (view_id != NULL, -1);
+
+ for (ii = 0; ii < collection->view_count; ii++) {
+ if (!strcmp (collection->view_data[ii]->id, view_id))
+ return ii;
}
+
return -1;
}
@@ -611,6 +596,8 @@ gal_view_collection_delete_view (GalViewCollection *collection,
gboolean
gal_view_collection_loaded (GalViewCollection *collection)
{
+ g_return_val_if_fail (GAL_IS_VIEW_COLLECTION (collection), FALSE);
+
return collection->loaded;
}
@@ -629,8 +616,6 @@ gal_view_collection_append_with_title (GalViewCollection *collection,
gal_view_set_title (view, title);
- d (g_print ("%s: %p\n", G_STRFUNC, view));
-
item = g_new (GalViewCollectionItem, 1);
item->ever_changed = TRUE;
item->changed = TRUE;
@@ -668,8 +653,6 @@ gal_view_collection_set_nth_view (GalViewCollection *collection,
g_return_val_if_fail (i >= 0, NULL);
g_return_val_if_fail (i < collection->view_count, NULL);
- d (g_print ("%s: %p\n", G_STRFUNC, view));
-
view_class = GAL_VIEW_GET_CLASS (view);
item = collection->view_data[i];
@@ -699,6 +682,8 @@ gal_view_collection_set_nth_view (GalViewCollection *collection,
const gchar *
gal_view_collection_get_default_view (GalViewCollection *collection)
{
+ g_return_val_if_fail (GAL_IS_VIEW_COLLECTION (collection), NULL);
+
return collection->default_view;
}
diff --git a/e-util/gal-view-collection.h b/e-util/gal-view-collection.h
index 3c32f8c3bd..4025bf9a5c 100644
--- a/e-util/gal-view-collection.h
+++ b/e-util/gal-view-collection.h
@@ -1,4 +1,6 @@
/*
+ * gal-view-collection.h
+ *
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
@@ -12,12 +14,6 @@
* You should have received a copy of the GNU Lesser General Public
* License along with the program; if not, see <http://www.gnu.org/licenses/>
*
- *
- * Authors:
- * Chris Lahey <clahey@ximian.com>
- *
- * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
- *
*/
#if !defined (__E_UTIL_H_INSIDE__) && !defined (LIBEUTIL_COMPILATION)
@@ -66,8 +62,8 @@ struct _GalViewCollection {
GalViewCollectionItem **removed_view_data;
gint removed_view_count;
- guint loaded : 1;
- guint default_view_built_in : 1;
+ gboolean loaded;
+ gboolean default_view_built_in;
gchar *system_dir;
gchar *local_dir;
@@ -85,9 +81,9 @@ struct _GalViewCollectionClass {
struct _GalViewCollectionItem {
GalView *view;
gchar *id;
- guint changed : 1;
- guint ever_changed : 1;
- guint built_in : 1;
+ gboolean changed;
+ gboolean ever_changed;
+ gboolean built_in;
gchar *filename;
gchar *title;
gchar *type;
@@ -152,4 +148,4 @@ const gchar * gal_view_collection_get_default_view
G_END_DECLS
-#endif /* _GAL_VIEW_COLLECTION_H_ */
+#endif /* GAL_VIEW_COLLECTION_H */