mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-03 20:46:28 +00:00
add new icons
This commit is contained in:
parent
efcf145867
commit
8fcbb3ebe8
8 changed files with 359 additions and 267 deletions
|
|
@ -164,7 +164,7 @@ void linphone_gtk_in_call_view_terminate(const char *error_msg){
|
||||||
GtkWidget *main_window=linphone_gtk_get_main_window();
|
GtkWidget *main_window=linphone_gtk_get_main_window();
|
||||||
GtkWidget *status=linphone_gtk_get_widget(main_window,"in_call_status");
|
GtkWidget *status=linphone_gtk_get_widget(main_window,"in_call_status");
|
||||||
GtkWidget *animation=linphone_gtk_get_widget(main_window,"in_call_animation");
|
GtkWidget *animation=linphone_gtk_get_widget(main_window,"in_call_animation");
|
||||||
GdkPixbuf *pbuf=create_pixbuf(linphone_gtk_get_ui_config("stop_call_icon","red.png"));
|
GdkPixbuf *pbuf=create_pixbuf(linphone_gtk_get_ui_config("stop_call_icon","stopcall-red.png"));
|
||||||
|
|
||||||
if (error_msg==NULL)
|
if (error_msg==NULL)
|
||||||
gtk_label_set_markup(GTK_LABEL(status),_("<b>Call ended.</b>"));
|
gtk_label_set_markup(GTK_LABEL(status),_("<b>Call ended.</b>"));
|
||||||
|
|
|
||||||
|
|
@ -1048,14 +1048,16 @@ static void linphone_gtk_configure_main_window(){
|
||||||
static const char *stop_call_icon;
|
static const char *stop_call_icon;
|
||||||
static const char *search_icon;
|
static const char *search_icon;
|
||||||
static gboolean update_check_menu;
|
static gboolean update_check_menu;
|
||||||
|
static gboolean buttons_have_borders;
|
||||||
GtkWidget *w=linphone_gtk_get_main_window();
|
GtkWidget *w=linphone_gtk_get_main_window();
|
||||||
if (!config_loaded){
|
if (!config_loaded){
|
||||||
title=linphone_gtk_get_ui_config("title","Linphone");
|
title=linphone_gtk_get_ui_config("title","Linphone");
|
||||||
home=linphone_gtk_get_ui_config("home","http://www.linphone.org");
|
home=linphone_gtk_get_ui_config("home","http://www.linphone.org");
|
||||||
start_call_icon=linphone_gtk_get_ui_config("start_call_icon","green.png");
|
start_call_icon=linphone_gtk_get_ui_config("start_call_icon","startcall-green.png");
|
||||||
stop_call_icon=linphone_gtk_get_ui_config("stop_call_icon","red.png");
|
stop_call_icon=linphone_gtk_get_ui_config("stop_call_icon","stopcall-red.png");
|
||||||
search_icon=linphone_gtk_get_ui_config("directory_search_icon",NULL);
|
search_icon=linphone_gtk_get_ui_config("directory_search_icon",NULL);
|
||||||
update_check_menu=linphone_gtk_get_ui_config_int("update_check_menu",0);
|
update_check_menu=linphone_gtk_get_ui_config_int("update_check_menu",0);
|
||||||
|
buttons_have_borders=linphone_gtk_get_ui_config_int("buttons_border",1);
|
||||||
config_loaded=TRUE;
|
config_loaded=TRUE;
|
||||||
}
|
}
|
||||||
linphone_gtk_configure_window(w,"main_window");
|
linphone_gtk_configure_window(w,"main_window");
|
||||||
|
|
@ -1068,11 +1070,15 @@ static void linphone_gtk_configure_main_window(){
|
||||||
if (start_call_icon){
|
if (start_call_icon){
|
||||||
GdkPixbuf *pbuf=create_pixbuf(start_call_icon);
|
GdkPixbuf *pbuf=create_pixbuf(start_call_icon);
|
||||||
gtk_image_set_from_pixbuf(GTK_IMAGE(linphone_gtk_get_widget(w,"start_call_icon")),pbuf);
|
gtk_image_set_from_pixbuf(GTK_IMAGE(linphone_gtk_get_widget(w,"start_call_icon")),pbuf);
|
||||||
|
if (buttons_have_borders)
|
||||||
|
gtk_button_set_relief(GTK_BUTTON(linphone_gtk_get_widget(w,"start_call")),GTK_RELIEF_NORMAL);
|
||||||
g_object_unref(G_OBJECT(pbuf));
|
g_object_unref(G_OBJECT(pbuf));
|
||||||
}
|
}
|
||||||
if (stop_call_icon){
|
if (stop_call_icon){
|
||||||
GdkPixbuf *pbuf=create_pixbuf(stop_call_icon);
|
GdkPixbuf *pbuf=create_pixbuf(stop_call_icon);
|
||||||
gtk_image_set_from_pixbuf(GTK_IMAGE(linphone_gtk_get_widget(w,"terminate_call_icon")),pbuf);
|
gtk_image_set_from_pixbuf(GTK_IMAGE(linphone_gtk_get_widget(w,"terminate_call_icon")),pbuf);
|
||||||
|
if (buttons_have_borders)
|
||||||
|
gtk_button_set_relief(GTK_BUTTON(linphone_gtk_get_widget(w,"terminate_call")),GTK_RELIEF_NORMAL);
|
||||||
g_object_unref(G_OBJECT(pbuf));
|
g_object_unref(G_OBJECT(pbuf));
|
||||||
}
|
}
|
||||||
if (search_icon){
|
if (search_icon){
|
||||||
|
|
@ -1086,6 +1092,20 @@ static void linphone_gtk_configure_main_window(){
|
||||||
tmp=g_strdup(home);
|
tmp=g_strdup(home);
|
||||||
g_object_set_data(G_OBJECT(menu_item),"home",tmp);
|
g_object_set_data(G_OBJECT(menu_item),"home",tmp);
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
GdkPixbuf *pbuf=create_pixbuf("contact-orange.png");
|
||||||
|
if (pbuf) {
|
||||||
|
gtk_image_set_from_pixbuf(GTK_IMAGE(linphone_gtk_get_widget(w,"contact_tab_icon")),pbuf);
|
||||||
|
g_object_unref(G_OBJECT(pbuf));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{
|
||||||
|
GdkPixbuf *pbuf=create_pixbuf("dialer-orange.png");
|
||||||
|
if (pbuf) {
|
||||||
|
gtk_image_set_from_pixbuf(GTK_IMAGE(linphone_gtk_get_widget(w,"keypad_tab_icon")),pbuf);
|
||||||
|
g_object_unref(G_OBJECT(pbuf));
|
||||||
|
}
|
||||||
|
}
|
||||||
if (!linphone_gtk_can_manage_accounts())
|
if (!linphone_gtk_can_manage_accounts())
|
||||||
gtk_widget_hide(linphone_gtk_get_widget(w,"run_assistant"));
|
gtk_widget_hide(linphone_gtk_get_widget(w,"run_assistant"));
|
||||||
if (update_check_menu){
|
if (update_check_menu){
|
||||||
|
|
|
||||||
|
|
@ -285,6 +285,7 @@
|
||||||
<widget class="GtkEntry" id="uribar">
|
<widget class="GtkEntry" id="uribar">
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can_focus">True</property>
|
<property name="can_focus">True</property>
|
||||||
|
<property name="has_focus">True</property>
|
||||||
<property name="tooltip" translatable="yes">Enter username, phone number, or full sip address</property>
|
<property name="tooltip" translatable="yes">Enter username, phone number, or full sip address</property>
|
||||||
<property name="invisible_char">●</property>
|
<property name="invisible_char">●</property>
|
||||||
<signal name="activate" handler="linphone_gtk_uri_bar_activate"/>
|
<signal name="activate" handler="linphone_gtk_uri_bar_activate"/>
|
||||||
|
|
@ -708,11 +709,28 @@ Fiber Channel</property>
|
||||||
</child>
|
</child>
|
||||||
</widget>
|
</widget>
|
||||||
</child>
|
</child>
|
||||||
|
<child>
|
||||||
|
<widget class="GtkHBox" id="hbox2">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<child>
|
||||||
|
<widget class="GtkImage" id="contact_tab_icon">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="stock">gtk-missing-image</property>
|
||||||
|
</widget>
|
||||||
|
<packing>
|
||||||
|
<property name="position">0</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
<child>
|
<child>
|
||||||
<widget class="GtkLabel" id="label15">
|
<widget class="GtkLabel" id="label15">
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="label" translatable="yes">Contacts</property>
|
<property name="label" translatable="yes">Contacts</property>
|
||||||
</widget>
|
</widget>
|
||||||
|
<packing>
|
||||||
|
<property name="position">1</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
</widget>
|
||||||
<packing>
|
<packing>
|
||||||
<property name="tab_fill">False</property>
|
<property name="tab_fill">False</property>
|
||||||
<property name="type">tab</property>
|
<property name="type">tab</property>
|
||||||
|
|
@ -732,6 +750,10 @@ Fiber Channel</property>
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="xscale">0</property>
|
<property name="xscale">0</property>
|
||||||
<property name="yscale">0</property>
|
<property name="yscale">0</property>
|
||||||
|
<child>
|
||||||
|
<widget class="GtkAspectFrame" id="aspectframe1">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="label_xalign">0</property>
|
||||||
<child>
|
<child>
|
||||||
<widget class="GtkTable" id="dtmf_table">
|
<widget class="GtkTable" id="dtmf_table">
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
|
|
@ -739,12 +761,12 @@ Fiber Channel</property>
|
||||||
<property name="border_width">4</property>
|
<property name="border_width">4</property>
|
||||||
<property name="n_rows">4</property>
|
<property name="n_rows">4</property>
|
||||||
<property name="n_columns">4</property>
|
<property name="n_columns">4</property>
|
||||||
<property name="column_spacing">20</property>
|
|
||||||
<property name="row_spacing">10</property>
|
|
||||||
<property name="homogeneous">True</property>
|
<property name="homogeneous">True</property>
|
||||||
<child>
|
<child>
|
||||||
<widget class="GtkButton" id="dtmf_D">
|
<widget class="GtkButton" id="dtmf_D">
|
||||||
<property name="label" translatable="yes">D</property>
|
<property name="label" translatable="yes">D</property>
|
||||||
|
<property name="width_request">50</property>
|
||||||
|
<property name="height_request">50</property>
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can_focus">True</property>
|
<property name="can_focus">True</property>
|
||||||
<property name="receives_default">True</property>
|
<property name="receives_default">True</property>
|
||||||
|
|
@ -762,6 +784,8 @@ Fiber Channel</property>
|
||||||
<child>
|
<child>
|
||||||
<widget class="GtkButton" id="dtmf_hash">
|
<widget class="GtkButton" id="dtmf_hash">
|
||||||
<property name="label" translatable="yes">#</property>
|
<property name="label" translatable="yes">#</property>
|
||||||
|
<property name="width_request">50</property>
|
||||||
|
<property name="height_request">50</property>
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can_focus">True</property>
|
<property name="can_focus">True</property>
|
||||||
<property name="receives_default">True</property>
|
<property name="receives_default">True</property>
|
||||||
|
|
@ -779,6 +803,8 @@ Fiber Channel</property>
|
||||||
<child>
|
<child>
|
||||||
<widget class="GtkButton" id="dtmf_0">
|
<widget class="GtkButton" id="dtmf_0">
|
||||||
<property name="label" translatable="yes">0</property>
|
<property name="label" translatable="yes">0</property>
|
||||||
|
<property name="width_request">50</property>
|
||||||
|
<property name="height_request">50</property>
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can_focus">True</property>
|
<property name="can_focus">True</property>
|
||||||
<property name="receives_default">True</property>
|
<property name="receives_default">True</property>
|
||||||
|
|
@ -796,6 +822,8 @@ Fiber Channel</property>
|
||||||
<child>
|
<child>
|
||||||
<widget class="GtkButton" id="dtmf_star">
|
<widget class="GtkButton" id="dtmf_star">
|
||||||
<property name="label" translatable="yes">*</property>
|
<property name="label" translatable="yes">*</property>
|
||||||
|
<property name="width_request">50</property>
|
||||||
|
<property name="height_request">50</property>
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can_focus">True</property>
|
<property name="can_focus">True</property>
|
||||||
<property name="receives_default">True</property>
|
<property name="receives_default">True</property>
|
||||||
|
|
@ -811,6 +839,8 @@ Fiber Channel</property>
|
||||||
<child>
|
<child>
|
||||||
<widget class="GtkButton" id="dtmf_C">
|
<widget class="GtkButton" id="dtmf_C">
|
||||||
<property name="label" translatable="yes">C</property>
|
<property name="label" translatable="yes">C</property>
|
||||||
|
<property name="width_request">50</property>
|
||||||
|
<property name="height_request">50</property>
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can_focus">True</property>
|
<property name="can_focus">True</property>
|
||||||
<property name="receives_default">True</property>
|
<property name="receives_default">True</property>
|
||||||
|
|
@ -828,6 +858,8 @@ Fiber Channel</property>
|
||||||
<child>
|
<child>
|
||||||
<widget class="GtkButton" id="dtmf_9">
|
<widget class="GtkButton" id="dtmf_9">
|
||||||
<property name="label" translatable="yes">9</property>
|
<property name="label" translatable="yes">9</property>
|
||||||
|
<property name="width_request">50</property>
|
||||||
|
<property name="height_request">50</property>
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can_focus">True</property>
|
<property name="can_focus">True</property>
|
||||||
<property name="receives_default">True</property>
|
<property name="receives_default">True</property>
|
||||||
|
|
@ -845,6 +877,8 @@ Fiber Channel</property>
|
||||||
<child>
|
<child>
|
||||||
<widget class="GtkButton" id="dtmf_8">
|
<widget class="GtkButton" id="dtmf_8">
|
||||||
<property name="label" translatable="yes">8</property>
|
<property name="label" translatable="yes">8</property>
|
||||||
|
<property name="width_request">50</property>
|
||||||
|
<property name="height_request">50</property>
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can_focus">True</property>
|
<property name="can_focus">True</property>
|
||||||
<property name="receives_default">True</property>
|
<property name="receives_default">True</property>
|
||||||
|
|
@ -862,6 +896,8 @@ Fiber Channel</property>
|
||||||
<child>
|
<child>
|
||||||
<widget class="GtkButton" id="dtmf_7">
|
<widget class="GtkButton" id="dtmf_7">
|
||||||
<property name="label" translatable="yes">7</property>
|
<property name="label" translatable="yes">7</property>
|
||||||
|
<property name="width_request">50</property>
|
||||||
|
<property name="height_request">50</property>
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can_focus">True</property>
|
<property name="can_focus">True</property>
|
||||||
<property name="receives_default">True</property>
|
<property name="receives_default">True</property>
|
||||||
|
|
@ -877,6 +913,8 @@ Fiber Channel</property>
|
||||||
<child>
|
<child>
|
||||||
<widget class="GtkButton" id="dtmf_B">
|
<widget class="GtkButton" id="dtmf_B">
|
||||||
<property name="label" translatable="yes">B</property>
|
<property name="label" translatable="yes">B</property>
|
||||||
|
<property name="width_request">50</property>
|
||||||
|
<property name="height_request">50</property>
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can_focus">True</property>
|
<property name="can_focus">True</property>
|
||||||
<property name="receives_default">True</property>
|
<property name="receives_default">True</property>
|
||||||
|
|
@ -894,6 +932,8 @@ Fiber Channel</property>
|
||||||
<child>
|
<child>
|
||||||
<widget class="GtkButton" id="dtmf_6">
|
<widget class="GtkButton" id="dtmf_6">
|
||||||
<property name="label" translatable="yes">6</property>
|
<property name="label" translatable="yes">6</property>
|
||||||
|
<property name="width_request">50</property>
|
||||||
|
<property name="height_request">50</property>
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can_focus">True</property>
|
<property name="can_focus">True</property>
|
||||||
<property name="receives_default">True</property>
|
<property name="receives_default">True</property>
|
||||||
|
|
@ -911,6 +951,8 @@ Fiber Channel</property>
|
||||||
<child>
|
<child>
|
||||||
<widget class="GtkButton" id="dtmf_5">
|
<widget class="GtkButton" id="dtmf_5">
|
||||||
<property name="label" translatable="yes">5</property>
|
<property name="label" translatable="yes">5</property>
|
||||||
|
<property name="width_request">50</property>
|
||||||
|
<property name="height_request">50</property>
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can_focus">True</property>
|
<property name="can_focus">True</property>
|
||||||
<property name="receives_default">True</property>
|
<property name="receives_default">True</property>
|
||||||
|
|
@ -928,6 +970,8 @@ Fiber Channel</property>
|
||||||
<child>
|
<child>
|
||||||
<widget class="GtkButton" id="dtmf_4">
|
<widget class="GtkButton" id="dtmf_4">
|
||||||
<property name="label" translatable="yes">4</property>
|
<property name="label" translatable="yes">4</property>
|
||||||
|
<property name="width_request">50</property>
|
||||||
|
<property name="height_request">50</property>
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can_focus">True</property>
|
<property name="can_focus">True</property>
|
||||||
<property name="receives_default">True</property>
|
<property name="receives_default">True</property>
|
||||||
|
|
@ -943,6 +987,8 @@ Fiber Channel</property>
|
||||||
<child>
|
<child>
|
||||||
<widget class="GtkButton" id="dtmf_A">
|
<widget class="GtkButton" id="dtmf_A">
|
||||||
<property name="label" translatable="yes">A</property>
|
<property name="label" translatable="yes">A</property>
|
||||||
|
<property name="width_request">50</property>
|
||||||
|
<property name="height_request">50</property>
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can_focus">True</property>
|
<property name="can_focus">True</property>
|
||||||
<property name="receives_default">True</property>
|
<property name="receives_default">True</property>
|
||||||
|
|
@ -958,6 +1004,8 @@ Fiber Channel</property>
|
||||||
<child>
|
<child>
|
||||||
<widget class="GtkButton" id="dtmf_3">
|
<widget class="GtkButton" id="dtmf_3">
|
||||||
<property name="label" translatable="yes">3</property>
|
<property name="label" translatable="yes">3</property>
|
||||||
|
<property name="width_request">50</property>
|
||||||
|
<property name="height_request">50</property>
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can_focus">True</property>
|
<property name="can_focus">True</property>
|
||||||
<property name="receives_default">True</property>
|
<property name="receives_default">True</property>
|
||||||
|
|
@ -973,6 +1021,8 @@ Fiber Channel</property>
|
||||||
<child>
|
<child>
|
||||||
<widget class="GtkButton" id="dtmf_2">
|
<widget class="GtkButton" id="dtmf_2">
|
||||||
<property name="label" translatable="yes">2</property>
|
<property name="label" translatable="yes">2</property>
|
||||||
|
<property name="width_request">50</property>
|
||||||
|
<property name="height_request">50</property>
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can_focus">True</property>
|
<property name="can_focus">True</property>
|
||||||
<property name="receives_default">True</property>
|
<property name="receives_default">True</property>
|
||||||
|
|
@ -988,6 +1038,8 @@ Fiber Channel</property>
|
||||||
<child>
|
<child>
|
||||||
<widget class="GtkButton" id="dtmf_1">
|
<widget class="GtkButton" id="dtmf_1">
|
||||||
<property name="label" translatable="yes">1</property>
|
<property name="label" translatable="yes">1</property>
|
||||||
|
<property name="width_request">50</property>
|
||||||
|
<property name="height_request">50</property>
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="can_focus">True</property>
|
<property name="can_focus">True</property>
|
||||||
<property name="receives_default">True</property>
|
<property name="receives_default">True</property>
|
||||||
|
|
@ -1002,6 +1054,8 @@ Fiber Channel</property>
|
||||||
</child>
|
</child>
|
||||||
</widget>
|
</widget>
|
||||||
</child>
|
</child>
|
||||||
|
</widget>
|
||||||
|
</child>
|
||||||
<child>
|
<child>
|
||||||
<placeholder/>
|
<placeholder/>
|
||||||
<packing>
|
<packing>
|
||||||
|
|
@ -1021,11 +1075,28 @@ Fiber Channel</property>
|
||||||
<property name="position">1</property>
|
<property name="position">1</property>
|
||||||
</packing>
|
</packing>
|
||||||
</child>
|
</child>
|
||||||
|
<child>
|
||||||
|
<widget class="GtkHBox" id="hbox8">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<child>
|
||||||
|
<widget class="GtkImage" id="keypad_tab_icon">
|
||||||
|
<property name="visible">True</property>
|
||||||
|
<property name="stock">gtk-missing-image</property>
|
||||||
|
</widget>
|
||||||
|
<packing>
|
||||||
|
<property name="position">0</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
<child>
|
<child>
|
||||||
<widget class="GtkLabel" id="label16">
|
<widget class="GtkLabel" id="label16">
|
||||||
<property name="visible">True</property>
|
<property name="visible">True</property>
|
||||||
<property name="label" translatable="yes">Keypad</property>
|
<property name="label" translatable="yes">Keypad</property>
|
||||||
</widget>
|
</widget>
|
||||||
|
<packing>
|
||||||
|
<property name="position">1</property>
|
||||||
|
</packing>
|
||||||
|
</child>
|
||||||
|
</widget>
|
||||||
<packing>
|
<packing>
|
||||||
<property name="position">1</property>
|
<property name="position">1</property>
|
||||||
<property name="tab_fill">False</property>
|
<property name="tab_fill">False</property>
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,7 @@ sip-otp.png sip-wfa.png \
|
||||||
green.png red.png \
|
green.png red.png \
|
||||||
mic_muted.png mic_active.png \
|
mic_muted.png mic_active.png \
|
||||||
linphone-3-250x130.png linphone-3.png linphone2-57x57.png \
|
linphone-3-250x130.png linphone-3.png linphone2-57x57.png \
|
||||||
linphone.png linphone-banner.png
|
linphone.png linphone-banner.png \
|
||||||
|
contact-orange.png dialer-orange.png
|
||||||
|
|
||||||
EXTRA_DIST=$(pixmap_DATA)
|
EXTRA_DIST=$(pixmap_DATA)
|
||||||
|
|
|
||||||
BIN
pixmaps/contact-orange.png
Normal file
BIN
pixmaps/contact-orange.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 734 B |
BIN
pixmaps/dialer-orange.png
Normal file
BIN
pixmaps/dialer-orange.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.3 KiB |
BIN
pixmaps/startcall-green.png
Normal file
BIN
pixmaps/startcall-green.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 3 KiB |
BIN
pixmaps/stopcall-red.png
Normal file
BIN
pixmaps/stopcall-red.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.9 KiB |
Loading…
Add table
Reference in a new issue