aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component/select-names/e-select-names.c
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@helixcode.com>2000-07-10 00:03:39 +0800
committerChris Lahey <clahey@src.gnome.org>2000-07-10 00:03:39 +0800
commit36c3c3cf936008c0c0f8b85605f4970f395b3fb7 (patch)
tree90f95f5cd18b2c9f764a6ca85c48cef56e46c949 /addressbook/gui/component/select-names/e-select-names.c
parenta9cc8f7c2dbf8f5282cc287ae8d20bb586dd8702 (diff)
downloadgsoc2013-evolution-36c3c3cf936008c0c0f8b85605f4970f395b3fb7.tar
gsoc2013-evolution-36c3c3cf936008c0c0f8b85605f4970f395b3fb7.tar.gz
gsoc2013-evolution-36c3c3cf936008c0c0f8b85605f4970f395b3fb7.tar.bz2
gsoc2013-evolution-36c3c3cf936008c0c0f8b85605f4970f395b3fb7.tar.lz
gsoc2013-evolution-36c3c3cf936008c0c0f8b85605f4970f395b3fb7.tar.xz
gsoc2013-evolution-36c3c3cf936008c0c0f8b85605f4970f395b3fb7.tar.zst
gsoc2013-evolution-36c3c3cf936008c0c0f8b85605f4970f395b3fb7.zip
Added a field that gives the name if it exists and the company name
2000-07-09 Christopher James Lahey <clahey@helixcode.com> * backend/ebook/e-card-simple.c, backend/ebook/e-card-simple.h: Added a field that gives the name if it exists and the company name otherwise. * gui/component/e-addressbook-model.c: Formatting changes. * gui/component/select-names/e-select-names-table-model.c: Added stripping of names and display of company name if name doesn't exist. * gui/component/select-names/e-select-names.c: Fixed up the display so that we display both name and email address. svn path=/trunk/; revision=4020
Diffstat (limited to 'addressbook/gui/component/select-names/e-select-names.c')
-rw-r--r--addressbook/gui/component/select-names/e-select-names.c22
1 files changed, 15 insertions, 7 deletions
diff --git a/addressbook/gui/component/select-names/e-select-names.c b/addressbook/gui/component/select-names/e-select-names.c
index 90b64b1183..75fd27d32d 100644
--- a/addressbook/gui/component/select-names/e-select-names.c
+++ b/addressbook/gui/component/select-names/e-select-names.c
@@ -98,16 +98,16 @@ e_select_names_class_init (ESelectNamesClass *klass)
#define SPEC "<ETableSpecification no-header=\"1\"> \
<columns-shown> \
- <column> 0 </column> \
- <column> 2 </column> \
+ <column> 2 </column> \
+ <column> 1 </column> \
</columns-shown> \
- <grouping> <leaf column=\"0\" ascending=\"1\"/> </grouping> \
+ <grouping> <leaf column=\"1\" ascending=\"1\"/> </grouping> \
</ETableSpecification>"
#define SPEC2 "<ETableSpecification no-header=\"1\"> \
<columns-shown> \
<column> 0 </column> \
- <column> 2 </column> \
+ <column> 1 </column> \
</columns-shown> \
<grouping> </grouping> \
</ETableSpecification>"
@@ -142,7 +142,11 @@ e_addressbook_create_ebook_table(char *name, char *string1, char *string2, int n
header = e_table_header_new ();
e_table_header_add_column (header, e_table_col_new (0, "Full Name", 1.0, 20, cell_left_just,
- g_str_compare, TRUE), 0);
+ g_str_compare, TRUE), -1);
+ e_table_header_add_column (header, e_table_col_new (1, "Email", 1.0, 20, cell_left_just,
+ g_str_compare, TRUE), -1);
+ e_table_header_add_column (header, e_table_col_new (34, "Name", 1.0, 20, cell_left_just,
+ g_str_compare, TRUE), -1);
book = e_book_new();
gtk_object_ref(GTK_OBJECT(model));
@@ -193,6 +197,8 @@ e_select_names_init (ESelectNames *e_select_names)
GNOME_STOCK_BUTTON_OK,
GNOME_STOCK_BUTTON_CANCEL,
NULL);
+
+ gtk_window_set_policy(GTK_WINDOW(e_select_names), FALSE, TRUE, FALSE);
e_select_names->table = E_TABLE(glade_xml_get_widget(gui, "table-source"));
e_select_names->model = gtk_object_get_data(GTK_OBJECT(e_select_names->table), "model");
@@ -348,8 +354,10 @@ e_select_names_add_section(ESelectNames *e_select_names, char *name, char *id, E
model = e_select_names_table_model_new(source);
header = e_table_header_new ();
cell_left_just = e_cell_text_new (model, NULL, GTK_JUSTIFY_LEFT);
- e_table_header_add_column (header, e_table_col_new (0, "Full Name", 1.0, 20, cell_left_just,
- g_str_compare, TRUE), 0);
+ e_table_header_add_column (header, e_table_col_new (0, "Name", 1.0, 20, cell_left_just,
+ g_str_compare, TRUE), -1);
+ e_table_header_add_column (header, e_table_col_new (1, "Email", 1.0, 20, cell_left_just,
+ g_str_compare, TRUE), -1);
etable = e_table_new (header, model, SPEC2);
gtk_signal_connect(GTK_OBJECT(etable), "double_click",