]> git.0d.be Git - empathy.git/commitdiff
Added initial empty EmpathyDebugDialog.
authorJonny Lamb <jonny.lamb@collabora.co.uk>
Sun, 19 Apr 2009 15:19:08 +0000 (16:19 +0100)
committerJonny Lamb <jonny.lamb@collabora.co.uk>
Fri, 24 Apr 2009 00:52:47 +0000 (01:52 +0100)
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
src/Makefile.am
src/empathy-debug-dialog.c [new file with mode: 0644]
src/empathy-debug-dialog.h [new file with mode: 0644]

index 76a5aa77da951ed35c0db2f0397fd1386ce0483b..b776396aaa13a78ca8ac5fbb702630f9770f9efe 100644 (file)
@@ -27,6 +27,7 @@ empathy_SOURCES =                                                     \
        empathy-accounts-dialog.c empathy-accounts-dialog.h             \
        empathy-call-window.c empathy-call-window.h                     \
        empathy-chatrooms-window.c empathy-chatrooms-window.h           \
+       empathy-debug-dialog.c empathy-debug-dialog.h                   \
        empathy-chat-window.c empathy-chat-window.h                     \
        empathy-event-manager.c empathy-event-manager.h                 \
        empathy-ft-manager.c empathy-ft-manager.h                       \
diff --git a/src/empathy-debug-dialog.c b/src/empathy-debug-dialog.c
new file mode 100644 (file)
index 0000000..6a8755e
--- /dev/null
@@ -0,0 +1,130 @@
+/*
+*  Copyright (C) 2009 Collabora Ltd.
+*
+*  This library 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
+*  version 2.1 of the License, or (at your option) any later version.
+*
+*  This library 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
+*  Lesser General Public License for more details.
+*
+*  You should have received a copy of the GNU Lesser General Public
+*  License along with this library; if not, write to the Free Software
+*  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+*
+*  Authors: Jonny Lamb <jonny.lamb@collabora.co.uk>
+*/
+
+#include "config.h"
+
+#include <glib/gi18n.h>
+#include <gtk/gtk.h>
+
+#include <libempathy/empathy-utils.h>
+
+#include "empathy-debug-dialog.h"
+
+G_DEFINE_TYPE (EmpathyDebugDialog, empathy_debug_dialog,
+    GTK_TYPE_DIALOG)
+
+enum
+{
+  PROP_0,
+};
+
+#define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyDebugDialog)
+typedef struct
+{
+  gboolean dispose_run;
+} EmpathyDebugDialogPriv;
+
+static GObject *
+debug_dialog_constructor (GType type,
+                          guint n_construct_params,
+                          GObjectConstructParam *construct_params)
+{
+  GObject *object;
+  EmpathyDebugDialogPriv *priv;
+
+  object = G_OBJECT_CLASS (empathy_debug_dialog_parent_class)->constructor
+    (type, n_construct_params, construct_params);
+  priv = GET_PRIV (object);
+
+  return object;
+}
+
+static void
+empathy_debug_dialog_init (EmpathyDebugDialog *empathy_debug_dialog)
+{
+  EmpathyDebugDialogPriv *priv =
+      G_TYPE_INSTANCE_GET_PRIVATE (empathy_debug_dialog,
+      EMPATHY_TYPE_DEBUG_DIALOG, EmpathyDebugDialogPriv);
+
+  empathy_debug_dialog->priv = priv;
+
+  priv->dispose_run = FALSE;
+}
+
+static void
+debug_dialog_set_property (GObject *object,
+                               guint prop_id,
+                               const GValue *value,
+                               GParamSpec *pspec)
+{
+  switch (prop_id)
+    {
+      default:
+        G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+        break;
+    }
+}
+
+static void
+debug_dialog_get_property (GObject *object,
+                               guint prop_id,
+                               GValue *value,
+                               GParamSpec *pspec)
+{
+  switch (prop_id)
+    {
+      default:
+        G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+        break;
+    }
+}
+
+static void
+debug_dialog_dispose (GObject *object)
+{
+  EmpathyDebugDialog *selector = EMPATHY_DEBUG_DIALOG (object);
+  EmpathyDebugDialogPriv *priv = GET_PRIV (selector);
+
+  if (priv->dispose_run)
+    return;
+
+  priv->dispose_run = TRUE;
+
+  (G_OBJECT_CLASS (empathy_debug_dialog_parent_class)->dispose) (object);
+}
+
+static void
+empathy_debug_dialog_class_init (EmpathyDebugDialogClass *klass)
+{
+  GObjectClass *object_class = G_OBJECT_CLASS (klass);
+  object_class->constructor = debug_dialog_constructor;
+  object_class->dispose = debug_dialog_dispose;
+  object_class->set_property = debug_dialog_set_property;
+  object_class->get_property = debug_dialog_get_property;
+  g_type_class_add_private (klass, sizeof (EmpathyDebugDialogPriv));
+}
+
+/* public methods */
+
+GtkWidget *
+empathy_debug_dialog_new (void)
+{
+  return GTK_WIDGET (g_object_new (EMPATHY_TYPE_DEBUG_DIALOG, NULL));
+}
diff --git a/src/empathy-debug-dialog.h b/src/empathy-debug-dialog.h
new file mode 100644 (file)
index 0000000..43e6082
--- /dev/null
@@ -0,0 +1,61 @@
+/*
+*  Copyright (C) 2009 Collabora Ltd.
+*
+*  This library 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
+*  version 2.1 of the License, or (at your option) any later version.
+*
+*  This library 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
+*  Lesser General Public License for more details.
+*
+*  You should have received a copy of the GNU Lesser General Public
+*  License along with this library; if not, write to the Free Software
+*  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
+*
+*  Authors: Jonny Lamb <jonny.lamb@collabora.co.uk>
+*/
+
+#ifndef __EMPATHY_DEBUG_DIALOG_H__
+#define __EMPATHY_DEBUG_DIALOG_H__
+
+G_BEGIN_DECLS
+
+#include <glib-object.h>
+#include <gtk/gtk.h>
+
+#define EMPATHY_TYPE_DEBUG_DIALOG (empathy_debug_dialog_get_type ())
+#define EMPATHY_DEBUG_DIALOG(object) (G_TYPE_CHECK_INSTANCE_CAST \
+        ((object), EMPATHY_TYPE_DEBUG_DIALOG, EmpathyDebugDialog))
+#define EMPATHY_DEBUG_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((klass), \
+        EMPATHY_TYPE_DEBUG_DIALOG, EmpathyDebugDialogClass))
+#define EMPATHY_IS_DEBUG_DIALOG(object) (G_TYPE_CHECK_INSTANCE_TYPE \
+    ((object), EMPATHY_TYPE_DEBUG_DIALOG))
+#define EMPATHY_IS_DEBUG_DIALOG_CLASS(klass) \
+    (G_TYPE_CHECK_CLASS_TYPE ((klass), EMPATHY_TYPE_DEBUG_DIALOG))
+#define EMPATHY_DEBUG_DIALOG_GET_CLASS(object) (G_TYPE_INSTANCE_GET_CLASS \
+    ((object), EMPATHY_TYPE_DEBUG_DIALOG, EmpathyDebugDialogClass))
+
+typedef struct _EmpathyDebugDialog EmpathyDebugDialog;
+typedef struct _EmpathyDebugDialogClass EmpathyDebugDialogClass;
+
+struct _EmpathyDebugDialog
+{
+  GtkDialog parent;
+  gpointer priv;
+};
+
+struct _EmpathyDebugDialogClass
+{
+  GtkDialogClass parent_class;
+};
+
+GType empathy_debug_dialog_get_type (void) G_GNUC_CONST;
+
+GtkWidget * empathy_debug_dialog_new (void);
+
+G_END_DECLS
+
+#endif /* __EMPATHY_DEBUG_DIALOG_H__ */