aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-roster-window.h
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-01-10 19:27:11 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2012-01-10 19:37:06 +0800
commit937cddcf2bb9ec3039092841553603a60ee496b5 (patch)
treea9dd0c45a80620dd42eaa157eb5005b6c9b72803 /src/empathy-roster-window.h
parentabd40a92cc32ddabb8aa9cdcfeb7dac696dd04bf (diff)
downloadgsoc2013-empathy-937cddcf2bb9ec3039092841553603a60ee496b5.tar
gsoc2013-empathy-937cddcf2bb9ec3039092841553603a60ee496b5.tar.gz
gsoc2013-empathy-937cddcf2bb9ec3039092841553603a60ee496b5.tar.bz2
gsoc2013-empathy-937cddcf2bb9ec3039092841553603a60ee496b5.tar.lz
gsoc2013-empathy-937cddcf2bb9ec3039092841553603a60ee496b5.tar.xz
gsoc2013-empathy-937cddcf2bb9ec3039092841553603a60ee496b5.tar.zst
gsoc2013-empathy-937cddcf2bb9ec3039092841553603a60ee496b5.zip
rename MainWindow to RosterWindow
With the process split it doesn't really make sense to continue calling it 'main' window, it's just the roster now.
Diffstat (limited to 'src/empathy-roster-window.h')
-rw-r--r--src/empathy-roster-window.h63
1 files changed, 63 insertions, 0 deletions
diff --git a/src/empathy-roster-window.h b/src/empathy-roster-window.h
new file mode 100644
index 000000000..28767cc2e
--- /dev/null
+++ b/src/empathy-roster-window.h
@@ -0,0 +1,63 @@
+/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
+/*
+ * Copyright (C) 2002-2007 Imendio AB
+ * Copyright (C) 2007-2008 Collabora Ltd.
+ *
+ * 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 2 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, write to the
+ * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
+ * Boston, MA 02110-1301 USA
+ *
+ * Authors: Xavier Claessens <xclaesse@gmail.com>
+ * Danielle Madeley <danielle.madeley@collabora.co.uk>
+ */
+
+#ifndef __EMPATHY_ROSTER_WINDOW_H__
+#define __EMPATHY_ROSTER_WINDOW_H__
+
+#include <gtk/gtk.h>
+
+G_BEGIN_DECLS
+
+#define EMPATHY_TYPE_ROSTER_WINDOW (empathy_roster_window_get_type ())
+#define EMPATHY_ROSTER_WINDOW(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), EMPATHY_TYPE_ROSTER_WINDOW, EmpathyRosterWindow))
+#define EMPATHY_ROSTER_WINDOW_CLASS(k) (G_TYPE_CHECK_CLASS_CAST ((k), EMPATHY_TYPE_ROSTER_WINDOW, EmpathyRosterWindowClass))
+#define EMPATHY_IS_ROSTER_WINDOW(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), EMPATHY_TYPE_ROSTER_WINDOW))
+#define EMPATHY_IS_ROSTER_WINDOW_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), EMPATHY_TYPE_ROSTER_WINDOW))
+#define EMPATHY_ROSTER_WINDOW_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), EMPATHY_TYPE_ROSTER_WINDOW, EmpathyRosterWindowClass))
+
+typedef struct _EmpathyRosterWindow EmpathyRosterWindow;
+typedef struct _EmpathyRosterWindowClass EmpathyRosterWindowClass;
+typedef struct _EmpathyRosterWindowPriv EmpathyRosterWindowPriv;
+
+struct _EmpathyRosterWindow {
+ GtkWindow parent;
+ gpointer priv;
+};
+
+struct _EmpathyRosterWindowClass {
+ GtkWindowClass parent_class;
+};
+
+GType empathy_roster_window_get_type (void);
+
+GtkWidget *empathy_roster_window_dup (void);
+
+void empathy_roster_window_show_preferences (EmpathyRosterWindow *window,
+ const gchar *tab);
+void empathy_roster_window_set_shell_running (EmpathyRosterWindow *window,
+ gboolean shell_running);
+
+G_END_DECLS
+
+#endif /* __EMPATHY_ROSTER_WINDOW_H__ */