aboutsummaryrefslogblamecommitdiffstats
path: root/modules/calendar/e-cal-shell-sidebar.c
blob: b8b7f4b03e2765f2957949dd3d95c7cd5d01b8eb (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11

                        

                                                                


                                                               



                                                                    


                                                                   
                                                                             


                                                        
  





                                
 
                                  
                             
                                

                                 

                                           
                                             
                              
                                                
 
                             
                                
                                





                                                                   
                         
                            
                                  


                                 








                                                               



               
                            
                            


                     






                       
                             
                                  
                                    




























                                                                           























                                                                        
                                     
























                                                                        




                                                                         














                                                                        
                                                        




                                                 
                             




                                                                    



                                                           
                                                    
 
                            
                                                             
                                          

                              

                                                             
                               
 
                                            
                               

                                                          
                                                     


                                                                               
                                          

                        





                                                           
                                 












                                                                           
                                                         


                                                  



                                                                    
 



                                                           


                                                    
                                                             
                                          
                              












                                                             
         
 
                                 











                                                                         



                                            

                                   
                         
                     
                               



















                                                                          
                                        


                                                                 










                                                                     
                                         






























































                                                                                    




                                       
                        







                                                                       









                                                                    

                                                                  
 

           













































































                                                                             
                                                                              



                                                                              
                                                


                                                  

                              
                                         
                                            








                                                                        


                                                               

                                            

                                                                  













                                                                       




                                             




                                                


                                                      

         




                                                      

                                                     




                                                        












                                                         
                                        

                                                   
                               






                                                                    
                                                                


           


                                               
                      
                               
                                   
                                     
                                     
                                       
                                 
                               
                             
                          
                        


                                                        


                                                            

                                                                    
                                                                    
                                                                  
 
                                                          

                                                            
                                                           
                                                     
 

                                               
                                                        




                                                              






                                                             
                                                






                                                                               
                                                                              
                                                                                 


                                                                          



                                                                                 

                                 
                           


                                                                            


                                                              

                                               
 





                                                             
                                                                      
                                                     

                                 
                       

                                                        

                       

                                                     
 




                                                                
                               

 







                                                            
                                           






                                                                        
                             








                                                                             
 




                                                                       







                                                                       

                                                                     



                     
           















                                                                        
                                         
 
                                                
                                                             

                                                                        





                                                           
                                                






                                                                           
                                                            

                                                                  


                                                                         

                                                                 

                                         
                                    
                                     
                                         

                                                                    




                                           


                                         

                                                                 




                                           


                                     

                                                                   

                                               





























                                                                        




                                                            






                                                 


                                                                    

                                                             





                                                                      

                                      
 


















                                                              











                                                                  












                                                                     
           
                                                                            



                                                                  
                                                                    

 








                                                                            
                 




                                                                      






                                                                     



                                            
                                   

                                  
                         
                             
                     
                               






                                                                      
                                              
                                                             
                                                                 







                                                                        













                                                                          















                                                                   
                                                     




                                                                           
                                        


                                                                










                                                                     






                                                                       







                                                                      







                                                                          
 
/*
 * e-cal-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-cal-shell-sidebar.h"

#include <string.h>
#include <glib/gi18n.h>

#include "e-util/e-alert-dialog.h"
#include "e-util/e-binding.h"
#include "e-util/gconf-bridge.h"
#include "widgets/misc/e-paned.h"

#include "calendar/common/authentication.h"
#include "calendar/gui/calendar-config.h"
#include "calendar/gui/e-calendar-selector.h"
#include "calendar/gui/misc.h"
#include "calendar/gui/dialogs/calendar-setup.h"

#include "e-cal-shell-view.h"
#include "e-cal-shell-backend.h"
#include "e-cal-shell-content.h"

#define E_CAL_SHELL_SIDEBAR_GET_PRIVATE(obj) \
    (G_TYPE_INSTANCE_GET_PRIVATE \
    ((obj), E_TYPE_CAL_SHELL_SIDEBAR, ECalShellSidebarPrivate))

struct _ECalShellSidebarPrivate {
    GtkWidget *paned;
    GtkWidget *selector;
    GtkWidget *date_navigator;

    /* UID -> Client */
    GHashTable *client_table;

    /* The default client is for ECalModel.  It follows the
     * sidebar's primary selection, even if the highlighted
     * source is not selected.  The tricky part is we don't
     * update the property until the client is successfully
     * opened.  So the user first highlights a source, then
     * sometime later we update our default-client property
     * which is bound by an EBinding to ECalModel. */
    ECal *default_client;
};

enum {
    PROP_0,
    PROP_DATE_NAVIGATOR,
    PROP_DEFAULT_CLIENT,
    PROP_SELECTOR
};

enum {
    CLIENT_ADDED,
    CLIENT_REMOVED,
    STATUS_MESSAGE,
    LAST_SIGNAL
};

static gpointer parent_class;
static guint signals[LAST_SIGNAL];
static GType cal_shell_sidebar_type;

static void
cal_shell_sidebar_emit_client_added (ECalShellSidebar *cal_shell_sidebar,
                                     ECal *client)
{
    guint signal_id = signals[CLIENT_ADDED];

    g_signal_emit (cal_shell_sidebar, signal_id, 0, client);
}

static void
cal_shell_sidebar_emit_client_removed (ECalShellSidebar *cal_shell_sidebar,
                                       ECal *client)
{
    guint signal_id = signals[CLIENT_REMOVED];

    g_signal_emit (cal_shell_sidebar, signal_id, 0, client);
}

static void
cal_shell_sidebar_emit_status_message (ECalShellSidebar *cal_shell_sidebar,
                                       const gchar *status_message)
{
    guint signal_id = signals[STATUS_MESSAGE];

    g_signal_emit (cal_shell_sidebar, signal_id, 0, status_message);
}

static void
cal_shell_sidebar_backend_died_cb (ECalShellSidebar *cal_shell_sidebar,
                                   ECal *client)
{
    EShellView *shell_view;
    EShellWindow *shell_window;
    EShellSidebar *shell_sidebar;
    GHashTable *client_table;
    ESource *source;
    const gchar *uid;

    client_table = cal_shell_sidebar->priv->client_table;

    shell_sidebar = E_SHELL_SIDEBAR (cal_shell_sidebar);
    shell_view = e_shell_sidebar_get_shell_view (shell_sidebar);
    shell_window = e_shell_view_get_shell_window (shell_view);

    source = e_cal_get_source (client);
    uid = e_source_peek_uid (source);

    g_object_ref (source);

    g_hash_table_remove (client_table, uid);
    cal_shell_sidebar_emit_status_message (cal_shell_sidebar, NULL);

    e_alert_run_dialog_for_args (
        GTK_WINDOW (shell_window),
        "calendar:calendar-crashed", NULL);

    g_object_unref (source);
}

static void
cal_shell_sidebar_backend_error_cb (ECalShellSidebar *cal_shell_sidebar,
                                    const gchar *message,
                                    ECal *client)
{
    EShellView *shell_view;
    EShellWindow *shell_window;
    EShellSidebar *shell_sidebar;
    GtkWidget *dialog;
    const gchar *uri;
    gchar *uri_no_passwd;

    shell_sidebar = E_SHELL_SIDEBAR (cal_shell_sidebar);
    shell_view = e_shell_sidebar_get_shell_view (shell_sidebar);
    shell_window = e_shell_view_get_shell_window (shell_view);

    uri = e_cal_get_uri (client);
    uri_no_passwd = get_uri_without_password (uri);

    /* Translators: This string is displayed in a message dialog when
     *              our connection to the calendar service detects an
     *              out-of-band error.  The first string is a URI for
     *              the source of the error, the second string is the
     *              error message. */
    dialog = gtk_message_dialog_new (
        GTK_WINDOW (shell_window),
        GTK_DIALOG_DESTROY_WITH_PARENT,
        GTK_MESSAGE_ERROR, GTK_BUTTONS_OK,
        _("Error on %s\n%s"),
        uri_no_passwd, message);

    gtk_dialog_run (GTK_DIALOG (dialog));
    gtk_widget_destroy (dialog);

    g_free (uri_no_passwd);
}

static void
cal_shell_sidebar_client_opened_cb (ECalShellSidebar *cal_shell_sidebar,
                                    const GError *error,
                                    ECal *client)
{
    EShellView *shell_view;
    EShellWindow *shell_window;
    EShellSidebar *shell_sidebar;
    const gchar *message;

    shell_sidebar = E_SHELL_SIDEBAR (cal_shell_sidebar);
    shell_view = e_shell_sidebar_get_shell_view (shell_sidebar);
    shell_window = e_shell_view_get_shell_window (shell_view);

    if (g_error_matches (error, E_CALENDAR_ERROR,
        E_CALENDAR_STATUS_AUTHENTICATION_FAILED) ||
        g_error_matches (error, E_CALENDAR_ERROR,
        E_CALENDAR_STATUS_AUTHENTICATION_REQUIRED))
        e_auth_cal_forget_password (client);

    /* Handle errors. */
    switch (error ? error->code : E_CALENDAR_STATUS_OK) {
        case E_CALENDAR_STATUS_OK:
            break;

        case E_CALENDAR_STATUS_AUTHENTICATION_FAILED:
            e_cal_open_async (client, FALSE);
            return;

        case E_CALENDAR_STATUS_BUSY:
            return;

        case E_CALENDAR_STATUS_REPOSITORY_OFFLINE:
            e_alert_run_dialog_for_args (
                GTK_WINDOW (shell_window),
                "calendar:prompt-no-contents-offline-calendar",
                NULL);
            /* fall through */

        default:
            e_cal_shell_sidebar_remove_source (
                cal_shell_sidebar,
                e_cal_get_source (client));
            return;
    }

    g_assert (error == NULL);

    g_signal_handlers_disconnect_matched (
        client, G_SIGNAL_MATCH_FUNC, 0, 0, NULL,
        cal_shell_sidebar_client_opened_cb, NULL);

    message = _("Loading calendars");
    cal_shell_sidebar_emit_status_message (cal_shell_sidebar, message);
    cal_shell_sidebar_emit_client_added (cal_shell_sidebar, client);
    cal_shell_sidebar_emit_status_message (cal_shell_sidebar, NULL);
}

static void
cal_shell_sidebar_default_opened_cb (ECalShellSidebar *cal_shell_sidebar,
                                     const GError *error,
                                     ECal *client)
{
    EShellView *shell_view;
    EShellSidebar *shell_sidebar;

    shell_sidebar = E_SHELL_SIDEBAR (cal_shell_sidebar);
    shell_view = e_shell_sidebar_get_shell_view (shell_sidebar);

    if (g_error_matches (error, E_CALENDAR_ERROR,
        E_CALENDAR_STATUS_AUTHENTICATION_FAILED) ||
        g_error_matches (error, E_CALENDAR_ERROR,
        E_CALENDAR_STATUS_AUTHENTICATION_REQUIRED))
        e_auth_cal_forget_password (client);

    /* Handle errors. */
    switch (error ? error->code : E_CALENDAR_STATUS_OK) {
        case E_CALENDAR_STATUS_OK:
            break;

        case E_CALENDAR_STATUS_AUTHENTICATION_FAILED:
            e_cal_open_async (client, FALSE);
            return;

        case E_CALENDAR_STATUS_BUSY:
            return;

        default:
            e_cal_shell_sidebar_remove_source (
                cal_shell_sidebar,
                e_cal_get_source (client));
            return;
    }

    g_assert (error == NULL);

    g_signal_handlers_disconnect_matched (
        client, G_SIGNAL_MATCH_FUNC, 0, 0, NULL,
        cal_shell_sidebar_default_opened_cb, NULL);

    g_object_notify (G_OBJECT (cal_shell_sidebar), "default-client");
}

static void
cal_shell_sidebar_set_default (ECalShellSidebar *cal_shell_sidebar,
                               ESource *source)
{
    EShellView *shell_view;
    EShellContent *shell_content;
    EShellSidebar *shell_sidebar;
    ECalShellContent *cal_shell_content;
    ECalSourceType source_type;
    GHashTable *client_table;
    ECalModel *model;
    ECal *client;
    icaltimezone *timezone;
    const gchar *uid;

    source_type = E_CAL_SOURCE_TYPE_EVENT;
    client_table = cal_shell_sidebar->priv->client_table;

    uid = e_source_peek_uid (source);
    client = g_hash_table_lookup (client_table, uid);

    if (cal_shell_sidebar->priv->default_client != NULL)
        g_object_unref (cal_shell_sidebar->priv->default_client);

    if (client != NULL)
        g_object_ref (client);
    else
        client = e_auth_new_cal_from_source (source, source_type);

    cal_shell_sidebar->priv->default_client = client;
    g_return_if_fail (client != NULL);

    g_signal_connect_swapped (
        client, "cal-opened-ex",
        G_CALLBACK (cal_shell_sidebar_default_opened_cb),
        cal_shell_sidebar);

    /* FIXME Sidebar should not be accessing the EShellContent.
     *       This probably needs to be moved to ECalShellView. */
    shell_sidebar = E_SHELL_SIDEBAR (cal_shell_sidebar);
    shell_view = e_shell_sidebar_get_shell_view (shell_sidebar);
    shell_content = e_shell_view_get_shell_content (shell_view);

    cal_shell_content = E_CAL_SHELL_CONTENT (shell_content);
    model = e_cal_shell_content_get_model (cal_shell_content);
    timezone = e_cal_model_get_timezone (model);

    e_cal_set_default_timezone (client, timezone, NULL);
    e_cal_open_async (client, FALSE);
}

static void
cal_shell_sidebar_row_changed_cb (ECalShellSidebar *cal_shell_sidebar,
                                  GtkTreePath *tree_path,
                                  GtkTreeIter *tree_iter,
                                  GtkTreeModel *tree_model)
{
    ESourceSelector *selector;
    ESource *source;

    /* XXX ESourceSelector's underlying tree store has only one
     *     column: ESource objects.  While we're not supposed to
     *     know this, listening for "row-changed" signals from
     *     the model is easier to deal with than the selector's
     *     "selection-changed" signal, which doesn't tell you
     *     _which_ row changed. */

    selector = e_cal_shell_sidebar_get_selector (cal_shell_sidebar);
    gtk_tree_model_get (tree_model, tree_iter, 0, &source, -1);

    /* XXX This signal gets emitted a lot while the model is being
     *     rebuilt, during which time we won't get a valid ESource.
     *     ESourceSelector should probably block this signal while
     *     rebuilding the model, but we'll be forgiving and not
     *     emit a warning. */
    if (!E_IS_SOURCE (source))
        return;

    if (e_source_selector_source_is_selected (selector, source))
        e_cal_shell_sidebar_add_source (cal_shell_sidebar, source);
    else
        e_cal_shell_sidebar_remove_source (cal_shell_sidebar, source);
}

static void
cal_shell_sidebar_selection_changed_cb (ECalShellSidebar *cal_shell_sidebar,
                                        ESourceSelector *selector)
{
    GSList *list, *iter;

    /* This signal is emitted less frequently than "row-changed",
     * especially when the model is being rebuilt.  So we'll take
     * it easy on poor GConf. */

    list = e_source_selector_get_selection (selector);

    for (iter = list; iter != NULL; iter = iter->next) {
        ESource *source = iter->data;

        iter->data = (gpointer) e_source_peek_uid (source);
        g_object_unref (source);
    }

    calendar_config_set_calendars_selected (list);

    g_slist_free (list);
}

static void
cal_shell_sidebar_primary_selection_changed_cb (ECalShellSidebar *cal_shell_sidebar,
                                                ESourceSelector *selector)
{
    EShell *shell;
    EShellView *shell_view;
    EShellWindow *shell_window;
    EShellSidebar *shell_sidebar;
    EShellSettings *shell_settings;
    ESource *source;

    /* XXX ESourceSelector needs a "primary-selection-uid" property
     *     so we can just bind the property with GConfBridge. */

    source = e_source_selector_peek_primary_selection (selector);
    if (source == NULL)
        return;

    shell_sidebar = E_SHELL_SIDEBAR (cal_shell_sidebar);
    shell_view = e_shell_sidebar_get_shell_view (shell_sidebar);
    shell_window = e_shell_view_get_shell_window (shell_view);

    shell = e_shell_window_get_shell (shell_window);
    shell_settings = e_shell_get_shell_settings (shell);

    e_shell_settings_set_string (
        shell_settings, "cal-primary-calendar",
        e_source_peek_uid (source));

    cal_shell_sidebar_set_default (cal_shell_sidebar, source);
}

static void
cal_shell_sidebar_restore_state_cb (EShellWindow *shell_window,
                                    EShellView *shell_view,
                                    EShellSidebar *shell_sidebar)
{
    ECalShellSidebarPrivate *priv;
    EShell *shell;
    EShellBackend *shell_backend;
    EShellSettings *shell_settings;
    ESourceSelector *selector;
    ESourceList *source_list;
    ESource *source;
    GConfBridge *bridge;
    GtkTreeModel *model;
    GSList *list, *iter;
    GObject *object;
    const gchar *key;
    gchar *uid;

    priv = E_CAL_SHELL_SIDEBAR_GET_PRIVATE (shell_sidebar);

    shell = e_shell_window_get_shell (shell_window);
    shell_settings = e_shell_get_shell_settings (shell);

    shell_backend = e_shell_view_get_shell_backend (shell_view);
    g_return_if_fail (E_IS_CAL_SHELL_BACKEND (shell_backend));

    selector = E_SOURCE_SELECTOR (priv->selector);
    model = gtk_tree_view_get_model (GTK_TREE_VIEW (selector));

    source_list = e_cal_shell_backend_get_source_list (
        E_CAL_SHELL_BACKEND (shell_backend));

    g_signal_connect_swapped (
        model, "row-changed",
        G_CALLBACK (cal_shell_sidebar_row_changed_cb),
        shell_sidebar);

    g_signal_connect_swapped (
        selector, "primary-selection-changed",
        G_CALLBACK (cal_shell_sidebar_primary_selection_changed_cb),
        shell_sidebar);

    source = NULL;
    uid = e_shell_settings_get_string (
        shell_settings, "cal-primary-calendar");
    if (uid != NULL)
        source = e_source_list_peek_source_by_uid (source_list, uid);
    if (source == NULL)
        source = e_source_list_peek_source_any (source_list);
    if (source != NULL)
        e_source_selector_set_primary_selection (selector, source);
    g_free (uid);

    list = calendar_config_get_calendars_selected ();
    for (iter = list; iter != NULL; iter = iter->next) {
        uid = iter->data;
        source = e_source_list_peek_source_by_uid (source_list, uid);
        g_free (uid);

        if (source == NULL)
            continue;

        e_source_selector_select_source (selector, source);
    }
    g_slist_free (list);

    /* Listen for subsequent changes to the selector. */

    g_signal_connect_swapped (
        selector, "selection-changed",
        G_CALLBACK (cal_shell_sidebar_selection_changed_cb),
        shell_sidebar);

    /* Bind GObject properties to GConf keys. */

    bridge = gconf_bridge_get ();

    object = G_OBJECT (priv->paned);
    key = "/apps/evolution/calendar/display/date_navigator_pane_position";
    gconf_bridge_bind_property_delayed (bridge, key, object, "vposition");
}

static void
cal_shell_sidebar_get_property (GObject *object,
                                guint property_id,
                                GValue *value,
                                GParamSpec *pspec)
{
    switch (property_id) {
        case PROP_DATE_NAVIGATOR:
            g_value_set_object (
                value,
                e_cal_shell_sidebar_get_date_navigator (
                E_CAL_SHELL_SIDEBAR (object)));
            return;

        case PROP_DEFAULT_CLIENT:
            g_value_set_object (
                value,
                e_cal_shell_sidebar_get_default_client (
                E_CAL_SHELL_SIDEBAR (object)));
            return;

        case PROP_SELECTOR:
            g_value_set_object (
                value,
                e_cal_shell_sidebar_get_selector (
                E_CAL_SHELL_SIDEBAR (object)));
            return;
    }

    G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
}

static void
cal_shell_sidebar_dispose (GObject *object)
{
    ECalShellSidebarPrivate *priv;

    priv = E_CAL_SHELL_SIDEBAR_GET_PRIVATE (object);

    if (priv->paned != NULL) {
        g_object_unref (priv->paned);
        priv->paned = NULL;
    }

    if (priv->selector != NULL) {
        g_object_unref (priv->selector);
        priv->selector = NULL;
    }

    if (priv->date_navigator != NULL) {
        g_object_unref (priv->date_navigator);
        priv->date_navigator = NULL;
    }

    if (priv->default_client != NULL) {
        g_object_unref (priv->default_client);
        priv->default_client = NULL;
    }

    g_hash_table_remove_all (priv->client_table);

    /* Chain up to parent's dispose() method. */
    G_OBJECT_CLASS (parent_class)->dispose (object);
}

static void
cal_shell_sidebar_finalize (GObject *object)
{
    ECalShellSidebarPrivate *priv;

    priv = E_CAL_SHELL_SIDEBAR_GET_PRIVATE (object);

    g_hash_table_destroy (priv->client_table);

    /* Chain up to parent's finalize() method. */
    G_OBJECT_CLASS (parent_class)->finalize (object);
}

static void
new_calendar_clicked (GtkButton *button,
              EShellSidebar *shell_sidebar)
{
    EShellView *shell_view;
    EShellWindow *shell_window;
    EShellBackend *shell_backend;

    shell_view = e_shell_sidebar_get_shell_view (shell_sidebar);
    shell_backend = e_shell_view_get_shell_backend (shell_view);
    shell_window = e_shell_view_get_shell_window (shell_view);

    calendar_setup_new_calendar (GTK_WINDOW (shell_window));
}

static void
cal_shell_sidebar_constructed (GObject *object)
{
    ECalShellSidebarPrivate *priv;
    EShell *shell;
    EShellView *shell_view;
    EShellWindow *shell_window;
    EShellBackend *shell_backend;
    EShellSidebar *shell_sidebar;
    EShellSettings *shell_settings;
    ESourceList *source_list;
    ECalendarItem *calitem;
    GtkWidget *container;
    GtkWidget *widget;
    AtkObject *a11y;

    priv = E_CAL_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);
    shell_window = e_shell_view_get_shell_window (shell_view);

    shell = e_shell_backend_get_shell (shell_backend);
    shell_settings = e_shell_get_shell_settings (shell);

    source_list = e_cal_shell_backend_get_source_list (
        E_CAL_SHELL_BACKEND (shell_backend));

    container = GTK_WIDGET (shell_sidebar);

    widget = e_paned_new (GTK_ORIENTATION_VERTICAL);
    gtk_container_add (GTK_CONTAINER (container), widget);
    priv->paned = g_object_ref (widget);
    gtk_widget_show (widget);

    container = widget;

    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);
    if (!e_shell_get_express_mode (shell)) {
        gtk_paned_pack1 (GTK_PANED (container), widget, TRUE, TRUE);
    } else {
        GtkWidget *button;

        container = gtk_vbox_new (FALSE, 6);
        gtk_box_pack_start (GTK_BOX(container), widget, TRUE, TRUE, 0);

        button = gtk_button_new_with_mnemonic (_("_New Calendar..."));
        gtk_box_pack_start (GTK_BOX(container), button, FALSE, FALSE, 0);
        g_signal_connect (
            button, "clicked",
            G_CALLBACK (new_calendar_clicked), shell_sidebar);

        gtk_paned_pack1 (GTK_PANED (priv->paned), container, TRUE, TRUE);
        gtk_widget_show_all (container);
    }
    gtk_widget_show (widget);

    container = widget;

    widget = e_calendar_selector_new (source_list);
    e_source_selector_set_select_new (E_SOURCE_SELECTOR (widget), TRUE);
    gtk_container_add (GTK_CONTAINER (container), widget);
    a11y = gtk_widget_get_accessible (widget);
    atk_object_set_name (a11y, _("Calendar Selector"));
    priv->selector = g_object_ref (widget);
    gtk_widget_show (widget);

    container = priv->paned;

    widget = e_calendar_new ();
    calitem = E_CALENDAR (widget)->calitem;
    e_calendar_item_set_days_start_week_sel (calitem, 9);
    e_calendar_item_set_max_days_sel (calitem, 42);
    gtk_paned_pack2 (GTK_PANED (container), widget, FALSE, FALSE);
    priv->date_navigator = g_object_ref (widget);
    gtk_widget_show (widget);

    e_binding_new (
        shell_settings, "cal-show-week-numbers",
        calitem, "show-week-numbers");

    e_binding_new (
        shell_settings, "cal-week-start-day",
        calitem, "week-start-day");

    /* Restore widget state from the last session once
     * the shell view is fully initialized and visible. */
    g_signal_connect (
        shell_window, "shell-view-created::calendar",
        G_CALLBACK (cal_shell_sidebar_restore_state_cb),
        shell_sidebar);
}

static guint32
cal_shell_sidebar_check_state (EShellSidebar *shell_sidebar)
{
    ECalShellSidebar *cal_shell_sidebar;
    ESourceSelector *selector;
    ESource *source;
    gboolean can_delete = FALSE;
    gboolean is_system = FALSE;
    gboolean refresh_supported = FALSE;
    guint32 state = 0;

    cal_shell_sidebar = E_CAL_SHELL_SIDEBAR (shell_sidebar);
    selector = e_cal_shell_sidebar_get_selector (cal_shell_sidebar);
    source = e_source_selector_peek_primary_selection (selector);

    if (source != NULL) {
        ECal *client;
        const gchar *uri;
        const gchar *delete;

        uri = e_source_peek_relative_uri (source);
        is_system = (uri == NULL || strcmp (uri, "system") == 0);

        can_delete = !is_system;
        delete = e_source_get_property (source, "delete");
        can_delete &= (delete == NULL || strcmp (delete, "no") != 0);

        client = g_hash_table_lookup (
            cal_shell_sidebar->priv->client_table,
            e_source_peek_uid (source));
        refresh_supported =
            client && e_cal_get_refresh_supported (client);
    }

    if (source != NULL)
        state |= E_CAL_SHELL_SIDEBAR_HAS_PRIMARY_SOURCE;
    if (can_delete)
        state |= E_CAL_SHELL_SIDEBAR_CAN_DELETE_PRIMARY_SOURCE;
    if (is_system)
        state |= E_CAL_SHELL_SIDEBAR_PRIMARY_SOURCE_IS_SYSTEM;
    if (refresh_supported)
        state |= E_CAL_SHELL_SIDEBAR_SOURCE_SUPPORTS_REFRESH;

    return state;
}

static void
cal_shell_sidebar_client_removed (ECalShellSidebar *cal_shell_sidebar,
                                  ECal *client)
{
    ESourceSelector *selector;
    GHashTable *client_table;
    ESource *source;
    const gchar *uid;

    client_table = cal_shell_sidebar->priv->client_table;
    selector = e_cal_shell_sidebar_get_selector (cal_shell_sidebar);

    g_signal_handlers_disconnect_matched (
        client, G_SIGNAL_MATCH_DATA, 0, 0,
        NULL, NULL, cal_shell_sidebar);

    source = e_cal_get_source (client);
    uid = e_source_peek_uid (source);

    g_hash_table_remove (client_table, uid);
    e_source_selector_unselect_source (selector, source);

    cal_shell_sidebar_emit_status_message (cal_shell_sidebar, NULL);
}

static void
cal_shell_sidebar_class_init (ECalShellSidebarClass *class)
{
    GObjectClass *object_class;
    EShellSidebarClass *shell_sidebar_class;

    parent_class = g_type_class_peek_parent (class);
    g_type_class_add_private (class, sizeof (ECalShellSidebarPrivate));

    object_class = G_OBJECT_CLASS (class);
    object_class->get_property = cal_shell_sidebar_get_property;
    object_class->dispose = cal_shell_sidebar_dispose;
    object_class->finalize = cal_shell_sidebar_finalize;
    object_class->constructed = cal_shell_sidebar_constructed;

    shell_sidebar_class = E_SHELL_SIDEBAR_CLASS (class);
    shell_sidebar_class->check_state = cal_shell_sidebar_check_state;

    class->client_removed = cal_shell_sidebar_client_removed;

    g_object_class_install_property (
        object_class,
        PROP_DATE_NAVIGATOR,
        g_param_spec_object (
            "date-navigator",
            "Date Navigator Widget",
            "This widget displays a miniature calendar",
            E_TYPE_CALENDAR,
            G_PARAM_READABLE));

    g_object_class_install_property (
        object_class,
        PROP_DEFAULT_CLIENT,
        g_param_spec_object (
            "default-client",
            "Default Calendar Client",
            "Default client for calendar operations",
            E_TYPE_CAL,
            G_PARAM_READABLE));

    g_object_class_install_property (
        object_class,
        PROP_SELECTOR,
        g_param_spec_object (
            "selector",
            "Source Selector Widget",
            "This widget displays groups of calendars",
            E_TYPE_SOURCE_SELECTOR,
            G_PARAM_READABLE));

    signals[CLIENT_ADDED] = g_signal_new (
        "client-added",
        G_OBJECT_CLASS_TYPE (object_class),
        G_SIGNAL_RUN_LAST,
        G_STRUCT_OFFSET (ECalShellSidebarClass, client_added),
        NULL, NULL,
        g_cclosure_marshal_VOID__OBJECT,
        G_TYPE_NONE, 1,
        E_TYPE_CAL);

    signals[CLIENT_REMOVED] = g_signal_new (
        "client-removed",
        G_OBJECT_CLASS_TYPE (object_class),
        G_SIGNAL_RUN_LAST,
        G_STRUCT_OFFSET (ECalShellSidebarClass, client_removed),
        NULL, NULL,
        g_cclosure_marshal_VOID__OBJECT,
        G_TYPE_NONE, 1,
        E_TYPE_CAL);

    signals[STATUS_MESSAGE] = g_signal_new (
        "status-message",
        G_OBJECT_CLASS_TYPE (object_class),
        G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
        G_STRUCT_OFFSET (ECalShellSidebarClass, status_message),
        NULL, NULL,
        g_cclosure_marshal_VOID__STRING,
        G_TYPE_NONE, 1,
        G_TYPE_STRING);
}

static void
cal_shell_sidebar_init (ECalShellSidebar *cal_shell_sidebar)
{
    GHashTable *client_table;

    client_table = g_hash_table_new_full (
        g_str_hash, g_str_equal,
        (GDestroyNotify) g_free,
        (GDestroyNotify) g_object_unref);

    cal_shell_sidebar->priv =
        E_CAL_SHELL_SIDEBAR_GET_PRIVATE (cal_shell_sidebar);

    cal_shell_sidebar->priv->client_table = client_table;

    /* Postpone widget construction until we have a shell view. */
}

GType
e_cal_shell_sidebar_get_type (void)
{
    return cal_shell_sidebar_type;
}

void
e_cal_shell_sidebar_register_type (GTypeModule *type_module)
{
    static const GTypeInfo type_info = {
        sizeof (ECalShellSidebarClass),
        (GBaseInitFunc) NULL,
        (GBaseFinalizeFunc) NULL,
        (GClassInitFunc) cal_shell_sidebar_class_init,
        (GClassFinalizeFunc) NULL,
        NULL,  /* class_data */
        sizeof (ECalShellSidebar),
        0,     /* n_preallocs */
        (GInstanceInitFunc) cal_shell_sidebar_init,
        NULL   /* value_table */
    };

    cal_shell_sidebar_type = g_type_module_register_type (
        type_module, E_TYPE_SHELL_SIDEBAR,
        "ECalShellSidebar", &type_info, 0);
}

GtkWidget *
e_cal_shell_sidebar_new (EShellView *shell_view)
{
    g_return_val_if_fail (E_IS_SHELL_VIEW (shell_view), NULL);

    return g_object_new (
        E_TYPE_CAL_SHELL_SIDEBAR,
        "shell-view", shell_view, NULL);
}

GList *
e_cal_shell_sidebar_get_clients (ECalShellSidebar *cal_shell_sidebar)
{
    GHashTable *client_table;

    g_return_val_if_fail (
        E_IS_CAL_SHELL_SIDEBAR (cal_shell_sidebar), NULL);

    client_table = cal_shell_sidebar->priv->client_table;

    return g_hash_table_get_values (client_table);
}

ECalendar *
e_cal_shell_sidebar_get_date_navigator (ECalShellSidebar *cal_shell_sidebar)
{
    g_return_val_if_fail (
        E_IS_CAL_SHELL_SIDEBAR (cal_shell_sidebar), NULL);

    return E_CALENDAR (cal_shell_sidebar->priv->date_navigator);
}

ECal *
e_cal_shell_sidebar_get_default_client (ECalShellSidebar *cal_shell_sidebar)
{
    g_return_val_if_fail (
        E_IS_CAL_SHELL_SIDEBAR (cal_shell_sidebar), NULL);

    return cal_shell_sidebar->priv->default_client;
}

ESourceSelector *
e_cal_shell_sidebar_get_selector (ECalShellSidebar *cal_shell_sidebar)
{
    g_return_val_if_fail (
        E_IS_CAL_SHELL_SIDEBAR (cal_shell_sidebar), NULL);

    return E_SOURCE_SELECTOR (cal_shell_sidebar->priv->selector);
}

void
e_cal_shell_sidebar_add_source (ECalShellSidebar *cal_shell_sidebar,
                                ESource *source)
{
    EShellView *shell_view;
    EShellContent *shell_content;
    EShellSidebar *shell_sidebar;
    ECalShellContent *cal_shell_content;
    ECalSourceType source_type;
    ESourceSelector *selector;
    GHashTable *client_table;
    ECalModel *model;
    ECal *default_client;
    ECal *client;
    icaltimezone *timezone;
    const gchar *uid;
    const gchar *uri;
    gchar *message;

    g_return_if_fail (E_IS_CAL_SHELL_SIDEBAR (cal_shell_sidebar));
    g_return_if_fail (E_IS_SOURCE (source));

    source_type = E_CAL_SOURCE_TYPE_EVENT;
    client_table = cal_shell_sidebar->priv->client_table;
    default_client = cal_shell_sidebar->priv->default_client;
    selector = e_cal_shell_sidebar_get_selector (cal_shell_sidebar);

    uid = e_source_peek_uid (source);
    client = g_hash_table_lookup (client_table, uid);

    if (client != NULL)
        return;

    if (default_client != NULL) {
        ESource *default_source;
        const gchar *default_uid;

        default_source = e_cal_get_source (default_client);
        default_uid = e_source_peek_uid (default_source);

        if (g_strcmp0 (uid, default_uid) == 0)
            client = g_object_ref (default_client);
    }

    if (client == NULL)
        client = e_auth_new_cal_from_source (source, source_type);

    g_return_if_fail (client != NULL);

    g_signal_connect_swapped (
        client, "backend-died",
        G_CALLBACK (cal_shell_sidebar_backend_died_cb),
        cal_shell_sidebar);

    g_signal_connect_swapped (
        client, "backend-error",
        G_CALLBACK (cal_shell_sidebar_backend_error_cb),
        cal_shell_sidebar);

    g_hash_table_insert (client_table, g_strdup (uid), client);
    e_source_selector_select_source (selector, source);

    uri = e_cal_get_uri (client);
    /* Translators: The string field is a URI. */
    message = g_strdup_printf (_("Opening calendar at %s"), uri);
    cal_shell_sidebar_emit_status_message (cal_shell_sidebar, message);
    g_free (message);

    g_signal_connect_swapped (
        client, "cal-opened-ex",
        G_CALLBACK (cal_shell_sidebar_client_opened_cb),
        cal_shell_sidebar);

    /* FIXME Sidebar should not be accessing the EShellContent.
     *       This probably needs to be moved to ECalShellView. */
    shell_sidebar = E_SHELL_SIDEBAR (cal_shell_sidebar);
    shell_view = e_shell_sidebar_get_shell_view (shell_sidebar);
    shell_content = e_shell_view_get_shell_content (shell_view);

    cal_shell_content = E_CAL_SHELL_CONTENT (shell_content);
    model = e_cal_shell_content_get_model (cal_shell_content);
    timezone = e_cal_model_get_timezone (model);

    e_cal_set_default_timezone (client, timezone, NULL);
    e_cal_open_async (client, FALSE);
}

void
e_cal_shell_sidebar_remove_source (ECalShellSidebar *cal_shell_sidebar,
                                   ESource *source)
{
    GHashTable *client_table;
    ECal *client;
    const gchar *uid;

    g_return_if_fail (E_IS_CAL_SHELL_SIDEBAR (cal_shell_sidebar));
    g_return_if_fail (E_IS_SOURCE (source));

    client_table = cal_shell_sidebar->priv->client_table;

    uid = e_source_peek_uid (source);
    client = g_hash_table_lookup (client_table, uid);

    if (client == NULL)
        return;

    cal_shell_sidebar_emit_client_removed (cal_shell_sidebar, client);
}