aboutsummaryrefslogtreecommitdiffstats
path: root/widgets
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@src.gnome.org>2001-03-19 11:07:17 +0800
committerMiguel de Icaza <miguel@src.gnome.org>2001-03-19 11:07:17 +0800
commitd19d151d29c6812c50e7434280e75160d85be1e0 (patch)
tree07c483582883706fadf878c8ed497c17efa4c617 /widgets
parentd6d7dc41d026a2a2bc907446e26f22e978d51f45 (diff)
downloadgsoc2013-evolution-d19d151d29c6812c50e7434280e75160d85be1e0.tar.gz
gsoc2013-evolution-d19d151d29c6812c50e7434280e75160d85be1e0.tar.zst
gsoc2013-evolution-d19d151d29c6812c50e7434280e75160d85be1e0.zip
Removed extra printfs
svn path=/trunk/; revision=8812
Diffstat (limited to 'widgets')
-rw-r--r--widgets/table/e-table-config.c17
-rw-r--r--widgets/table/e-table-config.glade28
-rw-r--r--widgets/table/e-table-config.glade.h2
-rw-r--r--widgets/table/e-table-header-item.c4
4 files changed, 29 insertions, 22 deletions
diff --git a/widgets/table/e-table-config.c b/widgets/table/e-table-config.c
index c249c498e8..f5381a0e4d 100644
--- a/widgets/table/e-table-config.c
+++ b/widgets/table/e-table-config.c
@@ -363,6 +363,19 @@ do_sort_and_group_config_dialog (ETableConfig *config, gboolean is_sort)
config_group_info_update (config);
}
+GtkWidget *
+e_table_proxy_etable_new (void)
+{
+ return gtk_label_new ("Waiting for the ETable/ETree\nmerger to be commited");
+}
+
+static void
+config_button_fields (GtkWidget *widget, ETableConfig *config)
+{
+ gnome_dialog_run (config->dialog_show_fields);
+ gnome_dialog_close (GNOME_DIALOG (config->dialog_show_fields));
+}
+
static void
config_button_sort (GtkWidget *widget, ETableConfig *config)
{
@@ -375,7 +388,6 @@ config_button_group (GtkWidget *widget, ETableConfig *config)
do_sort_and_group_config_dialog (config, FALSE);
}
-
static void
dialog_destroyed (GtkObject *dialog, ETableConfig *config)
{
@@ -667,7 +679,8 @@ setup_gui (ETableConfig *config)
connect_button (config, gui, "button-sort", config_button_sort);
connect_button (config, gui, "button-group", config_button_group);
-
+ connect_button (config, gui, "button-fields", config_button_fields);
+
configure_sort_dialog (config, gui);
configure_group_dialog (config, gui);
diff --git a/widgets/table/e-table-config.glade b/widgets/table/e-table-config.glade
index b199b521a7..9b173e3997 100644
--- a/widgets/table/e-table-config.glade
+++ b/widgets/table/e-table-config.glade
@@ -29,7 +29,7 @@
<allow_grow>True</allow_grow>
<auto_shrink>False</auto_shrink>
<auto_close>False</auto_close>
- <hide_on_close>False</hide_on_close>
+ <hide_on_close>True</hide_on_close>
<widget>
<class>GtkVBox</class>
@@ -112,7 +112,6 @@
<yalign>0.5</yalign>
<xpad>0</xpad>
<ypad>0</ypad>
- <focus_target>table-1</focus_target>
<child>
<left_attach>0</left_attach>
<right_attach>2</right_attach>
@@ -139,7 +138,6 @@
<yalign>0.5</yalign>
<xpad>0</xpad>
<ypad>0</ypad>
- <focus_target>table-2</focus_target>
<child>
<left_attach>3</left_attach>
<right_attach>5</right_attach>
@@ -210,11 +208,12 @@
<shadow_type>GTK_SHADOW_IN</shadow_type>
<widget>
- <class>GtkButton</class>
- <name>table-1</name>
- <can_focus>True</can_focus>
- <label>Table HERE</label>
- <relief>GTK_RELIEF_NORMAL</relief>
+ <class>Custom</class>
+ <name>available-field-list</name>
+ <creation_function>e_table_proxy_etable_new</creation_function>
+ <int1>0</int1>
+ <int2>0</int2>
+ <last_modification_time>Sun, 18 Mar 2001 23:59:35 GMT</last_modification_time>
</widget>
</widget>
</widget>
@@ -259,11 +258,12 @@
<shadow_type>GTK_SHADOW_IN</shadow_type>
<widget>
- <class>GtkButton</class>
- <name>table-2</name>
- <can_focus>True</can_focus>
- <label>Table HERE</label>
- <relief>GTK_RELIEF_NORMAL</relief>
+ <class>Custom</class>
+ <name>fields-shown</name>
+ <creation_function>e_table_proxy_etable_new</creation_function>
+ <int1>0</int1>
+ <int2>0</int2>
+ <last_modification_time>Sun, 18 Mar 2001 23:59:49 GMT</last_modification_time>
</widget>
</widget>
</widget>
@@ -1692,7 +1692,7 @@
<widget>
<class>GtkButton</class>
- <name>button15</name>
+ <name>button-fields</name>
<can_default>True</can_default>
<can_focus>True</can_focus>
<signal>
diff --git a/widgets/table/e-table-config.glade.h b/widgets/table/e-table-config.glade.h
index 76f2aaea31..cf8f6d6d51 100644
--- a/widgets/table/e-table-config.glade.h
+++ b/widgets/table/e-table-config.glade.h
@@ -7,8 +7,6 @@
gchar *s = N_("Show Fields");
gchar *s = N_("A_vailable Fields:");
gchar *s = N_("Sh_ow these fields in order:");
-gchar *s = N_("Table HERE");
-gchar *s = N_("Table HERE");
gchar *s = N_("Move _Up");
gchar *s = N_("Move _Down");
gchar *s = N_("_Add ->");
diff --git a/widgets/table/e-table-header-item.c b/widgets/table/e-table-header-item.c
index c3db9e7dfc..1fd1c12662 100644
--- a/widgets/table/e-table-header-item.c
+++ b/widgets/table/e-table-header-item.c
@@ -1225,9 +1225,6 @@ apply_changes (ETableConfig *config, ETableHeaderItem *ethi)
{
char *state = e_table_state_save_to_string (config->state);
- printf ("This is the Table: %p %p\n", ethi->table, ethi);
- printf ("This is the state: %s\n", state);
-
e_table_set_state (ethi->table, state);
g_free (state);
}
@@ -1238,7 +1235,6 @@ ethi_popup_customize_view(GtkWidget *widget, EthiHeaderInfo *info)
ETableHeaderItem *ethi = info->ethi;
ETableState *state;
- printf ("___This is the Table: %p %p\n", ethi->table, ethi);
if (ethi->config)
e_table_config_raise (E_TABLE_CONFIG (ethi->config));
else {
s'>-5/+5 * - Update to 6.75Martin Wilke2011-11-282-3/+3 * - Update to 1.54Frederic Culot2011-11-282-3/+3 * Remove trailing whitespaces.Emanuel Haupt2011-11-191-1/+1 * Remove CMAKE_USE_PTHREAD from the ports using it.Raphael Kubo da Costa2011-11-142-2/+0 * Make @dirrms conditional for %%DOCSDIR%% on NOPORTDOCSChris Rees2011-11-142-4/+4 * - Update to 0.88Martin Wilke2011-11-062-3/+3 * - Update to 1.18Martin Wilke2011-11-062-3/+3 * - Update to 20111030Martin Wilke2011-11-062-4/+4 * Update to 20111023Carlo Strub2011-11-052-5/+5 * Remove references to unsupported FreeBSD versions. Mostly of the form:Doug Barton2011-11-021-7/+1 * Update to 0.7.3Max Brazhnikov2011-10-314-5/+104 * A simple, friendly DSL for creating IRC botsPhilip M. Gollucci2011-10-304-0/+30 * - bump for miniupnpc updateDirk Meyer2011-10-271-1/+2 * The vast majority of pkg-descr files had the following format when theyDoug Barton2011-10-243-5/+2 * Remove more tags from pkg-descr files fo the form:Doug Barton2011-10-245-18/+0 * - Update to 0.202Martin Wilke2011-10-234-111/+124 * - Update to 6.74Martin Wilke2011-10-232-3/+3 * - Update to 0.3.6Martin Wilke2011-10-236-15/+56 * - Update to 20111020Frederic Culot2011-10-213-5/+6 * - Chase editors/emacs updateAshish SHUKLA2011-10-172-2/+2 * - Update to 1.53Frederic Culot2011-10-142-3/+3 * - Update to 20111010Chris Rees2011-10-132-18/+18 * Remove ports maintainted by ports@ which have passed their EXPIRATION_DATEDoug Barton2011-10-0929-2472/+0 * - Update to 1.52Sunpoet Po-Chuan Hsieh2011-10-082-5/+8 * - Update to 0.12Sunpoet Po-Chuan Hsieh2011-10-072-3/+3 * - Add upstream patch to address segfault issue with tcl-8.6Beech Rintoul2011-10-072-3/+24 * - update to 0.18Dirk Meyer2011-10-054-7/+6 * - Update to 20111002 (0.3.6-rc1)Eitan Adler2011-10-032-5/+5 * Stop maintaining irc/ninjaChris Rees2011-09-251-1/+1 * - Add LDFLAGS to CONFIGURE_ENV and MAKE_ENV (as it was done with LDFLAGS)Dmitry Marakasov2011-09-2416-37/+30 * - Update to 20110915Beech Rintoul2011-09-202-5/+5 * - Change PERL_CONFIGURE to "yes" for all values less than or equal to 5.8.0+Sunpoet Po-Chuan Hsieh2011-09-171-1/+1 * Chase editors/emacs updateAshish SHUKLA2011-09-082-2/+2 * - update to 3.27Dirk Meyer2011-09-043-8/+20 * Remove expired ports:Chris Rees2011-09-0314-356/+0 * Chase editors/emacs update.Ashish SHUKLA2011-08-282-1/+2 * Update Pidgin and friends to 2.10.0. SeeJoe Marcus Clarke2011-08-282-3/+3 * - Update to 6.70Martin Wilke2011-08-262-5/+5 * Chase libnotify, libproxy and webkit-gtk2 shlib changes, and fix build where ...Koop Mast2011-08-242-1/+12 * - Update to 20110817Beech Rintoul2011-08-185-6/+44 * A PoCo-IRC plugin which provides access to a Hailo conversation simulator.Steve Wills2011-08-155-0/+52 * Remove USE_GNOME=gnometarget from ports. It has been a empty keyword sinceKoop Mast2011-08-122-2/+1 * - Fix MASTER_SITESEmanuel Haupt2011-08-111-6/+10 * Update to 2.2.3Emanuel Haupt2011-08-085-63/+47 * - update WWWDirk Meyer2011-08-071-1/+1 * - Make use of CPAN:USER macroSteve Wills2011-08-071-6/+9 * - Make use of CPAN:USER macroSteve Wills2011-08-071-4/+8 * - Update WWW: lineTAKATSU Tomonari2011-08-041-1/+1 * Deprecate some ports where I can't find distfiles and upstreamBaptiste Daroussin2011-08-033-0/+9 * Update master_siteBaptiste Daroussin2011-08-021-1/+1 * - Update to 0.11Frederic Culot2011-08-012-3/+6 * - Sort SUBDIRsSunpoet Po-Chuan Hsieh2011-08-011-1/+1 * - Chase guile shared lib bumpJulien Laffaye2011-07-311-2/+2 * - Fix build with Ruby 1.9Steve Wills2011-07-311-1/+2 * Build fixes with glib 2.28. gtk 2.24, gtkmm 2.24 and vala 0.12.Koop Mast2011-07-301-0/+1 * - Update to 20110228Sylvio Cesar Teixeira2011-07-283-12/+11 * Import version 1.2 of inspircd -- 'there's no m_codepage for 2.x yet'.Chris Rees2011-07-277-0/+726 * - Fix build after recent gnutls updatePav Lucistnik2011-07-271-1/+2 * Add ability to run as ircd user/groupRyan Steinmetz2011-07-252-4/+22 * - Reset maintainership (5 simultaneous timeouts since Sep/2009)Chris Rees2011-07-251-4/+4 * - Fix building of port due to gnutls update which removes gcrypt supportAshish SHUKLA2011-07-183-5/+26 * - Update to 20110714Frederic Culot2011-07-172-5/+5 * Reassign maintainership to submitter of ports/155143 due to maintainerMark Linimon2011-07-101-1/+1 * - Use USERS and GROUPSChris Rees2011-07-095-285/+167 * Oops, ${PORTSDIR}/Mk isn't in the search path of course...Chris Rees2011-07-071-1/+1 * Make portlint happier.Adam Weinberger2011-07-061-3/+3 * Use USERS and GROUPSChris Rees2011-07-062-119/+5 * Use USERS and GROUPSChris Rees2011-07-062-86/+7 * ratbox-services now uses USERS and GROUPSChris Rees2011-07-062-83/+4 * Kill EOL whitespace.Alexey Dokuchaev2011-07-051-2/+2 * - Reassign to the heapThomas Abthorpe2011-07-052-2/+2 * - Use USERS and GROUPSChris Rees2011-07-052-95/+6 * - Use USERS and GROUPSChris Rees2011-07-053-57/+4 * - Mark as broken with Ruby 1.9Steve Wills2011-07-051-1/+5 * - Use USERS and GROUPSChris Rees2011-07-032-29/+6 * - Use USERS and GROUPSChris Rees2011-07-032-29/+6 * - Chase the libgcrypt shared lib versionSteve Wills2011-07-031-2/+2 * Update Pidgin and friends to 2.9.0. SeeJoe Marcus Clarke2011-07-032-3/+3 * - Kick MD5 SupportMartin Wilke2011-07-033-3/+0 * - Fix build under clangDiane Bruce2011-07-011-1/+2 * - Use USERS and GROUPSChris Rees2011-06-293-81/+14 * - Change IGNORE to BROKENBeech Rintoul2011-06-281-1/+1 * - Mark IGNORE if WITH_SSL is defined, and the system is amd64Beech Rintoul2011-06-281-4/+7 * - Use USERS and GROUPSChris Rees2011-06-282-83/+4 * - Use USERS and GROUPSChris Rees2011-06-282-43/+3 * Bye ByeMartin Wilke2011-06-256-108/+0 * - Update to 1.0.2Martin Wilke2011-06-252-3/+3 * - Update 0.87Martin Wilke2011-06-252-4/+5 * - Update to 1.02Martin Wilke2011-06-252-3/+3 * - Cannoicalize the WWW: [again],Philip M. Gollucci2011-06-241-1/+1 * Drop maintainership and reassign to ports@Martin Matuska2011-06-221-1/+1 * Respect CC (fixes build with clang)Julien Laffaye2011-06-211-0/+1 * - Replace ../../authors in MASTER_SITE_SUBDIR with CPAN:CPANID macro.Andrej Zverev2011-06-201-2/+2 * Chase the libpurple shared lib version.Joe Marcus Clarke2011-06-202-3/+3 * - remove irc/ezbounce-devel which now lives in irc/ezbounceFlorian Smeets2011-06-196-96/+0 * - bring over version 1.99.15 from irc/ezbounce-devel (soon to be removed)Florian Smeets2011-06-193-31/+8 * - Use USERS and GROUPSChris Rees2011-06-182-43/+3 * - Update maintainer addressChris Rees2011-06-172-2/+2 * Mark broken some ports with unfetchable distfilesBaptiste Daroussin2011-06-171-0/+2 * - Update to 20110614Frederic Culot2011-06-152-6/+5 * - Update to 1.49Frederic Culot2011-06-143-10/+16 * - Update to v3.0.3Henrik Brix Andersen2011-06-132-4/+3 * Remove irc/bitlbee-otr port.Ashish SHUKLA2011-06-1311-502/+0 * Hello Mono 2.10!Romain Tartière2011-06-131-0/+2 * Update to 2.2Julien Laffaye2011-06-123-7/+10 * - Update to 6.68Martin Wilke2011-06-122-8/+13 * - Update to 0.3.5Martin Wilke2011-06-123-7/+10 * - switch to USERS/GROUPS macroBaptiste Daroussin2011-06-092-54/+6 * Update my e-mail to my FreeBSD one.Julien Laffaye2011-06-092-2/+2 * Chase security/gnutls update and add an UPDATING entry.Roman Bogorodskiy2011-06-068-10/+15 * - Update 0.098Martin Wilke2011-05-264-9/+42 * - Update to 0.10Frederic Culot2011-05-252-3/+4 * - Update to 1.8.6Dennis Herrmann2011-05-232-4/+3 * - Add licenseSylvio Cesar Teixeira2011-05-211-0/+2 * Add USE_NCURSES=yesVanilla I. Shu2011-05-201-1/+2 * - Add licenseSylvio Cesar Teixeira2011-05-181-0/+1 * - Update to 0.8.8Sylvio Cesar Teixeira2011-05-183-6/+5 * Miscellaneous cleanups and fixes, some of the windowmaker stuffDoug Barton2011-05-161-1/+1 * - Update to 20110515Frederic Culot2011-05-152-5/+5 * - honor CCDirk Meyer2011-05-112-0/+8 * - Update to 20110508Frederic Culot2011-05-092-5/+5 * Add missing manMax Brazhnikov2011-05-081-1/+2 * Update to 4.0.4Max Brazhnikov2011-05-083-9/+19 * mark as broken because the distfile is no more availableBaptiste Daroussin2011-05-031-0/+2 * Remove unmaintained expired ports from ircBaptiste Daroussin2011-05-0211-215/+0 * - Update to 20110501Frederic Culot2011-05-022-5/+5 * - Update to 1.44Frederic Culot2011-04-282-10/+9 * - Update to 20110421 (0.3.5-rc1)Beech Rintoul2011-04-242-5/+5 * - Bump PORTREVISION (forgotten with the previous commit,Nicola Vitale2011-04-221-0/+1 * - Add missing py-twisted* dependencies to RUN_DEPENDSNicola Vitale2011-04-211-0/+5 * - Update WWW link.Ashish SHUKLA2011-04-171-1/+1 * Take maintainership againMax Brazhnikov2011-04-171-8/+2 * The functions in this module take care of many of the tasks you arePhilippe Audeoud2011-04-135-0/+34 * CMAKE_BUILD_TYPE is set in bsd.cmake.mk now, remove it from MakefilesMax Brazhnikov2011-04-103-14/+0 * - Update to 20110326Frederic Culot2011-04-033-8/+12 * - Update to v3.0.2Henrik Brix Andersen2011-04-022-3/+3 * irc/ircd-hybrid-ru is now russian/ircd-hybrid-ruBaptiste Daroussin2011-03-2713-572/+0 * - Update MASTER_SITES and WWW: lineMartin Wilke2011-03-273-27/+15 * - Add LICENSE knob(s)Martin Matuska2011-03-232-1/+7 * - Update to 1.9.4Wen Heping2011-03-213-3/+4 * Bump PORTREVISION for ports linking to default libmysqlclient.Alex Dupre2011-03-194-2/+4 * - Get Rid MD5 supportMartin Wilke2011-03-19114-135/+0 * - Update to 6.54Martin Wilke2011-03-182-3/+3 * - Update to 0.5.10Martin Wilke2011-03-183-6/+7 * A powerful IRC daemon, based on ircd-ratbox. Utilized on networks such asMartin Wilke2011-03-177-0/+412