aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-07-14 01:20:34 +0800
committerDan Winship <danw@src.gnome.org>2000-07-14 01:20:34 +0800
commit36485a36d8b9a68fa26fd9909f367b42021fd469 (patch)
tree84718752932f055e87fcd8201c1464516db821a6 /mail
parente3970d1396c10d10dda0653f117fda97d6fddac8 (diff)
downloadgsoc2013-evolution-36485a36d8b9a68fa26fd9909f367b42021fd469.tar
gsoc2013-evolution-36485a36d8b9a68fa26fd9909f367b42021fd469.tar.gz
gsoc2013-evolution-36485a36d8b9a68fa26fd9909f367b42021fd469.tar.bz2
gsoc2013-evolution-36485a36d8b9a68fa26fd9909f367b42021fd469.tar.lz
gsoc2013-evolution-36485a36d8b9a68fa26fd9909f367b42021fd469.tar.xz
gsoc2013-evolution-36485a36d8b9a68fa26fd9909f367b42021fd469.tar.zst
gsoc2013-evolution-36485a36d8b9a68fa26fd9909f367b42021fd469.zip
Add a "gboolean required" argument, and set its value on the entry.
* mail-config.c (add_row): Add a "gboolean required" argument, and set its value on the entry. (create_source, create_transport): Create rows for URL elements if the URL ALLOWs them. Mark them required if it NEEDs them. (service_note_doneness): Only require the required fields to be filled in. Now the IMAP config page allows the user to enter a path, but doesn't require it. svn path=/trunk/; revision=4148
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog12
-rw-r--r--mail/mail-config.c52
2 files changed, 48 insertions, 16 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 1f4bc69bba..df721ddd40 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,15 @@
+2000-07-13 Dan Winship <danw@helixcode.com>
+
+ * mail-config.c (add_row): Add a "gboolean required" argument, and
+ set its value on the entry.
+ (create_source, create_transport): Create rows for URL elements if
+ the URL ALLOWs them. Mark them required if it NEEDs them.
+ (service_note_doneness): Only require the required fields to be
+ filled in.
+
+ Now the IMAP config page allows the user to enter a path, but
+ doesn't require it.
+
2000-07-13 Jeffrey Stedfast <fejj@helixcode.com>
* mail-ops.c (real_fetch_mail): Back to the old way to avoid
diff --git a/mail/mail-config.c b/mail/mail-config.c
index c4a580befd..ba8459ecdf 100644
--- a/mail/mail-config.c
+++ b/mail/mail-config.c
@@ -365,30 +365,44 @@ service_note_doneness (GtkObject *page, gpointer user_data)
GtkWidget *button;
GtkEntry *entry;
char *data;
- gboolean sensitive = TRUE;
+ gboolean required, sensitive = TRUE;
entry = gtk_object_get_data (page, "server_entry");
if (entry) {
- data = gtk_entry_get_text (entry);
- if (!data || !*data)
- sensitive = FALSE;
+ required = GPOINTER_TO_INT (
+ gtk_object_get_data (GTK_OBJECT (entry), "required"));
+ if (required) {
+ data = gtk_entry_get_text (entry);
+ if (!data || !*data)
+ sensitive = FALSE;
+ }
}
if (sensitive) {
entry = gtk_object_get_data (page, "user_entry");
if (entry) {
- data = gtk_entry_get_text (entry);
- if (!data || !*data)
- sensitive = FALSE;
+ required = GPOINTER_TO_INT (
+ gtk_object_get_data (GTK_OBJECT (entry),
+ "required"));
+ if (required) {
+ data = gtk_entry_get_text (entry);
+ if (!data || !*data)
+ sensitive = FALSE;
+ }
}
}
if (sensitive) {
entry = gtk_object_get_data (page, "path_entry");
if (entry) {
- data = gtk_entry_get_text (entry);
- if (!data || !*data)
- sensitive = FALSE;
+ required = GPOINTER_TO_INT (
+ gtk_object_get_data (GTK_OBJECT (entry),
+ "required"));
+ if (required) {
+ data = gtk_entry_get_text (entry);
+ if (!data || !*data)
+ sensitive = FALSE;
+ }
}
}
@@ -660,7 +674,7 @@ destroy_service (GtkObject *notebook, gpointer urlp)
static void
add_row (GtkWidget *table, int row, const char *label_text,
- const char *tag, int flag)
+ const char *tag, gboolean required)
{
GtkWidget *label, *entry;
@@ -675,6 +689,8 @@ add_row (GtkWidget *table, int row, const char *label_text,
gtk_signal_connect_object (GTK_OBJECT (entry), "changed",
GTK_SIGNAL_FUNC (service_note_doneness),
GTK_OBJECT (table));
+ gtk_object_set_data (GTK_OBJECT (entry), "required",
+ GINT_TO_POINTER (required));
gtk_object_set_data (GTK_OBJECT (table), tag, entry);
}
@@ -698,20 +714,23 @@ create_source (struct service_type *st)
row = 0;
service_flags = st->service->url_flags & ~CAMEL_SERVICE_URL_NEED_AUTH;
- if (service_flags & CAMEL_SERVICE_URL_NEED_HOST) {
+ if (service_flags & CAMEL_SERVICE_URL_ALLOW_HOST) {
add_row (table, row, _("Server:"), "server_entry",
+ (service_flags & CAMEL_SERVICE_URL_NEED_HOST) ==
CAMEL_SERVICE_URL_NEED_HOST);
row++;
}
- if (service_flags & CAMEL_SERVICE_URL_NEED_USER) {
+ if (service_flags & CAMEL_SERVICE_URL_ALLOW_USER) {
add_row (table, row, _("Username:"), "user_entry",
+ (service_flags & CAMEL_SERVICE_URL_NEED_USER) ==
CAMEL_SERVICE_URL_NEED_USER);
row++;
}
- if (service_flags & CAMEL_SERVICE_URL_NEED_PATH) {
+ if (service_flags & CAMEL_SERVICE_URL_ALLOW_PATH) {
add_row (table, row, _("Path:"), "path_entry",
+ (service_flags & CAMEL_SERVICE_URL_NEED_PATH) ==
CAMEL_SERVICE_URL_NEED_PATH);
row++;
}
@@ -789,9 +808,10 @@ create_transport (struct service_type *st)
row = 0;
service_flags = st->service->url_flags & ~CAMEL_SERVICE_URL_NEED_AUTH;
- if (service_flags & CAMEL_SERVICE_URL_NEED_HOST) {
+ if (service_flags & CAMEL_SERVICE_URL_ALLOW_HOST) {
add_row (table, row, _("Server:"), "server_entry",
- CAMEL_SERVICE_URL_NEED_HOST);
+ (service_flags & CAMEL_SERVICE_URL_NEED_HOST) ==
+ CAMEL_SERVICE_NEED_HOST);
row++;
}