Reload button

svn path=/trunk/; revision=11978
This commit is contained in:
Iain Holmes
2001-08-13 23:33:48 +00:00
parent 6445ee2089
commit 9e36f744b8
5 changed files with 20 additions and 1 deletions

View File

@ -26,6 +26,7 @@
BonoboUIVerb verbs[] = {
BONOBO_UI_VERB ("PrintMyEvolution", e_summary_print),
BONOBO_UI_VERB ("ToolsSettings", e_summary_configure),
BONOBO_UI_VERB ("Reload", e_summary_reload),
BONOBO_UI_VERB_END
};

View File

@ -645,6 +645,13 @@ e_summary_reconfigure (ESummary *summary)
}
}
void
e_summary_reload (GtkWidget *widget,
ESummary *summary)
{
e_summary_reconfigure (summary);
}
int
e_summary_count_connections (ESummary *summary)
{

View File

@ -108,6 +108,8 @@ GtkType e_summary_get_type (void);
GtkWidget *e_summary_new (const GNOME_Evolution_Shell shell);
void e_summary_print (GtkWidget *widget,
ESummary *summary);
void e_summary_reload (GtkWidget *widget,
ESummary *summary);
void e_summary_draw (ESummary *summary);
void e_summary_change_current_view (ESummary *summary,
const char *uri);

View File

@ -1,3 +1,7 @@
2001-08-13 Iain Holmes <iain@ximian.com>
* my-evolution.xml: Add the reload button and fix the print button.
2001-08-13 Anna Marie Dirks <anna@ximian.com>
* evolution-calendar.xml : applied Neil Conway's

View File

@ -7,6 +7,9 @@
<cmd name="ToolsSettings"
_tip="Change the settings for My Evolution"
pixtype="pixbuf"/>
<cmd name="Reload" _label="Reload" _tip="Reload the view"
pixtype="stock" pixname="Refresh"/>
</commands>
<menu>
@ -29,7 +32,9 @@
<dockitem name="Toolbar">
<toolitem name="PrintMyEvolution" verb="PrintMyEvolution"
_label="Print" pixtype="pixbuf"/ priority="1">
_label="Print" pixtype="pixbuf" priority="1"/>
<toolitem name="Reload" verb="Reload"
_label="Reload" priority="1"/>
</dockitem>
</Root>