[gnome-calendar/calendar-editor] source-dialog: rename class to GcalSourceDialog



commit beace65b8f905fb1daa61e5d1b8bd335bed519c9
Author: Georges Basile Stavracas Neto <georges stavracas gmail com>
Date:   Mon Feb 9 11:14:57 2015 -0200

    source-dialog: rename class to GcalSourceDialog

 src/Makefile.am                                    |    4 +-
 src/gcal-source-dialog.c                           |   96 ++++++++++++++++++
 ...{gcal-source-manager.h => gcal-source-dialog.h} |   14 ++--
 src/gcal-source-manager.c                          |  104 --------------------
 4 files changed, 105 insertions(+), 113 deletions(-)
---
diff --git a/src/Makefile.am b/src/Makefile.am
index ba58565..b9c6f54 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -33,11 +33,11 @@ gnome_calendar_SOURCES =                                  \
     gcal-window.c                                         \
     gcal-view.c                                           \
     gcal-view.h                                           \
-    gcal-source-dialog.c                                  \
-    gcal-source-dialog.h                                  \
     gcal-subscriber-view.c                                \
     gcal-subscriber-view.h                                \
     gcal-subscriber-view-private.h                        \
+    gcal-source-dialog.c                                  \
+    gcal-source-dialog.h                                  \
     gcal-month-view.c                                     \
     gcal-month-view.h                                     \
     gcal-week-view.c                                      \
diff --git a/src/gcal-source-dialog.c b/src/gcal-source-dialog.c
new file mode 100644
index 0000000..051645f
--- /dev/null
+++ b/src/gcal-source-dialog.c
@@ -0,0 +1,96 @@
+/* gcal-source-dialog.c
+ *
+ * Copyright (C) 2015 Georges Basile Stavracas Neto <georges stavracas gmail com>
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "gcal-source-dialog.h"
+
+typedef struct
+{
+  gint                mode : 1;
+
+  /* manager */
+  GcalManager        *manager;
+} GcalSourceDialogPrivate;
+
+G_DEFINE_TYPE_WITH_PRIVATE (GcalSourceDialog, gcal_source_dialog, GTK_TYPE_DIALOG)
+
+enum {
+  PROP_0,
+  LAST_PROP
+};
+
+static GParamSpec *gParamSpecs [LAST_PROP];
+
+GcalSourceDialog *
+gcal_source_dialog_new (void)
+{
+  return g_object_new (GCAL_TYPE_SOURCE_DIALOG, NULL);
+}
+
+static void
+gcal_source_dialog_finalize (GObject *object)
+{
+  GcalSourceDialog *self = (GcalSourceDialog *)object;
+  GcalSourceDialogPrivate *priv = gcal_source_dialog_get_instance_private (self);
+
+  G_OBJECT_CLASS (gcal_source_dialog_parent_class)->finalize (object);
+}
+
+static void
+gcal_source_dialog_get_property (GObject    *object,
+                                 guint       prop_id,
+                                 GValue     *value,
+                                 GParamSpec *pspec)
+{
+  GcalSourceDialog *self = GCAL_SOURCE_DIALOG (object);
+
+  switch (prop_id)
+    {
+    default:
+      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+    }
+}
+
+static void
+gcal_source_dialog_set_property (GObject      *object,
+                                 guint         prop_id,
+                                 const GValue *value,
+                                 GParamSpec   *pspec)
+{
+  GcalSourceDialog *self = GCAL_SOURCE_DIALOG (object);
+
+  switch (prop_id)
+    {
+    default:
+      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+    }
+}
+
+static void
+gcal_source_dialog_class_init (GcalSourceDialogClass *klass)
+{
+  GObjectClass *object_class = G_OBJECT_CLASS (klass);
+
+  object_class->finalize = gcal_source_dialog_finalize;
+  object_class->get_property = gcal_source_dialog_get_property;
+  object_class->set_property = gcal_source_dialog_set_property;
+}
+
+static void
+gcal_source_dialog_init (GcalSourceDialog *self)
+{
+}
diff --git a/src/gcal-source-manager.h b/src/gcal-source-dialog.h
similarity index 71%
rename from src/gcal-source-manager.h
rename to src/gcal-source-dialog.h
index 359604c..732c9b1 100644
--- a/src/gcal-source-manager.h
+++ b/src/gcal-source-dialog.h
@@ -17,24 +17,24 @@
  */
 
 
-#ifndef GCAL_SOURCE_MANAGER_H
-#define GCAL_SOURCE_MANAGER_H
+#ifndef GCAL_SOURCE_DIALOG_H
+#define GCAL_SOURCE_DIALOG_H
 
 #include <glib-object.h>
 
 G_BEGIN_DECLS
 
-#define GCAL_TYPE_SOURCE_MANAGER (gcal_source_manager_get_type())
+#define GCAL_TYPE_SOURCE_DIALOG (gcal_source_dialog_get_type())
 
-G_DECLARE_FINAL_TYPE (GcalSourceManager, gcal_source_manager, GCAL, SOURCE_MANAGER, GtkDialog)
+G_DECLARE_FINAL_TYPE (GcalSourceDialog, gcal_source_dialog, GCAL, SOURCE_DIALOG, GtkDialog)
 
-struct _GcalSourceManagerClass
+struct _GcalSourceDialogClass
 {
   GtkDialogClass parent;
 };
 
-GcalSourceManager *gcal_source_manager_new (void);
+GcalSourceManager *gcal_source_dialog_new (void);
 
 G_END_DECLS
 
-#endif /* GCAL_SOURCE_MANAGER_H */
+#endif /* GCAL_SOURCE_DIALOG_H */


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