/* * e-mail-shell-sidebar.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 * version 2 of the License, or (at your option) version 3. * * 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with the program; if not, see * * * Copyright (C) 1999-2008 Novell, Inc. (www.novell.com) * */ #include "e-mail-shell-sidebar.h" #define E_MAIL_SHELL_SIDEBAR_GET_PRIVATE(obj) \ (G_TYPE_INSTANCE_GET_PRIVATE \ ((obj), E_TYPE_MAIL_SHELL_SIDEBAR, EMailShellSidebarPrivate)) struct _EMailShellSidebarPrivate { gint dummy; }; enum { PROP_0 }; static gpointer parent_class; static void mail_shell_sidebar_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec) { G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); } static void mail_shell_sidebar_dispose (GObject *object) { EMailShellSidebarPrivate *priv; priv = E_MAIL_SHELL_SIDEBAR_GET_PRIVATE (object); /* Chain up to parent's dispose() method. */ G_OBJECT_CLASS (parent_class)->dispose (object); } static void mail_shell_sidebar_finalize (GObject *object) { EMailShellSidebarPrivate *priv; priv = E_MAIL_SHELL_SIDEBAR_GET_PRIVATE (object); /* Chain up to parent's finalize() method. */ G_OBJECT_CLASS (parent_class)->finalize (object); } static void mail_shell_sidebar_constructed (GObject *object) { EMailShellSidebarPrivate *priv; priv = E_MAIL_SHELL_SIDEBAR_GET_PRIVATE (object); /* Chain up to parent's constructed method. */ G_OBJECT_CLASS (parent_class)->constructed (object); } static void mail_shell_sidebar_class_init (EMailShellSidebarClass *class) { GObjectClass *object_class; parent_class = g_type_class_peek_parent (class); g_type_class_add_private (class, sizeof (EMailShellSidebarPrivate)); object_class = G_OBJECT_CLASS (class); object_class->get_property = mail_shell_sidebar_get_property; object_class->dispose = mail_shell_sidebar_dispose; object_class->finalize = mail_shell_sidebar_finalize; object_class->constructed = mail_shell_sidebar_constructed; } static void mail_shell_sidebar_init (EMailShellSidebar *mail_shell_sidebar) { mail_shell_sidebar->priv = E_MAIL_SHELL_SIDEBAR_GET_PRIVATE (mail_shell_sidebar); /* Postpone widget construction until we have a shell view. */ } GType e_mail_shell_sidebar_get_type (void) { static GType type = 0; if (G_UNLIKELY (type == 0)) { static const GTypeInfo type_info = { sizeof (EMailShellSidebarClass), (GBaseInitFunc) NULL, (GBaseFinalizeFunc) NULL, (GClassInitFunc) mail_shell_sidebar_class_init, (GClassFinalizeFunc) NULL, NULL, /* class_data */ sizeof (EMailShellSidebar), 0, /* n_preallocs */ (GInstanceInitFunc) mail_shell_sidebar_init, NULL /* value_table */ }; type = g_type_register_static ( E_TYPE_SHELL_SIDEBAR, "EMailShellSidebar", &type_info, 0); } return type; } GtkWidget * e_mail_shell_sidebar_new (EShellView *shell_view) { g_return_val_if_fail (E_IS_SHELL_VIEW (shell_view), NULL); return g_object_new ( E_TYPE_MAIL_SHELL_SIDEBAR, "shell-view", shell_view, NULL); }