Replace a lot of stock icons by our own ones.

This commit is contained in:
Ghislain MARY 2015-10-21 17:32:51 +02:00
parent af28361f22
commit da66ace7ed
33 changed files with 902 additions and 61 deletions

View file

@ -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;

View file

@ -43,11 +43,10 @@
<property name="can_focus">False</property>
<child>
<object class="GtkToggleButton" id="conf_record_button">
<property name="label">gtk-media-record</property>
<property name="label" translatable="yes">Record</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">True</property>
<property name="use_stock">True</property>
<signal name="toggled" handler="linphone_gtk_record_call_toggled" swapped="no"/>
</object>
<packing>

View file

@ -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);

View file

@ -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));

View file

@ -47,11 +47,10 @@
<object class="GtkHBox" id="encryption_box">
<property name="can_focus">False</property>
<child>
<object class="GtkImage" id="dialog_authenticator_image">
<object class="GtkImage" id="encryption_status_icon">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="stock">gtk-dialog-authentication</property>
<property name="icon-size">1</property>
<property name="icon_name">linphone-security-pending</property>
</object>
<packing>
<property name="expand">False</property>
@ -59,18 +58,6 @@
<property name="position">0</property>
</packing>
</child>
<child>
<object class="GtkImage" id="encryption_status_icon">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="stock">gtk-apply</property>
</object>
<packing>
<property name="expand">False</property>
<property name="fill">False</property>
<property name="position">1</property>
</packing>
</child>
<child>
<object class="GtkLabel" id="encryption_label">
<property name="visible">True</property>
@ -80,7 +67,7 @@
<property name="expand">True</property>
<property name="fill">True</property>
<property name="padding">2</property>
<property name="position">2</property>
<property name="position">1</property>
</packing>
</child>
<child>
@ -94,7 +81,7 @@
<packing>
<property name="expand">False</property>
<property name="fill">False</property>
<property name="position">3</property>
<property name="position">2</property>
</packing>
</child>
</object>
@ -245,12 +232,11 @@
<property name="can_focus">False</property>
<child>
<object class="GtkToggleButton" id="record_button">
<property name="label">gtk-media-record</property>
<property name="label" translatable="yes">Record</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">True</property>
<property name="tooltip_text" translatable="yes">Record this call to an audio file</property>
<property name="use_stock">True</property>
<signal name="toggled" handler="linphone_gtk_record_call_toggled" swapped="no"/>
</object>
<packing>

View file

@ -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);

View file

@ -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;

View file

@ -362,11 +362,11 @@
<property name="can_focus">True</property>
<property name="invisible_char">●</property>
<property name="invisible_char_set">True</property>
<property name="secondary_icon_name">linphone-contact-not-bookmarked</property>
<property name="secondary_icon_name">linphone-contact-add</property>
<property name="primary_icon_activatable">False</property>
<property name="secondary_icon_activatable">True</property>
<property name="primary_icon_sensitive">True</property>
<property name="secondary_icon_sensitive">True</property>
<property name="secondary_icon_sensitive">False</property>
<signal name="activate" handler="linphone_gtk_uri_bar_activate" swapped="no"/>
</object>
<packing>

4
pixmaps/.directory Normal file
View file

@ -0,0 +1,4 @@
[Dolphin]
PreviewsShown=true
Timestamp=2015,10,21,11,22,45
Version=3

View file

@ -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
)

View file

@ -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

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 871 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

BIN
pixmaps/linphone-failed.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

BIN
pixmaps/linphone-ok.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

BIN
pixmaps/linphone-record.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 694 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 707 B

View file

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="118"
height="118"
viewBox="0 0 118 118"
version="1.1"
id="svg4359"
inkscape:version="0.91 r13725"
sodipodi:docname="linphone-call-transfer.svg"
inkscape:export-filename="/home/ghislain/code/linphone-desktop/submodules/linphone/pixmaps/linphone-call-transfer.png"
inkscape:export-xdpi="36.610001"
inkscape:export-ydpi="36.610001">
<metadata
id="metadata4383">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>call_transfer</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1141"
id="namedview4381"
showgrid="false"
inkscape:zoom="6.4168288"
inkscape:cx="59"
inkscape:cy="53.444902"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg4359" />
<!-- Generator: Sketch 3.3.3 (12081) - http://www.bohemiancoding.com/sketch -->
<title
id="title4361">call_transfer</title>
<desc
id="desc4363">Created with Sketch.</desc>
<defs
id="defs4365" />
<g
style="fill:none;fill-rule:evenodd;stroke:#444444;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
sketch:type="MSShapeGroup"
transform="translate(2,7)"
id="transfer_call-copy">
<g
id="Stroke-1-+-Stroke-3-+-Stroke-4-+-Stroke-4-Copy-2-+-Stroke-3-+-Stroke-4-Copy-2"
style="stroke:#444444;stroke-opacity:1">
<g
transform="translate(0.501758,13.339236)"
id="Stroke-1-+-Stroke-3-+-Stroke-4-+-Stroke-4-Copy-2"
style="stroke:#444444;stroke-opacity:1">
<g
id="Stroke-1-+-Stroke-3-+-Stroke-4"
transform="translate(0,0.839236)"
style="stroke:#444444;stroke-opacity:1">
<g
id="g4374"
style="stroke:#444444;stroke-opacity:1">
<path
inkscape:connector-curvature="0"
id="Stroke-1"
d="m 18.06252,69.243389 0.282315,0.291927 C 31.918529,83.429302 56.124197,92.016578 73.05179,85.889003 L 85.891466,68.653754 68.404889,50.750831 52.403288,64.604352 37.779384,49.635149 37.497069,49.346113 22.87881,34.37691 36.407334,17.988538 18.920757,0.08850498 2.0835046,13.233887 C -3.9015684,30.573189 4.4860032,55.349402 18.06252,69.243389 Z"
style="stroke:#444444;stroke-opacity:1" />
</g>
</g>
</g>
<g
transform="translate(61.360775,0.339236)"
id="Stroke-3-+-Stroke-4-Copy-2"
style="stroke:#444444;stroke-opacity:1">
<path
inkscape:connector-curvature="0"
id="Stroke-3"
d="m 43.810886,44.728481 c 10.010829,-10.013738 10.010829,-26.236731 0,-36.2447897 -10.00799,-10.0080592 -26.230871,-10.0108983 -36.2416999,0 -10.00799,10.0052197 -10.00799,26.2338917 0,36.2447897 10.0108289,10.008059 26.2337099,10.002381 36.2416999,0 z"
style="stroke:#444444;stroke-opacity:1" />
<path
inkscape:connector-curvature="0"
id="Stroke-4-Copy"
d="M 26.171789,38.744024 37.830635,26.604489 M 26.181574,14.464954 37.830635,26.604489 m -1.196218,0 -23.082851,0"
style="stroke:#444444;stroke-opacity:1" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4 KiB

View file

@ -0,0 +1,95 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="96"
height="96"
viewBox="0 0 96 96"
version="1.1"
id="svg4226"
inkscape:version="0.91 r13725"
sodipodi:docname="linphone-camera-disabled.svg"
inkscape:export-filename="/home/ghislain/code/linphone-desktop/submodules/linphone/pixmaps/linphone-camera-disabled.png"
inkscape:export-xdpi="45"
inkscape:export-ydpi="45">
<metadata
id="metadata4241">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>camera_default</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1141"
id="namedview4239"
showgrid="false"
inkscape:zoom="5.3069837"
inkscape:cx="48"
inkscape:cy="27.872475"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg4226" />
<!-- Generator: Sketch 3.3.3 (12081) - http://www.bohemiancoding.com/sketch -->
<title
id="title4228">camera_default</title>
<desc
id="desc4230">Created with Sketch.</desc>
<defs
id="defs4232" />
<g
id="OUTILS"
sketch:type="MSPage"
style="fill:none;fill-rule:evenodd;stroke:none;stroke-width:1"
transform="translate(0,20)">
<g
id="linphone_v2.0_icones_buttons"
sketch:type="MSArtboardGroup"
transform="translate(-1679,-19208)">
<g
id="camera_default"
sketch:type="MSLayerGroup"
transform="translate(1650,19159)">
<path
d="m 97.906763,102 0,-19.523979 L 122,100.6521 122,53.346529 97.906763,71.525352 97.906763,52 32,52 32,101.38919 32.723837,102 l 65.182926,0 z"
id="camera_on"
sketch:type="MSShapeGroup"
inkscape:connector-curvature="0"
style="stroke:#444444;stroke-width:5;stroke-linecap:round;stroke-linejoin:round" />
<rect
id="Rectangle-250-Copy-3"
sketch:type="MSShapeGroup"
x="0"
y="0"
width="154"
height="154"
style="fill:#ffffff;fill-opacity:0" />
</g>
</g>
</g>
<path
inkscape:connector-curvature="0"
style="fill:none;fill-rule:evenodd;stroke:#444444;stroke-width:5.50442791;stroke-linecap:round;stroke-linejoin:round"
d="M 3.97555,91.823823 92.2434,4.2745089 Z"
id="micro_off" />
</svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View file

@ -0,0 +1,90 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="96"
height="96"
viewBox="0 0 96 96"
version="1.1"
id="svg4226"
inkscape:version="0.91 r13725"
sodipodi:docname="linphone-camera-enabled.svg"
inkscape:export-filename="/home/ghislain/code/linphone-desktop/submodules/linphone/pixmaps/linphone-camera-enabled.png"
inkscape:export-xdpi="45"
inkscape:export-ydpi="45">
<metadata
id="metadata4241">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>camera_default</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1141"
id="namedview4239"
showgrid="false"
inkscape:zoom="5.3069837"
inkscape:cx="48"
inkscape:cy="27.872475"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg4226" />
<!-- Generator: Sketch 3.3.3 (12081) - http://www.bohemiancoding.com/sketch -->
<title
id="title4228">camera_default</title>
<desc
id="desc4230">Created with Sketch.</desc>
<defs
id="defs4232" />
<g
id="OUTILS"
sketch:type="MSPage"
style="fill:none;fill-rule:evenodd;stroke:none;stroke-width:1"
transform="translate(0,20)">
<g
id="linphone_v2.0_icones_buttons"
sketch:type="MSArtboardGroup"
transform="translate(-1679,-19208)">
<g
id="camera_default"
sketch:type="MSLayerGroup"
transform="translate(1650,19159)">
<path
d="m 97.906763,102 0,-19.523979 L 122,100.6521 122,53.346529 97.906763,71.525352 97.906763,52 32,52 32,101.38919 32.723837,102 l 65.182926,0 z"
id="camera_on"
sketch:type="MSShapeGroup"
inkscape:connector-curvature="0"
style="stroke:#444444;stroke-width:5;stroke-linecap:round;stroke-linejoin:round" />
<rect
id="Rectangle-250-Copy-3"
sketch:type="MSShapeGroup"
x="0"
y="0"
width="154"
height="154"
style="fill:#ffffff;fill-opacity:0" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View file

@ -0,0 +1,66 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="99px"
height="99px"
viewBox="0 0 99 99"
version="1.1"
id="svg4226"
inkscape:version="0.91 r13725"
sodipodi:docname="linphone-conference-start.svg"
inkscape:export-filename="/home/ghislain/code/linphone-desktop/submodules/linphone/pixmaps/linphone-conference-start.png"
inkscape:export-xdpi="43.639999"
inkscape:export-ydpi="43.639999">
<metadata
id="metadata4241">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>conference_start</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1141"
id="namedview4239"
showgrid="false"
inkscape:zoom="6.9353605"
inkscape:cx="49.5"
inkscape:cy="49.449022"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg4226" />
<!-- Generator: Sketch 3.3.3 (12081) - http://www.bohemiancoding.com/sketch -->
<title
id="title4228">conference_start</title>
<desc
id="desc4230">Created with Sketch.</desc>
<defs
id="defs4232" />
<path
style="fill:none;fill-rule:evenodd;stroke:#444444;stroke-width:5;stroke-linecap:round;stroke-linejoin:round"
inkscape:connector-curvature="0"
sketch:type="MSShapeGroup"
id="start_conference_top"
d="m 23.446512,44.616279 c 4.548837,0 8.237209,3.695349 8.237209,8.248837 0,2.17907 -0.844186,4.162791 -2.223256,5.63721 -0.195349,0.206976 -0.118604,0.172093 -0.332558,0.358139 l 0.344186,0.232558 c 12.47907,5.441861 9.281395,14.590698 9.281395,14.590698 -8.039534,2.553488 -15.293023,2.158139 -15.293023,2.158139 l -0.183721,0 c 0,0 -7.253488,0.395349 -15.290698,-2.158139 0,0 -3.2,-9.148837 9.281396,-14.590698 l 0.34186,-0.232558 C 17.395349,58.674419 17.472093,58.709302 17.27907,58.502326 15.9,57.027907 15.055814,55.044186 15.055814,52.865116 c 0,-4.553488 3.686047,-8.248837 8.234884,-8.248837 l 0.155814,0 0,0 z m 48.202325,0 c 4.548837,0 8.234884,3.695349 8.234884,8.248837 0,2.17907 -0.846512,4.162791 -2.223256,5.63721 -0.193023,0.206976 -0.118605,0.172093 -0.332558,0.358139 l 0.344186,0.232558 c 12.481397,5.441861 9.281395,14.590698 9.281395,14.590698 -8.037209,2.553488 -15.293023,2.158139 -15.293023,2.158139 l -0.183721,0 c 0,0 -7.253488,0.395349 -15.288372,-2.158139 0,0 -3.202326,-9.148837 9.27907,-14.590698 l 0.34186,-0.232558 C 65.595349,58.674419 65.674419,58.709302 65.47907,58.502326 64.1,57.027907 63.255814,55.044186 63.255814,52.865116 c 0,-4.553488 3.688372,-8.248837 8.234884,-8.248837 l 0.158139,0 0,0 z M 47.546512,3 c 4.548837,0 8.234883,3.693023 8.234883,8.248837 0,2.17907 -0.844186,4.162791 -2.223255,5.637209 -0.193024,0.206977 -0.11628,0.174419 -0.330233,0.35814 l 0.344186,0.230233 c 12.47907,5.44186 9.27907,14.593023 9.27907,14.593023 -8.03721,2.553488 -15.290698,2.158139 -15.290698,2.158139 l -0.186046,0 c 0,0 -7.253489,0.395349 -15.288372,-2.158139 0,0 -3.202326,-9.151163 9.279069,-14.593023 l 0.344186,-0.230233 C 41.493023,17.060465 41.572093,17.093023 41.376744,16.886046 39.997674,15.411628 39.153488,13.427907 39.153488,11.248837 39.153488,6.693023 42.841861,3 47.388372,3 l 0.15814,0 0,0 z m 13.188372,84.706977 c -7.888372,7.865113 -20.67907,7.865113 -28.567442,0 m 1.744186,8.316283 -1.744186,-8.316283 8.339535,-1.739535 -6.595349,10.055818 z M 3,37.306977 C 3,26.181395 12.04186,17.165116 23.2,17.165116 M 16.067442,12.513953 23.2,17.165116 18.534884,24.274419 16.067442,12.513953 Z m 55.090698,4.651163 c 11.155813,0 20.2,9.018605 20.2,20.141861 m 4.66512,-7.111628 -4.66512,7.111628 -7.130233,-4.651163 11.795353,-2.460465 z" />
</svg>

After

Width:  |  Height:  |  Size: 4.4 KiB

View file

@ -0,0 +1,73 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="32px"
height="32px"
viewBox="0 0 32 32"
version="1.1"
id="svg4478"
inkscape:version="0.91 r13725"
sodipodi:docname="linphone-failed.svg"
inkscape:export-filename="/home/ghislain/code/linphone-desktop/submodules/linphone/pixmaps/linphone-failed.png"
inkscape:export-xdpi="135"
inkscape:export-ydpi="135">
<metadata
id="metadata4495">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>call_missed</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1141"
id="namedview4493"
showgrid="false"
inkscape:zoom="30.34375"
inkscape:cx="16"
inkscape:cy="15.983522"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg4478" />
<!-- Generator: Sketch 3.3.3 (12081) - http://www.bohemiancoding.com/sketch -->
<title
id="title4480">call_missed</title>
<desc
id="desc4482">Created with Sketch.</desc>
<defs
id="defs4484" />
<g
id="g4514"
transform="translate(0.19953343,0)">
<path
inkscape:connector-curvature="0"
style="fill:none;fill-rule:evenodd;stroke:#444444;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
id="Imported-Layers"
d="M 28.555495,2.818876 2.976885,29.068467 28.555495,2.818876 Z" />
<path
inkscape:connector-curvature="0"
style="fill:none;fill-rule:evenodd;stroke:#444444;stroke-width:5;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
id="Imported-Layers-Copy"
d="M 28.890985,28.732976 2.6413944,3.154366 28.890985,28.732976 Z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.4 KiB

View file

@ -0,0 +1,66 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="38"
height="38"
viewBox="0 0 38 38"
version="1.1"
id="svg4345"
inkscape:version="0.91 r13725"
sodipodi:docname="linphone-inprogress.svg"
inkscape:export-filename="/home/ghislain/code/linphone-desktop/submodules/linphone/pixmaps/linphone-inprogress.png"
inkscape:export-xdpi="113.68"
inkscape:export-ydpi="113.68">
<metadata
id="metadata4360">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>chat_message_inprogress</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1141"
id="namedview4358"
showgrid="false"
inkscape:zoom="19.072241"
inkscape:cx="18.440059"
inkscape:cy="21.038331"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg4345" />
<!-- Generator: Sketch 3.3.3 (12081) - http://www.bohemiancoding.com/sketch -->
<title
id="title4347">chat_message_inprogress</title>
<desc
id="desc4349">Created with Sketch.</desc>
<defs
id="defs4351" />
<path
style="fill:none;fill-rule:evenodd;stroke:#444444;stroke-width:1;stroke-opacity:1"
inkscape:connector-curvature="0"
sketch:type="MSShapeGroup"
id="Imported-Layers-Copy-12"
d="m 12.967496,29.603196 c 0,0.884475 -0.313251,1.636279 -0.939755,2.255412 -0.626503,0.619133 -1.374622,0.9287 -2.2443564,0.9287 -0.8844755,0 -1.6362797,-0.309567 -2.2554126,-0.9287 -0.6191328,-0.619133 -0.9286993,-1.370937 -0.9286993,-2.255412 0,-0.884476 0.3095665,-1.63628 0.9286993,-2.255413 0.6191329,-0.619133 1.3709371,-0.928699 2.2554126,-0.928699 0.8697344,0 1.6178534,0.309566 2.2443564,0.928699 0.626504,0.619133 0.939755,1.370937 0.939755,2.255413 l 0,0 z m 9.552336,4.245482 c 0,0.781287 -0.276398,1.448329 -0.829196,2.001126 -0.552797,0.552837 -1.219839,0.829196 -2.001126,0.829196 -0.781286,0 -1.448328,-0.276399 -2.001125,-0.829196 -0.552798,-0.552797 -0.829196,-1.219839 -0.829196,-2.001126 0,-0.781326 0.276398,-1.448328 0.829196,-2.001126 0.552797,-0.552797 1.219839,-0.829195 2.001125,-0.829195 0.781287,0 1.448329,0.276398 2.001126,0.829195 0.552798,0.552837 0.829196,1.2198 0.829196,2.001126 l 0,0 z M 9.0758042,19.69707 c 0,0.972923 -0.3464196,1.805804 -1.0392587,2.498643 -0.6928392,0.692839 -1.5257203,1.039299 -2.4986434,1.039299 -0.9729231,0 -1.8058042,-0.34646 -2.4986434,-1.039299 C 2.3464196,21.502874 2,20.669993 2,19.69707 c 0,-0.972923 0.3464196,-1.805804 1.0392587,-2.498643 0.6928392,-0.69284 1.5257203,-1.039259 2.4986434,-1.039259 0.9729231,0 1.8058042,0.346419 2.4986434,1.039259 0.6928391,0.692839 1.0392587,1.52572 1.0392587,2.498643 l 0,0 z m 22.9963638,9.906126 c 0,0.678098 -0.243231,1.260377 -0.729693,1.746839 -0.486461,0.486461 -1.068741,0.729692 -1.746839,0.729692 -0.678058,0 -1.260377,-0.243231 -1.746839,-0.729692 -0.486461,-0.486462 -0.729692,-1.068741 -0.729692,-1.746839 0,-0.678098 0.243231,-1.260378 0.729692,-1.746839 0.486462,-0.486462 1.068741,-0.729693 1.746839,-0.729693 0.678098,0 1.260378,0.243231 1.746839,0.729693 0.486462,0.486461 0.729693,1.068741 0.729693,1.746839 l 0,0 z M 13.675077,9.790944 c 0,1.076112 -0.379587,1.993755 -1.138762,2.75293 -0.759175,0.759175 -1.676818,1.138762 -2.7529304,1.138762 -1.0761119,0 -1.9937552,-0.379587 -2.7529301,-1.138762 -0.7591748,-0.759175 -1.1387622,-1.676818 -1.1387622,-2.75293 0,-1.0761118 0.3795874,-1.9937552 1.1387622,-2.75293 0.7591749,-0.7591749 1.6768182,-1.1387623 2.7529301,-1.1387623 1.0761124,0 1.9937554,0.3795874 2.7529304,1.1387623 0.759175,0.7591748 1.138762,1.6768182 1.138762,2.75293 l 0,0 z M 23.934993,5.5454615 c 0,1.1793007 -0.412755,2.1817063 -1.238266,3.0072168 -0.82551,0.8255107 -1.827916,1.2382657 -3.007217,1.2382657 -1.1793,0 -2.181706,-0.412755 -3.007216,-1.2382657 -0.825511,-0.8255105 -1.238266,-1.8279161 -1.238266,-3.0072168 0,-1.1793007 0.412755,-2.1817063 1.238266,-3.0072168 0.82551,-0.8255105 1.827916,-1.2382657 3.007216,-1.2382657 1.179301,0 2.181707,0.4127552 3.007217,1.2382657 0.825511,0.8255105 1.238266,1.8279161 1.238266,3.0072168 l 0,0 z M 35.96386,19.69707 c 0,0.58965 -0.206377,1.090853 -0.619133,1.503608 -0.412755,0.412755 -0.913958,0.619133 -1.503608,0.619133 -0.58965,0 -1.090853,-0.206378 -1.503609,-0.619133 -0.412755,-0.412755 -0.619132,-0.913958 -0.619132,-1.503608 0,-0.58965 0.206377,-1.090853 0.619132,-1.503609 0.412756,-0.412755 0.913959,-0.619132 1.503609,-0.619132 0.58965,0 1.090853,0.206377 1.503608,0.619132 0.412756,0.412756 0.619133,0.913959 0.619133,1.503609 l 0,0 z M 31.364587,9.790944 c 0,0.486462 -0.173209,0.902902 -0.519629,1.249322 -0.34642,0.346419 -0.76286,0.519629 -1.249322,0.519629 -0.486461,0 -0.902902,-0.17321 -1.249321,-0.519629 -0.34642,-0.34642 -0.51963,-0.76286 -0.51963,-1.249322 0,-0.486462 0.17321,-0.9029021 0.51963,-1.2493216 0.346419,-0.3464196 0.76286,-0.5196294 1.249321,-0.5196294 0.486462,0 0.902902,0.1732098 1.249322,0.5196294 0.34642,0.3464195 0.519629,0.7628596 0.519629,1.2493216 l 0,0 z" />
</svg>

After

Width:  |  Height:  |  Size: 5.7 KiB

View file

@ -0,0 +1,95 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="82"
height="82"
viewBox="0 0 82 82"
version="1.1"
id="svg4228"
inkscape:version="0.91 r13725"
sodipodi:docname="linphone-ok.svg"
inkscape:export-filename="/home/ghislain/code/linphone-desktop/submodules/linphone/pixmaps/linphone-ok.png"
inkscape:export-xdpi="52.68"
inkscape:export-ydpi="52.68">
<metadata
id="metadata4245">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>valid</dc:title>
<dc:title>valid</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1141"
id="namedview4243"
showgrid="false"
inkscape:zoom="1"
inkscape:cx="37.5"
inkscape:cy="27.971164"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg4228" />
<!-- Generator: Sketch 3.3.3 (12081) - http://www.bohemiancoding.com/sketch -->
<title
id="title4230">valid</title>
<desc
id="desc4232">Created with Sketch.</desc>
<defs
id="defs4234" />
<g
id="OUTILS"
sketch:type="MSPage"
style="fill:none;fill-rule:evenodd;stroke:none;stroke-width:1"
transform="translate(0,16)">
<g
id="linphone_v2.0_icones_buttons"
sketch:type="MSArtboardGroup"
transform="translate(-1444,-7601)">
<g
id="valid"
sketch:type="MSLayerGroup"
transform="translate(1426,7569)">
<g
transform="translate(21,35)"
id="Stroke-3"
sketch:type="MSShapeGroup"
style="stroke:#444444;stroke-width:5;stroke-linecap:round;stroke-linejoin:round">
<path
d="M 0.4395,19.69312 32.836996,49.765883 76.2135,0.0261167"
id="path4240"
inkscape:connector-curvature="0" />
</g>
<rect
id="Rectangle-232-Copy-29"
sketch:type="MSShapeGroup"
x="0"
y="0"
width="120"
height="120"
style="opacity:0;fill:#ffffff;fill-opacity:0.7" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View file

@ -0,0 +1,78 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="130"
height="130"
viewBox="0 0 130 130"
version="1.1"
id="svg5402"
inkscape:version="0.91 r13725"
sodipodi:docname="linphone-record.svg"
inkscape:export-filename="/home/ghislain/code/linphone-desktop/submodules/linphone/pixmaps/linphone-record.png"
inkscape:export-xdpi="33.23"
inkscape:export-ydpi="33.23">
<metadata
id="metadata5417">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>status_busy</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1141"
id="namedview5415"
showgrid="false"
inkscape:zoom="2.8433735"
inkscape:cx="41"
inkscape:cy="41.324153"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg5402" />
<!-- Generator: Sketch 3.3.3 (12081) - http://www.bohemiancoding.com/sketch -->
<title
id="title5404">status_busy</title>
<desc
id="desc5406">Created with Sketch.</desc>
<defs
id="defs5408" />
<path
style="fill:#ff0000;fill-rule:evenodd;stroke:none;stroke-width:1"
inkscape:connector-curvature="0"
sketch:type="MSShapeGroup"
id="Fill-1"
d="m 100.44184,64.938426 c 0,19.29648 -15.453925,34.937606 -34.516791,34.937606 -19.062866,0 -34.512481,-15.641126 -34.512481,-34.937606 0,-19.294296 15.449615,-34.937611 34.512481,-34.937611 19.062866,0 34.516791,15.643315 34.516791,34.937611 l 0,0 z" />
<path
style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:12"
inkscape:connector-curvature="0"
sketch:type="MSShapeGroup"
id="Stroke-2"
d="m 100.44184,64.938426 c 0,19.29648 -15.453925,34.937606 -34.516791,34.937606 -19.062866,0 -34.512481,-15.641126 -34.512481,-34.937606 0,-19.294296 15.449615,-34.937611 34.512481,-34.937611 19.062866,0 34.516791,15.643315 34.516791,34.937611 l 0,0 z" />
<path
style="fill:none;fill-rule:evenodd;stroke:#444444;stroke-width:10;stroke-opacity:1;stroke-miterlimit:4;stroke-dasharray:none"
inkscape:connector-curvature="0"
sketch:type="MSShapeGroup"
id="Stroke-2-6"
d="m 118.3276,64.883872 c 0,29.609205 -23.713064,53.609518 -52.963804,53.609518 -29.250742,0 -52.957182,-24.000313 -52.957182,-53.609518 0,-29.605856 23.70644,-53.609516 52.957182,-53.609516 29.25074,0 52.963804,24.00366 52.963804,53.609516 l 0,0 z" />
</svg>

After

Width:  |  Height:  |  Size: 3.2 KiB

View file

@ -0,0 +1,76 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="53"
height="53"
viewBox="0 0 53 53"
version="1.1"
id="svg4228"
inkscape:version="0.91 r13725"
sodipodi:docname="linphone-security-ok.svg"
inkscape:export-filename="/home/ghislain/code/linphone-desktop/submodules/linphone/pixmaps/linphone-security-ok.png"
inkscape:export-xdpi="33.23"
inkscape:export-ydpi="33.23">
<metadata
id="metadata4245">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>security_ok</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1141"
id="namedview4243"
showgrid="false"
inkscape:zoom="9.1603774"
inkscape:cx="20.5"
inkscape:cy="26.472709"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg4228" />
<!-- Generator: Sketch 3.3.3 (12081) - http://www.bohemiancoding.com/sketch -->
<title
id="title4230">security_ok</title>
<desc
id="desc4232">Created with Sketch.</desc>
<defs
id="defs4234" />
<g
style="fill:none;fill-rule:evenodd;stroke:#444444;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
sketch:type="MSShapeGroup"
transform="translate(7,2)"
id="security_ok-copy">
<path
inkscape:connector-curvature="0"
style="stroke:#444444;stroke-opacity:1"
id="Imported-Layers"
d="m 1.0857143,17.193966 36.9142857,0 0,31.719077 -36.9142857,0 0,-31.719077 z m 31.3912567,-0.06233 0,-3.873067 C 32.476971,5.9353628 26.685771,0 19.540686,0 12.399943,0 6.6076571,5.9353628 6.6076571,13.258574 l 0,3.873067 25.8693139,0 z" />
<path
inkscape:connector-curvature="0"
style="stroke:#444444;stroke-opacity:1"
id="Path"
d="M 9.7714286,31.96087 17.999514,39.279348 29.023265,27.173913" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

View file

@ -0,0 +1,76 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:sketch="http://www.bohemiancoding.com/sketch/ns"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="54"
height="54"
viewBox="0 0 54 54"
version="1.1"
id="svg4362"
inkscape:version="0.91 r13725"
sodipodi:docname="linphone-security-pending.svg"
inkscape:export-filename="/home/ghislain/code/linphone-desktop/submodules/linphone/pixmaps/security_pending.png"
inkscape:export-xdpi="33.23"
inkscape:export-ydpi="33.23">
<metadata
id="metadata4379">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title>security_pending</dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1141"
id="namedview4377"
showgrid="false"
inkscape:zoom="8.9907407"
inkscape:cx="23.5"
inkscape:cy="26.972194"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg4362" />
<!-- Generator: Sketch 3.3.3 (12081) - http://www.bohemiancoding.com/sketch -->
<title
id="title4364">security_pending</title>
<desc
id="desc4366">Created with Sketch.</desc>
<defs
id="defs4368" />
<g
style="fill:none;fill-rule:evenodd;stroke:#444444;stroke-width:1;stroke-opacity:1"
sketch:type="MSShapeGroup"
transform="translate(6,2)"
id="security_pending-copy">
<path
inkscape:connector-curvature="0"
style="stroke:#444444;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
id="Imported-Layers"
d="m 0,17.576054 42.222222,0 0,32.423946 L 0,50 0,17.576054 Z m 35.905033,-0.06371 0,-3.959135 C 35.905033,6.0672598 29.281111,0 21.108627,0 12.941111,0 6.3159477,6.0672598 6.3159477,13.553209 l 0,3.959135 29.5890853,0 z" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;stroke:#444444;stroke-opacity:1"
id="?"
d="m 28.111928,28.930556 c 0,1.240746 -0.17075,2.185182 -0.512255,2.833333 -0.341505,0.648151 -1.040027,1.342589 -2.095588,2.083333 -1.055561,0.740745 -1.754083,1.328702 -2.095588,1.763889 -0.341505,0.435187 -0.512255,0.902775 -0.512255,1.402778 l 0,0.916667 -2.732026,0 c -0.496735,-0.574077 -0.745098,-1.296292 -0.745098,-2.166667 0,-0.462965 0.196621,-0.925924 0.589869,-1.388889 0.393248,-0.462965 1.096945,-1.069441 2.111111,-1.819444 1.014166,-0.750004 1.686818,-1.333332 2.017974,-1.75 0.331156,-0.416669 0.496732,-0.96759 0.496732,-1.652778 0,-1.351859 -1.096939,-2.027778 -3.29085,-2.027778 -1.241836,0 -2.545745,0.129628 -3.911765,0.388889 l -0.714052,0.138889 -0.186274,-2.305556 c 1.924846,-0.611114 3.673739,-0.916666 5.246732,-0.916666 2.173213,0 3.772053,0.356477 4.796568,1.069444 1.024515,0.712966 1.536765,1.856474 1.536765,3.430556 l 0,0 z m -8.47549,14.833333 0,-3.888889 3.601307,0 0,3.888889 -3.601307,0 z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.5 KiB