Add new-addressbook.[ch]. (glade_DATA): Add new-addressbook.glade.
2003-11-08 Hans Petter Jansson <hpj@ximian.com> * gui/component/Makefile.am (libevolution_addressbook_la_SOURCES): Add new-addressbook.[ch]. (glade_DATA): Add new-addressbook.glade. * gui/component/addressbook-component.c (add_popup_menu_item): Implement. (new_addressbook_cb): Implement. (delete_addressbook_cb): Implement (skeletal). (fill_popup_menu_callback): Implement. (impl_createControls): Hook up fill_popup_menu_callback(). * gui/component/new-addressbook.[ch]: New files. * gui/component/new-addressbook.glade: New file. svn path=/trunk/; revision=23238
This commit is contained in:
parent
77fc7820e6
commit
55e9c607f0
@ -1,3 +1,20 @@
|
||||
2003-11-08 Hans Petter Jansson <hpj@ximian.com>
|
||||
|
||||
* gui/component/Makefile.am (libevolution_addressbook_la_SOURCES):
|
||||
Add new-addressbook.[ch].
|
||||
(glade_DATA): Add new-addressbook.glade.
|
||||
|
||||
* gui/component/addressbook-component.c (add_popup_menu_item):
|
||||
Implement.
|
||||
(new_addressbook_cb): Implement.
|
||||
(delete_addressbook_cb): Implement (skeletal).
|
||||
(fill_popup_menu_callback): Implement.
|
||||
(impl_createControls): Hook up fill_popup_menu_callback().
|
||||
|
||||
* gui/component/new-addressbook.[ch]: New files.
|
||||
|
||||
* gui/component/new-addressbook.glade: New file.
|
||||
|
||||
2003-11-07 Dan Winship <danw@ximian.com>
|
||||
|
||||
* util/Makefile.am (INCLUDES): Remove some includes of directories
|
||||
|
@ -37,6 +37,8 @@ libevolution_addressbook_la_SOURCES = \
|
||||
addressbook-storage.h \
|
||||
addressbook.c \
|
||||
addressbook.h \
|
||||
new-addressbook.c \
|
||||
new-addressbook.h \
|
||||
component-factory.c
|
||||
|
||||
# $(top_builddir)/addressbook/printing/libecontactprint.la
|
||||
@ -82,7 +84,9 @@ server_DATA = $(server_in_files:.server.in.in=_$(BASE_VERSION).server)
|
||||
@EVO_NAME_SERVER_RULE@
|
||||
@INTLTOOL_SERVER_RULE@
|
||||
|
||||
glade_DATA = ldap-config.glade
|
||||
glade_DATA = \
|
||||
ldap-config.glade \
|
||||
new-addressbook.glade
|
||||
|
||||
BUILT_SOURCES = $(server_DATA)
|
||||
CLEANFILES = $(BUILT_SOURCES)
|
||||
|
@ -28,10 +28,17 @@
|
||||
#include "addressbook-component.h"
|
||||
|
||||
#include "addressbook.h"
|
||||
#include "new-addressbook.h"
|
||||
|
||||
#include "widgets/misc/e-source-selector.h"
|
||||
|
||||
#include <bonobo/bonobo-i18n.h>
|
||||
#include <gtk/gtkscrolledwindow.h>
|
||||
#include <gtk/gtkmenu.h>
|
||||
#include <gtk/gtkimage.h>
|
||||
#include <gtk/gtkimagemenuitem.h>
|
||||
#include <gtk/gtkmessagedialog.h>
|
||||
#include <gtk/gtkstock.h>
|
||||
#include <gconf/gconf-client.h>
|
||||
|
||||
|
||||
@ -59,6 +66,45 @@ load_uri_for_selection (ESourceSelector *selector,
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
add_popup_menu_item (GtkMenu *menu, const char *label, const char *pixmap,
|
||||
GCallback callback, gpointer user_data)
|
||||
{
|
||||
GtkWidget *item, *image;
|
||||
|
||||
if (pixmap) {
|
||||
item = gtk_image_menu_item_new_with_label (label);
|
||||
|
||||
/* load the image */
|
||||
image = gtk_image_new_from_file (pixmap);
|
||||
if (!image)
|
||||
image = gtk_image_new_from_stock (pixmap, GTK_ICON_SIZE_MENU);
|
||||
|
||||
if (image)
|
||||
gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (item), image);
|
||||
} else {
|
||||
item = gtk_menu_item_new_with_label (label);
|
||||
}
|
||||
|
||||
if (callback)
|
||||
g_signal_connect (G_OBJECT (item), "activate", callback, user_data);
|
||||
|
||||
gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
|
||||
gtk_widget_show (item);
|
||||
}
|
||||
|
||||
/* Folder popup menu callbacks */
|
||||
|
||||
static void
|
||||
new_addressbook_cb (GtkWidget *widget, ESourceSelector *selector)
|
||||
{
|
||||
new_addressbook_dialog (GTK_WINDOW (gtk_widget_get_toplevel (widget)));
|
||||
}
|
||||
|
||||
static void
|
||||
delete_addressbook_cb (GtkWidget *widget, AddressbookComponent *comp)
|
||||
{
|
||||
}
|
||||
|
||||
/* Callbacks. */
|
||||
|
||||
@ -69,6 +115,13 @@ primary_source_selection_changed_callback (ESourceSelector *selector,
|
||||
load_uri_for_selection (selector, view_control);
|
||||
}
|
||||
|
||||
static void
|
||||
fill_popup_menu_callback (ESourceSelector *selector, GtkMenu *menu, AddressbookComponent *comp)
|
||||
{
|
||||
add_popup_menu_item (menu, _("New Addressbook"), NULL, G_CALLBACK (new_addressbook_cb), comp);
|
||||
add_popup_menu_item (menu, _("Delete"), GTK_STOCK_DELETE, G_CALLBACK (delete_addressbook_cb), comp);
|
||||
add_popup_menu_item (menu, _("Rename"), NULL, NULL, NULL);
|
||||
}
|
||||
|
||||
/* Evolution::Component CORBA methods. */
|
||||
|
||||
@ -101,6 +154,9 @@ impl_createControls (PortableServer_Servant servant,
|
||||
g_signal_connect_object (selector, "primary_selection_changed",
|
||||
G_CALLBACK (primary_source_selection_changed_callback),
|
||||
G_OBJECT (view_control), 0);
|
||||
g_signal_connect_object (selector, "fill_popup_menu",
|
||||
G_CALLBACK (fill_popup_menu_callback),
|
||||
G_OBJECT (addressbook_component), 0);
|
||||
load_uri_for_selection (E_SOURCE_SELECTOR (selector), view_control);
|
||||
|
||||
*corba_sidebar_control = CORBA_Object_duplicate (BONOBO_OBJREF (sidebar_control), ev);
|
||||
|
158
addressbook/gui/component/new-addressbook.c
Normal file
158
addressbook/gui/component/new-addressbook.c
Normal file
@ -0,0 +1,158 @@
|
||||
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
|
||||
|
||||
/* new-addressbook.c - Create a new addressbook
|
||||
*
|
||||
* Copyright (C) 2003 Novell, Inc.
|
||||
*
|
||||
* Author: Hans Petter Jansson <hpj@ximian.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of version 2 of the GNU General Public
|
||||
* License as published by the Free Software Foundation.
|
||||
*
|
||||
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifdef HAVE_CONFIG_H
|
||||
#include <config.h>
|
||||
#endif
|
||||
|
||||
#include <string.h>
|
||||
#include <bonobo/bonobo-i18n.h>
|
||||
#include <gtk/gtkdialog.h>
|
||||
#include <gtk/gtkentry.h>
|
||||
#include <gtk/gtkmenu.h>
|
||||
#include <gtk/gtkmenuitem.h>
|
||||
#include <gtk/gtkmessagedialog.h>
|
||||
#include <gtk/gtkoptionmenu.h>
|
||||
#include <glade/glade.h>
|
||||
#include <e-util/e-dialog-utils.h>
|
||||
#include <e-util/e-source-list.h>
|
||||
#include <e-util/e-url.h>
|
||||
#include "new-addressbook.h"
|
||||
|
||||
static gboolean
|
||||
create_new_source_with_group (GtkWindow *parent,
|
||||
ESourceGroup *group,
|
||||
const char *source_name,
|
||||
const char *source_location)
|
||||
{
|
||||
ESource *source;
|
||||
char *new_dir;
|
||||
|
||||
if (e_source_group_peek_source_by_name (group, source_name)) {
|
||||
e_notice (parent, GTK_MESSAGE_ERROR,
|
||||
_("Source with name '%s' already exists in the selected group"),
|
||||
source_name);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
/* Local source */
|
||||
|
||||
new_dir = g_build_filename (e_source_group_peek_base_uri (group),
|
||||
source_name, NULL);
|
||||
if (e_mkdir_hier (new_dir, 0700)) {
|
||||
g_free (new_dir);
|
||||
e_notice (parent, GTK_MESSAGE_ERROR,
|
||||
_("Could not create directory for new calendar"));
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
source = e_source_new (source_name, source_name);
|
||||
g_free (new_dir);
|
||||
|
||||
e_source_group_add_source (group, source, -1);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
/**
|
||||
* new_calendar_dialog
|
||||
*
|
||||
* Displays a dialog that allows the user to create a new calendar.
|
||||
*/
|
||||
gboolean
|
||||
new_addressbook_dialog (GtkWindow *parent)
|
||||
{
|
||||
GtkWidget *dialog, *ab_group, *ab_name, *ab_location;
|
||||
GladeXML *xml;
|
||||
ESourceList *source_list;
|
||||
GConfClient *gconf_client;
|
||||
GSList *groups, *sl;
|
||||
gboolean result = FALSE, retry = TRUE;
|
||||
|
||||
/* load the Glade file */
|
||||
xml = glade_xml_new (EVOLUTION_GLADEDIR "/new-addressbook.glade", "new-addressbook-dialog", NULL);
|
||||
if (!xml) {
|
||||
g_warning (G_STRLOC ": cannot load Glade file");
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
dialog = glade_xml_get_widget (xml, "new-addressbook-dialog");
|
||||
ab_group = glade_xml_get_widget (xml, "addressbook-group");
|
||||
ab_name = glade_xml_get_widget (xml, "addressbook-name");
|
||||
|
||||
/* set up widgets */
|
||||
gconf_client = gconf_client_get_default ();
|
||||
source_list = e_source_list_new_for_gconf (gconf_client, "/apps/evolution/addressbook/sources");
|
||||
|
||||
groups = e_source_list_peek_groups (source_list);
|
||||
for (sl = groups; sl != NULL; sl = sl->next) {
|
||||
GtkWidget *menu_item, *menu;
|
||||
ESourceGroup *group = sl->data;
|
||||
|
||||
menu = gtk_option_menu_get_menu (GTK_OPTION_MENU (ab_group));
|
||||
if (!GTK_IS_MENU (menu)) {
|
||||
menu = gtk_menu_new ();
|
||||
gtk_option_menu_set_menu (GTK_OPTION_MENU (ab_group), menu);
|
||||
gtk_widget_show (menu);
|
||||
}
|
||||
|
||||
menu_item = gtk_menu_item_new_with_label (e_source_group_peek_name (group));
|
||||
gtk_widget_show (menu_item);
|
||||
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_item);
|
||||
}
|
||||
|
||||
if (groups)
|
||||
gtk_option_menu_set_history (GTK_OPTION_MENU (ab_group), 0);
|
||||
|
||||
/* run the dialog */
|
||||
do {
|
||||
if (gtk_dialog_run (GTK_DIALOG (dialog)) == GTK_RESPONSE_OK) {
|
||||
const char *name;
|
||||
const char *location;
|
||||
|
||||
name = gtk_entry_get_text (GTK_ENTRY (ab_name));
|
||||
location = gtk_entry_get_text (GTK_ENTRY (ab_location));
|
||||
sl = g_slist_nth (groups, gtk_option_menu_get_history (GTK_OPTION_MENU (ab_group)));
|
||||
if (sl) {
|
||||
if (create_new_source_with_group (GTK_WINDOW (dialog),
|
||||
sl->data,
|
||||
name,
|
||||
location))
|
||||
retry = FALSE;
|
||||
} else {
|
||||
e_notice (dialog, GTK_MESSAGE_ERROR,
|
||||
_("A group must be selected"));
|
||||
continue;
|
||||
}
|
||||
} else
|
||||
retry = FALSE; /* user pressed Cancel */
|
||||
} while (retry);
|
||||
|
||||
/* free memory */
|
||||
g_object_unref (gconf_client);
|
||||
g_object_unref (source_list);
|
||||
gtk_widget_destroy (dialog);
|
||||
|
||||
/* free memory */
|
||||
g_object_unref (xml);
|
||||
|
||||
return result;
|
||||
}
|
192
addressbook/gui/component/new-addressbook.glade
Normal file
192
addressbook/gui/component/new-addressbook.glade
Normal file
@ -0,0 +1,192 @@
|
||||
<?xml version="1.0" standalone="no"?> <!--*- mode: xml -*-->
|
||||
<!DOCTYPE glade-interface SYSTEM "http://glade.gnome.org/glade-2.0.dtd">
|
||||
|
||||
<glade-interface>
|
||||
|
||||
<widget class="GtkDialog" id="new-addressbook-dialog">
|
||||
<property name="border_width">12</property>
|
||||
<property name="visible">True</property>
|
||||
<property name="title" translatable="yes">Add New Addressbook</property>
|
||||
<property name="type">GTK_WINDOW_TOPLEVEL</property>
|
||||
<property name="window_position">GTK_WIN_POS_CENTER</property>
|
||||
<property name="modal">False</property>
|
||||
<property name="resizable">False</property>
|
||||
<property name="destroy_with_parent">False</property>
|
||||
<property name="has_separator">True</property>
|
||||
|
||||
<child internal-child="vbox">
|
||||
<widget class="GtkVBox" id="dialog-vbox1">
|
||||
<property name="visible">True</property>
|
||||
<property name="homogeneous">False</property>
|
||||
<property name="spacing">0</property>
|
||||
|
||||
<child internal-child="action_area">
|
||||
<widget class="GtkHButtonBox" id="dialog-action_area1">
|
||||
<property name="visible">True</property>
|
||||
<property name="layout_style">GTK_BUTTONBOX_END</property>
|
||||
|
||||
<child>
|
||||
<widget class="GtkButton" id="cancelbutton1">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_default">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="label">gtk-cancel</property>
|
||||
<property name="use_stock">True</property>
|
||||
<property name="relief">GTK_RELIEF_NORMAL</property>
|
||||
<property name="response_id">-6</property>
|
||||
</widget>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<widget class="GtkButton" id="okbutton1">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_default">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="label">gtk-ok</property>
|
||||
<property name="use_stock">True</property>
|
||||
<property name="relief">GTK_RELIEF_NORMAL</property>
|
||||
<property name="response_id">-5</property>
|
||||
</widget>
|
||||
</child>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="padding">0</property>
|
||||
<property name="expand">False</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="pack_type">GTK_PACK_END</property>
|
||||
</packing>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<widget class="GtkTable" id="table1">
|
||||
<property name="visible">True</property>
|
||||
<property name="n_rows">3</property>
|
||||
<property name="n_columns">3</property>
|
||||
<property name="homogeneous">False</property>
|
||||
<property name="row_spacing">6</property>
|
||||
<property name="column_spacing">6</property>
|
||||
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label2">
|
||||
<property name="visible">True</property>
|
||||
<property name="label" translatable="yes">Addressbook Group</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">False</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
<property name="wrap">False</property>
|
||||
<property name="selectable">False</property>
|
||||
<property name="xalign">0</property>
|
||||
<property name="yalign">0.5</property>
|
||||
<property name="xpad">0</property>
|
||||
<property name="ypad">0</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="left_attach">1</property>
|
||||
<property name="right_attach">2</property>
|
||||
<property name="top_attach">1</property>
|
||||
<property name="bottom_attach">2</property>
|
||||
<property name="x_padding">6</property>
|
||||
<property name="x_options">fill</property>
|
||||
<property name="y_options"></property>
|
||||
</packing>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<widget class="GtkOptionMenu" id="addressbook-group">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="history">-1</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="left_attach">2</property>
|
||||
<property name="right_attach">3</property>
|
||||
<property name="top_attach">1</property>
|
||||
<property name="bottom_attach">2</property>
|
||||
<property name="x_padding">6</property>
|
||||
<property name="x_options">fill</property>
|
||||
<property name="y_options"></property>
|
||||
</packing>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<widget class="GtkEntry" id="addressbook-name">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<property name="editable">True</property>
|
||||
<property name="visibility">True</property>
|
||||
<property name="max_length">0</property>
|
||||
<property name="text" translatable="yes"></property>
|
||||
<property name="has_frame">True</property>
|
||||
<property name="invisible_char" translatable="yes">*</property>
|
||||
<property name="activates_default">False</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="left_attach">2</property>
|
||||
<property name="right_attach">3</property>
|
||||
<property name="top_attach">2</property>
|
||||
<property name="bottom_attach">3</property>
|
||||
<property name="x_padding">6</property>
|
||||
<property name="y_options"></property>
|
||||
</packing>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label1">
|
||||
<property name="visible">True</property>
|
||||
<property name="label" translatable="yes"><b>Addressbook options</b></property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">True</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
<property name="wrap">False</property>
|
||||
<property name="selectable">False</property>
|
||||
<property name="xalign">0</property>
|
||||
<property name="yalign">0.5</property>
|
||||
<property name="xpad">0</property>
|
||||
<property name="ypad">0</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="left_attach">0</property>
|
||||
<property name="right_attach">3</property>
|
||||
<property name="top_attach">0</property>
|
||||
<property name="bottom_attach">1</property>
|
||||
<property name="y_padding">6</property>
|
||||
<property name="y_options"></property>
|
||||
</packing>
|
||||
</child>
|
||||
|
||||
<child>
|
||||
<widget class="GtkLabel" id="label3">
|
||||
<property name="visible">True</property>
|
||||
<property name="label" translatable="yes">Addressbook Name</property>
|
||||
<property name="use_underline">False</property>
|
||||
<property name="use_markup">False</property>
|
||||
<property name="justify">GTK_JUSTIFY_LEFT</property>
|
||||
<property name="wrap">False</property>
|
||||
<property name="selectable">False</property>
|
||||
<property name="xalign">0</property>
|
||||
<property name="yalign">0.5</property>
|
||||
<property name="xpad">0</property>
|
||||
<property name="ypad">0</property>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="left_attach">1</property>
|
||||
<property name="right_attach">2</property>
|
||||
<property name="top_attach">2</property>
|
||||
<property name="bottom_attach">3</property>
|
||||
<property name="x_padding">6</property>
|
||||
<property name="x_options">fill</property>
|
||||
<property name="y_options"></property>
|
||||
</packing>
|
||||
</child>
|
||||
</widget>
|
||||
<packing>
|
||||
<property name="padding">4</property>
|
||||
<property name="expand">True</property>
|
||||
<property name="fill">True</property>
|
||||
</packing>
|
||||
</child>
|
||||
</widget>
|
||||
</child>
|
||||
</widget>
|
||||
|
||||
</glade-interface>
|
30
addressbook/gui/component/new-addressbook.h
Normal file
30
addressbook/gui/component/new-addressbook.h
Normal file
@ -0,0 +1,30 @@
|
||||
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
|
||||
|
||||
/* new-addressbook.h - Create a new addressbook
|
||||
*
|
||||
* Copyright (C) 2003 Novell, Inc.
|
||||
*
|
||||
* Author: Hans Petter Jansson <hpj@ximian.com>
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or
|
||||
* modify it under the terms of version 2 of the GNU General Public
|
||||
* License as published by the Free Software Foundation.
|
||||
*
|
||||
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef NEW_ADDRESSBOOK_H
|
||||
#define NEW_ADDRESSBOOK_H
|
||||
|
||||
#include <gtk/gtkwindow.h>
|
||||
|
||||
gboolean new_addressbook_dialog (GtkWindow *parent);
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue
Block a user