/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*-
*
* Sushma Rai <rsushma@novell.com>
* Copyright (C) 2004 Novell, Inc.
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use, copy,
* modify, merge, publish, distribute, sublicense, and/or sell copies
* of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
#include <string.h>
#include <libgnome/gnome-i18n.h>
#include <glade/glade.h>
#include <gtk/gtk.h>
#include <gtk/gtkdialog.h>
#include <gconf/gconf-client.h>
#include <libedataserver/e-source.h>
#include "mail/em-account-editor.h"
#include "mail/em-config.h"
#include "e-util/e-account.h"
#include "e-util/e-account-list.h"
int e_plugin_lib_enable (EPluginLib *ep, int enable);
void exchange_account_setup_commit (EPlugin *epl, EConfigHookItemFactoryData *data);
GtkWidget* org_gnome_exchange_account_setup (EPlugin *epl, EConfigHookItemFactoryData *data);
GtkWidget *org_gnome_exchange_set_url(EPlugin *epl, EConfigHookItemFactoryData *data);
#if 0
int
e_plugin_lib_enable (EPluginLib *ep, int enable)
{
if (enable) {
}
return 0;
}
#endif
void
exchange_account_setup_commit (EPlugin *epl, EConfigHookItemFactoryData *data)
{
return;
}
static void
oof_get()
{
/* Read the oof state and oof message */
}
static void
oof_set ()
{
/* store the oof state and message */
}
static GtkWidget *
create_page ()
{
GtkWidget *oof_page;
GtkWidget *oof_table;
GtkWidget *oof_description, *label_status, *label_empty;
GtkWidget *radiobutton_inoff, *radiobutton_oof;
GtkWidget *vbox_oof, *vbox_oof_message;
GtkWidget *oof_frame;
GtkWidget *scrolledwindow_oof;
GtkWidget *textview_oof;
oof_page = gtk_vbox_new (FALSE, 6);
gtk_container_set_border_width (GTK_CONTAINER (oof_page), 12);
/* Description section */
oof_description = gtk_label_new (_("The message specified below will be automatically sent to \neach person who sends mail to you while you are out of the office."));
gtk_label_set_justify (GTK_LABEL (oof_description), GTK_JUSTIFY_LEFT);
gtk_label_set_line_wrap (GTK_LABEL (oof_description), TRUE);
gtk_misc_set_alignment (GTK_MISC (oof_description), 0.5, 0.5);
gtk_misc_set_padding (GTK_MISC (oof_description), 0, 18);
gtk_box_pack_start (GTK_BOX (oof_page), oof_description, FALSE, TRUE, 0);
/* Table with out of office radio buttons */
oof_table = gtk_table_new (2, 2, FALSE);
gtk_table_set_col_spacings (GTK_TABLE (oof_table), 6);
gtk_table_set_row_spacings (GTK_TABLE (oof_table), 6);
gtk_box_pack_start (GTK_BOX (oof_page), oof_table, FALSE, FALSE, 0);
label_status = gtk_label_new (_("<b>Status:</b>"));
gtk_label_set_justify (GTK_LABEL (label_status), GTK_JUSTIFY_CENTER);
gtk_misc_set_alignment (GTK_MISC (label_status), 0, 0.5);
gtk_misc_set_padding (GTK_MISC (label_status), 0, 0);
gtk_label_set_use_markup (GTK_LABEL (label_status), TRUE);
gtk_table_attach (GTK_TABLE (oof_table), label_status, 0, 1, 0, 1,
GTK_FILL, GTK_FILL, 0, 0);
radiobutton_inoff = gtk_radio_button_new_with_label (NULL,
_("I am in the office"));
gtk_table_attach (GTK_TABLE (oof_table), radiobutton_inoff, 1, 2, 0, 1,
GTK_FILL, GTK_FILL, 0, 0);
label_empty = gtk_label_new (_(""));
gtk_label_set_justify (GTK_LABEL (label_empty), GTK_JUSTIFY_LEFT);
gtk_misc_set_alignment (GTK_MISC (label_empty), 0, 0.5);
gtk_misc_set_padding (GTK_MISC (label_empty), 0, 0);
gtk_label_set_use_markup (GTK_LABEL (label_empty), FALSE);
gtk_table_attach (GTK_TABLE (oof_table), label_empty, 0, 1, 1, 2,
GTK_FILL, GTK_FILL, 0, 0);
radiobutton_oof = gtk_radio_button_new_with_label_from_widget (
GTK_RADIO_BUTTON (radiobutton_inoff),
_("I am out of the office"));
gtk_table_attach (GTK_TABLE (oof_table), radiobutton_oof, 1, 2, 1, 2,
GTK_FILL, GTK_FILL, 0, 0);
/* frame containg oof message text box */
vbox_oof = gtk_vbox_new (FALSE, 6);
gtk_box_pack_start (GTK_BOX (oof_page), vbox_oof, FALSE, FALSE, 0);
oof_frame = gtk_frame_new ("");
gtk_container_set_border_width (GTK_CONTAINER (oof_frame), 1);
gtk_frame_set_shadow_type (GTK_FRAME (oof_frame), GTK_SHADOW_ETCHED_IN);
gtk_frame_set_label (GTK_FRAME (oof_frame), _("Out of office Message:"));
gtk_box_pack_start (GTK_BOX (vbox_oof), oof_frame, FALSE, FALSE, 0);
vbox_oof_message = gtk_vbox_new (FALSE, 6);
gtk_container_add (GTK_CONTAINER (oof_frame), vbox_oof_message);
scrolledwindow_oof = gtk_scrolled_window_new(NULL, NULL);
gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolledwindow_oof),
GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC);
gtk_scrolled_window_set_shadow_type (
GTK_SCROLLED_WINDOW (scrolledwindow_oof),
GTK_SHADOW_IN);
gtk_box_pack_start (GTK_BOX (vbox_oof_message),
scrolledwindow_oof, TRUE, TRUE, 0);
textview_oof = gtk_text_view_new();
gtk_text_view_set_justification (GTK_TEXT_VIEW (textview_oof),
GTK_JUSTIFY_LEFT);
gtk_text_view_set_wrap_mode (GTK_TEXT_VIEW (textview_oof),
GTK_WRAP_WORD);
gtk_text_view_set_editable (GTK_TEXT_VIEW (textview_oof), TRUE);
gtk_container_add (GTK_CONTAINER (scrolledwindow_oof), textview_oof);
gtk_widget_show_all (scrolledwindow_oof);
gtk_widget_show_all (oof_page);
return oof_page;
}
static GtkWidget *
construct_oof_editor (EConfigHookItemFactoryData *data)
{
/* add oof page to editor */
GtkWidget *oof_page;
GladeXML *parent_xml;
GtkNotebook *editor_notebook;
GtkWidget *page_label;
parent_xml = glade_xml_new (EVOLUTION_GLADEDIR "/mail-config.glade",
"account_editor_notebook",
NULL);
editor_notebook = (GtkNotebook *) glade_xml_get_widget (parent_xml,
"account_editor_notebook");
if (!editor_notebook)
return NULL;
oof_page = create_page ();
if (!oof_page)
return NULL;
page_label = gtk_label_new (_("Exchange Settings"));
gtk_notebook_insert_page (GTK_NOTEBOOK (data->parent),
oof_page, page_label, 4);
return oof_page;
}
GtkWidget *
org_gnome_exchange_account_setup (EPlugin *epl, EConfigHookItemFactoryData *data)
{
EMConfigTargetAccount *target_account;
GtkWidget *oof_page = NULL;
const char *account_url=NULL, *source_url=NULL, *temp_url=NULL;
char *exchange_url = NULL;
GConfClient *client;
EAccountList *account_list;
const char *uid;
EAccount *gconf_account;
target_account = (EMConfigTargetAccount *)data->config->target;
client = gconf_client_get_default ();
account_list = e_account_list_new (client);
if (account_list) {
uid = g_strdup (target_account->account->uid);
if (uid) {
gconf_account = e_account_list_find (account_list,
E_ACCOUNT_FIND_UID,
uid);
if (gconf_account) {
temp_url = e_account_get_string (gconf_account,
E_ACCOUNT_SOURCE_URL);
if (temp_url)
e_account_set_string (
target_account->account,
E_ACCOUNT_SOURCE_URL,
temp_url);
temp_url = NULL;
temp_url = e_account_get_string (
gconf_account,
E_ACCOUNT_TRANSPORT_URL);
if (temp_url)
e_account_set_string (
target_account->account,
E_ACCOUNT_TRANSPORT_URL,
temp_url);
}
g_free (uid);
}
g_object_unref (account_list);
}
else {
/* FIXME */
}
g_object_unref (client);
source_url = e_account_get_string (target_account->account,
E_ACCOUNT_SOURCE_URL);
account_url = g_strdup (source_url);
exchange_url = g_strrstr (account_url, "exchange");
g_free (account_url);
if (exchange_url) {
if (data->old)
return data->old;
oof_page = construct_oof_editor (data);
}
return oof_page;
}
static void
owa_editor_entry_changed (GtkWidget *entry, void *data)
{
GtkWidget *button = data;
char *owa_entry_text = NULL;
/* FIXME: return owa_entry_text instead of making it global */
owa_entry_text = gtk_entry_get_text (GTK_ENTRY (entry));
if (owa_entry_text)
gtk_widget_set_sensitive (button, TRUE);
}
static GtkWidget *
add_owa_entry_to_editor (GtkWidget *parent, EConfig *config,
EMConfigTargetAccount *target_account)
{
GtkWidget *section, *owa_entry;
GtkWidget *hbox, *label;
section = gtk_vbox_new (FALSE, 0);
gtk_widget_show (section);
gtk_box_pack_start (GTK_BOX (parent), section, FALSE, FALSE, 0);
hbox = gtk_hbox_new (FALSE, 6);
gtk_widget_show(hbox);
gtk_box_pack_start (GTK_BOX (section), hbox, FALSE, FALSE, 0);
label = gtk_label_new_with_mnemonic(_("_Url:"));
gtk_widget_show (label);
owa_entry = gtk_entry_new ();
gtk_widget_show (owa_entry);
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
gtk_box_pack_start (GTK_BOX (hbox), owa_entry, TRUE, TRUE, 0);
g_signal_connect (owa_entry, "changed",
G_CALLBACK(owa_editor_entry_changed), NULL);
/* FIXME - gconf handling*/
return section; /* FIXME: return entry */
#if 0
GtkWidget *table;
GladeXML *gui;
GValue rows = { 0, };
GValue cols = { 0, };
gint n_rows, n_cols;
gui = glade_xml_new (EVOLUTION_GLADEDIR "/mail-config.glade",
"table4", NULL);
table = glade_xml_get_widget (gui, "table4");
g_value_init (&rows, G_TYPE_INT);
g_value_init (&cols, G_TYPE_INT);
g_object_get_property (G_OBJECT (table), "n-rows", &rows);
g_object_get_property (G_OBJECT (table), "n-columns", &cols);
n_rows = g_value_get_int (&rows);
n_cols = g_value_get_int (&cols);
printf ("NO OF COLUMES = %d ROWS = %d \n", n_cols, n_rows);
if (owa_entry_text)
gtk_entry_set_text (owa_entry, owa_entry_text);
gtk_table_attach (GTK_TABLE (table), label, 0, n_cols-1, n_rows, n_rows+1, GTK_FILL, GTK_FILL, 0, 0);
gtk_table_attach (GTK_TABLE (table), owa_entry, n_cols-1, n_cols, n_rows, n_rows+1, GTK_FILL, GTK_FILL, 0, 0);
gtk_widget_show (table);
return table;
#endif
/* FIXME: Proper placing of the widget */
}
GtkWidget *
org_gnome_exchange_set_url (EPlugin *epl, EConfigHookItemFactoryData *data)
{
EMConfigTargetAccount *target_account;
EConfig *config;
char *account_url=NULL, *exchange_url = NULL;
const char *source_url, *temp_url;
GtkWidget *owa_entry = NULL, *parent;
GConfClient *client;
EAccountList *account_list;
const char *uid;
EAccount *gconf_account;
config = data->config;
target_account = (EMConfigTargetAccount *)data->config->target;
client = gconf_client_get_default ();
account_list = e_account_list_new (client);
if (account_list) {
uid = g_strdup (target_account->account->uid);
if (uid) {
gconf_account = e_account_list_find (account_list,
E_ACCOUNT_FIND_UID,
uid);
if (gconf_account) {
temp_url = e_account_get_string (
gconf_account,
E_ACCOUNT_SOURCE_URL);
e_account_set_string (target_account->account,
E_ACCOUNT_SOURCE_URL,
temp_url);
temp_url = NULL;
temp_url = e_account_get_string (gconf_account,
E_ACCOUNT_TRANSPORT_URL);
e_account_set_string (target_account->account,
E_ACCOUNT_TRANSPORT_URL,
temp_url);
}
g_free (uid);
}
g_object_unref (account_list);
}
g_object_unref (client);
source_url = e_account_get_string (target_account->account, E_ACCOUNT_SOURCE_URL);
account_url = g_strdup (source_url);
exchange_url = g_strrstr (account_url, "exchange");
g_free (account_url);
if (exchange_url) {
if (data->old)
return data->old;
/*
parent = gtk_widget_get_toplevel (GTK_WIDGET (data->parent));
if (!GTK_WIDGET_TOPLEVEL (parent))
parent = NULL;
*/
parent = data->parent;
owa_entry = add_owa_entry_to_editor(parent, config, target_account);
gtk_box_pack_start (GTK_BOX (parent), owa_entry, FALSE, FALSE, 0);
gtk_widget_show (parent);
}
return owa_entry;
}