diff --git a/gtk/calllogs.c b/gtk/calllogs.c index f956c6e6b..71e93cc2b 100644 --- a/gtk/calllogs.c +++ b/gtk/calllogs.c @@ -242,7 +242,7 @@ void linphone_gtk_call_log_clear_missed_call(){ GtkNotebook *notebook=GTK_NOTEBOOK(linphone_gtk_get_widget(mw,"viewswitch")); GtkWidget *page=gtk_notebook_get_nth_page(notebook,0); GtkWidget *box=gtk_hbox_new(FALSE,0); - GtkWidget *image=gtk_image_new_from_stock(GTK_STOCK_REFRESH,GTK_ICON_SIZE_MENU); + GtkWidget *image=gtk_image_new_from_icon_name("linphone-history",GTK_ICON_SIZE_MENU); GtkWidget *l; const gchar*text=gtk_label_get_text(GTK_LABEL(linphone_gtk_get_widget(mw,"label3"))); @@ -268,7 +268,7 @@ void linphone_gtk_call_log_display_missed_call(int nb){ GtkWidget *page=gtk_notebook_get_nth_page(notebook,0); GtkWidget *ebox=gtk_event_box_new(); GtkWidget *box=gtk_hbox_new(FALSE,0); - GtkWidget *image=gtk_image_new_from_stock(GTK_STOCK_REFRESH,GTK_ICON_SIZE_MENU); + GtkWidget *image=gtk_image_new_from_icon_name("linphone-history",GTK_ICON_SIZE_MENU); GtkWidget *l; gchar *buf; diff --git a/gtk/conf_frame.ui b/gtk/conf_frame.ui index 1012efa88..c9503e7f6 100644 --- a/gtk/conf_frame.ui +++ b/gtk/conf_frame.ui @@ -43,11 +43,10 @@ False - gtk-media-record + Record True True True - True diff --git a/gtk/conference.c b/gtk/conference.c index e820b8244..175cfc482 100644 --- a/gtk/conference.c +++ b/gtk/conference.c @@ -34,7 +34,7 @@ static GtkWidget *create_conference_label(void){ GtkWidget *box=gtk_hbox_new(FALSE,0); - gtk_box_pack_start(GTK_BOX(box),gtk_image_new_from_stock(GTK_STOCK_ADD,GTK_ICON_SIZE_MENU),FALSE,FALSE,0); + gtk_box_pack_start(GTK_BOX(box),gtk_image_new_from_icon_name("linphone-conference-start",GTK_ICON_SIZE_MENU),FALSE,FALSE,0); gtk_box_pack_end(GTK_BOX(box),gtk_label_new(_("Conference")),TRUE,FALSE,0); gtk_widget_show_all(box); return box; @@ -88,7 +88,9 @@ static GtkWidget * create_conference_panel(void){ GtkWidget *box; GtkWidget *viewswitch=linphone_gtk_get_widget(mw,"viewswitch"); GtkWidget *participant; + GtkWidget *record = linphone_gtk_get_widget(conf_frame, "conf_record_button"); + gtk_button_set_image(GTK_BUTTON(record), gtk_image_new_from_icon_name("linphone-record", GTK_ICON_SIZE_BUTTON)); gtk_button_set_image(GTK_BUTTON(button_conf),image); g_signal_connect_swapped(G_OBJECT(button_conf),"clicked",(GCallback)linphone_gtk_terminate_call,NULL); g_object_set_data(G_OBJECT(mw),"conf_frame",(gpointer)conf_frame); diff --git a/gtk/friendlist.c b/gtk/friendlist.c index e66da45cc..616685e27 100644 --- a/gtk/friendlist.c +++ b/gtk/friendlist.c @@ -453,11 +453,12 @@ static void icon_press_handler(GtkEntry *entry){ } static void update_star(GtkEntry *entry, gboolean is_known){ + gtk_entry_set_icon_from_icon_name(entry,GTK_ENTRY_ICON_SECONDARY,"linphone-contact-add"); if (is_known){ - gtk_entry_set_icon_from_icon_name(entry,GTK_ENTRY_ICON_SECONDARY,"linphone-contact-bookmarked"); + gtk_entry_set_icon_sensitive(GTK_ENTRY(entry),GTK_ENTRY_ICON_SECONDARY,FALSE); gtk_entry_set_icon_tooltip_text(GTK_ENTRY(entry),GTK_ENTRY_ICON_SECONDARY,NULL); }else{ - gtk_entry_set_icon_from_icon_name(entry,GTK_ENTRY_ICON_SECONDARY,"linphone-contact-not-bookmarked"); + gtk_entry_set_icon_sensitive(GTK_ENTRY(entry),GTK_ENTRY_ICON_SECONDARY,TRUE); gtk_entry_set_icon_tooltip_text(GTK_ENTRY(entry),GTK_ENTRY_ICON_SECONDARY,_("Add to addressbook")); } } @@ -607,15 +608,6 @@ void linphone_gtk_friend_list_on_presence_column_clicked(GtkTreeModel *model){ } #endif -void create_button(){ - GtkWidget *main_window = linphone_gtk_get_main_window (); - GtkWidget *button_add = linphone_gtk_get_widget(main_window,"add_button"); - GtkWidget *image; - - image=gtk_image_new_from_stock(GTK_STOCK_ADD,GTK_ICON_SIZE_MENU); - gtk_container_add (GTK_CONTAINER (button_add), image); -} - static void linphone_gtk_friend_list_init(GtkWidget *friendlist){ GtkTreeModel *store = gtk_tree_view_get_model(GTK_TREE_VIEW(friendlist)); GtkTreeSelection *select = gtk_tree_view_get_selection (GTK_TREE_VIEW (friendlist)); diff --git a/gtk/in_call_frame.ui b/gtk/in_call_frame.ui index 5721081b6..f58ed61d9 100644 --- a/gtk/in_call_frame.ui +++ b/gtk/in_call_frame.ui @@ -47,11 +47,10 @@ False - + True False - gtk-dialog-authentication - 1 + linphone-security-pending False @@ -59,18 +58,6 @@ 0 - - - True - False - gtk-apply - - - False - False - 1 - - True @@ -80,7 +67,7 @@ True True 2 - 2 + 1 @@ -94,7 +81,7 @@ False False - 3 + 2 @@ -245,12 +232,11 @@ False - gtk-media-record + Record True True True Record this call to an audio file - True diff --git a/gtk/incall_view.c b/gtk/incall_view.c index a3324fe77..c21752d0c 100644 --- a/gtk/incall_view.c +++ b/gtk/incall_view.c @@ -79,7 +79,7 @@ void linphone_gtk_call_update_tab_header(LinphoneCall *call,gboolean pause){ gchar *text; if(pause){ - i=gtk_image_new_from_stock(GTK_STOCK_MEDIA_PAUSE,GTK_ICON_SIZE_BUTTON); + i=gtk_image_new_from_icon_name("linphone-hold-off",GTK_ICON_SIZE_BUTTON); } else { i=gtk_image_new_from_icon_name("linphone-start-call", GTK_ICON_SIZE_BUTTON); } @@ -410,6 +410,7 @@ void linphone_gtk_create_in_call_view(LinphoneCall *call){ GtkWidget *audio_bar = linphone_gtk_get_widget(call_view, "incall_audioview"); static int call_index=1; int idx; + GtkWidget *record; GtkWidget *transfer; GtkWidget *conf; GtkWidget *button; @@ -434,14 +435,16 @@ void linphone_gtk_create_in_call_view(LinphoneCall *call){ linphone_gtk_enable_mute_button( GTK_BUTTON(linphone_gtk_get_widget(call_view,"incall_mute")),FALSE); + record = linphone_gtk_get_widget(call_view, "record_button"); + gtk_button_set_image(GTK_BUTTON(record), gtk_image_new_from_icon_name("linphone-record", GTK_ICON_SIZE_BUTTON)); + gtk_widget_hide(record); transfer = linphone_gtk_get_widget(call_view,"transfer_button"); - gtk_button_set_image(GTK_BUTTON(transfer),gtk_image_new_from_stock - (GTK_STOCK_GO_FORWARD,GTK_ICON_SIZE_BUTTON)); + gtk_button_set_image(GTK_BUTTON(transfer),gtk_image_new_from_icon_name("linphone-call-transfer",GTK_ICON_SIZE_BUTTON)); g_signal_connect(G_OBJECT(transfer),"clicked",(GCallback)transfer_button_clicked,call); gtk_widget_hide(transfer); conf = linphone_gtk_get_widget(call_view,"conference_button"); - gtk_button_set_image(GTK_BUTTON(conf),gtk_image_new_from_stock (GTK_STOCK_ADD,GTK_ICON_SIZE_BUTTON)); + gtk_button_set_image(GTK_BUTTON(conf),gtk_image_new_from_icon_name("linphone-conference-start",GTK_ICON_SIZE_BUTTON)); g_signal_connect(G_OBJECT(conf),"clicked",(GCallback)conference_button_clicked,call); gtk_widget_hide(conf); @@ -480,7 +483,7 @@ void linphone_gtk_update_video_button(LinphoneCall *call){ button=linphone_gtk_get_widget(call_view,"video_button"); gtk_button_set_image(GTK_BUTTON(button), - gtk_image_new_from_stock(has_video ? GTK_STOCK_REMOVE : GTK_STOCK_ADD,GTK_ICON_SIZE_BUTTON)); + gtk_image_new_from_icon_name(has_video ? "linphone-camera-disabled" : "linphone-camera-enabled",GTK_ICON_SIZE_BUTTON)); g_object_set_data(G_OBJECT(button),"adding_video",GINT_TO_POINTER(!has_video)); if (!linphone_core_video_supported(linphone_call_get_core(call))){ gtk_widget_set_sensitive(button,FALSE); @@ -726,13 +729,13 @@ void linphone_gtk_in_call_view_show_encryption(LinphoneCall *call){ case LinphoneMediaEncryptionSRTP: gtk_widget_show_all(encryption_box); gtk_label_set_markup(GTK_LABEL(label),_("Secured by SRTP")); - gtk_widget_hide(status_icon); + gtk_image_set_from_icon_name(GTK_IMAGE(status_icon), "linphone-security-ok", GTK_ICON_SIZE_MENU); gtk_widget_hide(verify_button); break; case LinphoneMediaEncryptionDTLS: gtk_widget_show_all(encryption_box); gtk_label_set_markup(GTK_LABEL(label),_("Secured by DTLS")); - gtk_widget_hide(status_icon); + gtk_image_set_from_icon_name(GTK_IMAGE(status_icon), "linphone-security-ok", GTK_ICON_SIZE_MENU); gtk_widget_hide(verify_button); break; case LinphoneMediaEncryptionZRTP: @@ -740,8 +743,8 @@ void linphone_gtk_in_call_view_show_encryption(LinphoneCall *call){ gchar *text=g_strdup_printf(_("Secured by ZRTP - [auth token: %s]"),linphone_call_get_authentication_token(call)); gtk_label_set_markup(GTK_LABEL(label),text); g_free(text); - gtk_image_set_from_stock(GTK_IMAGE(status_icon), - verified ? GTK_STOCK_APPLY : GTK_STOCK_DIALOG_WARNING,GTK_ICON_SIZE_MENU); + gtk_image_set_from_icon_name(GTK_IMAGE(status_icon), + verified ? "linphone-security-ok" : "linphone-security-pending", GTK_ICON_SIZE_MENU); gtk_button_set_label(GTK_BUTTON(verify_button), verified ? _("Set unverified") : _("Set verified")); gtk_widget_show_all(encryption_box); diff --git a/gtk/main.c b/gtk/main.c index 51845ad51..65dda00f7 100644 --- a/gtk/main.c +++ b/gtk/main.c @@ -1400,7 +1400,7 @@ static void update_registration_status(LinphoneProxyConfig *cfg, LinphoneRegistr GtkTreeModel *model=gtk_combo_box_get_model(box); GtkTreeIter iter; gboolean found=FALSE; - const char *stock_id=NULL; + const char *icon_name=NULL; if (gtk_tree_model_get_iter_first(model,&iter)){ gpointer p; @@ -1418,21 +1418,21 @@ static void update_registration_status(LinphoneProxyConfig *cfg, LinphoneRegistr } switch (rs){ case LinphoneRegistrationOk: - stock_id=GTK_STOCK_YES; + icon_name="linphone-ok"; break; case LinphoneRegistrationProgress: - stock_id=GTK_STOCK_REFRESH; + icon_name="linphone-inprogress"; break; case LinphoneRegistrationCleared: - stock_id=NULL; + icon_name=NULL; break; case LinphoneRegistrationFailed: - stock_id=GTK_STOCK_DIALOG_WARNING; + icon_name="linphone-failed"; break; default: break; } - gtk_list_store_set(GTK_LIST_STORE(model),&iter,1,stock_id,-1); + gtk_list_store_set(GTK_LIST_STORE(model),&iter,1,icon_name,-1); } static void linphone_gtk_registration_state_changed(LinphoneCore *lc, LinphoneProxyConfig *cfg, @@ -1588,7 +1588,7 @@ static void init_identity_combo(GtkComboBox *box){ gtk_cell_layout_pack_start(GTK_CELL_LAYOUT(box),(r1=gtk_cell_renderer_text_new()),TRUE); gtk_cell_layout_pack_end(GTK_CELL_LAYOUT(box),(r2=gtk_cell_renderer_pixbuf_new()),FALSE); gtk_cell_layout_add_attribute(GTK_CELL_LAYOUT(box),r1,"text",0); - gtk_cell_layout_add_attribute(GTK_CELL_LAYOUT(box),r2,"stock-id",1); + gtk_cell_layout_add_attribute(GTK_CELL_LAYOUT(box),r2,"icon-name",1); g_object_set(G_OBJECT(r1),"ellipsize",PANGO_ELLIPSIZE_END,NULL); gtk_combo_box_set_model(box,GTK_TREE_MODEL(store)); } @@ -1620,7 +1620,7 @@ void linphone_gtk_load_identities(void){ LinphoneProxyConfig *cfg=(LinphoneProxyConfig*)elem->data; gtk_list_store_append(store,&iter); gtk_list_store_set(store,&iter,0,linphone_proxy_config_get_identity(cfg),1, - linphone_proxy_config_is_registered(cfg) ? GTK_STOCK_YES : NULL, + linphone_proxy_config_is_registered(cfg) ? "linphone-ok" : NULL, 2,cfg,-1); if (cfg==def) { def_index=i; diff --git a/gtk/main.ui b/gtk/main.ui index 96b4a20b4..fdbfa9ed6 100644 --- a/gtk/main.ui +++ b/gtk/main.ui @@ -362,11 +362,11 @@ True True - linphone-contact-not-bookmarked + linphone-contact-add False True True - True + False diff --git a/pixmaps/.directory b/pixmaps/.directory new file mode 100644 index 000000000..5264bdb12 --- /dev/null +++ b/pixmaps/.directory @@ -0,0 +1,4 @@ +[Dolphin] +PreviewsShown=true +Timestamp=2015,10,21,11,22,45 +Version=3 diff --git a/pixmaps/CMakeLists.txt b/pixmaps/CMakeLists.txt index 43941b9e4..1e994088c 100644 --- a/pixmaps/CMakeLists.txt +++ b/pixmaps/CMakeLists.txt @@ -43,6 +43,13 @@ install(FILES svg/linphone-chat-new-message.svg svg/linphone-chat-nothing.svg svg/linphone-chat-writing.svg + svg/linphone-ok.svg + svg/linphone-inprogress.svg + svg/linphone-failed.svg + svg/linphone-camera-enabled.svg + svg/linphone-camera-disabled.svg + svg/linphone-security-ok.svg + svg/linphone-security-pending.svg DESTINATION ${ICONS_INSTALL_DIR}/scalable/status PERMISSIONS OWNER_WRITE OWNER_READ GROUP_READ WORLD_READ ) @@ -58,6 +65,9 @@ install(FILES svg/linphone-edit.svg svg/linphone-delete.svg svg/linphone-contact-add.svg + svg/linphone-conference-start.svg + svg/linphone-call-transfer.svg + svg/linphone-record.svg DESTINATION ${ICONS_INSTALL_DIR}/scalable/actions PERMISSIONS OWNER_WRITE OWNER_READ GROUP_READ WORLD_READ ) @@ -78,8 +88,13 @@ install(FILES linphone-call-status-incoming.png linphone-call-status-outgoing.png linphone-call-status-missed.png - linphone-contact-bookmarked.png - linphone-contact-not-bookmarked.png + linphone-ok.png + linphone-inprogress.png + linphone-failed.png + linphone-camera-enabled.png + linphone-camera-disabled.png + linphone-security-ok.png + linphone-security-pending.png DESTINATION ${ICONS_INSTALL_DIR}/48x48/status PERMISSIONS OWNER_WRITE OWNER_READ GROUP_READ WORLD_READ ) @@ -96,6 +111,9 @@ install(FILES linphone-edit.png linphone-delete.png linphone-contact-add.png + linphone-conference-start.png + linphone-call-transfer.png + linphone-record.png DESTINATION ${ICONS_INSTALL_DIR}/48x48/actions PERMISSIONS OWNER_WRITE OWNER_READ GROUP_READ WORLD_READ ) diff --git a/pixmaps/Makefile.am b/pixmaps/Makefile.am index 0874cda0b..b42728811 100644 --- a/pixmaps/Makefile.am +++ b/pixmaps/Makefile.am @@ -28,8 +28,13 @@ dist_status48icons_DATA= \ linphone-call-status-incoming.png \ linphone-call-status-outgoing.png \ linphone-call-status-missed.png \ - linphone-contact-bookmarked.png \ - linphone-contact-not-bookmarked.png + linphone-ok.png \ + linphone-inprogress.png \ + linphone-failed.png \ + linphone-camera-enabled.png \ + linphone-camera-disabled.png \ + linphone-security-ok.png \ + linphone-security-pending.png statussvgiconsdir=$(iconsdir)/scalable/status dist_statussvgicons_DATA= \ @@ -47,7 +52,14 @@ dist_statussvgicons_DATA= \ svg/linphone-chat-new-message-and-writing.svg \ svg/linphone-chat-new-message.svg \ svg/linphone-chat-nothing.svg \ - svg/linphone-chat-writing.svg + svg/linphone-chat-writing.svg \ + svg/linphone-ok.svg \ + svg/linphone-inprogress.svg \ + svg/linphone-failed.svg \ + svg/linphone-camera-enabled.svg \ + svg/linphone-camera-disabled.svg \ + svg/linphone-security-ok.svg \ + svg/linphone-security-pending.svg actions48iconsdir=$(iconsdir)/48x48/actions dist_actions48icons_DATA= \ @@ -61,7 +73,10 @@ dist_actions48icons_DATA= \ linphone-history.png \ linphone-edit.png \ linphone-delete.png \ - linphone-contact-add.png + linphone-contact-add.png \ + linphone-conference-start.png \ + linphone-call-transfer.png \ + linphone-record.png actionssvgiconsdir=$(iconsdir)/scalable/actions dist_actionssvgicons_DATA= \ @@ -74,4 +89,7 @@ dist_actionssvgicons_DATA= \ svg/linphone-history.svg \ svg/linphone-edit.svg \ svg/linphone-delete.svg \ - svg/linphone-contact-add.svg + svg/linphone-contact-add.svg \ + svg/linphone-conference-start.svg \ + svg/linphone-call-transfer.svg \ + svg/linphone-record.svg diff --git a/pixmaps/linphone-call-transfer.png b/pixmaps/linphone-call-transfer.png new file mode 100644 index 000000000..4dc24ce42 Binary files /dev/null and b/pixmaps/linphone-call-transfer.png differ diff --git a/pixmaps/linphone-camera-disabled.png b/pixmaps/linphone-camera-disabled.png new file mode 100644 index 000000000..dfcc711cd Binary files /dev/null and b/pixmaps/linphone-camera-disabled.png differ diff --git a/pixmaps/linphone-camera-enabled.png b/pixmaps/linphone-camera-enabled.png new file mode 100644 index 000000000..4c929b52b Binary files /dev/null and b/pixmaps/linphone-camera-enabled.png differ diff --git a/pixmaps/linphone-conference-start.png b/pixmaps/linphone-conference-start.png new file mode 100644 index 000000000..23dabbc35 Binary files /dev/null and b/pixmaps/linphone-conference-start.png differ diff --git a/pixmaps/linphone-contact-bookmarked.png b/pixmaps/linphone-contact-bookmarked.png deleted file mode 100644 index 45b5d6206..000000000 Binary files a/pixmaps/linphone-contact-bookmarked.png and /dev/null differ diff --git a/pixmaps/linphone-contact-not-bookmarked.png b/pixmaps/linphone-contact-not-bookmarked.png deleted file mode 100644 index 38fdbbb77..000000000 Binary files a/pixmaps/linphone-contact-not-bookmarked.png and /dev/null differ diff --git a/pixmaps/linphone-failed.png b/pixmaps/linphone-failed.png new file mode 100644 index 000000000..f72412139 Binary files /dev/null and b/pixmaps/linphone-failed.png differ diff --git a/pixmaps/linphone-inprogress.png b/pixmaps/linphone-inprogress.png new file mode 100644 index 000000000..4a4371430 Binary files /dev/null and b/pixmaps/linphone-inprogress.png differ diff --git a/pixmaps/linphone-ok.png b/pixmaps/linphone-ok.png new file mode 100644 index 000000000..4bcd6f634 Binary files /dev/null and b/pixmaps/linphone-ok.png differ diff --git a/pixmaps/linphone-record.png b/pixmaps/linphone-record.png new file mode 100644 index 000000000..4ef4b064d Binary files /dev/null and b/pixmaps/linphone-record.png differ diff --git a/pixmaps/linphone-security-ok.png b/pixmaps/linphone-security-ok.png new file mode 100644 index 000000000..38d2ec61c Binary files /dev/null and b/pixmaps/linphone-security-ok.png differ diff --git a/pixmaps/linphone-security-pending.png b/pixmaps/linphone-security-pending.png new file mode 100644 index 000000000..d61faa39a Binary files /dev/null and b/pixmaps/linphone-security-pending.png differ diff --git a/pixmaps/svg/linphone-call-transfer.svg b/pixmaps/svg/linphone-call-transfer.svg new file mode 100644 index 000000000..357ccfad7 --- /dev/null +++ b/pixmaps/svg/linphone-call-transfer.svg @@ -0,0 +1,104 @@ + + + + + + image/svg+xml + + call_transfer + + + + + + call_transfer + Created with Sketch. + + + + + + + + + + + + + + + + + diff --git a/pixmaps/svg/linphone-camera-disabled.svg b/pixmaps/svg/linphone-camera-disabled.svg new file mode 100644 index 000000000..f5ddde244 --- /dev/null +++ b/pixmaps/svg/linphone-camera-disabled.svg @@ -0,0 +1,95 @@ + + + + + + image/svg+xml + + camera_default + + + + + + camera_default + Created with Sketch. + + + + + + + + + + + diff --git a/pixmaps/svg/linphone-camera-enabled.svg b/pixmaps/svg/linphone-camera-enabled.svg new file mode 100644 index 000000000..5138510e3 --- /dev/null +++ b/pixmaps/svg/linphone-camera-enabled.svg @@ -0,0 +1,90 @@ + + + + + + image/svg+xml + + camera_default + + + + + + camera_default + Created with Sketch. + + + + + + + + + + diff --git a/pixmaps/svg/linphone-conference-start.svg b/pixmaps/svg/linphone-conference-start.svg new file mode 100644 index 000000000..eedb7136b --- /dev/null +++ b/pixmaps/svg/linphone-conference-start.svg @@ -0,0 +1,66 @@ + + + + + + image/svg+xml + + conference_start + + + + + + conference_start + Created with Sketch. + + + diff --git a/pixmaps/svg/linphone-failed.svg b/pixmaps/svg/linphone-failed.svg new file mode 100644 index 000000000..98e3fc67f --- /dev/null +++ b/pixmaps/svg/linphone-failed.svg @@ -0,0 +1,73 @@ + + + + + + image/svg+xml + + call_missed + + + + + + call_missed + Created with Sketch. + + + + + + diff --git a/pixmaps/svg/linphone-inprogress.svg b/pixmaps/svg/linphone-inprogress.svg new file mode 100644 index 000000000..871be13b5 --- /dev/null +++ b/pixmaps/svg/linphone-inprogress.svg @@ -0,0 +1,66 @@ + + + + + + image/svg+xml + + chat_message_inprogress + + + + + + chat_message_inprogress + Created with Sketch. + + + diff --git a/pixmaps/svg/linphone-ok.svg b/pixmaps/svg/linphone-ok.svg new file mode 100644 index 000000000..db08198f7 --- /dev/null +++ b/pixmaps/svg/linphone-ok.svg @@ -0,0 +1,95 @@ + + + + + + image/svg+xml + + valid + valid + + + + + + valid + Created with Sketch. + + + + + + + + + + + + diff --git a/pixmaps/svg/linphone-record.svg b/pixmaps/svg/linphone-record.svg new file mode 100644 index 000000000..8709e9509 --- /dev/null +++ b/pixmaps/svg/linphone-record.svg @@ -0,0 +1,78 @@ + + + + + + image/svg+xml + + status_busy + + + + + + status_busy + Created with Sketch. + + + + + diff --git a/pixmaps/svg/linphone-security-ok.svg b/pixmaps/svg/linphone-security-ok.svg new file mode 100644 index 000000000..83e518e9b --- /dev/null +++ b/pixmaps/svg/linphone-security-ok.svg @@ -0,0 +1,76 @@ + + + + + + image/svg+xml + + security_ok + + + + + + security_ok + Created with Sketch. + + + + + + diff --git a/pixmaps/svg/linphone-security-pending.svg b/pixmaps/svg/linphone-security-pending.svg new file mode 100644 index 000000000..084755a29 --- /dev/null +++ b/pixmaps/svg/linphone-security-pending.svg @@ -0,0 +1,76 @@ + + + + + + image/svg+xml + + security_pending + + + + + + security_pending + Created with Sketch. + + + + + +