Add option to cancel transfers.
[doldaconnect.git] / clients / gnome-trans-applet / dolcon-trans-applet.c
CommitLineData
1a839140 1/*
2 * Dolda Connect - Modular multiuser Direct Connect-style client
3 * Copyright (C) 2005 Fredrik Tolf (fredrik@dolda2000.com)
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18*/
19
d3372da9 20#ifdef HAVE_CONFIG_H
21#include <config.h>
22#endif
23#include <string.h>
24#include <doldaconnect/uilib.h>
25#include <doldaconnect/utils.h>
26#include <panel-applet.h>
27#include <gtk/gtk.h>
28#include <time.h>
29
30#include "conduit.h"
31
32struct appletdata
33{
34 PanelApplet *applet;
35 GtkLabel *label;
36 GtkProgressBar *pbar;
37 GtkTooltips *tips;
38 gint tiptimeout;
39 struct conduit *conduit;
40 struct transfer *curdisplay;
41};
42
43static char *ctxtmenu =
44"<popup name='button3'>"
6431aca0 45" <menuitem name='Preferences' verb='dca_pref' _label='Preferences' pixtype='stock' pixname='gtk-properties' />"
46" <menuitem name='Cancel transfer' verb='dca_cancel' _label='Cancel transfer' pixtype='stock' pixname='gtk-cancel' />"
d3372da9 47"</popup>";
48
49static void run_pref_dialog(BonoboUIComponent *uic, gpointer data, const char *cname)
50{
51}
52
6431aca0 53static void cancel_transfer(BonoboUIComponent *uic, struct appletdata *data, const char *cname)
54{
55 if(data->conduit->iface->cancel != NULL)
56 data->conduit->iface->cancel(data->conduit, data->curdisplay);
57}
58
d3372da9 59static BonoboUIVerb ctxtmenuverbs[] =
60{
61 BONOBO_UI_VERB("dca_pref", run_pref_dialog),
6431aca0 62 BONOBO_UI_VERB("dca_cancel", cancel_transfer),
d3372da9 63 BONOBO_UI_VERB_END
64};
65
66static gint reconncb(struct appletdata *data)
67{
68 condtryconn(data->conduit);
69 return(FALSE);
70}
71
72static gboolean updatetip(struct appletdata *data)
73{
74 int diff, speed, left;
75 time_t now;
76 char buf[256];
77
78 if(data->curdisplay == NULL)
79 return(TRUE);
80 now = time(NULL);
81 if(data->curdisplay->cmptime == 0)
82 {
83 strcpy(buf, _("Calculating remaining time..."));
84 } else {
85 diff = data->curdisplay->pos - data->curdisplay->cmpsize;
86 speed = diff / (now - data->curdisplay->cmptime);
87 if(speed == 0)
88 {
89 strcpy(buf, _("Time left: Infinite (Transfer is standing still)"));
90 } else {
91 left = (data->curdisplay->size - data->curdisplay->pos) / speed;
92 sprintf(buf, _("Time left: %i:%02i"), left / 3600, (left / 60) % 60);
93 }
94 }
95 gtk_tooltips_set_tip(data->tips, GTK_WIDGET(data->applet), buf, NULL);
96 return(TRUE);
97}
98
99static void update(struct appletdata *data)
100{
101 char buf[256];
102
103 switch(data->conduit->state)
104 {
105 case CNDS_IDLE:
106 gtk_progress_bar_set_text(data->pbar, _("Not connected"));
107 gtk_label_set_text(data->label, "");
108 break;
109 case CNDS_SYN:
110 gtk_progress_bar_set_text(data->pbar, _("Connecting..."));
111 gtk_label_set_text(data->label, "");
112 break;
113 case CNDS_EST:
114 if(data->conduit->transfers == NULL)
115 {
116 gtk_progress_bar_set_fraction(data->pbar, 0);
117 gtk_progress_bar_set_text(data->pbar, "");
118 gtk_label_set_text(data->label, _("No transfers to display"));
119 } else if(data->curdisplay == NULL) {
120 gtk_progress_bar_set_fraction(data->pbar, 0);
121 gtk_progress_bar_set_text(data->pbar, "");
122 gtk_label_set_text(data->label, _("No transfer selected"));
123 } else {
124 if((data->curdisplay->pos > 0) && (data->curdisplay->size > 0))
125 {
126 sprintf(buf, "%'i/%'i", data->curdisplay->pos, data->curdisplay->size);
127 gtk_progress_bar_set_fraction(data->pbar, (double)data->curdisplay->pos / (double)data->curdisplay->size);
128 gtk_progress_bar_set_text(data->pbar, buf);
129 } else {
130 gtk_progress_bar_set_fraction(data->pbar, 0);
131 gtk_progress_bar_set_text(data->pbar, _("Initializing"));
132 }
133 gtk_label_set_text(data->label, data->curdisplay->tag);
134 }
135 break;
136 }
137}
138
139static void trsize(struct transfer *transfer, struct appletdata *data)
140{
141 update(data);
142}
143
144static void trpos(struct transfer *transfer, struct appletdata *data)
145{
146 update(data);
147}
148
149static void trnew(struct transfer *transfer, struct appletdata *data)
150{
151 if(data->curdisplay == NULL)
152 data->curdisplay = transfer;
153 update(data);
154}
155
156static void trfree(struct transfer *transfer, struct appletdata *data)
157{
158 if(data->curdisplay == transfer)
159 data->curdisplay = data->conduit->transfers;
160 update(data);
161}
162
163static void condstate(struct conduit *conduit, struct appletdata *data)
164{
165 if(conduit->state == CNDS_IDLE)
166 g_timeout_add(10000, (gboolean (*)(gpointer))reconncb, data);
167 update(data);
168}
169
170static void initcond(void)
171{
172 static int inited = 0;
173
174 if(!inited)
175 {
176 cb_trsize = (void (*)(struct transfer *, void *))trsize;
177 cb_trpos = (void (*)(struct transfer *, void *))trpos;
178 cb_trnew = (void (*)(struct transfer *, void *))trnew;
179 cb_trfree = (void (*)(struct transfer *, void *))trfree;
180 cb_condstate = (void (*)(struct conduit *, void *))condstate;
181 inited = 1;
182 }
183}
184
185static gboolean trview_applet_button_press(GtkWidget *widget, GdkEventButton *event, struct appletdata *data)
186{
187 if(event->button == 1)
188 {
189 if(data->curdisplay == NULL)
190 data->curdisplay = data->conduit->transfers;
191 else if(data->curdisplay->next == NULL)
192 data->curdisplay = data->conduit->transfers;
193 else
194 data->curdisplay = data->curdisplay->next;
195 update(data);
196 }
197 return(FALSE);
198}
199
200static void trview_applet_destroy(GtkWidget *widget, struct appletdata *data)
201{
202 freeconduit(data->conduit);
203 g_source_remove(data->tiptimeout);
204 g_object_unref(data->applet);
205 g_object_unref(data->tips);
206 free(data);
207}
208
209static gboolean trview_applet_fill(PanelApplet *applet, const gchar *iid, gpointer uudata)
210{
211 GtkWidget *hbox, *pbar, *label;
212 struct appletdata *data;
213
214 initcond();
215 if(strcmp(iid, "OAFIID:Dolcon_Transferapplet"))
216 return(FALSE);
217
d3372da9 218 hbox = gtk_hbox_new(FALSE, 0);
219 label = gtk_label_new("");
220 gtk_box_pack_start(GTK_BOX(hbox), label, FALSE, FALSE, 5);
221 pbar = gtk_progress_bar_new();
222 gtk_box_pack_start(GTK_BOX(hbox), pbar, TRUE, TRUE, 0);
223 gtk_container_add(GTK_CONTAINER(applet), hbox);
224 gtk_widget_show_all(GTK_WIDGET(applet));
225
226 data = smalloc(sizeof(*data));
227 memset(data, 0, sizeof(*data));
228 g_object_ref(data->applet = applet);
229 data->conduit = newconduit(conduit_dclib, data);
230 data->pbar = GTK_PROGRESS_BAR(pbar);
231 g_object_ref(data->tips = gtk_tooltips_new());
232 data->tiptimeout = g_timeout_add(500, (gboolean (*)(gpointer))updatetip, data);
233 data->label = GTK_LABEL(label);
234
6431aca0 235 panel_applet_setup_menu(applet, ctxtmenu, ctxtmenuverbs, data);
236
d3372da9 237 g_signal_connect(applet, "button-press-event", (GCallback)trview_applet_button_press, data);
238 g_signal_connect(applet, "destroy", (GCallback)trview_applet_destroy, data);
239
240 condtryconn(data->conduit);
241
242 update(data);
243
244 return(TRUE);
245}
246
247#define GETTEXT_PACKAGE PACKAGE
248#define GNOMELOCALEDIR LOCALEDIR
249
250PANEL_APPLET_BONOBO_FACTORY("OAFIID:Dolcon_Transferapplet_Factory",
251 PANEL_TYPE_APPLET,
252 "Doldaconnect Transfer Viewer",
253 "0",
254 trview_applet_fill,
255 NULL);