]> sjero.net Git - linphone/blob - gtk/calllogs.c
Merge branch 'master' of git.linphone.org:linphone
[linphone] / gtk / calllogs.c
1 /*
2 linphone, gtk-glade interface.
3 Copyright (C) 2008  Simon MORLAT (simon.morlat@linphone.org)
4
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License
7 as published by the Free Software Foundation; either version 2
8 of the License, or (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
20 #include "linphone.h"
21
22
23 static void fill_renderers(GtkTreeView *v){
24         GtkTreeViewColumn *c;
25         GtkCellRenderer *r=gtk_cell_renderer_pixbuf_new ();
26
27         g_object_set(r,"stock-size",GTK_ICON_SIZE_BUTTON,NULL);
28         c=gtk_tree_view_column_new_with_attributes("icon",r,"stock-id",0,NULL);
29         gtk_tree_view_append_column (v,c);
30
31         r=gtk_cell_renderer_text_new ();
32         c=gtk_tree_view_column_new_with_attributes("sipaddress",r,"markup",1,NULL);
33         gtk_tree_view_append_column (v,c);
34 }
35
36 void linphone_gtk_call_log_update(GtkWidget *w){
37         GtkTreeView *v=GTK_TREE_VIEW(linphone_gtk_get_widget(w,"logs_view"));
38         GtkListStore *store;
39         const MSList *logs;
40
41         store=(GtkListStore*)gtk_tree_view_get_model(v);
42         if (store==NULL){
43                 store=gtk_list_store_new(3,G_TYPE_STRING,G_TYPE_STRING, G_TYPE_POINTER);
44                 gtk_tree_view_set_model(v,GTK_TREE_MODEL(store));
45                 g_object_unref(G_OBJECT(store));
46                 fill_renderers(GTK_TREE_VIEW(linphone_gtk_get_widget(w,"logs_view")));
47 //              gtk_button_set_image(GTK_BUTTON(linphone_gtk_get_widget(w,"call_back_button")),
48 //                                   create_pixmap (linphone_gtk_get_ui_config("callback_button","status-green.png")));
49         }
50         gtk_list_store_clear (store);
51
52         for (logs=linphone_core_get_call_logs(linphone_gtk_get_core());logs!=NULL;logs=logs->next){
53                 LinphoneCallLog *cl=(LinphoneCallLog*)logs->data;
54                 GtkTreeIter iter;
55                 LinphoneAddress *la=cl->dir==LinphoneCallIncoming ? cl->from : cl->to;
56                 char *addr= linphone_address_as_string_uri_only (la);
57                 const char *display;
58                 gchar *logtxt, *minutes, *seconds;
59                 gchar quality[20];
60                 
61                 display=linphone_address_get_display_name (la);
62                 if (display==NULL){
63                         display=linphone_address_get_username (la);
64                         if (display==NULL)
65                                 display=linphone_address_get_domain (la);
66                 }
67                 if (cl->quality!=-1){
68                         snprintf(quality,sizeof(quality),"%.1f",cl->quality);
69                 }
70                 minutes=g_markup_printf_escaped(
71                         ngettext("%i minute", "%i minutes", cl->duration/60),
72                         cl->duration/60);
73                 seconds=g_markup_printf_escaped(
74                         ngettext("%i second", "%i seconds", cl->duration%60),
75                         cl->duration%60);
76                 logtxt=g_markup_printf_escaped(
77                                 _("<big><b>%s</b></big>\t<small><i>%s</i>\t"
78                                         "<i>Quality: %s</i></small>\n%s\t%s %s\t"),
79                                 display, addr, cl->quality!=-1 ? quality : _("n/a"),
80                                 cl->start_date, minutes, seconds);
81                 g_free(minutes);
82                 g_free(seconds);
83                 gtk_list_store_append (store,&iter);
84                 gtk_list_store_set (store,&iter,
85                                0, cl->dir==LinphoneCallOutgoing ? GTK_STOCK_GO_UP : GTK_STOCK_GO_DOWN,
86                                1, logtxt,2,la,-1);
87                 ms_free(addr);
88                 g_free(logtxt);
89         }
90         
91 }
92
93 static bool_t put_selection_to_uribar(GtkWidget *treeview){
94         GtkTreeSelection *sel;
95
96         sel=gtk_tree_view_get_selection(GTK_TREE_VIEW(treeview));
97         if (sel!=NULL){
98                 GtkTreeModel *model=NULL;
99                 GtkTreeIter iter;
100                 if (gtk_tree_selection_get_selected (sel,&model,&iter)){
101                         gpointer pla;
102                         LinphoneAddress *la;
103                         char *tmp;
104                         gtk_tree_model_get(model,&iter,2,&pla,-1);
105                         la=(LinphoneAddress*)pla;
106                         tmp=linphone_address_as_string (la);
107                         gtk_entry_set_text(GTK_ENTRY(linphone_gtk_get_widget(linphone_gtk_get_main_window(),"uribar")),tmp);
108                         ms_free(tmp);
109                         return TRUE;
110                 }
111         }
112         return FALSE;
113 }
114
115 void linphone_gtk_history_row_activated(GtkWidget *treeview){
116         if (put_selection_to_uribar(treeview)){
117                 GtkWidget *mw=linphone_gtk_get_main_window();
118                 linphone_gtk_start_call(linphone_gtk_get_widget(mw,"start_call"));
119         }
120 }
121
122 void linphone_gtk_history_row_selected(GtkWidget *treeview){
123         put_selection_to_uribar(treeview);
124 }
125
126 void linphone_gtk_clear_call_logs(GtkWidget *button){
127         linphone_core_clear_call_logs (linphone_gtk_get_core());
128         linphone_gtk_call_log_update(gtk_widget_get_toplevel(button));
129 }
130
131 void linphone_gtk_call_log_callback(GtkWidget *button){
132         GtkWidget *mw=linphone_gtk_get_main_window();
133         if (put_selection_to_uribar(linphone_gtk_get_widget(mw,"logs_view")))
134                         linphone_gtk_start_call(linphone_gtk_get_widget(mw,"start_call"));
135 }
136
137 void linphone_gtk_call_log_response(GtkWidget *w, guint response_id){
138         GtkWidget *mw=linphone_gtk_get_main_window();
139         if (response_id==1){
140                 if (put_selection_to_uribar(linphone_gtk_get_widget(w,"logs_view")))
141                         linphone_gtk_start_call(linphone_gtk_get_widget(mw,"start_call"));
142         }else if (response_id==2){
143                 linphone_core_clear_call_logs (linphone_gtk_get_core());
144                 linphone_gtk_call_log_update(w);
145                 return;
146         }
147         g_object_set_data(G_OBJECT(mw),"call_logs",NULL);
148         gtk_widget_destroy(w);
149 }
150
151
152
153 GtkWidget * linphone_gtk_show_call_logs(void){
154         GtkWidget *mw=linphone_gtk_get_main_window();
155
156         GtkWidget *w=(GtkWidget*)g_object_get_data(G_OBJECT(linphone_gtk_get_main_window()),"call_logs");
157         if (w==NULL){
158                 w=linphone_gtk_create_window("call_logs");
159 //              gtk_button_set_image(GTK_BUTTON(linphone_gtk_get_widget(w,"call_back_button")),
160 //                                   create_pixmap (linphone_gtk_get_ui_config("callback_button","status-green.png")));
161                 g_object_set_data(G_OBJECT(mw),"call_logs",w);
162                 g_signal_connect(G_OBJECT(w),"response",(GCallback)linphone_gtk_call_log_response,NULL);
163                 gtk_widget_show(w);
164                 linphone_gtk_call_log_update(w);
165         }else gtk_window_present(GTK_WINDOW(w));
166         return w;
167 }
168