- Collect all shell modules into a new top-level 'modules' directory:
$(top_srcdir)/modules/addressbook
$(top_srcdir)/modules/calendar
$(top_srcdir)/modules/mail
Nothing is allowed to link to these, not plugins nor other modules.
THIS SOLVES BUG #571275 AND OPENS THE DOOR TO PORTING TO MAC OS X.
- Mimic the libevolution-mail-shared library from master (except drop
the "shared" suffix) and have libevolution-mail-importers and all
mail-related plugins link to it.
- Discard the a11y subdirectories and have the files live alongside
their counterpart widgets.
233 lines
6.1 KiB
C
233 lines
6.1 KiB
C
/*
|
|
* e-book-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 <http://www.gnu.org/licenses/>
|
|
*
|
|
*
|
|
* Copyright (C) 1999-2008 Novell, Inc. (www.novell.com)
|
|
*
|
|
*/
|
|
|
|
#include "e-book-shell-sidebar.h"
|
|
|
|
#include <string.h>
|
|
#include <glib/gi18n.h>
|
|
|
|
#include "e-book-shell-view.h"
|
|
#include "e-book-shell-backend.h"
|
|
#include "e-addressbook-selector.h"
|
|
|
|
#define E_BOOK_SHELL_SIDEBAR_GET_PRIVATE(obj) \
|
|
(G_TYPE_INSTANCE_GET_PRIVATE \
|
|
((obj), E_TYPE_BOOK_SHELL_SIDEBAR, EBookShellSidebarPrivate))
|
|
|
|
struct _EBookShellSidebarPrivate {
|
|
GtkWidget *selector;
|
|
};
|
|
|
|
enum {
|
|
PROP_0,
|
|
PROP_SELECTOR
|
|
};
|
|
|
|
static gpointer parent_class;
|
|
static GType book_shell_sidebar_type;
|
|
|
|
static void
|
|
book_shell_sidebar_get_property (GObject *object,
|
|
guint property_id,
|
|
GValue *value,
|
|
GParamSpec *pspec)
|
|
{
|
|
switch (property_id) {
|
|
case PROP_SELECTOR:
|
|
g_value_set_object (
|
|
value, e_book_shell_sidebar_get_selector (
|
|
E_BOOK_SHELL_SIDEBAR (object)));
|
|
return;
|
|
}
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
}
|
|
|
|
static void
|
|
book_shell_sidebar_dispose (GObject *object)
|
|
{
|
|
EBookShellSidebarPrivate *priv;
|
|
|
|
priv = E_BOOK_SHELL_SIDEBAR_GET_PRIVATE (object);
|
|
|
|
if (priv->selector != NULL) {
|
|
g_object_unref (priv->selector);
|
|
priv->selector = NULL;
|
|
}
|
|
|
|
/* Chain up to parent's dispose() method. */
|
|
G_OBJECT_CLASS (parent_class)->dispose (object);
|
|
}
|
|
|
|
static void
|
|
book_shell_sidebar_constructed (GObject *object)
|
|
{
|
|
EBookShellSidebarPrivate *priv;
|
|
EShellView *shell_view;
|
|
EShellBackend *shell_backend;
|
|
EShellSidebar *shell_sidebar;
|
|
ESourceList *source_list;
|
|
GtkContainer *container;
|
|
GtkWidget *widget;
|
|
|
|
priv = E_BOOK_SHELL_SIDEBAR_GET_PRIVATE (object);
|
|
|
|
/* Chain up to parent's constructed() method. */
|
|
G_OBJECT_CLASS (parent_class)->constructed (object);
|
|
|
|
shell_sidebar = E_SHELL_SIDEBAR (object);
|
|
shell_view = e_shell_sidebar_get_shell_view (shell_sidebar);
|
|
shell_backend = e_shell_view_get_shell_backend (shell_view);
|
|
|
|
source_list = e_book_shell_backend_get_source_list (
|
|
E_BOOK_SHELL_BACKEND (shell_backend));
|
|
|
|
container = GTK_CONTAINER (shell_sidebar);
|
|
|
|
widget = gtk_scrolled_window_new (NULL, NULL);
|
|
gtk_scrolled_window_set_policy (
|
|
GTK_SCROLLED_WINDOW (widget),
|
|
GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
|
|
gtk_scrolled_window_set_shadow_type (
|
|
GTK_SCROLLED_WINDOW (widget), GTK_SHADOW_IN);
|
|
gtk_container_add (container, widget);
|
|
gtk_widget_show (widget);
|
|
|
|
container = GTK_CONTAINER (widget);
|
|
|
|
widget = e_addressbook_selector_new (source_list);
|
|
e_source_selector_show_selection (E_SOURCE_SELECTOR (widget), FALSE);
|
|
gtk_container_add (GTK_CONTAINER (container), widget);
|
|
priv->selector = g_object_ref (widget);
|
|
gtk_widget_show (widget);
|
|
}
|
|
|
|
static guint32
|
|
book_shell_sidebar_check_state (EShellSidebar *shell_sidebar)
|
|
{
|
|
EBookShellSidebar *book_shell_sidebar;
|
|
ESourceSelector *selector;
|
|
ESource *source;
|
|
gboolean is_system = FALSE;
|
|
guint32 state = 0;
|
|
|
|
book_shell_sidebar = E_BOOK_SHELL_SIDEBAR (shell_sidebar);
|
|
selector = e_book_shell_sidebar_get_selector (book_shell_sidebar);
|
|
source = e_source_selector_peek_primary_selection (selector);
|
|
|
|
if (source != NULL) {
|
|
const gchar *uri;
|
|
|
|
uri = e_source_peek_relative_uri (source);
|
|
is_system = (uri == NULL || strcmp (uri, "system") == 0);
|
|
}
|
|
|
|
if (source != NULL)
|
|
state |= E_BOOK_SHELL_SIDEBAR_HAS_PRIMARY_SOURCE;
|
|
if (is_system)
|
|
state |= E_BOOK_SHELL_SIDEBAR_PRIMARY_SOURCE_IS_SYSTEM;
|
|
|
|
return state;
|
|
}
|
|
|
|
static void
|
|
book_shell_sidebar_class_init (EBookShellSidebarClass *class)
|
|
{
|
|
GObjectClass *object_class;
|
|
EShellSidebarClass *shell_sidebar_class;
|
|
|
|
parent_class = g_type_class_peek_parent (class);
|
|
g_type_class_add_private (class, sizeof (EBookShellSidebarPrivate));
|
|
|
|
object_class = G_OBJECT_CLASS (class);
|
|
object_class->get_property = book_shell_sidebar_get_property;
|
|
object_class->dispose = book_shell_sidebar_dispose;
|
|
object_class->constructed = book_shell_sidebar_constructed;
|
|
|
|
shell_sidebar_class = E_SHELL_SIDEBAR_CLASS (class);
|
|
shell_sidebar_class->check_state = book_shell_sidebar_check_state;
|
|
|
|
g_object_class_install_property (
|
|
object_class,
|
|
PROP_SELECTOR,
|
|
g_param_spec_object (
|
|
"selector",
|
|
_("Source Selector Widget"),
|
|
_("This widget displays groups of address books"),
|
|
E_TYPE_SOURCE_SELECTOR,
|
|
G_PARAM_READABLE));
|
|
}
|
|
|
|
static void
|
|
book_shell_sidebar_init (EBookShellSidebar *book_shell_sidebar)
|
|
{
|
|
book_shell_sidebar->priv =
|
|
E_BOOK_SHELL_SIDEBAR_GET_PRIVATE (book_shell_sidebar);
|
|
|
|
/* Postpone widget construction until we have a shell view. */
|
|
}
|
|
|
|
GType
|
|
e_book_shell_sidebar_get_type (void)
|
|
{
|
|
return book_shell_sidebar_type;
|
|
}
|
|
|
|
void
|
|
e_book_shell_sidebar_register_type (GTypeModule *type_module)
|
|
{
|
|
static const GTypeInfo type_info = {
|
|
sizeof (EBookShellSidebarClass),
|
|
(GBaseInitFunc) NULL,
|
|
(GBaseFinalizeFunc) NULL,
|
|
(GClassInitFunc) book_shell_sidebar_class_init,
|
|
(GClassFinalizeFunc) NULL,
|
|
NULL, /* class_data */
|
|
sizeof (EBookShellSidebar),
|
|
0, /* n_preallocs */
|
|
(GInstanceInitFunc) book_shell_sidebar_init,
|
|
NULL /* value_table */
|
|
};
|
|
|
|
book_shell_sidebar_type = g_type_module_register_type (
|
|
type_module, E_TYPE_SHELL_SIDEBAR,
|
|
"EBookShellSidebar", &type_info, 0);
|
|
}
|
|
|
|
GtkWidget *
|
|
e_book_shell_sidebar_new (EShellView *shell_view)
|
|
{
|
|
g_return_val_if_fail (E_IS_SHELL_VIEW (shell_view), NULL);
|
|
|
|
return g_object_new (
|
|
E_TYPE_BOOK_SHELL_SIDEBAR,
|
|
"shell-view", shell_view, NULL);
|
|
}
|
|
|
|
ESourceSelector *
|
|
e_book_shell_sidebar_get_selector (EBookShellSidebar *book_shell_sidebar)
|
|
{
|
|
g_return_val_if_fail (
|
|
E_IS_BOOK_SHELL_SIDEBAR (book_shell_sidebar), NULL);
|
|
|
|
return E_SOURCE_SELECTOR (book_shell_sidebar->priv->selector);
|
|
}
|