Merge branch 'feature/themes/flat' into devs/hermet/lottie

This commit is contained in:
Hermet Park 2021-02-18 13:23:04 +09:00
commit dfd0a112bf
131 changed files with 7075 additions and 2070 deletions

View File

@ -1,427 +1,2 @@
// EFM icons //
//Base 1//
#define EFM_MIME_ICON(_NAME, _IMAGE, _ASPMIN, _ASPMAX, _STRING, _SIZE, _VALIGN) \
group { name: "e/icons/fileman/mime/"_NAME; \
max: _SIZE _SIZE; \
images.image: "efm_generic_icon_shadow.png" COMP; \
images.image: "efm_generic_icon_base.png" COMP; \
images.image: "efm_generic_icon_over.png" COMP; \
images.image: _IMAGE COMP; \
parts { \
part { name: "spacer"; type: SPACER; \
description { state: "default" 0.0; \
aspect: 1.0 1.0; aspect_preference: BOTH; \
} \
} \
part { name: "shadow"; mouse_events: 0; \
description { state: "default" 0.0; \
rel1.to: "spacer"; \
rel1.relative: (15/240) (10/240); \
rel2.to: "spacer"; \
rel2.relative: (225/240) (240/240); \
image.normal: "efm_generic_icon_shadow.png"; \
} \
} \
part { name: "base"; mouse_events: 0; \
description { state: "default" 0.0; \
rel1.to: "spacer"; \
rel1.relative: (30/240) (15/240); \
rel2.to: "spacer"; \
rel2.relative: (210/240) (225/240); \
image.normal: "efm_generic_icon_base.png"; \
} \
} \
part { name: "content"; mouse_events: 0; \
description { state: "default" 0.0; \
rel1.to: "base"; \
rel1.relative: (28/180) (28/210); \
rel2.to: "base"; \
rel2.relative: (152/180) (182/210); \
align: 0.5 _VALIGN; \
aspect: _ASPMIN _ASPMAX; aspect_preference: BOTH; \
image.normal: _IMAGE; \
} \
} \
part { name: "over"; mouse_events: 0; \
description { state: "default" 0.0; \
rel1.to: "base"; \
rel2.to: "base"; \
image.normal: "efm_generic_icon_over.png"; \
} \
} \
part { name: "typestr"; type: TEXT; mouse_events: 0; \
description { state: "default" 0.0; \
rel1.to: "over"; \
rel1.relative: (72/180) (142/210); \
rel2.to: "over"; \
rel2.relative: (178/180) (188/210); \
color: 255 255 255 255; \
text { font: FN; size: 8; \
fit: 0 1; \
align: 0.5 0.5; \
text: _STRING; \
} \
} \
} \
} \
}
//Python//
EFM_MIME_ICON("application/x-python-bytecode", "efm_generic_icon_content_python.png", (114/115), (114/115), ".PYC", 240, 0.5);
EFM_MIME_ICON("application/x-python", "efm_generic_icon_content_python.png", (114/115), (114/115), ".PY", 240, 0.5);
EFM_MIME_ICON("text/x-python", "efm_generic_icon_content_python.png", (114/115), (114/115), ".PY", 240, 0.5);
//.pyo .pyd??????????????????//
//Ruby//
EFM_MIME_ICON("application/x-ruby", "efm_generic_icon_content_ruby.png", (114/114), (114/114), ".RB", 240, 0.5);
EFM_MIME_ICON("text/x-ruby", "efm_generic_icon_content_ruby.png", (114/114), (114/114), ".RB", 240, 0.5);
//.rbw???//
//Perl//
EFM_MIME_ICON("application/x-perl", "efm_generic_icon_content_perl.png", (114/122), (114/122), ".PERL", 240, 0.5);
EFM_MIME_ICON("text/x-perl","efm_generic_icon_content_perl.png", (114/122), (114/122), ".PL", 240, 0.5);
//CAD//
EFM_MIME_ICON("application/acad", "efm_generic_icon_content_cad.png", (114/130), (114/130), ".DWG", 240, 0.5);
EFM_MIME_ICON("application/x-acad", "efm_generic_icon_content_cad.png", (114/130), (114/130), ".DWG", 240, 0.5);
EFM_MIME_ICON("application/autocad_dwg", "efm_generic_icon_content_cad.png", (114/130), (114/130), ".DWG", 240, 0.5);
EFM_MIME_ICON("image/x-dwg", "efm_generic_icon_content_cad.png", (114/130), (114/130), ".DWG", 240, 0.5);
EFM_MIME_ICON("application/dwg", "efm_generic_icon_content_cad.png", (114/130), (114/130), ".DWG", 240, 0.5);
EFM_MIME_ICON("application/x-dwg", "efm_generic_icon_content_cad.png", (114/130), (114/130), ".DWG", 240, 0.5);
EFM_MIME_ICON("application/x-autocad", "efm_generic_icon_content_cad.png", (114/130), (114/130), ".DWG", 240, 0.5);
EFM_MIME_ICON("image/vnd.dwg", "efm_generic_icon_content_cad.png", (114/130), (114/130), ".DWG", 240, 0.5);
EFM_MIME_ICON("drawing/dwg", "efm_generic_icon_content_cad.png", (114/130), (114/130), ".DWG", 240, 0.5);
//ISO//
EFM_MIME_ICON("application/x-iso9660-image", "efm_generic_icon_content_iso.png", (114/114), (114/114), ".ISO", 240, 0.5);
//Cue//
EFM_MIME_ICON("application/x-cue", "efm_generic_icon_content_iso.png", (114/114), (114/114), ".CUE", 240, 0.5);
//Audio//
EFM_MIME_ICON("audio/mpeg", "efm_generic_icon_content_audio.png", (54/154), (54/154), ".MP3", 240, 0.5);
EFM_MIME_ICON("audio/x-wav","efm_generic_icon_content_audio.png", (54/154), (54/154), ".WAV", 240, 0.5);
EFM_MIME_ICON("audio/x-flac","efm_generic_icon_content_audio.png", (54/154), (54/154), ".FLAC", 240, 0.5);
EFM_MIME_ICON("audio/flac","efm_generic_icon_content_audio.png", (54/154), (54/154), ".FLAC", 240, 0.5);
EFM_MIME_ICON("audio/x-musepack","efm_generic_icon_content_audio.png", (54/154), (54/154), ".MPC", 240, 0.5);
EFM_MIME_ICON("audio/x-vorbis+ogg","efm_generic_icon_content_audio.png",(54/154), (54/154), ".OGG", 240, 0.5);
EFM_MIME_ICON("application/x-audacity-project","efm_generic_icon_content_audio.png",(54/154), (54/154), ".AUP", 240, 0.5);
EFM_MIME_ICON("audio/x-ms-wma","efm_generic_icon_content_audio.png", (54/154), (54/154),".WMA", 240, 0.5);
EFM_MIME_ICON("audio/opus","efm_generic_icon_content_audio.png", (54/154), (54/154),".OPUS", 240, 0.5);
EFM_MIME_ICON("audio/ogg","efm_generic_icon_content_audio.png", (54/154), (54/154),".OPUS", 240, 0.5);
EFM_MIME_ICON("audio/x-opus+ogg","efm_generic_icon_content_audio.png", (54/154), (54/154),".OPUS", 240, 0.5);
EFM_MIME_ICON("audio/ape","efm_generic_icon_content_audio.png", (54/154), (54/154), ".APE", 240, 0.5);
EFM_MIME_ICON("audio/webm","efm_generic_icon_content_audio.png", (54/154), (54/154), ".WEBA", 240, 0.5);
EFM_MIME_ICON("audio/mp4","efm_generic_icon_content_audio.png", (54/154), (54/154), ".MP4", 240, 0.5);
EFM_MIME_ICON("audio/midi","efm_generic_icon_content_audio.png", (54/154), (54/154),".MIDI", 240, 0.5);
EFM_MIME_ICON("audio/speex","efm_generic_icon_content_audio.png",(54/154), (54/154), ".SPX", 240, 0.5);
EFM_MIME_ICON("audio/aac","efm_generic_icon_content_audio.png", (54/154), (54/154),".AAC", 240, 0.5);
EFM_MIME_ICON("audio/vnd.rn-realaudio","efm_generic_icon_content_audio.png", (54/154), (54/154),".RA", 240, 0.5);
EFM_MIME_ICON("audio/x-voc","efm_generic_icon_content_audio.png", (54/154), (54/154),".VOC", 240, 0.5);
EFM_MIME_ICON("audio/x-tta","efm_generic_icon_content_audio.png", (54/154), (54/154),".TTA", 240, 0.5);
EFM_MIME_ICON("audio/x-stm","efm_generic_icon_content_audio.png", (54/154), (54/154),".STM", 240, 0.5);
EFM_MIME_ICON("audio/x-speex+ogg","efm_generic_icon_content_audio.png", (54/154), (54/154),".SPX", 240, 0.5);
EFM_MIME_ICON("audio/x-wacpack","efm_generic_icon_content_audio.png", (54/154), (54/154),".WV", 240, 0.5);
EFM_MIME_ICON("audio/x-xmf","efm_generic_icon_content_audio.png", (54/154), (54/154),".XMF", 240, 0.5);
EFM_MIME_ICON("audio/x-xm","efm_generic_icon_content_audio.png", (54/154), (54/154),".XM", 240, 0.5);
EFM_MIME_ICON("audio/x-xi","efm_generic_icon_content_audio.png", (54/154), (54/154),".XI", 240, 0.5);
EFM_MIME_ICON("audio/x-wacpack-correction","efm_generic_icon_content_audio.png", (54/154), (54/154),".WVC", 240, 0.5);
EFM_MIME_ICON("audio/x-s3m","efm_generic_icon_content_audio.png", (54/154), (54/154),".S3M", 240, 0.5);
EFM_MIME_ICON("audio/x-riff","efm_generic_icon_content_audio.png", (54/154), (54/154),".RMI", 240, 0.5);
EFM_MIME_ICON("audio/x-psflib","efm_generic_icon_content_audio.png", (54/154), (54/154),".PSFLIB", 240, 0.5);
EFM_MIME_ICON("audio/x-psf","efm_generic_icon_content_audio.png", (54/154), (54/154),".PSF", 240, 0.5);
EFM_MIME_ICON("audio/x-scpls","efm_generic_icon_content_audio.png", (54/154), (54/154),".PLS", 240, 0.5);
EFM_MIME_ICON("audio/x-ms-asx","efm_generic_icon_content_audio.png", (54/154), (54/154),".ASX", 240, 0.5);
EFM_MIME_ICON("audio/x-mpegurl","efm_generic_icon_content_audio.png", (54/154), (54/154),".M3U", 240, 0.5);
EFM_MIME_ICON("audio/x-mod","efm_generic_icon_content_audio.png", (54/154), (54/154),".MOD", 240, 0.5);
EFM_MIME_ICON("audio/x-mo3","efm_generic_icon_content_audio.png", (54/154), (54/154),".MO3", 240, 0.5);
EFM_MIME_ICON("audio/x-minipsf","efm_generic_icon_content_audio.png", (54/154), (54/154),".MINIPSF", 240, 0.5);
EFM_MIME_ICON("audio/matroska","efm_generic_icon_content_audio.png", (54/154), (54/154),".MKV", 240, 0.5);
EFM_MIME_ICON("audio/x-m4b","efm_generic_icon_content_audio.png", (54/154), (54/154),".M4B", 240, 0.5);
EFM_MIME_ICON("audio/x-it","efm_generic_icon_content_audio.png", (54/154), (54/154),".IT", 240, 0.5);
EFM_MIME_ICON("audio/x-iriver-pla","efm_generic_icon_content_audio.png", (54/154), (54/154),".PLA", 240, 0.5);
EFM_MIME_ICON("audio/x-gsm","efm_generic_icon_content_audio.png", (54/154), (54/154),".GSM", 240, 0.5);
EFM_MIME_ICON("audio/x-flac+ogg","efm_generic_icon_content_audio.png",(54/154), (54/154), ".FLAC", 240, 0.5);
EFM_MIME_ICON("audio/x-amzxml","efm_generic_icon_content_audio.png",(54/154), (54/154), ".AMZ", 240, 0.5);
EFM_MIME_ICON("audio/x-aiff","efm_generic_icon_content_audio.png",(54/154), (54/154), ".AIFF", 240, 0.5);
EFM_MIME_ICON("audio/x-aifc","efm_generic_icon_content_audio.png",(54/154), (54/154), ".AIFC", 240, 0.5);
EFM_MIME_ICON("audio/x-adpcm","efm_generic_icon_content_audio.png",(54/154), (54/154), ".ADPCM", 240, 0.5);
EFM_MIME_ICON("audio/vdn.rn-realaudio","efm_generic_icon_content_audio.png",(54/154), (54/154), ".RA", 240, 0.5);
EFM_MIME_ICON("audio/vdn.dts","efm_generic_icon_content_audio.png",(54/154), (54/154), ".DTS", 240, 0.5);
EFM_MIME_ICON("audio/vdn.dts.hd","efm_generic_icon_content_audio.png",(54/154), (54/154), ".DTSHD", 240, 0.5);
EFM_MIME_ICON("audio/prs.sid","efm_generic_icon_content_audio.png",(54/154), (54/154), ".SID", 240, 0.5);
EFM_MIME_ICON("audio/mp2","efm_generic_icon_content_audio.png", (54/154), (54/154), ".MP2", 240, 0.5);
EFM_MIME_ICON("audio/basic","efm_generic_icon_content_audio.png", (54/154), (54/154), ".SND", 240, 0.5);
EFM_MIME_ICON("audio/annodex","efm_generic_icon_content_audio.png", (54/154), (54/154), ".AXA", 240, 0.5);
EFM_MIME_ICON("audio/AMR","efm_generic_icon_content_audio.png", (54/154), (54/154), ".AMR", 240, 0.5);
EFM_MIME_ICON("audio/amr","efm_generic_icon_content_audio.png", (54/154), (54/154), ".AMR", 240, 0.5);
EFM_MIME_ICON("audio/amr-wb","efm_generic_icon_content_audio.png", (54/154), (54/154), ".AWB", 240, 0.5);
EFM_MIME_ICON("audio/AMR-WB","efm_generic_icon_content_audio.png", (54/154), (54/154), ".AWB", 240, 0.5);
EFM_MIME_ICON("audio/ac3","efm_generic_icon_content_audio.png", (54/154), (54/154), ".AC3", 240, 0.5);
EFM_MIME_ICON("application/x-mpegurl","efm_generic_icon_content_audio.png", (54/154), (54/154),".M3U", 240, 0.5);
EFM_MIME_ICON("application/vnd.apple.mpegurl","efm_generic_icon_content_audio.png", (54/154), (54/154),".M3U", 240, 0.5);
//Code//
EFM_MIME_ICON("text/x-csharp","efm_generic_icon_content_code.png", (114/88), (114/88), ".C#", 240, 0.3);
EFM_MIME_ICON("application/x-awk","efm_generic_icon_content_code.png", (114/88), (114/88), ".AWK", 240, 0.3);
EFM_MIME_ICON("text/x-hdr","efm_generic_icon_content_code.png", (114/88), (114/88), ".HPP", 240, 0.3);
EFM_MIME_ICON("text/x-fortran","efm_generic_icon_content_code.png", (114/88), (114/88), ".F", 240, 0.3);
EFM_MIME_ICON("text/x-java-source","efm_generic_icon_content_code.png", (114/88), (114/88), ".JAVA", 240, 0.3);
//add moreeeeeee//
//Text//
EFM_MIME_ICON("text/x-patch","efm_generic_icon_content_text.png", (114/126), (114/126), ".PATCH", 240, 0.5);
EFM_MIME_ICON("text/x-log","efm_generic_icon_content_text.png", (114/126), (114/126), ".LOG", 240, 0.5);
EFM_MIME_ICON("application/x-md5","efm_generic_icon_content_text.png", (114/126), (114/126), ".MD5", 240, 0.5);
EFM_MIME_ICON("text/x-makefile","efm_generic_icon_content_text.png", (114/126), (114/126), ".MK", 240, 0.5);
EFM_MIME_ICON("application/x-m4","efm_generic_icon_content_text.png", (114/126), (114/126), ".M4", 240, 0.5);
EFM_MIME_ICON("application/pkix-attr-cert","efm_generic_icon_content_text.png", (114/126), (114/126), ".AC", 240, 0.5);
EFM_MIME_ICON("text/x-subviewer","efm_generic_icon_content_text.png", (114/126), (114/126), ".SUB", 240, 0.5);
EFM_MIME_ICON("application/x-wais-source","efm_generic_icon_content_text.png", (114/126), (114/126), ".SRC", 240, 0.5);
//Web//
EFM_MIME_ICON("text/css","efm_generic_icon_content_web.png", (114/68), (114/68), ".CSS", 240, 0.3);
EFM_MIME_ICON("text/html","efm_generic_icon_content_web.png", (114/68), (114/68), ".HTML", 240, 0.3);
EFM_MIME_ICON("application/xml","efm_generic_icon_content_web.png", (114/68), (114/68), ".XML", 240, 0.3);
EFM_MIME_ICON("application/javascript","efm_generic_icon_content_web.png", (114/68), (114/68), ".JS", 240, 0.3);
EFM_MIME_ICON("application/json","efm_generic_icon_content_web.png", (114/68), (114/68), ".JSON", 240, 0.3);
EFM_MIME_ICON("text/json","efm_generic_icon_content_web.png", (114/68), (114/68), ".JSON", 240, 0.3);
//Enlightenment//
EFM_MIME_ICON("application/edje","efm_generic_icon_content_logo.png", (114/154), (114/154), ".EDJ", 240, 0.5);
EFM_MIME_ICON("text/edje","efm_generic_icon_content_logo.png", (114/154), (114/154), ".EDC", 240, 0.5);
//Document//
EFM_MIME_ICON("application/vnd.oasis.opendocument.text","efm_generic_icon_content_doc.png", (114/154), (114/154), ".ODT", 240, 0.5);
EFM_MIME_ICON("application/x-msword","efm_generic_icon_content_doc.png", (114/154), (114/154), ".DOC", 240, 0.5);
EFM_MIME_ICON("application/vnd.openxmlformats-officedocument.wordprocessingml.document","efm_generic_icon_content_doc.png", (114/154), (114/154), ".DOCX", 240, 0.5);
EFM_MIME_ICON("application/x-abiword","efm_generic_icon_content_doc.png", (114/154), (114/154), ".ABW", 240, 0.5);
EFM_MIME_ICON("application/vnd.scribus","efm_generic_icon_content_doc.png", (114/154), (114/154), ".SLA", 240, 0.5);
EFM_MIME_ICON("application/x-lyx","efm_generic_icon_content_doc.png", (114/154), (114/154), ".LYX", 240, 0.5);
//Spreadsheet//
EFM_MIME_ICON("application/vnd.oasis.opendocument.spreadsheet","efm_generic_icon_content_spread.png", (114/80), (114/80), ".ODS", 240, 0.5);
EFM_MIME_ICON("application/vnd.ms-excel","efm_generic_icon_content_spread.png", (114/80), (114/80), ".XLS", 240, 0.5);
//Presentation//
EFM_MIME_ICON("application/vnd.ms-powerpoint","efm_generic_icon_content_pres.png", (114/95), (114/95), ".PPT", 240, 0.5);
EFM_MIME_ICON("application/vnd.oasis.opendocument.presentation","efm_generic_icon_content_pres.png", (114/95), (114/95), ".ODP", 240, 0.5);
//Drawing//
EFM_MIME_ICON("application/x-vnd.oasis.opendocument.graphics","efm_generic_icon_content_draw.png", (114/96), (114/96), ".ODG", 240, 0.5);
//Data Base//
EFM_MIME_ICON("application/vnd.ms-binder","efm_generic_icon_content_db.png", (114/128), (114/128), ".ODB", 240, 0.5);
EFM_MIME_ICON("application/x-sqlite3","efm_generic_icon_content_db.png", (114/128), (114/128), ".SQLITE", 240, 0.5);
//Formula//
EFM_MIME_ICON("application/x-vnd.oasis.opendocument.formula","efm_generic_icon_content_formula.png", (114/85), (114/85), ".ODF", 240, 0.5);
//Template//
EFM_MIME_ICON("application/vnd.openxmlformats-officedocument.wordprocessingml.template","efm_generic_icon_content_template.png", (114/130), (114/130), ".DOTX", 240, 0.5);
EFM_MIME_ICON("application/vnd.openxmlformats-officedocument.spreadsheetml.template","efm_generic_icon_content_template.png", (114/130), (114/130),".XLTX", 240, 0.5);
EFM_MIME_ICON("application/vnd.openxmlformats-officedocument.presentationml.template","efm_generic_icon_content_template.png", (114/130), (114/130),".POTX", 240, 0.5);
EFM_MIME_ICON("application/vnd.oasis.opendocument.chart-template","efm_generic_icon_content_template.png", (114/130), (114/130),".OTC", 240, 0.5);
EFM_MIME_ICON("application/vnd.oasis.opendocument.formula-template","efm_generic_icon_content_template.png", (114/130), (114/130), ".OTF", 240, 0.5);
EFM_MIME_ICON("application/vnd.oasis.opendocument.graphics-template","efm_generic_icon_content_template.png", (114/130), (114/130), ".OTG", 240, 0.5);
EFM_MIME_ICON("application/vnd.oasis.opendocument.image-template","efm_generic_icon_content_template.png", (114/130), (114/130), ".OTI", 240, 0.5);
EFM_MIME_ICON("application/vnd.oasis.opendocument.presentation-template","efm_generic_icon_content_template.png", (114/130), (114/130), ".OTP", 240, 0.5);
EFM_MIME_ICON("application/vnd.oasis.opendocument.spreadsheet-template","efm_generic_icon_content_template.png", (114/130), (114/130), ".ODS", 240, 0.5);
EFM_MIME_ICON("application/vnd.oasis.opendocument.text-template","efm_generic_icon_content_template.png", (114/130), (114/130), ".OTT", 240, 0.5);
//Video (fallback)//
EFM_MIME_ICON("video/mpeg","efm_generic_icon_content_video.png", (114/83), (114/83), ".MPEG", 240, 0.5);
EFM_MIME_ICON("application/ogg","efm_generic_icon_content_video.png",(114/83), (114/83), ".OGG", 240, 0.5);
EFM_MIME_ICON("video/x-theora+ogg","efm_generic_icon_content_video.png",(114/83), (114/83), ".OGG", 240, 0.5);
EFM_MIME_ICON("video/x-msvideo","efm_generic_icon_content_video.png", (114/83), (114/83), ".AVI", 240, 0.5);
EFM_MIME_ICON("video/ogg","efm_generic_icon_content_video.png",(114/83), (114/83), ".OGG", 240, 0.5);
EFM_MIME_ICON("video/mp4","efm_generic_icon_content_video.png",(114/83), (114/83), ".MP4", 240, 0.5);
EFM_MIME_ICON("video/quicktime","efm_generic_icon_content_video.png",(114/83), (114/83), ".MOV", 240, 0.5);
EFM_MIME_ICON("video/x-matroska","efm_generic_icon_content_video.png",(114/83), (114/83), ".MKV", 240, 0.5);
EFM_MIME_ICON("video/x-flv","efm_generic_icon_content_video.png", (114/83), (114/83), ".FLV", 240, 0.5);
EFM_MIME_ICON("application/vnd.rn-realmedia","efm_generic_icon_content_video.png",(114/83), (114/83), ".REAL", 240, 0.5);
EFM_MIME_ICON("video/x-ms-wmv","efm_generic_icon_content_video.png",(114/83), (114/83), ".WMV", 240, 0.5);
EFM_MIME_ICON("video/webm","efm_generic_icon_content_video.png",(114/83), (114/83), ".WEBM", 240, 0.5);
//Image (fallback)//
EFM_MIME_ICON("image/png","efm_generic_icon_content_image.png", (114/128), (114/128), ".PNG", 240, 0.5);
EFM_MIME_ICON("image/jpeg","efm_generic_icon_content_image.png", (114/128), (114/128),".JPEG", 240, 0.5);
EFM_MIME_ICON("image/gif","efm_generic_icon_content_image.png", (114/128), (114/128),".GIF", 240, 0.5);
EFM_MIME_ICON("image/bmp","efm_generic_icon_content_image.png", (114/128), (114/128),".BMP", 240, 0.5);
EFM_MIME_ICON("application/x-xcf","efm_generic_icon_content_image.png", (114/128), (114/128),".XCF", 240, 0.5);
EFM_MIME_ICON("application/x-cbz","efm_generic_icon_content_image.png", (114/128), (114/128),".CBZ", 240, 0.5);
EFM_MIME_ICON("application/x-cbr","efm_generic_icon_content_image.png",(114/128), (114/128), ".CBR", 240, 0.5);
EFM_MIME_ICON("image/webp","efm_generic_icon_content_image.png", (114/128), (114/128),".WEBP", 240, 0.5);
//Font//
EFM_MIME_ICON("application/x-font-ttf","efm_generic_icon_content_font.png", (114/93), (114/93), ".TTF", 240, 0.5);
EFM_MIME_ICON("application/x-font-pcf","efm_generic_icon_content_font.png", (114/93), (114/93), ".PCF", 240, 0.5);
EFM_MIME_ICON("application/x-font-bdf","efm_generic_icon_content_font.png", (114/93), (114/93), ".BDF", 240, 0.5);
EFM_MIME_ICON("application/x-font-otf","efm_generic_icon_content_font.png", (114/93), (114/93), ".BDF", 240, 0.5);
//PS (fallback)//
EFM_MIME_ICON("application/postscript","efm_generic_icon_content_ps.png", (114/104), (114/104), ".PS", 240, 0.5);
//PDF (fallback)//
EFM_MIME_ICON("application/pdf","efm_generic_icon_content_pdf.png", (114/101), (114/101), ".PDF", 240, 0.5);
//Translate//
EFM_MIME_ICON("text/x-gettext-translation","efm_generic_icon_content_translate.png", (114/97), (114/97), ".PO", 240, 0.5);
EFM_MIME_ICON("application/x-gettext-translation","efm_generic_icon_content_translate.png", (114/97), (114/97), ".GMO", 240, 0.5);
//Base 2//
#define EFM_MIME_ICON_SIMPLE(_NAME, _IMAGE, _ASPMIN, _ASPMAX, _SIZE, _VALIGN) \
group { name: "e/icons/fileman/mime/"_NAME; \
max: _SIZE _SIZE; \
images.image: "efm_generic_icon_shadow_empty.png" COMP; \
images.image: "efm_generic_icon_base_empty.png" COMP; \
images.image: "efm_generic_icon_over_empty.png" COMP; \
images.image: _IMAGE COMP; \
parts { \
part { name: "spacer"; type: SPACER; \
description { state: "default" 0.0; \
aspect: 1.0 1.0; aspect_preference: BOTH; \
} \
} \
part { name: "shadow"; mouse_events: 0; \
description { state: "default" 0.0; \
rel1.to: "spacer"; \
rel1.relative: (15/240) (10/240); \
rel2.to: "spacer"; \
rel2.relative: (225/240) (240/240); \
image.normal: "efm_generic_icon_shadow_empty.png"; \
} \
} \
part { name: "base"; mouse_events: 0; \
description { state: "default" 0.0; \
rel1.to: "spacer"; \
rel1.relative: (30/240) (15/240); \
rel2.to: "spacer"; \
rel2.relative: (210/240) (225/240); \
image.normal: "efm_generic_icon_base_empty.png"; \
} \
} \
part { name: "content"; mouse_events: 0; \
description { state: "default" 0.0; \
rel1.to: "base"; \
rel1.relative: (28/180) (28/210); \
rel2.to: "base"; \
rel2.relative: (152/180) (182/210); \
align: 0.5 _VALIGN; \
aspect: _ASPMIN _ASPMAX; aspect_preference: BOTH; \
image.normal: _IMAGE; \
} \
} \
part { name: "over"; mouse_events: 0; \
description { state: "default" 0.0; \
rel1.to: "base"; \
rel2.to: "base"; \
image.normal: "efm_generic_icon_over_empty.png"; \
} \
} \
} \
}
//Libraries//
EFM_MIME_ICON_SIMPLE("application/x-sharedlib","efm_generic_icon_content_lib.png", (114/114), (114/114), 240, 0.5);
EFM_MIME_ICON_SIMPLE("application/x-shared-library-la","efm_generic_icon_content_lib.png", (114/114), (114/114), 240, 0.5);
//Unknown//
EFM_MIME_ICON_SIMPLE("application/x-object","efm_generic_icon_content_unknown.png", (100/154), (100/154), 240, 0.5);
//Install//
EFM_MIME_ICON_SIMPLE("application/x-install-instructions","efm_generic_icon_content_install.png",(114/149), (114/149), 240, 0.5);
//Cache//
EFM_MIME_ICON_SIMPLE("chemical/x-cache","efm_generic_icon_content_db.png", (114/128), (114/128), 240, 0.5);
#undefine EFM_MIME_ICON
#undefine EFM_MIME_ICON_SIMPLE
/* #define EFMICON(NAME, FILE, SIZE) \
* group { name: "e/icons/fileman/"NAME; \
* max: SIZE SIZE; \
* parts { \
* part { name: "icon"; \
* mouse_events: 0; \
* description { state: "default" 0.0; \
* aspect: 1.0 1.0; \
* aspect_preference: BOTH; \
* image.image: FILE COMP; \
* image.normal: FILE ; \
* } \
* } \
* } \
* } */
//EFMICON("folder","icon_efm_folder.png", 128)
//EFMICON("chrdev","icon_efm_file.png", 128)
//EFMICON("blkdev","icon_efm_file.png", 128)
//EFMICON("fifo","icon_efm_file.png", 128)
//EFMICON("socket","icon_efm_file.png", 128)
//EFMICON("executable","icon_efm_file.png", 128)
//EFMICON("home","icon_efm_home.png", 128)
//EFMICON("root","icon_efm_root.png", 128)
//EFMICON("tmp","icon_efm_tmp.png", 128)
//EFMICON("desktop","icon_efm_desktop.png", 128)
//EFMICON("hdd","icon_efm_hdd.png", 128)
//EFMICON("hd","icon_efm_hdd.png", 128)
// EFM Mime type icons //
#define MIMEICON(NAME, FILE, SIZE) \
group { \
name: "e/icons/fileman/mime/"NAME; \
max: SIZE SIZE; \
parts { \
part { \
name: "icon"; \
mouse_events: 0; \
description { \
state: "default" 0.0; \
aspect: 1.0 1.0; \
aspect_preference: BOTH; \
image.image: "O/"FILE COMP; \
image.normal: "O/"FILE ; \
} \
} \
} \
}
MIMEICON("application/x-deb","icon_mime_deb.png", 128);

View File

@ -739,6 +739,7 @@ group { name: "e/modules/clock/calendar/day";
color: 160 160 160 255;
rel1.offset: 3 3;
rel2.offset: -4 -4;
offscale;
text { font: FN; size: 10;
text: "00";
min: 1 1;

View File

@ -13,7 +13,6 @@ Group: efl/bg (@since 1.23)
group { "efl/bg";
data.item: "version" "123";
images.image: "bevel_dark_out.png" COMP;
parts {
part { name: "clipper"; type: RECT;
description { state: "default" 0.0;
@ -21,7 +20,6 @@ group { "efl/bg";
}
part { name: "base"; type: RECT;
description { state: "default" 0.0;
color_class: "dialog_base";
color: 64 64 64 255;
}
}
@ -35,14 +33,6 @@ group { "efl/bg";
fixed: 1 1;
}
}
part { name: "bevel";
description { state: "default" 0.0;
image.normal: "bevel_dark_out.png";
image.border: 1 1 1 1;
image.middle: 0;
fill.smooth: 0;
}
}
part { name: "efl.content"; type: SWALLOW; required;
description { state: "default" 0.0;
}

File diff suppressed because it is too large Load Diff

View File

@ -15,7 +15,6 @@ group { name: "elm/bg/base/default";
}
part { name: "base"; type: RECT;
description { state: "default" 0.0;
color_class: "dialog_base";
color: 64 64 64 255;
}
}

View File

@ -107,6 +107,7 @@ group { name: "elm/border/base/default";
desc { "default";
color: 64 64 64 255;
visible: 0;
rel.to: "elm.spacer.content";
}
desc { "visible";
inherit: "default";
@ -117,6 +118,9 @@ group { name: "elm/border/base/default";
swallow { "elm.swallow.background";
required; // @since 1.19
clip: "client_clip";
desc { "default";
rel.to: "elm.spacer.content";
}
}
spacer { "indicator_spacer";
desc { "default";

View File

@ -1,21 +1,21 @@
#define CIT_STYLES\
style { name: "calendar_date_style";\
base: "font="FN" font_size=10 color=#ffffff style=shadow,bottom shadow_color=#00000080 align=center text_class=calendar_day_text color_class=calendar_day_text";\
base: "font="FN" font_size=10 color=#a0a0a0 align=center text_class=calendar_day_text";\
}\
style { name: "calendar_date_holiday_style";\
base: "font="FN" font_size=10 color=#808080 style=shadow,bottom shadow_color=#00000080 align=center text_class=calendar_day_text_holiday color_class=calendar_day_text_holiday";\
base: "font="FN" font_size=10 color=#3399ff align=center text_class=calendar_day_text_holiday";\
}\
style { name: "calendar_date_today_style";\
base: "font="FN" font_size=10 color=#3399ff style=glow glow_color=#3399ff18 align=center text_class=calendar_day_text_today color_class=calendar_day_text_today";\
base: "font="FN" font_size=10 color=#ffffff align=center text_class=calendar_day_text_today";\
}\
style { name: "calendar_date_disabled_style";\
base: "font="FN" font_size=10 color=#151515 style=shadow,bottom shadow_color=#ffffffc0 align=center text_class=calendar_day_text_disabled text_class=calendar_day_text_disabled";\
base: "font="FN" font_size=10 color=#282828 align=center text_class=calendar_day_text_disabled";\
}\
style { name: "calendar_date_weekend1_style";\
base: "font="FN" font_size=10 color=#2020C0 style=shadow,bottom shadow_color=#ffffffc0 align=center text_class=calendar_day_text_weekend1 color_class=calendar_day_text_weekend1";\
base: "font="FN" font_size=10 color=#3399ff align=center text_class=calendar_day_text_weekend1";\
}\
style { name: "calendar_date_weekend2_style";\
base: "font="FN" font_size=10 color=#C02020 style=shadow,bottom shadow_color=#ffffffc0 align=center text_class=calendar_day_text_weekend2 color_class=calendar_day_text_weekend2";\
base: "font="FN" font_size=10 color=#3399ff align=center text_class=calendar_day_text_weekend2";\
}\
#define CAL_SPIN(_sufix, _text, _relative)\
@ -30,8 +30,8 @@
offset: 0 -1;\
}\
align: 0.0 0.5;\
min: 15 15;\
max: 15 15;\
min: 25 25;\
max: 25 25;\
}\
}\
part { name: "right_bt"#_sufix; type: RECT;\
@ -45,124 +45,110 @@
offset: -1 -1;\
}\
align: 1.0 0.5;\
min: 15 15;\
max: 15 15;\
min: 25 25;\
max: 25 25;\
color: 0 0 0 0;\
}\
}\
part { name: "elm,calendar,button"#_sufix",left";\
type: SWALLOW;\
part { name: "elm,calendar,button"#_sufix",left"; type: SWALLOW;\
scale: 1;\
description { state: "default" 0.0;\
fixed: 1 1;\
rel1.to: "left_bt"#_sufix;\
rel2.to: "left_bt"#_sufix;\
rel.to: "left_bt"#_sufix;\
min: 15 15;\
max: 15 15;\
}\
description { state: "rtl" 0.0;\
inherit: "default" 0.0;\
rel1.to: "right_bt"#_sufix;\
rel2.to: "right_bt"#_sufix;\
rel.to: "right_bt"#_sufix;\
}\
}\
part { name: "elm,calendar,button"#_sufix",right";\
type: SWALLOW;\
part { name: "elm,calendar,button"#_sufix",right"; type: SWALLOW;\
scale: 1;\
description { state: "default" 0.0;\
fixed: 1 1;\
rel1.to: "right_bt"#_sufix;\
rel2.to: "right_bt"#_sufix;\
rel.to: "right_bt"#_sufix;\
min: 15 15;\
max: 15 15;\
}\
description { state: "rtl" 0.0;\
inherit: "default" 0.0;\
rel1.to: "left_bt"#_sufix;\
rel2.to: "left_bt"#_sufix;\
rel.to: "left_bt"#_sufix;\
}\
}\
part { name: #_text; type: TEXT; mouse_events: 0;\
effect: SHADOW BOTTOM; \
scale: 1;\
description { state: "default" 0.0;\
fixed: 1 1;\
rel1 { relative: 1.0 0.0;\
to: "left_bt"#_sufix;\
offset: 8 8;\
}\
rel2 { relative: 0.0 1.0;\
to: "right_bt"#_sufix;\
offset: -9 -9;\
}\
offscale;\
text { font: FNBD; size: 10;\
min: 0 1;\
text_class: "calendar_"#_text; \
}\
color_class: "calendar_"#_text; \
color: 160 160 160 255; \
}\
}
#define CH(_pos) \
part { name: "ch_"#_pos"_base"; type: SPACER; \
description { state: "default" 0.0; \
rel1 { \
relative: (_pos % 7 / 7) 0.0; \
to: "header"; \
} \
rel2 { \
relative: (_pos % 7 / 7 + 1 / 7) 1.0; \
to: "header"; \
} \
rel.to: "header";\
rel1.relative: (_pos % 7 / 7) 0.0; \
rel2.relative: (_pos % 7 / 7 + 1 / 7) 1.0; \
} \
} \
part { name: "elm.ch_"#_pos".text"; type: TEXT; mouse_events: 0; \
effect: SHADOW BOTTOM; \
scale: 1; \
clip_to: "ch_"#_pos"_clipper"; \
description { state: "default" 0.0; \
rel1.to: "ch_"#_pos"_base"; \
rel2.to: "ch_"#_pos"_base"; \
rel.to: "ch_"#_pos"_base"; \
rel1.offset: 0 3; \
rel2.offset: -1 -4; \
offscale;\
text { font: FN; size: 8; \
min: 1 1; \
ellipsis: -1; \
text_class: "calendar_weekday_text"; \
} \
color_class: "calendar_weekday_text"; \
color: 160 160 160 255; \
} \
} \
part { name: "ch_"#_pos"_clipper"; type: RECT; \
description { state: "default" 0.0; \
rel1.to: "ch_"#_pos"_base"; \
rel2.to: "ch_"#_pos"_base"; \
rel.to: "ch_"#_pos"_base"; \
} \
}
#define CIT(_pos) \
part { name: "cit_"#_pos"_rect"; type: SPACER; \
description { state: "default" 0.0; \
rel1 { \
relative: (_pos % 7 / 7) \
(_pos / 7 / 6 - _pos % 7 / 7 / 6); \
to: "base"; \
} \
rel2 { \
relative: (_pos % 7 / 7 + 1 / 7) \
(_pos / 7 / 6 + 1 / 6 - _pos % 7 / 7 / 6); \
to: "base"; \
} \
rel.to: "base"; \
rel1.relative: (_pos % 7 / 7) (_pos / 7 / 6 - _pos % 7 / 7 / 6); \
rel2.relative: (_pos % 7 / 7 + 1 / 7) (_pos / 7 / 6 + 1 / 6 - _pos % 7 / 7 / 6); \
} \
} \
part { name: "cit_"#_pos"_event"; type: RECT; repeat_events: 1; \
description { state: "default" 0.0; \
rel1.to: "cit_"#_pos"_rect"; \
rel2.to: "cit_"#_pos"_rect"; \
rel.to: "cit_"#_pos"_rect"; \
color: 0 0 0 0; \
} \
description { state: "today" 0.0; \
inherit: "default" 0.0; \
color: 0 0 0 64; \
} \
} \
part { name: "cit_"#_pos"_pat"; mouse_events: 0; \
part { name: "cit_"#_pos"_selected"; type: RECT; mouse_events: 0; \
description { state: "default" 0.0; \
rel1.to: "cit_"#_pos"_selected"; \
rel1.offset: 1 1; \
rel2.to: "cit_"#_pos"_selected"; \
rel2.offset: -2 -2; \
image.normal: "diagonal_stripes.png"; \
color: 51 153 255 25; \
TILED_PATTERN(240, 240) \
rel.to: "cit_"#_pos"_rect"; \
color: 51 153 255 128; \
visible: 0; \
} \
description { state: "selected" 0.0; \
@ -170,13 +156,10 @@
visible: 1; \
} \
} \
part { name: "cit_"#_pos"_selected"; mouse_events: 0; \
part { name: "cit_"#_pos"_focus"; type: RECT; mouse_events: 0; \
description { state: "default" 0.0; \
rel1.to: "cit_"#_pos"_rect"; \
rel2.to: "cit_"#_pos"_rect"; \
image.normal: "outline.png"; \
image.border: 4 4 4 4; \
color: 51 153 255 255; \
rel.to: "cit_"#_pos"_rect"; \
color: 255 153 51 128; \
visible: 0; \
} \
description { state: "selected" 0.0; \
@ -184,43 +167,16 @@
visible: 1; \
} \
} \
part { name: "cit_"#_pos"_selected2"; mouse_events: 0; \
description { state: "default" 0.0; \
rel1.to: "cit_"#_pos"_rect"; \
rel2.to: "cit_"#_pos"_rect"; \
image.normal: "outline.png"; \
image.border: 4 4 4 4; \
color: 51 153 255 255; \
visible: 0; \
} \
description { state: "highlighted" 0.0; \
inherit: "default" 0.0; \
visible: 1; \
} \
} \
part { name: "cit_"#_pos"_glow"; mouse_events: 0; \
description { state: "default" 0.0; \
rel1.to: "cit_"#_pos"_rect"; \
rel2.to: "cit_"#_pos"_rect"; \
image.normal: "box_glow.png"; \
image.border: 12 12 12 12; \
image.middle: 0; \
fill.smooth: 0; \
visible: 0; \
} \
description { state: "focused" 0.0; \
inherit: "default" 0.0; \
visible: 1; \
} \
} \
part { name: "elm.cit_"#_pos".text"; type: TEXTBLOCK; mouse_events: 0; \
scale: 1; \
description { state: "default" 0.0; \
rel1.to: "cit_"#_pos"_rect"; \
rel2.to: "cit_"#_pos"_rect"; \
rel.to: "cit_"#_pos"_rect"; \
rel1.offset: 3 0; \
rel2.offset: -4 -1; \
text.style: "calendar_date_style"; \
text.min: 1 1; \
text.ellipsis: -1; \
offscale; \
} \
description { state: "holiday" 0.0; \
inherit: "default" 0.0; \
@ -247,20 +203,13 @@
scale: 1; \
description { state: "default" 0.0; \
fixed: 1 1; \
rel1 { \
to: "cit_"#_pos"_rect"; \
relative: 0.6 0.5; \
} \
rel2 { \
to: "cit_"#_pos"_rect"; \
relative: 0.6 0.5; \
} \
min: 16 16; \
max: 16 16; \
aspect: 1 1; \
rel.to: "cit_"#_pos"_rect"; \
rel1.relative: 0.6 0.5; \
min: 15 15; \
max: 15 15; \
align: 0.0 1.0;\
image.normal: "icon_border_remember.png"; \
color_class: "calendar_day_checked"; \
image.normal: "i-check"; \
color: 53 153 255 255; \
visible: 0; \
} \
description { state: "visible" 0.0; \
@ -270,8 +219,7 @@
} \
part { name: "elm.cit_"#_pos".access"; type: RECT; repeat_events: 1; \
description { state: "default" 0.0; \
rel1.to: "cit_"#_pos"_event"; \
rel2.to: "cit_"#_pos"_event"; \
rel.to: "cit_"#_pos"_event"; \
color: 0 0 0 0; \
} \
} \
@ -281,7 +229,6 @@
signal: "cit_"#_pos",selected"; \
source: "elm"; \
action: STATE_SET "selected" 0.0; \
target: "cit_"#_pos"_pat"; \
target: "cit_"#_pos"_selected"; \
} \
program { \
@ -289,7 +236,6 @@
signal: "cit_"#_pos",unselected"; \
source: "elm"; \
action: STATE_SET "default" 0.0; \
target: "cit_"#_pos"_pat"; \
target: "cit_"#_pos"_selected"; \
} \
program { \
@ -300,7 +246,7 @@
set_int(item_focus_enabled, 1); \
set_int(last_focused_item, _pos); \
if (get_int(win_focus_enabled) == 1) \
set_state(PART:"cit_"#_pos"_glow", "focused", 0.0); \
set_state(PART:"cit_"#_pos"_focus", "selected", 0.0); \
} \
} \
program { \
@ -309,7 +255,7 @@
source: "elm"; \
script { \
set_int(item_focus_enabled, 0); \
set_state(PART:"cit_"#_pos"_glow", "default", 0.0); \
set_state(PART:"cit_"#_pos"_focus", "default", 0.0); \
} \
} \
program { \
@ -318,6 +264,7 @@
source: "elm"; \
action: STATE_SET "today" 0.0; \
target: "elm.cit_"#_pos".text"; \
target: "cit_"#_pos"_event";\
} \
program { \
name: "cit_"#_pos"_not_today"; \
@ -325,6 +272,7 @@
source: "elm"; \
action: STATE_SET "default" 0.0; \
target: "elm.cit_"#_pos".text"; \
target: "cit_"#_pos"_event";\
} \
program { \
name: "cit_"#_pos"_enable"; \
@ -349,15 +297,15 @@
source: "cit_"#_pos"_clicked"; \
signal: "mouse,down,1"; \
source: "cit_"#_pos"_event"; \
action: STATE_SET "highlighted" 0.0; \
target: "cit_"#_pos"_selected2"; \
action: STATE_SET "selected" 0.0; \
target: "cit_"#_pos"_selected"; \
} \
program { \
source: "cit_"#_pos"_clicked"; \
signal: "mouse,up,1"; \
source: "cit_"#_pos"_event"; \
action: STATE_SET "default" 0.0; \
target: "cit_"#_pos"_selected2"; \
target: "cit_"#_pos"_selected"; \
} \
program { \
source: "cit_"#_pos"_clicked"; \
@ -440,14 +388,6 @@
}
group { name: "elm/calendar/base/default";
images.image: "sym_left_light_normal.png" COMP;
images.image: "sym_right_light_normal.png" COMP;
images.image: "sym_left_glow_normal.png" COMP;
images.image: "sym_right_glow_normal.png" COMP;
images.image: "icon_border_remember.png" COMP;
images.image: "outline.png" COMP;
images.image: "box_glow.png" COMP;
images.image: "diagonal_stripes.png" COMP;
data.item: "focus_highlight" "on";
script {
public rtl;
@ -460,28 +400,30 @@ group { name: "elm/calendar/base/default";
}
parts {
part { name: "bg"; type: SPACER;
scale: 1;
description { state: "default" 0.0;
rel1.offset: 1 1;
rel2.offset: -2 -2;
rel1.offset: 8 8;
rel2.offset: -9 -9;
offscale;
}
}
part { name: "elm.swallow.background"; type: SWALLOW;
description { state: "default" 0.0;
rel1.to: "bg";
rel2.to: "bg";
rel.to: "bg";
}
}
part { name: "spinner-base1"; type: SPACER;
scale: 1;
description { state: "default" 0.0;
min: 24 16;
max: 999999 16;
rel1.to: "bg";
rel2.to: "bg";
rel.to: "bg";
rel2.relative: 1.0 (1/8);
align: 0.5 0.0;
}
}
part { name: "table-base"; type: SPACER;
scale: 1;
description { state: "default" 0.0;
min: 70 60;
rel1.to_x: "bg";
@ -490,29 +432,31 @@ group { name: "elm/calendar/base/default";
rel1.relative: 0.0 1.0;
rel2.to: "bg";
rel2.offset: -4 -4;
offscale;
}
}
part { name: "header"; type: SPACER;
description { state: "default" 0.0;
rel1.to: "table-base";
rel2.to: "table-base";
rel.to: "table-base";
rel2.relative: 1.0 (1/7);
align: 0.5 0.0;
min: 0 16;
min: 0 25;
}
}
part { name: "header_separator"; mouse_events: 0;
part { name: "header_separator"; type: RECT; mouse_events: 0;
scale: 1;
description { state: "default" 0.0;
fixed: 1 1;
rel1.to: "header";
rel.to: "header";
rel1.relative: 0.0 1.0;
rel1.offset: 0 -2;
rel2.to: "header";
image.normal: "separator_horiz.png";
fill.smooth: 0;
rel1.offset: 8 -1;
rel2.offset: -9 -1;
color: 80 80 80 255;
offscale;
}
}
part { name: "base"; type: SPACER;
scale: 1;
description { state: "default" 0.0;
rel1.to_x: "table-base";
rel1.to_y: "header";
@ -520,6 +464,7 @@ group { name: "elm/calendar/base/default";
rel1.offset: 3 0;
rel2.to: "table-base";
rel2.offset: -3 0;
offscale;
}
}
@ -560,18 +505,20 @@ group { name: "elm/calendar/base/double_spinners";
inherit: "elm/calendar/base/default";
parts {
part { name: "spinner-base1"; type: SPACER;
scale: 1;
description { state: "default" 0.0;
min: 24 24;
max: 999999 24;
rel1.to: "bg";
rel.to: "bg";
rel1.offset: 6 6;
rel2.to: "bg";
rel2.relative: 0.5 1.0;
rel2.offset: -7 -7;
align: 0.0 0.0;
offscale;
}
}
part { name: "spinner-base2"; type: SPACER;
scale: 1;
description { state: "default" 0.0;
min: 24 24;
max: 999999 24;
@ -582,6 +529,7 @@ group { name: "elm/calendar/base/double_spinners";
rel2.to: "bg";
rel2.offset: -7 -7;
align: 0.0 0.0;
offscale;
}
}
CAL_SPIN(,month_text, spinner-base1)

View File

@ -1,4 +1,12 @@
group { name: "elm/check/base/default";
sounds {
sample { name: "wood-tap1" LOSSY 64;
source: "wood-tap.wav";
}
sample { name: "wood-tap2" LOSSY 64;
source: "wood-tap2.wav";
}
}
script {
BUTTONMODE_SCRIPT
}
@ -214,6 +222,15 @@ group { name: "elm/check/base/default";
program { signal: "mouse,clicked,1"; source: "event";
action: SIGNAL_EMIT "elm,action,check,toggle" "elm";
}
program { signal: "mouse,down,1"; source: "event";
script {
new buf[32]; new Float:val;
get_state(PART:"ck_check", buf, 32, val);
if (!strcmp(buf, "default")) { run_program(PROGRAM:"snd-check-on"); }
else { run_program(PROGRAM:"snd-check-off"); }
echo(buf);
}
}
program { signal: "elm,state,check,on"; source: "elm";
action: STATE_SET "selected" 0.0;
target: "ck_check";
@ -222,6 +239,12 @@ group { name: "elm/check/base/default";
action: STATE_SET "default" 0.0;
target: "ck_check";
}
program { name: "snd-check-on";
action: PLAY_SAMPLE "wood-tap1" 1.0 INPUT;
}
program { name: "snd-check-off";
action: PLAY_SAMPLE "wood-tap2" 1.0 INPUT;
}
program { signal: "mouse,down,1"; source: "event";
action: SIGNAL_EMIT "elm,action,press" "elm";
after: "button_click_anim";

View File

@ -10,19 +10,14 @@ group { name: "elm/code/layout/default";
description { state: "default" 0.0;
align: 0.5 0.0;
fixed: 0 1;
rel2 {
relative: 1.0 1.0;
offset: 0 0;
}
}
}
}
}
color_classes {
color_class { name: "elm/code/status/default"; color: 36 36 36 255; }
color_class { name: "elm/code/status/current"; color: 12 12 12 255; }
color_class { name: "elm/code/status/default"; color: 48 48 48 255; }
color_class { name: "elm/code/status/current"; color: 32 32 32 255; }
color_class { name: "elm/code/status/ignored"; color: 36 36 36 255; }
color_class { name: "elm/code/status/note"; color: 221 119 17 255; }
color_class { name: "elm/code/status/warning"; color: 221 119 17 255; }
@ -35,8 +30,8 @@ color_classes {
color_class { name: "elm/code/status/failed"; color: 96 54 54 255; }
color_class { name: "elm/code/status/todo"; color: 51 85 187 255; }
color_class { name: "elm/code/token/default"; color: 187 187 187 255; }
color_class { name: "elm/code/token/comment"; color: 85 85 85 255; }
color_class { name: "elm/code/token/default"; color: 160 160 160 255; }
color_class { name: "elm/code/token/comment"; color: 255 255 255 48; }
color_class { name: "elm/code/token/string"; color: 255 136 119 255; }
color_class { name: "elm/code/token/number"; color: 170 153 34 255; }
color_class { name: "elm/code/token/brace"; color: 170 102 170 255; }
@ -52,8 +47,8 @@ color_classes {
color_class { name: "elm/code/token/match"; color: 187 187 51 255; }
color_class { name: "elm/code/widget/color/selection"; color: 51 153 255 255; }
color_class { name: "elm/code/widget/color/gutter/bg"; color: 75 75 75 255; }
color_class { name: "elm/code/widget/color/gutter/fg"; color: 139 139 139 255; }
color_class { name: "elm/code/widget/color/gutter/bg"; color: 64 64 64 255; }
color_class { name: "elm/code/widget/color/gutter/fg"; color: 128 128 128 255; }
color_class { name: "elm/code/widget/color/gutter/scope/bg"; color: 54 54 54 255; }
color_class { name: "elm/code/widget/color/whitespace"; color: 50 50 50 127; }
color_class { name: "elm/code/widget/color/whitespace"; color: 96 96 96 255; }
}

View File

@ -539,7 +539,6 @@ group { name: "elm/entry/anchor/default";
}
group { name: "elm/entry/base/default";
/*
sounds {
sample { name: "key-tap1" LOSSY 64;
source: "kbd-tap.wav";
@ -557,7 +556,6 @@ group { name: "elm/entry/base/default";
source: "kbd-tap5.wav";
}
}
*/
styles {
style { name: "entry_style";
base: "font="FN" font_size=10 color=#a0a0a0 wrap=word text_class=entry_text color_class=entry_text left_margin=2 right_margin=2";
@ -656,7 +654,6 @@ group { name: "elm/entry/base/default";
action: STATE_SET "default" 0.0;
target: "elm.guide";
}
/*
program { name: "key-down";
signal: "entry,keydown"; source: "elm.text";
script {
@ -680,7 +677,6 @@ group { name: "elm/entry/base/default";
program { name: "key-down5";
action: PLAY_SAMPLE "key-tap5" 1.0 INPUT;
}
*/
}
}
@ -1151,7 +1147,6 @@ group { name: "elm/entry/handler/end/default";
}
group { name: "elm/efl_ui_text/base/default";
/*
sounds {
sample { name: "key-tap1" LOSSY 64;
source: "kbd-tap.wav";
@ -1169,7 +1164,6 @@ group { name: "elm/efl_ui_text/base/default";
source: "kbd-tap5.wav";
}
}
*/
// data.item: "context_menu_orientation" "horizontal";
parts {
part { name: "elm.swallow.background"; type: SWALLOW;
@ -1231,7 +1225,6 @@ group { name: "elm/efl_ui_text/base/default";
target: "elm.guide";
}
#endif
/*
program { name: "key-down";
signal: "entry,keydown"; source: "elm.text";
script {
@ -1255,7 +1248,6 @@ group { name: "elm/efl_ui_text/base/default";
program { name: "key-down5";
action: PLAY_SAMPLE "key-tap5" 1.0 INPUT;
}
*/
}
}
///////////////////////////////////////////////////////////////////////////////

View File

@ -51,11 +51,12 @@ group { name: "e/modules/ibox/icon";
}
part { name: "e.swallow.content"; type: SWALLOW;
clip_to: "item_clip";
scale: 1;
description { state: "default" 0.0;
rel1.to: "content";
rel2.to: "content";
rel.to: "content";
rel1.offset: 3 3;
rel2.offset: -4 -4;
offscale;
}
description { state: "bounce1" 0.0;
inherit: "default" 0.0;
@ -91,42 +92,58 @@ group { name: "e/modules/ibox/icon";
}
}
part { name: "clip"; type: RECT; mouse_events: 0;
scale: 1;
description { state: "default" 0.0;
rel1.offset: (0 - SHELFPAD) (0 - SHELFPAD);
rel2.offset: (SHELFPAD - 1) (SHELFPAD - 1);
offscale;
}
}
part { name: "clip1"; type: RECT; mouse_events: 0;
clip_to: "clip";
scale: 1;
description { state: "default" 0.0;
rel1.offset: (0 - SHELFPAD) (0 - SHELFPAD);
rel2.offset: (SHELFPAD - 1) (SHELFPAD - 1);
offscale;
visible: 1;
}
description { state: "left" 0.0;
inherit: "default" 0.0;
visible: 0;
}
description { state: "right" 0.0;
inherit: "default" 0.0;
visible: 0;
}
}
part { name: "clip2"; type: RECT; mouse_events: 0;
clip_to: "clip";
description { state: "default" 0.0;
rel.to: "clip1";
visible: 0;
}
description { state: "left" 0.0;
inherit: "default" 0.0;
visible: 1;
}
description { state: "right" 0.0;
inherit: "default" 0.0;
visible: 0;
}
}
part { name: "clip3"; type: RECT; mouse_events: 0;
clip_to: "clip";
description { state: "default" 0.0;
rel.to: "clip1";
visible: 0;
}
description { state: "left" 0.0;
inherit: "default" 0.0;
visible: 0;
}
description { state: "right" 0.0;
inherit: "default" 0.0;
visible: 1;
}
}
@ -139,6 +156,9 @@ group { name: "e/modules/ibox/icon";
rel1.relative: 0.0 1.0;
align: 0.5 1.0;
max: 99999 5;
rel1.offset: 0 (SHELFPAD - 1);
rel2.offset: -1 (SHELFPAD - 1);
offscale;
}
description { state: "visible" 0.0;
inherit: "default" 0.0;
@ -155,6 +175,9 @@ group { name: "e/modules/ibox/icon";
rel2.relative: 0.0 1.0;
align: 0.0 0.5;
max: 5 99999;
rel1.offset: (0 - SHELFPAD) 0;
rel2.offset: (0 - SHELFPAD) -1;
offscale;
}
description { state: "visible" 0.0;
inherit: "default" 0.0;
@ -171,6 +194,9 @@ group { name: "e/modules/ibox/icon";
rel1.relative: 1.0 0.0;
align: 1.0 0.5;
max: 5 99999;
rel1.offset: (SHELFPAD - 1) 0;
rel2.offset: (SHELFPAD - 1) -1;
offscale;
}
description { state: "visible" 0.0;
inherit: "default" 0.0;
@ -185,22 +211,19 @@ group { name: "e/modules/ibox/icon";
}
}
programs {
program {
signal: "e,origin,center"; source: "e";
program { signal: "e,origin,center"; source: "e";
action: STATE_SET "default" 0.0;
target: "clip1";
target: "clip2";
target: "clip3";
}
program {
signal: "e,origin,left"; source: "e";
program { signal: "e,origin,left"; source: "e";
action: STATE_SET "left" 0.0;
target: "clip1";
target: "clip2";
target: "clip3";
}
program {
signal: "e,origin,right"; source: "e";
program { signal: "e,origin,right"; source: "e";
action: STATE_SET "right" 0.0;
target: "clip1";
target: "clip2";
@ -225,29 +248,25 @@ group { name: "e/modules/ibox/icon";
// program {
// signal: "e,action,hide,label"; source: "e";
// }
program {
signal: "e,state,starting"; source: "e";
program { signal: "e,state,starting"; source: "e";
action: STATE_SET "starting" 0.0;
transition: DECELERATE 0.2;
target: "content";
}
program {
signal: "e,state,started"; source: "e";
program { signal: "e,state,started"; source: "e";
action: STATE_SET "default" 0.0;
transition: ACCELERATE 0.2;
target: "content";
}
/////////////////////////////////////////////////////////////
program {
signal: "e,state,on"; source: "e";
program { signal: "e,state,on"; source: "e";
action: STATE_SET "visible" 0.0;
target: "indicator1";
target: "indicator2";
target: "indicator3";
transition: ACCELERATE 0.2;
}
program {
signal: "e,state,off"; source: "e";
program { signal: "e,state,off"; source: "e";
action: STATE_SET "default" 0.0;
target: "indicator1";
target: "indicator2";
@ -255,8 +274,7 @@ group { name: "e/modules/ibox/icon";
transition: DECELERATE 0.2;
}
/////////////////////////////////////////////////////////////
program {
signal: "e,state,urgent"; source: "e";
program { signal: "e,state,urgent"; source: "e";
action: STATE_SET "bounce1" 0.0;
target: "e.swallow.content";
target: "e.swallow.preview";
@ -276,8 +294,7 @@ group { name: "e/modules/ibox/icon";
target: "e.swallow.preview";
after: "urg1";
}
program {
signal: "e,state,not_urgent"; source: "e";
program { signal: "e,state,not_urgent"; source: "e";
action: STATE_SET "default" 0.0;
target: "e.swallow.content";
target: "e.swallow.preview";
@ -327,8 +344,7 @@ group { name: "e/modules/ibox/icon_overlay";
clip_to: "item_clip";
description { state: "default" 0.0;
visible: 0;
rel1.to: "base";
rel2.to: "base";
rel.to: "base";
color: 255 255 255 0;
}
description { state: "visible" 0.0;
@ -362,8 +378,7 @@ group { name: "e/modules/ibox/icon_overlay";
BUSY("busy_area", "e,state,starting", "e", "e,state,started", "e")
part { name: "busy_area"; type: SPACER;
description { state: "default" 0.0;
rel1.to: "content";
rel2.to: "content";
rel.to: "content";
rel1.relative: -0.5 -0.5;
rel2.relative: 1.5 1.5;
}
@ -406,9 +421,8 @@ group { name: "e/modules/ibox/icon_overlay";
part { name: "bg"; type: RECT; mouse_events: 0;
description { state: "default" 0.0;
rel1.offset: -5 -5;
rel1.to: "e.text.label";
rel.to: "e.text.label";
rel2.offset: 4 4;
rel2.to: "e.text.label";
fixed: 1 1;
color: 0 0 0 0;
visible: 0;
@ -451,21 +465,18 @@ group { name: "e/modules/ibox/icon_overlay";
// program {
// signal: "e,action,start"; source: "e";
// }
program {
signal: "e,state,starting"; source: "e";
program { signal: "e,state,starting"; source: "e";
action: STATE_SET "starting" 0.0;
transition: DECELERATE 0.2;
target: "content";
}
program {
signal: "e,state,started"; source: "e";
program { signal: "e,state,started"; source: "e";
action: STATE_SET "default" 0.0;
transition: ACCELERATE 0.2;
target: "content";
}
///////////////////////////////////////////////////////////
program {
signal: "load"; source: "";
program { signal: "load"; source: "";
script {
set_int(urgent, 0);
}
@ -497,15 +508,13 @@ group { name: "e/modules/ibox/icon_overlay";
}
after: "go_passive2";
}
program {
signal: "e,action,show,label"; source: "e";
program { signal: "e,action,show,label"; source: "e";
action: STATE_SET "visible" 0.0;
transition: SINUSOIDAL 0.5;
target: "e.text.label";
target: "bg";
}
program {
signal: "e,action,hide,label"; source: "e";
program { signal: "e,action,hide,label"; source: "e";
action: STATE_SET "default" 0.0;
transition: SINUSOIDAL 1.0;
target: "e.text.label";
@ -543,8 +552,7 @@ group { name: "e/modules/ibox/icon_overlay";
action: STATE_SET "disabled" 0.0;
target: "item_clip";
}
program {
signal: "e,state,not_urgent"; source: "e";
program { signal: "e,state,not_urgent"; source: "e";
script {
set_int(urgent, 0);
}
@ -554,8 +562,7 @@ group { name: "e/modules/ibox/icon_overlay";
action: STATE_SET "default" 0.0;
target: "item_clip";
}
program {
signal: "e,action,exec"; source: "e";
program { signal: "e,action,exec"; source: "e";
after: "exec_start";
}
program { name: "exec_start";
@ -846,8 +853,7 @@ group { name: "e/modules/ibar/menu/item";
}
part { name: "e.swallow.icon"; type: SWALLOW; mouse_events: 0;
description { state: "default";
rel1.to: "icon";
rel2.to: "icon";
rel.to: "icon";
}
}
part { name: "e.text.title"; type: TEXT; mouse_events: 0;
@ -879,14 +885,12 @@ group { name: "e/modules/ibar/menu/item";
}
}
programs {
program {
signal: "mouse,in"; source: "event";
program { signal: "mouse,in"; source: "event";
action: STATE_SET "focus" 0.0;
target: "e.text.title";
transition: ACCELERATE 0.2;
}
program {
signal: "mouse,out"; source: "event";
program { signal: "mouse,out"; source: "event";
action: STATE_SET "default" 0.0;
target: "e.text.title";
transition: DECELERATE 0.2;

View File

@ -128,7 +128,6 @@ ICON("preferences-window-maximize", "i-window-maximize")
ICON("preferences-window-stacking", "i-window-stacking")
ICON("preferences-windows-lost", "i-window-lost")
ICON("preferences-dialogs", "i-dialog")
ICON("preferences-illume", "i-mobile")
ICON("preferences-gradient", "i-gradient")
ICON("preferences-engine", "i-engine")
ICON("preferences-desktop-shelf-bottom-desk", "i-shelf")
@ -275,7 +274,9 @@ ICON("inode/fifo", "i-device-pipe")
ICON("inode/socket", "i-device-socket")
ICON("inode/symlink", "i-symlink")
ICON("application/x-iso9660-image", "i-drive-cd")
ICON("application/x-raw-disk-image", "i-drive-cd")
ICON("application/x-cue", "i-drive-cd")
ICON("application/octet-stream", "i-file2")
@ -286,8 +287,51 @@ ICON("text/x-csrc", "i-efm-c")
ICON("text/x-chdr", "i-efm-h")
ICON("text/x-c++src", "i-efm-cpp")
ICON("text/x-c++hdr", "i-efm-hpp")
ICON("text/x-python", "i-efm-py")
ICON("text/x-python3", "i-efm-py")
ICON("text/x-ruby", "i-efm-rb")
ICON("text/x-perl", "i-efm-pl")
ICON("text/x-patch", "i-efm-txt")
ICON("text/x-log", "i-efm-txt")
ICON("text/x-makefile", "i-efm-txt")
ICON("text/x-subviewer", "i-efm-txt")
ICON("text/html", "i-efm-html")
ICON("text/css", "i-efm-html")
ICON("text/json", "i-efm-html")
ICON("application/xhtml+xml", "i-efm-html")
ICON("text/x-gettext-translation", "i-lang")
ICON("text/x-gettext-translation-template", "i-lang")
ICON("text/x-csharp", "i-efm-code")
ICON("text/x-hdr", "i-efm-code")
ICON("text/x-fortran", "i-efm-code")
ICON("text/x-java-source", "i-efm-code")
ICON("text/x-lua", "i-efm-lua")
ICON("application/x-python", "i-efm-py")
ICON("application/x-ruby", "i-efm-rb")
ICON("application/x-perl", "i-efm-pl")
ICON("application/x-python-bytecode", "i-efm-pyb")
ICON("application/x-shellscript", "i-efm-sh")
ICON("application/x-php", "i-efm-php")
ICON("application/x-md5", "i-efm-txt")
ICON("application/x-m4", "i-efm-txt")
ICON("application/pkix-attr-cert", "i-efm-txt")
ICON("application/x-wais-source", "i-efm-txt")
ICON("application/x-executable", "i-efm-exe")
ICON("application/x-ms-dos-executable", "i-efm-exe")
@ -304,6 +348,177 @@ ICON("application/x-bzip2-compressed-tar", "i-efm-zip")
ICON("application/x-7z-compressed-tar", "i-efm-zip")
ICON("application/x-xz-compressed-tar", "i-efm-zip")
ICON("application/vnd.ms-cab-compressed", "i-efm-zip")
ICON("application/x-gettext-translation", "i-lang")
ICON("application/x-gettext-translation-template", "i-lang")
ICON("application/xml", "i-efm-html")
ICON("application/javascript", "i-efm-html")
ICON("application/json", "i-efm-html")
ICON("application/x-awk", "i-efm-code")
ICON("application/x-deb", "i-efm-deb")
ICON("application/x-font-ttf", "i-font-file")
ICON("application/x-font-pcf", "i-font-file")
ICON("application/x-font-pdf", "i-font-file")
ICON("application/x-font-otf", "i-font-file")
ICON("font/ttf", "i-font-file")
ICON("application/postscript", "i-efm-ps")
ICON("application/pdf", "i-efm-pdf")
ICON("application/acad", "i-efm-cad")
ICON("application/x-acad", "i-efm-cad")
ICON("application/autocad_dwg", "i-efm-cad")
ICON("application/dwg", "i-efm-cad")
ICON("application/x-dwg", "i-efm-cad")
ICON("application/x-autocad", "i-efm-cad")
ICON("image/x-dwg", "i-efm-cad")
ICON("image/vnd.dwg", "i-efm-cad")
ICON("application/vnd.ms-binder", "i-efm-db")
ICON("application/x-sqlite3", "i-efm-db")
ICON("chemical/x-cache", "i-efm-db")
ICON("drawing/dwg", "i-efm-cad")
ICON("application/x-object", "i-efm-o")
ICON("application/x-sharedlib", "i-efm-so")
ICON("application/x-shared-library-la", "i-efm-so")
ICON("application/vnd.oasis.opendocument.spreadsheet", "i-efm-spreadsheet")
ICON("application/vnd.ms-excel", "i-efm-spreadsheet")
ICON("application/vnd.stardivision.calc", "i-efm-spreadsheet")
ICON("text/csv", "i-efm-spreadsheet")
ICON("application/vnd.ms-powerpoint", "i-efm-present")
ICON("application/vnd.oasis.opendocument.presentation", "i-efm-present")
ICON("application/vnd.stardivision.impress", "i-efm-present")
ICON("application/vnd.oasis.opendocument.text", "i-efm-doc")
ICON("application/x-msword", "i-efm-doc")
ICON("application/vnd.openxmlformats-officedocument.wordprocessingml.document", "i-efm-doc")
ICON("application/vnd.sun.xml.writer", "i-efm-doc")
ICON("application/vnd.stardivision.writer", "i-efm-doc")
ICON("application/x-abiword", "i-efm-doc")
ICON("application/vnd.scribus", "i-efm-doc")
ICON("application/x-lyx", "i-efm-doc")
ICON("text/markdown", "i-efm-doc")
ICON("application/x-vnd.oasis.opendocument.graphics", "i-efm-draw")
ICON("application/x-vnd.oasis.opendocument.formula", "i-efm-formula")
ICON("application/vnd.openxmlformats-officedocument.wordprocessingml.template", "i-efm-template")
ICON("application/vnd.openxmlformats-officedocument.spreadsheetml.template", "i-efm-template")
ICON("application/vnd.openxmlformats-officedocument.presentationml.template", "i-efm-template")
ICON("application/vnd.oasis.opendocument.chart-template", "i-efm-template")
ICON("application/vnd.oasis.opendocument.formula-template", "i-efm-template")
ICON("application/vnd.oasis.opendocument.graphics-template", "i-efm-template")
ICON("application/vnd.oasis.opendocument.image-template", "i-efm-template")
ICON("application/vnd.oasis.opendocument.presentation-template", "i-efm-template")
ICON("application/vnd.oasis.opendocument.spreadsheet-template", "i-efm-template")
ICON("application/vnd.oasis.opendocument.text-template", "i-efm-template")
ICON("application/x-install-instructions", "i-efm-install")
ICON("application/edje", "i-efm-efile")
ICON("text/edje", "i-efm-efile")
ICON("image/png", "i-picture-landscape")
ICON("image/jpeg", "i-picture-landscape")
ICON("image/gif", "i-picture-landscape")
ICON("image/bmp", "i-picture-landscape")
ICON("image/webp", "i-picture-landscape")
ICON("image/x-compressed-xcf", "i-picture-landscape")
ICON("application/x-xcf", "i-picture-landscape")
ICON("application/x-cbz", "i-picture-landscape")
ICON("application/x-cbr", "i-picture-landscape")
ICON("application/ogg", "i-film")
ICON("application/vnd.rn-realmedia", "i-film")
ICON("video/mp4", "i-film")
ICON("video/mpeg", "i-film")
ICON("video/ogg", "i-film")
ICON("video/quicktime", "i-film")
ICON("video/webm", "i-film")
ICON("video/x-flv", "i-film")
ICON("video/x-msvideo", "i-film")
ICON("video/x-matroska", "i-film")
ICON("video/x-ms-wmv", "i-film")
ICON("video/x-theora+ogg", "i-film")
ICON("audio/mpeg", "i-sound")
ICON("audio/x-wav", "i-sound")
ICON("audio/x-flac", "i-sound")
ICON("audio/flac", "i-sound")
ICON("audio/x-musepack", "i-sound")
ICON("audio/x-vorbis+ogg", "i-sound")
ICON("application/x-audacity-project", "i-sound")
ICON("audio/x-ms-wma", "i-sound")
ICON("audio/opus", "i-sound")
ICON("audio/ogg", "i-sound")
ICON("audio/x-opus+ogg", "i-sound")
ICON("audio/ape", "i-sound")
ICON("audio/webm", "i-sound")
ICON("audio/mp4", "i-sound")
ICON("audio/midi", "i-sound")
ICON("audio/speex", "i-sound")
ICON("audio/aac", "i-sound")
ICON("audio/vnd.rn-realaudio", "i-sound")
ICON("audio/x-voc", "i-sound")
ICON("audio/x-tta", "i-sound")
ICON("audio/x-stm", "i-sound")
ICON("audio/x-speex+ogg", "i-sound")
ICON("audio/x-wacpack", "i-sound")
ICON("audio/x-xmf", "i-sound")
ICON("audio/x-xm", "i-sound")
ICON("audio/x-xi", "i-sound")
ICON("audio/x-wacpack-correction", "i-sound")
ICON("audio/x-s3m", "i-sound")
ICON("audio/x-riff", "i-sound")
ICON("audio/x-psflib", "i-sound")
ICON("audio/x-psf", "i-sound")
ICON("audio/x-scpls", "i-sound")
ICON("audio/x-ms-asx", "i-sound")
ICON("audio/x-mpegurl", "i-sound")
ICON("audio/x-mod", "i-sound")
ICON("audio/x-mo3", "i-sound")
ICON("audio/x-minipsf", "i-sound")
ICON("audio/matroska", "i-sound")
ICON("audio/x-m4b", "i-sound")
ICON("audio/x-it", "i-sound")
ICON("audio/x-iriver-pla", "i-sound")
ICON("audio/x-gsm", "i-sound")
ICON("audio/x-flac+ogg", "i-sound")
ICON("audio/x-amzxml", "i-sound")
ICON("audio/x-aiff", "i-sound")
ICON("audio/x-aifc", "i-sound")
ICON("audio/x-adpcm", "i-sound")
ICON("audio/vdn.rn-realaudio", "i-sound")
ICON("audio/vdn.dts", "i-sound")
ICON("audio/vdn.dts.hd", "i-sound")
ICON("audio/prs.sid", "i-sound")
ICON("audio/mp2", "i-sound")
ICON("audio/basic", "i-sound")
ICON("audio/annodex", "i-sound")
ICON("audio/AMR", "i-sound")
ICON("audio/amr", "i-sound")
ICON("audio/amr-wb", "i-sound")
ICON("audio/AMR-WB", "i-sound")
ICON("audio/ac3", "i-sound")
ICON("application/x-mpegurl", "i-sound")
ICON("application/vnd.apple.mpegurl", "i-sound")
#undef ICON
// elm icons

View File

@ -1,676 +0,0 @@
group { name: "e/modules/illume_home_toggle/main";
images.image: "button_normal.png" COMP;
images.image: "button_clicked.png" COMP;
images.image: "home_inset.png" COMP;
images.image: "home_hilight.png" COMP;
images.image: "home_glow.png" COMP;
min: 16 16;
max: 80 80;
parts {
part { name: "base";
description { state: "default" 0.0;
image.normal: "button_normal.png";
image.border: 4 4 3 5;
image.middle: SOLID;
rel1.offset: -1 0;
rel2.offset: 0 1;
fill.smooth: 0;
}
description { state: "clicked" 0.0;
inherit: "default" 0.0;
image.normal: "button_clicked.png";
image.border: 5 5 4 6;
}
}
part { name: "home_hilight"; mouse_events: 0;
description { state: "default" 0.0;
aspect: 1.0 1.0; aspect_preference: BOTH;
max: 80 80;
rel1.offset: 0 1;
rel1.to: "home";
rel2.offset: -1 0;
rel2.to: "home";
image.normal: "home_hilight.png";
}
}
part { name: "home"; mouse_events: 0;
description { state: "default" 0.0;
aspect: 1.0 1.0; aspect_preference: BOTH;
max: 80 80;
rel1.offset: 4 4;
rel2.offset: -5 -5;
image.normal: "home_inset.png";
}
}
part { name: "home_glow"; mouse_events: 0;
description { state: "default" 0.0;
aspect: 1.0 1.0; aspect_preference: BOTH;
max: 80 80;
rel1.to: "home";
rel2.to: "home";
image.normal: "home_glow.png";
visible: 0;
}
description { state: "clicked" 0.0;
inherit: "default" 0.0;
visible: 1;
}
}
}
programs {
program {
signal: "mouse,down,1"; source: "base";
action: STATE_SET "clicked" 0.0;
target: "base";
target: "home_glow";
}
program {
signal: "mouse,up,1"; source: "base";
action: STATE_SET "default" 0.0;
target: "base";
target: "home_glow";
}
program {
signal: "mouse,clicked,1*"; source: "base";
action: SIGNAL_EMIT "e,action,home" "";
}
}
}
group { name: "e/modules/illume_kbd_toggle/main";
images.image: "button_normal.png" COMP;
images.image: "button_clicked.png" COMP;
images.image: "kbd_inset.png" COMP;
images.image: "kbd_hilight.png" COMP;
images.image: "kbd_glow.png" COMP;
min: 16 16;
max: 80 80;
parts {
part { name: "base";
description { state: "default" 0.0;
image.normal: "button_normal.png";
image.border: 4 4 3 5;
image.middle: SOLID;
rel1.offset: -1 0;
rel2.offset: 0 1;
fill.smooth: 0;
}
description { state: "clicked" 0.0;
inherit: "default" 0.0;
image.normal: "button_clicked.png";
image.border: 5 5 4 6;
}
}
part { name: "kbd_hilight"; mouse_events: 0;
description { state: "default" 0.0;
aspect: 1.0 1.0; aspect_preference: BOTH;
max: 80 80;
rel1.offset: 0 1;
rel1.to: "kbd";
rel2.offset: -1 0;
rel2.to: "kbd";
image.normal: "kbd_hilight.png";
}
}
part { name: "kbd"; mouse_events: 0;
description { state: "default" 0.0;
aspect: 1.0 1.0; aspect_preference: BOTH;
max: 80 80;
rel1.offset: 4 4;
rel2.offset: -5 -5;
image.normal: "kbd_inset.png";
}
}
part { name: "kbd_glow"; mouse_events: 0;
description { state: "default" 0.0;
aspect: 1.0 1.0; aspect_preference: BOTH;
max: 80 80;
rel1.to: "kbd";
rel2.to: "kbd";
image.normal: "kbd_glow.png";
visible: 0;
}
description { state: "on" 0.0;
inherit: "default" 0.0;
visible: 1;
}
}
part { name: "on"; type: RECT;
description { state: "default" 0.0;
color: 0 0 0 0;
visible: 0;
}
description { state: "on" 0.0;
color: 0 0 0 0;
visible: 1;
}
}
}
programs {
program {
signal: "mouse,down,1"; source: "base";
action: STATE_SET "clicked" 0.0;
target: "base";
}
program {
signal: "mouse,up,1"; source: "base";
action: STATE_SET "default" 0.0;
target: "base";
}
program {
signal: "mouse,clicked,1*"; source: "base";
action: SIGNAL_EMIT "e,action,vkbd,enable" "";
}
program {
signal: "mouse,down,1"; source: "on";
action: STATE_SET "clicked" 0.0;
target: "base";
}
program {
signal: "mouse,up,1"; source: "on";
action: STATE_SET "default" 0.0;
target: "base";
}
program {
signal: "mouse,clicked,1*"; source: "on";
action: SIGNAL_EMIT "e,action,vkbd,disable" "";
}
program {
signal: "e,state,vkbd,on"; source: "e";
action: STATE_SET "on" 0.0;
target: "on";
target: "kbd_glow";
}
program {
signal: "e,state,vkbd,off"; source: "e";
action: STATE_SET "default" 0.0;
target: "on";
target: "kbd_glow";
}
}
}
group { name: "e/modules/illume_mode_toggle/main";
images.image: "button_normal.png" COMP;
images.image: "button_clicked.png" COMP;
images.image: "split_h_glow.png" COMP;
images.image: "split_h_hilight.png" COMP;
images.image: "split_h_inset.png" COMP;
images.image: "split_none_glow.png" COMP;
images.image: "split_none_hilight.png" COMP;
images.image: "split_none_inset.png" COMP;
images.image: "split_v_glow.png" COMP;
images.image: "split_v_hilight.png" COMP;
images.image: "split_v_inset.png" COMP;
min: 16 16;
max: 80 80;
parts {
part { name: "base";
description { state: "default" 0.0;
image.normal: "button_normal.png";
image.border: 4 4 3 5;
image.middle: SOLID;
rel1.offset: -1 0;
rel2.offset: 0 1;
fill.smooth: 0;
}
description { state: "clicked" 0.0;
inherit: "default" 0.0;
image.normal: "button_clicked.png";
image.border: 5 5 4 6;
}
}
part { name: "split_none_hilight"; mouse_events: 0;
clip_to: "split_none_clip";
description { state: "default" 0.0;
aspect: 1.0 1.0; aspect_preference: BOTH;
max: 80 80;
rel1.offset: 0 1;
rel1.to: "split_none";
rel2.offset: -1 0;
rel2.to: "split_none";
image.normal: "split_none_hilight.png";
}
}
part { name: "split_none"; mouse_events: 0;
clip_to: "split_none_clip";
description { state: "default" 0.0;
aspect: 1.0 1.0; aspect_preference: BOTH;
max: 80 80;
rel1.offset: 4 4;
rel2.offset: -5 -5;
image.normal: "split_none_inset.png";
}
}
part { name: "split_none_glow"; mouse_events: 0;
clip_to: "split_none_clip";
description { state: "default" 0.0;
aspect: 1.0 1.0; aspect_preference: BOTH;
max: 80 80;
rel1.to: "split_none";
rel2.to: "split_none";
image.normal: "split_none_glow.png";
visible: 0;
}
description { state: "clicked" 0.0;
inherit: "default" 0.0;
visible: 1;
}
}
part { name: "split_h_hilight"; mouse_events: 0;
clip_to: "split_h_clip";
description { state: "default" 0.0;
aspect: 1.0 1.0; aspect_preference: BOTH;
max: 80 80;
rel1.offset: 0 1;
rel1.to: "split_h";
rel2.offset: -1 0;
rel2.to: "split_h";
image.normal: "split_h_hilight.png";
}
}
part { name: "split_h"; mouse_events: 0;
clip_to: "split_h_clip";
description { state: "default" 0.0;
aspect: 1.0 1.0; aspect_preference: BOTH;
max: 80 80;
rel1.offset: 4 4;
rel2.offset: -5 -5;
image.normal: "split_h_inset.png";
}
}
part { name: "split_h_glow"; mouse_events: 0;
clip_to: "split_h_clip";
description { state: "default" 0.0;
aspect: 1.0 1.0; aspect_preference: BOTH;
max: 80 80;
rel1.to: "split_h";
rel2.to: "split_h";
image.normal: "split_h_glow.png";
visible: 0;
}
description { state: "clicked" 0.0;
inherit: "default" 0.0;
visible: 1;
}
}
part { name: "split_h_on"; type: RECT;
clip_to: "split_h_clip";
description { state: "default" 0.0;
color: 0 0 0 0;
}
}
part { name: "split_v_hilight"; mouse_events: 0;
clip_to: "split_v_clip";
description { state: "default" 0.0;
aspect: 1.0 1.0; aspect_preference: BOTH;
max: 80 80;
rel1.offset: 0 1;
rel1.to: "split_v";
rel2.offset: -1 0;
rel2.to: "split_v";
image.normal: "split_v_hilight.png";
}
}
part { name: "split_v"; mouse_events: 0;
clip_to: "split_v_clip";
description { state: "default" 0.0;
aspect: 1.0 1.0; aspect_preference: BOTH;
max: 80 80;
rel1.offset: 4 4;
rel2.offset: -5 -5;
image.normal: "split_v_inset.png";
}
}
part { name: "split_v_glow"; mouse_events: 0;
clip_to: "split_v_clip";
description { state: "default" 0.0;
aspect: 1.0 1.0; aspect_preference: BOTH;
max: 80 80;
rel1.to: "split_v";
rel2.to: "split_v";
image.normal: "split_v_glow.png";
visible: 0;
}
description { state: "clicked" 0.0;
inherit: "default" 0.0;
visible: 1;
}
}
part { name: "split_v_on"; type: RECT;
clip_to: "split_v_clip";
description { state: "default" 0.0;
color: 0 0 0 0;
}
}
part { name: "split_none_clip"; type: RECT;
description { state: "default" 0.0;
visible: 1;
}
description { state: "split_h" 0.0;
visible: 0;
}
description { state: "split_v" 0.0;
visible: 0;
}
}
part { name: "split_h_clip"; type: RECT;
description { state: "default" 0.0;
visible: 0;
}
description { state: "split_h" 0.0;
visible: 1;
}
description { state: "split_v" 0.0;
visible: 0;
}
}
part { name: "split_v_clip"; type: RECT;
description { state: "default" 0.0;
visible: 0;
}
description { state: "split_h" 0.0;
visible: 0;
}
description { state: "split_v" 0.0;
visible: 1;
}
}
}
programs {
program {
signal: "mouse,down,1"; source: "base";
action: STATE_SET "clicked" 0.0;
target: "base";
target: "split_none_glow";
target: "split_h_glow";
target: "split_v_glow";
}
program {
signal: "mouse,up,1"; source: "base";
action: STATE_SET "default" 0.0;
target: "base";
target: "split_none_glow";
target: "split_h_glow";
target: "split_v_glow";
}
program {
signal: "mouse,clicked,1*"; source: "base";
action: SIGNAL_EMIT "e,action,mode,dual,top" "";
}
program {
signal: "mouse,down,1"; source: "split_v_on";
action: STATE_SET "clicked" 0.0;
target: "base";
target: "split_none_glow";
target: "split_h_glow";
target: "split_v_glow";
}
program {
signal: "mouse,up,1"; source: "split_v_on";
action: STATE_SET "default" 0.0;
target: "base";
target: "split_none_glow";
target: "split_h_glow";
target: "split_v_glow";
}
program {
signal: "mouse,clicked,1*"; source: "split_v_on";
action: SIGNAL_EMIT "e,action,mode,dual,left" "";
}
program {
signal: "mouse,down,1"; source: "split_h_on";
action: STATE_SET "clicked" 0.0;
target: "base";
target: "split_none_glow";
target: "split_h_glow";
target: "split_v_glow";
}
program {
signal: "mouse,up,1"; source: "split_h_on";
action: STATE_SET "default" 0.0;
target: "base";
target: "split_none_glow";
target: "split_h_glow";
target: "split_v_glow";
}
program {
signal: "mouse,clicked,1*"; source: "split_h_on";
action: SIGNAL_EMIT "e,action,mode,single" "";
}
program {
signal: "e,mode,single"; source: "e";
action: STATE_SET "default" 0.0;
target: "split_none_clip";
target: "split_h_clip";
target: "split_v_clip";
}
program {
signal: "e,mode,dual,top"; source: "e";
action: STATE_SET "split_v" 0.0;
target: "split_none_clip";
target: "split_h_clip";
target: "split_v_clip";
}
program {
signal: "e,mode,dual,left"; source: "e";
action: STATE_SET "split_h" 0.0;
target: "split_none_clip";
target: "split_h_clip";
target: "split_v_clip";
}
}
}
group { name: "e/modules/illume-indicator/window";
alias: "modules/illume-indicator/window";
data {
// item: "shaped" "1";
}
images.image: "vgrad_med.png" COMP;
images.image: "vgrad_tall.png" COMP;
images.image: "bevel_out.png" COMP;
images.image: "holes_vert.png" COMP;
images.image: "holes_horiz.png" COMP;
images.image: "shine.png" COMP;
parts {
part { name: "bg"; mouse_events: 0;
description { state: "default" 0.0;
image.normal: "vgrad_med.png";
fill.smooth: 0;
TILED_HORIZ(120)
}
description { state: "vert" 0.0;
image.normal: "vgrad_tall.png";
fill.smooth: 0;
TILED_HORIZ(40)
}
}
part { name: "bevel"; mouse_events: 0;
description { state: "default" 0.0;
image.normal: "bevel_out.png";
image.border: 1 1 1 1;
image.middle: 0;
fill.smooth: 0;
}
}
part { name: "dots_start"; mouse_events: 0;
description { state: "default" 0.0;
image.normal: "holes_vert.png";
rel1.offset: 2 2;
rel2.relative: 0.0 1.0;
rel2.offset: 5 -3;
FIXED_SIZE(4, 14)
}
description { state: "vert" 0.0;
image.normal: "holes_horiz.png";
rel1.offset: 2 2;
rel2.relative: 1.0 0.0;
rel2.offset: -3 5;
FIXED_SIZE(14, 4)
}
}
part { name: "dots_end"; mouse_events: 0;
description { state: "default" 0.0;
image.normal: "holes_vert.png";
rel1.relative: 1.0 0.0;
rel1.offset: -6 2;
rel2.offset: -3 -3;
FIXED_SIZE(4, 14)
}
description { state: "vert" 0.0;
image.normal: "holes_horiz.png";
rel1.relative: 0.0 1.0;
rel1.offset: 2 -6;
rel2.offset: -3 -3;
FIXED_SIZE(14, 4)
}
}
part { name: "e.swallow.content"; type: SWALLOW;
description { state: "default" 0.0;
rel1.offset: 1 0;
rel1.relative: 1.0 0.0;
rel1.to_x: "dots_start";
rel2.offset: -2 -1;
rel2.to_x: "dots_end";
rel2.relative: 0.0 1.0;
}
description { state: "vert" 0.0;
rel1.offset: 0 1;
rel1.relative: 0.0 1.0;
rel1.to_y: "dots_start";
rel2.offset: -1 -2;
rel2.to_y: "dots_end";
rel2.relative: 1.0 0.0;
}
}
part { name: "shine"; mouse_events: 0;
description { state: "default" 0.0;
image.normal: "shine.png";
rel1.offset: 0 -2;
rel2.relative: 1.0 0.0;
rel2.offset: -1 2;
FIXED_SIZE(69, 5)
}
}
}
}
group { name: "e/modules/illume-softkey/window";
alias: "modules/illume-softkey/window";
data {
// item: "shaped" "1";
}
images.image: "vgrad_med.png" COMP;
images.image: "vgrad_tall.png" COMP;
images.image: "bevel_out.png" COMP;
images.image: "holes_vert.png" COMP;
images.image: "holes_horiz.png" COMP;
images.image: "shine.png" COMP;
parts {
part { name: "bg"; mouse_events: 0;
description { state: "default" 0.0;
image.normal: "vgrad_med.png";
fill.smooth: 0;
TILED_HORIZ(120)
}
description { state: "vert" 0.0;
image.normal: "vgrad_tall.png";
fill.smooth: 0;
TILED_HORIZ(40)
}
}
part { name: "bevel"; mouse_events: 0;
description { state: "default" 0.0;
image.normal: "bevel_out.png";
image.border: 1 1 1 1;
image.middle: 0;
fill.smooth: 0;
}
}
part { name: "dots_start"; mouse_events: 0;
description { state: "default" 0.0;
image.normal: "holes_vert.png";
rel1.offset: 2 2;
rel2.relative: 0.0 1.0;
rel2.offset: 5 -3;
FIXED_SIZE(4, 14)
}
description { state: "vert" 0.0;
image.normal: "holes_horiz.png";
rel1.offset: 2 2;
rel2.relative: 1.0 0.0;
rel2.offset: -3 5;
FIXED_SIZE(14, 4)
}
}
part { name: "dots_end"; mouse_events: 0;
description { state: "default" 0.0;
image.normal: "holes_vert.png";
rel1.relative: 1.0 0.0;
rel1.offset: -6 2;
rel2.offset: -3 -3;
FIXED_SIZE(4, 14)
}
description { state: "vert" 0.0;
image.normal: "holes_horiz.png";
rel1.relative: 0.0 1.0;
rel1.offset: 2 -6;
rel2.offset: -3 -3;
FIXED_SIZE(14, 4)
}
}
part { name: "e.box.extra_buttons"; type: BOX;
description { state: "default" 0.0;
rel1.offset: 1 0;
rel1.relative: 1.0 0.0;
rel1.to_x: "dots_start";
rel2.offset: -2 -1;
rel2.to_x: "dots_start";
rel2.relative: 1.0 1.0;
align: 0.0 0.5;
fixed: 0 1;
box { layout: "horizontal";
padding: 4 0;
align: 0.0 0.5;
min: 1 1;
}
}
}
part { name: "e.box.buttons"; type: BOX;
description { state: "default" 0.0;
rel1.offset: 4 0;
rel1.relative: 1.0 0.0;
rel1.to_x: "e.box.extra_buttons";
rel2.offset: -2 -1;
rel2.to_x: "dots_end";
rel2.relative: 0.0 1.0;
align: 1.0 0.5;
fixed: 0 1;
box { layout: "horizontal";
padding: 4 0;
align: 1.0 0.5;
min: 1 1;
}
}
}
part { name: "shine"; mouse_events: 0;
description { state: "default" 0.0;
image.normal: "shine.png";
rel1.offset: 0 -2;
rel2.relative: 1.0 0.0;
rel2.offset: -1 2;
FIXED_SIZE(69, 5)
}
}
}
}

View File

@ -18,9 +18,8 @@ group { name: "e/modules/pager/popup";
part { name: "e.text.label"; type: TEXT; mouse_events: 0;
scale: 1;
description { state: "default" 0.0;
rel1.to: "base";
rel.to: "base";
rel1.offset: 0 1;
rel2.to: "base";
rel2.relative: 1.0 0.0;
rel2.offset: -1 1;
align: 0.5 0.0;
@ -50,34 +49,30 @@ group { name: "e/modules/pager/desk";
ASPECT_FILL((7680/4320))
}
}
part { name: "clip"; type: RECT; mouse_events: 0;
description { state: "default" 0.0;
rel.to: "base";
}
}
part { name: "e.background"; type: SWALLOW;
clip_to: "clip";
description { state: "default" 0.0;
rel1.to: "base";
rel2.to: "base";
rel.to: "base";
}
description { state: "hidden" 0.0;
inherit: "default" 0.0;
visible: 0;
}
}
part { name: "clip"; type: RECT; mouse_events: 0;
description { state: "default" 0.0;
rel1.to: "base";
rel2.to: "base";
}
}
part { name: "e.swallow.content"; type: SWALLOW;
clip_to: "clip";
description { state: "default" 0.0;
rel1.to: "base";
rel2.to: "base";
rel.to: "base";
}
}
part { name: "e.text.label"; type: TEXT; mouse_events: 0;
desc { "default";
rel1.to: "e.swallow.content";
rel2.to: "e.swallow.content";
rel.to: "e.swallow.content";
color3: 255 255 255 255;
text { font: "Sans"; size: 10;
text_class: "module_small";
@ -96,9 +91,7 @@ group { name: "e/modules/pager/desk";
desc { "default";
color: 51 153 255 255;
visible: 0;
rel1.to: "e.swallow.content";
rel2.to: "e.swallow.content";
rel2.offset: -1 0;
rel.to: "e.swallow.content";
rel1.relative: 0.0 1.0;
align: 0.5 1.0;
max: 99999 5;
@ -112,10 +105,9 @@ group { name: "e/modules/pager/desk";
part { name: "drop0"; mouse_events: 0;
description { state: "default" 0.0;
image.normal: "mini_blue_glow_arrow_0.png";
rel1.to: "base";
rel.to: "base";
rel1.offset: -1 -1;
rel1.relative: 0.0 0.0;
rel2.to: "base";
rel2.relative: 0.0 0.0;
rel2.offset: -1 -1;
align: 0.0 0.0;
@ -138,10 +130,9 @@ group { name: "e/modules/pager/desk";
part { name: "drop1"; mouse_events: 0;
description { state: "default" 0.0;
image.normal: "mini_blue_glow_arrow_1.png";
rel1.to: "base";
rel.to: "base";
rel1.offset: 0 -1;
rel1.relative: 1.0 0.0;
rel2.to: "base";
rel2.relative: 1.0 0.0;
rel2.offset: 0 -1;
align: 1.0 0.0;
@ -164,10 +155,9 @@ group { name: "e/modules/pager/desk";
part { name: "drop2"; mouse_events: 0;
description { state: "default" 0.0;
image.normal: "mini_blue_glow_arrow_2.png";
rel1.to: "base";
rel.to: "base";
rel1.offset: 0 0;
rel1.relative: 1.0 1.0;
rel2.to: "base";
rel2.relative: 1.0 1.0;
rel2.offset: 0 0;
align: 1.0 1.0;
@ -190,10 +180,9 @@ group { name: "e/modules/pager/desk";
part { name: "drop3"; mouse_events: 0;
description { state: "default" 0.0;
image.normal: "mini_blue_glow_arrow_3.png";
rel1.to: "base";
rel.to: "base";
rel1.offset: -1 0;
rel1.relative: 0.0 1.0;
rel2.to: "base";
rel2.relative: 0.0 1.0;
rel2.offset: -1 0;
align: 0.0 1.0;
@ -227,24 +216,20 @@ group { name: "e/modules/pager/desk";
transition: DECELERATE 0.2;
target: "sel";
}
program {
signal: "e,state,unselected"; source: "e";
program { signal: "e,state,unselected"; source: "e";
action: ACTION_STOP;
target: "sel";
}
program {
signal: "e,state,unselected"; source: "e";
program { signal: "e,state,unselected"; source: "e";
action: STATE_SET "default" 0.0;
transition: DECELERATE 0.2;
target: "sel";
}
program {
signal: "e,preview,on"; source: "e";
program { signal: "e,preview,on"; source: "e";
action: STATE_SET "default" 0.0;
target: "e.background";
}
program {
signal: "e,preview,off"; source: "e";
program { signal: "e,preview,off"; source: "e";
action: STATE_SET "hidden" 0.0;
target: "e.background";
}
@ -266,21 +251,18 @@ group { name: "e/modules/pager/desk";
target: "drop3";
after: "drop1";
}
program {
signal: "e,action,drag,out"; source: "e";
program { signal: "e,action,drag,out"; source: "e";
action: STATE_SET "default" 0.0;
target: "drop0";
target: "drop1";
target: "drop2";
target: "drop3";
}
program {
signal: "e,name,show"; source: "e";
program { signal: "e,name,show"; source: "e";
action: STATE_SET "active" 0.0;
target: "e.text.label";
}
program {
signal: "e,name,hide"; source: "e";
program { signal: "e,name,hide"; source: "e";
action: STATE_SET "default" 0.0;
target: "e.text.label";
}
@ -304,8 +286,7 @@ group { name: "e/gadget/pager/plain/desk";
part { name: "e.background"; type: SWALLOW;
clip_to: "clip";
description { state: "default" 0.0;
rel1.to: "base";
rel2.to: "base";
rel.to: "base";
}
description { state: "hidden" 0.0;
inherit: "default" 0.0;
@ -314,15 +295,13 @@ group { name: "e/gadget/pager/plain/desk";
}
part { name: "clip"; type: RECT; mouse_events: 0;
description { state: "default" 0.0;
rel1.to: "base";
rel2.to: "base";
rel.to: "base";
}
}
part { name: "e.swallow.drop"; type: SWALLOW;
clip_to: "clip";
description { state: "default" 0.0;
rel1.to: "base";
rel2.to: "base";
rel.to: "base";
rel2.offset: -2 -1;
link.base: "e,state,visible" "e";
}
@ -333,14 +312,12 @@ group { name: "e/gadget/pager/plain/desk";
part { name: "e.swallow.content"; type: SWALLOW;
clip_to: "clip";
description { state: "default" 0.0;
rel1.to: "base";
rel2.to: "base";
rel.to: "base";
}
}
part { name: "e.text.label"; type: TEXT; mouse_events: 0;
desc { "default";
rel1.to: "e.swallow.content";
rel2.to: "e.swallow.content";
rel.to: "e.swallow.content";
color3: 255 255 255 255;
text { font: "Sans"; size: 10;
text_class: "module_small";
@ -359,8 +336,7 @@ group { name: "e/gadget/pager/plain/desk";
desc { "default";
color: 51 153 255 255;
visible: 0;
rel1.to: "e.swallow.content";
rel2.to: "e.swallow.content";
rel.to: "e.swallow.content";
align: 0.5 1.0;
max: 99999 5;
}
@ -560,26 +536,22 @@ group { name: "e/gadget/pager/plain/desk";
transition: DECELERATE 0.2;
target: "sel";
}
program {
signal: "e,state,unselected"; source: "e";
program { signal: "e,state,unselected"; source: "e";
action: ACTION_STOP;
target: "sel_left";
target: "sel_top";
target: "sel_right";
target: "sel_bottom";
}
program {
signal: "e,state,unselected"; source: "e";
program { signal: "e,state,unselected"; source: "e";
action: STATE_SET "default" 0.0;
target: "sel";
}
program {
signal: "e,preview,on"; source: "e";
program { signal: "e,preview,on"; source: "e";
action: STATE_SET "default" 0.0;
target: "e.background";
}
program {
signal: "e,preview,off"; source: "e";
program { signal: "e,preview,off"; source: "e";
action: STATE_SET "hidden" 0.0;
target: "e.background";
}
@ -601,21 +573,18 @@ group { name: "e/gadget/pager/plain/desk";
target: "drop3";
after: "drop1";
}
program {
signal: "e,action,drag,out"; source: "e";
program { signal: "e,action,drag,out"; source: "e";
action: STATE_SET "default" 0.0;
target: "drop0";
target: "drop1";
target: "drop2";
target: "drop3";
}
program {
signal: "e,name,show"; source: "e";
program { signal: "e,name,show"; source: "e";
action: STATE_SET "active" 0.0;
target: "e.text.label";
}
program {
signal: "e,name,hide"; source: "e";
program { signal: "e,name,hide"; source: "e";
action: STATE_SET "default" 0.0;
target: "e.text.label";
}
@ -635,15 +604,13 @@ group { name: "e/gadget/pager/default/desk";
}
part { name: "clip"; type: RECT; mouse_events: 0;
desc { "default";
rel1.to: "e.swallow.content";
rel2.to: "e.swallow.content";
rel.to: "e.swallow.content";
}
}
part { name: "e.swallow.drop"; type: SWALLOW;
clip_to: "clip";
description { state: "default" 0.0;
rel1.to: "base";
rel2.to: "base";
rel.to: "base";
rel2.offset: -2 -1;
link.base: "e,state,visible" "e";
}
@ -663,8 +630,7 @@ group { name: "e/gadget/pager/default/desk";
part { name: "e.text.label"; type: TEXT; mouse_events: 0;
scale: 1;
desc { "default";
rel1.to: "e.swallow.content";
rel2.to: "e.swallow.content";
rel.to: "e.swallow.content";
color3: 255 255 255 255;
text { font: "Sans"; size: 10;
text_class: "module_small";
@ -683,8 +649,7 @@ group { name: "e/gadget/pager/default/desk";
desc { "default";
color: 51 153 255 255;
visible: 0;
rel1.to: "e.swallow.content";
rel2.to: "e.swallow.content";
rel.to: "e.swallow.content";
align: 0.5 1.0;
max: 99999 5;
}
@ -884,16 +849,14 @@ group { name: "e/gadget/pager/default/desk";
transition: DECELERATE 0.2;
target: "sel";
}
program {
signal: "e,state,unselected"; source: "e";
program { signal: "e,state,unselected"; source: "e";
action: ACTION_STOP;
target: "sel_left";
target: "sel_top";
target: "sel_right";
target: "sel_bottom";
}
program {
signal: "e,state,unselected"; source: "e";
program { signal: "e,state,unselected"; source: "e";
action: STATE_SET "default" 0.0;
target: "sel";
}
@ -915,21 +878,18 @@ group { name: "e/gadget/pager/default/desk";
target: "drop3";
after: "drop1";
}
program {
signal: "e,action,drag,out"; source: "e";
program { signal: "e,action,drag,out"; source: "e";
action: STATE_SET "default" 0.0;
target: "drop0";
target: "drop1";
target: "drop2";
target: "drop3";
}
program {
signal: "e,name,show"; source: "e";
program { signal: "e,name,show"; source: "e";
action: STATE_SET "active" 0.0;
target: "e.text.label";
}
program {
signal: "e,name,hide"; source: "e";
program { signal: "e,name,hide"; source: "e";
action: STATE_SET "default" 0.0;
target: "e.text.label";
}
@ -972,9 +932,8 @@ group { name: "e/modules/pager/window";
}
part { name: "e.swallow.icon"; type: SWALLOW; mouse_events: 0;
description { state: "default" 0.0;
rel1.to: "base";
rel.to: "base";
rel1.offset: 2 2;
rel2.to: "base";
rel2.offset: -3 -3;
align: 1.0 1.0;
max: 24 24;
@ -987,8 +946,7 @@ group { name: "e/modules/pager/window";
}
part { name: "e.swallow.content"; type: SWALLOW; mouse_events: 0;
description { state: "default" 0.0;
rel1.to: "base";
rel2.to: "base";
rel.to: "base";
visible: 0;
}
description { state: "preview" 0.0;
@ -1003,24 +961,20 @@ group { name: "e/modules/pager/window";
}
}
programs {
program {
signal: "e,state,focused"; source: "e";
program { signal: "e,state,focused"; source: "e";
action: STATE_SET "active" 0.0;
target: "win";
}
program {
signal: "e,state,unfocused"; source: "e";
program { signal: "e,state,unfocused"; source: "e";
action: STATE_SET "default" 0.0;
target: "win";
}
program {
signal: "e,preview,on"; source: "e";
program { signal: "e,preview,on"; source: "e";
action: STATE_SET "preview" 0.0;
target: "e.swallow.content";
target: "e.swallow.icon";
}
program {
signal: "e,preview,off"; source: "e";
program { signal: "e,preview,off"; source: "e";
action: STATE_SET "default" 0.0;
target: "e.swallow.content";
target: "e.swallow.icon";

View File

@ -17,9 +17,8 @@ group { name: "e/modules/pager16/popup";
part { name: "e.text.label"; type: TEXT; mouse_events: 0;
scale: 1;
description { state: "default" 0.0;
rel1.to: "base";
rel.to: "base";
rel1.offset: 0 1;
rel2.to: "base";
rel2.relative: 1.0 0.0;
rel2.offset: -1 1;
align: 0.5 0.0;
@ -35,6 +34,82 @@ group { name: "e/modules/pager16/popup";
}
}
group { name: "e/modules/pager16/base";
parts {
part { name: "e.swallow.content"; type: SWALLOW;
scale: 1;
desc { "default";
rel1.offset: 0 (0 - SHELFPAD);
rel2.offset: -1 (SHELFPAD - 1);
offscale;
}
desc { "vertical";
inherit: "default" 0.0;
rel1.offset: (0 - SHELFPAD) 0;
rel2.offset: (SHELFPAD - 1) -1;
}
}
}
programs {
program { signal: "e,state,orient,horiz"; source: "e";
action: STATE_SET "default" 0.0;
target: "e.swallow.content";
}
program { signal: "e,state,orient,vert"; source: "e";
action: STATE_SET "vertical" 0.0;
target: "e.swallow.content";
}
program { signal: "e,state,orient,left"; source: "e";
action: STATE_SET "vertical" 0.0;
target: "e.swallow.content";
}
program { signal: "e,state,orient,right"; source: "e";
action: STATE_SET "vertical" 0.0;
target: "e.swallow.content";
}
program { signal: "e,state,orient,top"; source: "e";
action: STATE_SET "default" 0.0;
target: "e.swallow.content";
}
program { signal: "e,state,orient,bottom"; source: "e";
action: STATE_SET "default" 0.0;
target: "e.swallow.content";
}
program { signal: "e,state,orient,corner_tl"; source: "e";
action: STATE_SET "default" 0.0;
target: "e.swallow.content";
}
program { signal: "e,state,orient,corner_tr"; source: "e";
action: STATE_SET "default" 0.0;
target: "e.swallow.content";
}
program { signal: "e,state,orient,corner_bl"; source: "e";
action: STATE_SET "default" 0.0;
target: "e.swallow.content";
}
program { signal: "e,state,orient,corner_br"; source: "e";
action: STATE_SET "default" 0.0;
target: "e.swallow.content";
}
program { signal: "e,state,orient,corner_lt"; source: "e";
action: STATE_SET "vertical" 0.0;
target: "e.swallow.content";
}
program { signal: "e,state,orient,corner_rt"; source: "e";
action: STATE_SET "vertical" 0.0;
target: "e.swallow.content";
}
program { signal: "e,state,orient,corner_lb"; source: "e";
action: STATE_SET "vertical" 0.0;
target: "e.swallow.content";
}
program { signal: "e,state,orient,corner_rb"; source: "e";
action: STATE_SET "vertical" 0.0;
target: "e.swallow.content";
}
}
}
group { name: "e/modules/pager16/desk";
images.image: "mini_blue_glow_arrow_0.png" COMP;
images.image: "mini_blue_glow_arrow_1.png" COMP;
@ -48,16 +123,13 @@ group { name: "e/modules/pager16/desk";
}
part { name: "clip"; type: RECT; mouse_events: 0;
desc { "default";
rel1.to: "e.swallow.content";
rel2.to: "e.swallow.content";
rel.to: "e.swallow.content";
}
}
part { name: "e.swallow.drop"; type: SWALLOW;
clip_to: "clip";
description { state: "default" 0.0;
rel1.to: "base";
rel2.to: "base";
rel2.offset: -2 -1;
rel.to: "base";
link.base: "e,state,visible" "e";
}
desc { "hid"; inherit; hid;
@ -67,6 +139,7 @@ group { name: "e/modules/pager16/desk";
part { name: "e.swallow.content"; type: SWALLOW;
clip_to: "clip";
desc { "default";
rel.to: "base";
link.base: "e,state,visible" "e";
}
desc { "hid"; inherit; hid;
@ -76,8 +149,7 @@ group { name: "e/modules/pager16/desk";
part { name: "e.text.label"; type: TEXT; mouse_events: 0;
scale: 1;
desc { "default";
rel1.to: "e.swallow.content";
rel2.to: "e.swallow.content";
rel.to: "e.swallow.content";
color3: 255 255 255 255;
text { font: "Sans"; size: 10;
text_class: "module_small";
@ -96,12 +168,10 @@ group { name: "e/modules/pager16/desk";
desc { "default";
color: 51 153 255 255;
visible: 0;
rel1.to: "e.swallow.content";
rel2.to: "e.swallow.content";
rel2.offset: -1 0;
rel.to: "e.swallow.content";
rel1.relative: 0.0 1.0;
align: 0.5 1.0;
max: 99999 6;
max: 99999 5;
}
desc { "active"; inherit;
inherit: "default" 0.0;
@ -112,10 +182,9 @@ group { name: "e/modules/pager16/desk";
part { name: "drop0"; mouse_events: 0;
description { state: "default" 0.0;
image.normal: "mini_blue_glow_arrow_0.png";
rel1.to: "e.swallow.content";
rel.to: "e.swallow.content";
rel1.offset: -1 -1;
rel1.relative: 0.0 0.0;
rel2.to: "e.swallow.content";
rel2.relative: 0.0 0.0;
rel2.offset: -1 -1;
align: 0.0 0.0;
@ -138,10 +207,9 @@ group { name: "e/modules/pager16/desk";
part { name: "drop1"; mouse_events: 0;
description { state: "default" 0.0;
image.normal: "mini_blue_glow_arrow_1.png";
rel1.to: "e.swallow.content";
rel.to: "e.swallow.content";
rel1.offset: 0 -1;
rel1.relative: 1.0 0.0;
rel2.to: "e.swallow.content";
rel2.relative: 1.0 0.0;
rel2.offset: 0 -1;
align: 1.0 0.0;
@ -164,10 +232,9 @@ group { name: "e/modules/pager16/desk";
part { name: "drop2"; mouse_events: 0;
description { state: "default" 0.0;
image.normal: "mini_blue_glow_arrow_2.png";
rel1.to: "e.swallow.content";
rel.to: "e.swallow.content";
rel1.offset: 0 0;
rel1.relative: 1.0 1.0;
rel2.to: "e.swallow.content";
rel2.relative: 1.0 1.0;
rel2.offset: 0 0;
align: 1.0 1.0;
@ -190,10 +257,9 @@ group { name: "e/modules/pager16/desk";
part { name: "drop3"; mouse_events: 0;
description { state: "default" 0.0;
image.normal: "mini_blue_glow_arrow_3.png";
rel1.to: "e.swallow.content";
rel.to: "e.swallow.content";
rel1.offset: -1 0;
rel1.relative: 0.0 1.0;
rel2.to: "e.swallow.content";
rel2.relative: 0.0 1.0;
rel2.offset: -1 0;
align: 0.0 1.0;
@ -227,13 +293,11 @@ group { name: "e/modules/pager16/desk";
transition: DECELERATE 0.2;
target: "sel";
}
program {
signal: "e,state,unselected"; source: "e";
program { signal: "e,state,unselected"; source: "e";
action: ACTION_STOP;
target: "sel";
}
program {
signal: "e,state,unselected"; source: "e";
program { signal: "e,state,unselected"; source: "e";
action: STATE_SET "default" 0.0;
transition: DECELERATE 0.2;
target: "sel";
@ -256,21 +320,18 @@ group { name: "e/modules/pager16/desk";
target: "drop3";
after: "drop1";
}
program {
signal: "e,action,drag,out"; source: "e";
program { signal: "e,action,drag,out"; source: "e";
action: STATE_SET "default" 0.0;
target: "drop0";
target: "drop1";
target: "drop2";
target: "drop3";
}
program {
signal: "e,name,show"; source: "e";
program { signal: "e,name,show"; source: "e";
action: STATE_SET "active" 0.0;
target: "e.text.label";
}
program {
signal: "e,name,hide"; source: "e";
program { signal: "e,name,hide"; source: "e";
action: STATE_SET "default" 0.0;
target: "e.text.label";
}

View File

@ -106,13 +106,13 @@ group { name: "e/shelf/default/inset"; nomouse;
spacer { "sizer";
scale: 1;
description { state: "default" 0.0;
rel1.offset: 3 0;
rel2.offset: -4 -1;
rel1.offset: (3 + SHELFPAD) SHELFPAD;
rel2.offset: (-4 - SHELFPAD) (-1 - SHELFPAD);
offscale;
}
description { state: "vert" 0.0;
rel1.offset: 0 3;
rel2.offset: -1 -4;
rel1.offset: SHELFPAD (3 + SHELFPAD);
rel2.offset: (-1 - SHELFPAD) (-4 - SHELFPAD);
offscale;
}
}
@ -217,8 +217,7 @@ group { name: "e/shelf/default/inset"; nomouse;
}
programs {
#define ORIENT_SATE(_ORIENT, _STATE) \
program { \
signal: "e,state,orientation,"_ORIENT; source: "e"; \
program { signal: "e,state,orientation,"_ORIENT; source: "e"; \
action: STATE_SET _STATE 0.0; \
target: "sizer"; \
target: "clip"; \
@ -238,57 +237,49 @@ target: "sh_vert_clip"; \
ORIENT_SATE("right_top", "vert")
ORIENT_SATE("right_bottom", "vert")
#undef ORIENT_SATE
program {
signal: "e,state,scroll,begin"; source: "e";
program { signal: "e,state,scroll,begin"; source: "e";
action: STATE_SET "default" 0.0;
transition: SINUSOIDAL 0.5 CURRENT;
target: "sh_l";
target: "sh_t";
}
program {
signal: "e,state,scroll,begin"; source: "e";
program { signal: "e,state,scroll,begin"; source: "e";
action: STATE_SET "active" 0.0;
transition: SINUSOIDAL 0.5 CURRENT;
target: "sh_r";
target: "sh_b";
}
program {
signal: "e,state,scroll,middle"; source: "e";
program { signal: "e,state,scroll,middle"; source: "e";
action: STATE_SET "active" 0.0;
transition: SINUSOIDAL 0.5 CURRENT;
target: "sh_l";
target: "sh_t";
}
program {
signal: "e,state,scroll,middle"; source: "e";
program { signal: "e,state,scroll,middle"; source: "e";
action: STATE_SET "active" 0.0;
transition: SINUSOIDAL 0.5 CURRENT;
target: "sh_r";
target: "sh_b";
}
program {
signal: "e,state,scroll,end"; source: "e";
program { signal: "e,state,scroll,end"; source: "e";
action: STATE_SET "active" 0.0;
transition: SINUSOIDAL 0.5 CURRENT;
target: "sh_l";
target: "sh_t";
}
program {
signal: "e,state,scroll,end"; source: "e";
program { signal: "e,state,scroll,end"; source: "e";
action: STATE_SET "default" 0.0;
transition: SINUSOIDAL 0.5 CURRENT;
target: "sh_r";
target: "sh_b";
}
program {
signal: "e,state,scroll,none"; source: "e";
program { signal: "e,state,scroll,none"; source: "e";
action: STATE_SET "default" 0.0;
transition: SINUSOIDAL 0.5 CURRENT;
target: "sh_l";
target: "sh_t";
}
program {
signal: "e,state,scroll,none"; source: "e";
program { signal: "e,state,scroll,none"; source: "e";
action: STATE_SET "default" 0.0;
transition: SINUSOIDAL 0.5 CURRENT;
target: "sh_r";
@ -297,6 +288,49 @@ target: "sh_vert_clip"; \
}
}
group { name: "e/shelf/default/plain"; nomouse;
alias: "e/shelf/alternate/plain";
alias: "e/shelf/invisible/plain";
alias: "e/shelf/translucent/plain";
parts {
rect { "mouse"; mouse;
desc { color: 0 0 0 0; }
}
part { name: "base"; type: RECT;
description { state: "default" 0.0;
color: 0 0 0 0;
}
}
part { name: "clip"; type: RECT;
description { state: "default" 0.0;
color: 255 255 255 255;
}
}
spacer { "sizer";
scale: 1;
desc {
rel1.offset: SHELFPAD SHELFPAD;
rel2.offset: (-1 - SHELFPAD) (-1 - SHELFPAD);
offscale;
}
}
part { name: "e.swallow.content"; type: SWALLOW; mouse;
clip_to: "clip";
desc {
rel.to: "sizer";
link.base: "e,state,visible" "e";
}
desc { "hidden"; hid;
rel.to: "sizer";
link.base: "e,state,hidden" "e";
}
}
rect { "events"; repeat; mouse;
desc { color: 0 0 0 0; }
}
}
}
group { name: "e/shelf/alternate/base"; nomouse;
inherit: "e/shelf/default/base";
parts {
@ -326,11 +360,6 @@ group { name: "e/shelf/invisible/base"; nomouse;
visible: 0;
}
}
part { name: "shine";
description { state: "default" 0.0;
visible: 0;
}
}
}
}
@ -343,52 +372,11 @@ group { name: "e/shelf/translucent/base"; nomouse;
parts {
part { name: "bg";
description { state: "default" 0.0;
color: 32 32 32 128;
color: 64 64 64 128;
}
description { state: "vert" 0.0;
color: 32 32 32 128;
color: 64 64 64 128;
}
}
}
}
group { name: "e/shelf/default/plain"; nomouse;
alias: "e/shelf/alternate/plain";
alias: "e/shelf/invisible/plain";
alias: "e/shelf/translucent/plain";
parts {
rect { "mouse"; mouse;
desc { color: 0 0 0 0; }
}
part { name: "base"; type: RECT;
description { state: "default" 0.0;
color: 0 0 0 0;
}
}
part { name: "clip"; type: RECT;
description { state: "default" 0.0;
color: 255 255 255 255;
}
}
spacer { "sizer";
desc {
rel1.offset: 0 0;
rel2.offset: -1 -1;
}
}
part { name: "e.swallow.content"; type: SWALLOW; mouse;
clip_to: "clip";
desc {
rel.to: "sizer";
link.base: "e,state,visible" "e";
}
desc { "hidden"; hid;
rel.to: "sizer";
link.base: "e,state,hidden" "e";
}
}
rect { "events"; repeat; mouse;
desc { color: 0 0 0 0; }
}
}
}

View File

@ -13,7 +13,7 @@ group { name: "e/modules/systray/main";
}
description { state: "disabled" 0.0;
inherit: "default" 0.0;
color: 255 0 0 128;
color: 255 255 255 128;
}
}
part { name: "e.box"; type: BOX;
@ -36,73 +36,59 @@ group { name: "e/modules/systray/main";
}
}
programs {
program {
signal: "e,action,orient,horiz"; source: "e";
program { signal: "e,action,orient,horiz"; source: "e";
action: STATE_SET "default" 0.0;
target: "e.box";
}
program {
signal: "e,action,orient,vert"; source: "e";
program { signal: "e,action,orient,vert"; source: "e";
action: STATE_SET "vertical" 0.0;
target: "e.box";
}
program {
signal: "e,action,orient,left"; source: "e";
program { signal: "e,action,orient,left"; source: "e";
action: STATE_SET "vertical" 0.0;
target: "e.box";
}
program {
signal: "e,action,orient,right"; source: "e";
program { signal: "e,action,orient,right"; source: "e";
action: STATE_SET "vertical" 0.0;
target: "e.box";
}
program {
signal: "e,action,orient,top"; source: "e";
program { signal: "e,action,orient,top"; source: "e";
action: STATE_SET "default" 0.0;
target: "e.box";
}
program {
signal: "e,action,orient,bottom"; source: "e";
program { signal: "e,action,orient,bottom"; source: "e";
action: STATE_SET "default" 0.0;
target: "e.box";
}
program {
signal: "e,action,orient,corner_tl"; source: "e";
program { signal: "e,action,orient,corner_tl"; source: "e";
action: STATE_SET "default" 0.0;
target: "e.box";
}
program {
signal: "e,action,orient,corner_tr"; source: "e";
program { signal: "e,action,orient,corner_tr"; source: "e";
action: STATE_SET "default" 0.0;
target: "e.box";
}
program {
signal: "e,action,orient,corner_bl"; source: "e";
program { signal: "e,action,orient,corner_bl"; source: "e";
action: STATE_SET "default" 0.0;
target: "e.box";
}
program {
signal: "e,action,orient,corner_br"; source: "e";
program { signal: "e,action,orient,corner_br"; source: "e";
action: STATE_SET "default" 0.0;
target: "e.box";
}
program {
signal: "e,action,orient,corner_lt"; source: "e";
program { signal: "e,action,orient,corner_lt"; source: "e";
action: STATE_SET "vertical" 0.0;
target: "e.box";
}
program {
signal: "e,action,orient,corner_rt"; source: "e";
program { signal: "e,action,orient,corner_rt"; source: "e";
action: STATE_SET "vertical" 0.0;
target: "e.box";
}
program {
signal: "e,action,orient,corner_lb"; source: "e";
program { signal: "e,action,orient,corner_lb"; source: "e";
action: STATE_SET "vertical" 0.0;
target: "e.box";
}
program {
signal: "e,action,orient,corner_rb"; source: "e";
program { signal: "e,action,orient,corner_rb"; source: "e";
action: STATE_SET "vertical" 0.0;
target: "e.box";
}

View File

@ -21,8 +21,12 @@ group { name:"e/modules/tasks/item";
parts {
part { name: "base"; type: RECT; mouse_events: 0;
clip_to: "clip";
scale: 1;
description { state: "default" 0.0;
color: 64 64 64 255;
rel1.offset: 0 (0 - SHELFPAD);
rel2.offset: -1 (SHELFPAD - 1);
offscale;
}
description { state: "iconic" 0.0;
inherit: "default" 0.0;
@ -34,8 +38,12 @@ group { name:"e/modules/tasks/item";
}
part { name: "click"; type: RECT; mouse_events: 0;
clip_to: "clip";
scale: 1;
description { state: "default" 0.0;
color: 32 32 32 0;
rel1.offset: 0 (0 - SHELFPAD);
rel2.offset: -1 (SHELFPAD - 1);
offscale;
}
description { state: "clicked" 0.0;
inherit: "default" 0.0;
@ -231,9 +239,9 @@ group { name:"e/modules/tasks/item";
description { state: "default" 0.0;
color: 51 153 255 255;
align: 0.5 1.0;
rel1.offset: 0 -1;
rel1.offset: 0 (SHELFPAD - 1);
rel1.relative: 0.0 1.0;
rel2.offset: -1 -1;
rel2.offset: -1 (SHELFPAD - 1);
fixed: 0 1;
visible: 0;
min: 0 0;
@ -259,9 +267,11 @@ group { name:"e/modules/tasks/item";
}
}
part { name: "clip"; type: RECT;
scale: 1;
description { state: "default" 0.0;
rel1.offset: -20 -20;
rel2.offset: 19 19;
rel1.offset: -80 -80;
rel2.offset: 79 79;
offscale;
visible: 1;
}
description { state: "selected" 0.0;
@ -275,8 +285,8 @@ group { name:"e/modules/tasks/item";
}
part { name: "sel_clip"; type: RECT;
description { state: "default" 0.0;
rel1.offset: -20 -20;
rel2.offset: 19 19;
rel1.offset: -80 -80;
rel2.offset: 79 79;
visible: 0;
}
description { state: "selected" 0.0;
@ -290,97 +300,82 @@ group { name:"e/modules/tasks/item";
}
}
programs {
program {
signal: "mouse,down,1"; source: "event";
program { signal: "mouse,down,1"; source: "event";
action: STATE_SET "clicked" 0.0;
target: "click";
target: "e.text.label";
target: "label_focused";
target: "label_iconic";
}
program {
signal: "mouse,up,1"; source: "event";
program { signal: "mouse,up,1"; source: "event";
action: STATE_SET "default" 0.0;
target: "click";
target: "e.text.label";
target: "label_focused";
target: "label_iconic";
}
program {
signal: "mouse,up,clicked,1*"; source: "event";
program { signal: "mouse,up,clicked,1*"; source: "event";
action: SIGNAL_EMIT "e,action,click" "";
}
program {
signal: "e,state,focused"; source: "e";
program { signal: "e,state,focused"; source: "e";
action: STATE_SET "focused" 0.0;
transition: ACCELERATE 0.2;
target: "bar";
}
program {
signal: "e,state,unfocused"; source: "e";
program { signal: "e,state,unfocused"; source: "e";
action: STATE_SET "default" 0.0;
transition: DECELERATE 0.2;
target: "bar";
}
program {
signal: "state,default"; source: "int";
program { signal: "state,default"; source: "int";
action: STATE_SET "default" 0.0;
target: "normal_clip";
target: "focused_clip";
target: "iconic_clip";
target: "base";
}
program {
signal: "state,default"; source: "int";
program { signal: "state,default"; source: "int";
action: STATE_SET "default" 0.0;
transition: SINUSOIDAL 0.2;
target: "icon2";
}
program {
signal: "state,focused"; source: "int";
program { signal: "state,focused"; source: "int";
action: STATE_SET "focused" 0.0;
target: "normal_clip";
target: "focused_clip";
target: "iconic_clip";
target: "base";
}
program {
signal: "state,focused"; source: "int";
program { signal: "state,focused"; source: "int";
action: STATE_SET "focused" 0.0;
transition: SINUSOIDAL 0.2;
target: "icon2";
}
program {
signal: "state,iconic"; source: "int";
program { signal: "state,iconic"; source: "int";
action: STATE_SET "iconic" 0.0;
target: "normal_clip";
target: "focused_clip";
target: "iconic_clip";
target: "base";
}
program {
signal: "state,iconic"; source: "int";
program { signal: "state,iconic"; source: "int";
action: STATE_SET "iconic" 0.0;
transition: SINUSOIDAL 0.2;
target: "icon2";
}
program {
signal: "e,state,focused"; source: "e";
program { signal: "e,state,focused"; source: "e";
script { set_focused(1); }
}
program {
signal: "e,state,unfocused"; source: "e";
program { signal: "e,state,unfocused"; source: "e";
script { set_focused(0); }
}
program {
signal: "e,state,iconified"; source: "e";
program { signal: "e,state,iconified"; source: "e";
script { set_iconic(1); }
}
program {
signal: "e,state,uniconified"; source: "e";
program { signal: "e,state,uniconified"; source: "e";
script { set_iconic(0); }
}
@ -398,8 +393,7 @@ group { name:"e/modules/tasks/item";
target: "urgent";
after: "urg1";
}
program {
signal: "e,state,not_urgent"; source: "e";
program { signal: "e,state,not_urgent"; source: "e";
action: ACTION_STOP;
target: "urg1";
target: "urg2";
@ -410,15 +404,13 @@ group { name:"e/modules/tasks/item";
target: "urgent";
}
program {
signal: "e,state,icon_only"; source: "e";
program { signal: "e,state,icon_only"; source: "e";
action: STATE_SET "icon_only" 0.0;
target: "icon";
target: "icon_clip";
target: "label_clip";
}
program {
signal: "e,state,text_only"; source: "e";
program { signal: "e,state,text_only"; source: "e";
action: STATE_SET "text_only" 0.0;
target: "icon";
target: "icon_clip";
@ -449,6 +441,19 @@ group { name:"e/modules/tasks/item_vert";
}
}
parts {
part { name: "base"; type: RECT; mouse_events: 0;
description { state: "default" 0.0;
rel1.offset: (0 - SHELFPAD) 0;
rel2.offset: (SHELFPAD - 1) -1;
}
description { state: "iconic" 0.0;
inherit: "default" 0.0;
}
description { state: "focused" 0.0;
inherit: "default" 0.0;
color: 40 40 40 255;
}
}
part { name: "e.text.label";
description { state: "default" 0.0;
rel.to: "icon";
@ -507,16 +512,15 @@ group { name:"e/modules/tasks/item_vert";
part { name: "bar"; type: RECT;
description { state: "default" 0.0;
align: 1.0 0.5;
rel1.offset: 2 0;
rel1.relative: 1.0 0.0;
rel2.offset: -1 -1;
rel2.offset: 2 -1;
fixed: 1 0;
}
description { state: "focused" 0.0;
inherit: "default" 0.0;
align: 1.0 0.5;
rel1.relative: 1.0 0.0;
rel1.offset: -1 0;
rel2.offset: -1 -1;
fixed: 1 0;
min: 5 0;
visible: 1;

View File

@ -183,9 +183,36 @@ I160("i-efm-hpp", "efm-hpp")
I160("i-efm-sh", "efm-sh")
I160("i-efm-zip", "efm-zip")
I160("i-efm-exe", "efm-exe")
I160("i-efm-deb", "efm-deb")
I160("i-efm-py", "efm-py")
I160("i-efm-pyb", "efm-pyb")
I160("i-efm-rb", "efm-rb")
I160("i-efm-pl", "efm-pl")
I160("i-efm-html", "efm-html")
I160("i-efm-code", "efm-code")
I160("i-efm-ps", "efm-ps")
I160("i-efm-pdf", "efm-pdf")
I160("i-efm-cad", "efm-cad")
I160("i-efm-draw", "efm-draw")
I160("i-efm-formula", "efm-formula")
I160("i-efm-efile", "efm-efile")
I160("i-efm-spreadsheet", "efm-spreadsheet")
I160("i-efm-present", "efm-present")
I160("i-efm-doc", "efm-doc")
I160("i-efm-template", "efm-template")
I160("i-efm-install", "efm-install")
I160("i-efm-lua", "efm-lua")
I160("i-efm-php", "efm-php")
I160("i-efm-db", "efm-db")
I160("i-efm-o", "efm-o")
I160("i-efm-so", "efm-so")
I160("i-efm-trash", "efm-trash")
I160("i-efm-trash-full", "efm-trash-full")
I160("i-film", "film")
I160("i-sound", "sound")
I160("i-font-file", "font-file")
I160("i-mobile", "mobile-phone")
I160("i-pda", "pda")
I160("i-phone", "phone")

View File

@ -0,0 +1,232 @@
<?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:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="svg2"
width="80"
height="80"
viewBox="0 0 80 80"
sodipodi:docname="efm-cad.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/efm-cad-040.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48">
<metadata
id="metadata8">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6">
<linearGradient
inkscape:collect="always"
id="linearGradient2374">
<stop
style="stop-color:#a8a8a8;stop-opacity:1;"
offset="0"
id="stop2370" />
<stop
style="stop-color:#ffffff;stop-opacity:1"
offset="0.2"
id="stop2378" />
<stop
style="stop-color:#808080;stop-opacity:1"
offset="1"
id="stop2372" />
</linearGradient>
<rect
id="rect1822"
height="22.426638"
width="47.970909"
y="8"
x="16" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect878" />
<rect
x="20"
y="50"
width="40"
height="30"
id="rect872" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect864" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect858" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect852" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2374"
id="linearGradient2376"
x1="40"
y1="45"
x2="40"
y2="50"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
inkscape:showpageshadow="false"
inkscape:document-rotation="0"
pagecolor="#404040"
bordercolor="#ff66ac"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1756"
inkscape:window-height="1372"
id="namedview4"
showgrid="true"
inkscape:zoom="13.05"
inkscape:cx="40"
inkscape:cy="40"
inkscape:window-x="804"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="g10"
showguides="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-others="false"
inkscape:snap-nodes="true"
borderlayer="true">
<inkscape:grid
type="xygrid"
id="grid837"
empspacing="4" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g10">
<path
sodipodi:nodetypes="cccccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 68,4 V 76 H 12 V 25 L 34,4 Z"
id="path27896" />
<path
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 37,30 34,4 C 33,10 19,24 12,25 Z"
id="path27900"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 H 34 V 4 Z"
id="path27898" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1758"
width="1"
height="7"
x="81"
y="40" />
<rect
style="fill:#b19146;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2364"
width="16"
height="1"
x="32"
y="47" />
<circle
style="fill:#a8a8a8;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path2349"
cx="31.5"
cy="66.5"
r="1.5" />
<path
style="fill:#5d7dab;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 30,70 v -3 l 8,-29 h 1 l 1,2 -9,30 z"
id="path2341" />
<path
style="fill:#5d7dab;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 50,70 V 67 L 42,38 h -1 l -1,2 9,30 z"
id="path2343" />
<path
style="fill:#c0c0c0;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 30,70 v 2 l 1,-2 z"
id="path2345" />
<path
style="fill:#c0c0c0;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 50,70 v 2 l -1,-2 z"
id="path2347" />
<circle
style="fill:#a8a8a8;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="circle2351"
cx="48.5"
cy="66.5"
r="1.5" />
<rect
style="fill:#a8a8a8;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2362"
width="2"
height="7"
x="39"
y="27" />
<path
id="path2353"
style="fill:#808080;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 39.990234,33 a 4,4 0 0 0 -3.939453,4 4,4 0 0 0 4,4 4,4 0 0 0 4,-4 4,4 0 0 0 -4,-4 4,4 0 0 0 -0.06055,0 z M 40,34 a 3,3 0 0 1 0.05078,0 3,3 0 0 1 3,3 3,3 0 0 1 -3,3 3,3 0 0 1 -3,-3 A 3,3 0 0 1 40,34 Z" />
<circle
style="fill:#c0c0c0;fill-opacity:1;stroke:none;stroke-width:6;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path2360"
cx="40"
cy="40"
r="2" />
<rect
style="fill:url(#linearGradient2376);fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect2366"
width="2"
height="5"
x="39"
y="45" />
<path
style="fill:#a8a8a8;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 31,58 1,-3 h 1 l -1,4 z"
id="path2368" />
<circle
style="fill:#c0c0c0;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path2380"
cx="36.5"
cy="47.5"
r="0.5" />
<circle
style="fill:#c0c0c0;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="circle2382"
cx="43.5"
cy="47.5"
r="0.5" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.7 KiB

View File

@ -0,0 +1,356 @@
<?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"
version="1.1"
id="svg2"
width="80"
height="80"
viewBox="0 0 80 80"
sodipodi:docname="efm-code.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/efm-code-040.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48">
<metadata
id="metadata8">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6">
<rect
id="rect1822"
height="22.426638"
width="47.970909"
y="8"
x="16" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect878" />
<rect
x="20"
y="50"
width="40"
height="30"
id="rect872" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect864" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect858" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect852" />
</defs>
<sodipodi:namedview
inkscape:showpageshadow="false"
inkscape:document-rotation="0"
pagecolor="#404040"
bordercolor="#ff66ac"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1756"
inkscape:window-height="1378"
id="namedview4"
showgrid="true"
inkscape:zoom="13.05"
inkscape:cx="40"
inkscape:cy="40"
inkscape:window-x="804"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="g10"
showguides="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-others="false"
inkscape:snap-nodes="true"
borderlayer="true">
<inkscape:grid
type="xygrid"
id="grid837"
empspacing="4" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g10">
<path
sodipodi:nodetypes="cccccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 68,4 V 76 H 12 V 25 L 34,4 Z"
id="path27896" />
<text
transform="translate(0.02909091,19.573362)"
style="font-size:7px;line-height:6.87873px;font-family:'Arial Black';-inkscape-font-specification:'Arial Black, ';letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect1822);fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
id="text1820"
xml:space="preserve"><tspan
x="16"
y="13.348456"><tspan
style="font-style:normal;font-variant:normal;font-weight:800;font-stretch:extra-condensed;font-size:7px;font-family:'Input Mono Compressed';-inkscape-font-specification:'Input Mono Compressed Ultra-Bold Extra-Condensed';fill:#000000;fill-opacity:1;stroke:none">{ # }</tspan></tspan></text>
<path
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 37,30 34,4 C 33,10 19,24 12,25 Z"
id="path27900"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 H 34 V 4 Z"
id="path27898" />
<path
id="path1727"
style="fill:#808080;fill-opacity:1;stroke-width:8"
d="M 21.5 40 A 1.5 3.5 0 0 0 20 43.5 A 1.5 3.5 0 0 0 21.5 47 A 1.5 3.5 0 0 0 23 43.5 A 1.5 3.5 0 0 0 21.5 40 z M 21.498047 41 A 0.5 2.5 0 0 1 21.5 41 A 0.5 2.5 0 0 1 22 43.5 A 0.5 2.5 0 0 1 21.5 46 A 0.5 2.5 0 0 1 21 43.5 A 0.5 2.5 0 0 1 21.498047 41 z " />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1734"
width="1"
height="7"
x="33"
y="40" />
<path
id="path1736"
style="fill:#808080;fill-opacity:1;stroke-width:8"
d="M 29.5,40 A 1.5,3.5 0 0 0 28,43.5 1.5,3.5 0 0 0 29.5,47 1.5,3.5 0 0 0 31,43.5 1.5,3.5 0 0 0 29.5,40 Z m -0.002,1 A 0.5,2.5 0 0 1 29.5,41 0.5,2.5 0 0 1 30,43.5 0.5,2.5 0 0 1 29.5,46 0.5,2.5 0 0 1 29,43.5 0.5,2.5 0 0 1 29.498047,41 Z" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1738"
width="1"
height="7"
x="41"
y="40" />
<path
id="path1740"
style="fill:#808080;fill-opacity:1;stroke-width:8"
d="M 37.5,40 A 1.5,3.5 0 0 0 36,43.5 1.5,3.5 0 0 0 37.5,47 1.5,3.5 0 0 0 39,43.5 1.5,3.5 0 0 0 37.5,40 Z m -0.002,1 A 0.5,2.5 0 0 1 37.5,41 0.5,2.5 0 0 1 38,43.5 0.5,2.5 0 0 1 37.5,46 0.5,2.5 0 0 1 37,43.5 0.5,2.5 0 0 1 37.498047,41 Z" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1742"
width="1"
height="7"
x="49"
y="40" />
<path
id="path1748"
style="fill:#808080;fill-opacity:1;stroke-width:8"
d="M 53.5,40 A 1.5,3.5 0 0 0 52,43.5 1.5,3.5 0 0 0 53.5,47 1.5,3.5 0 0 0 55,43.5 1.5,3.5 0 0 0 53.5,40 Z m -0.002,1 A 0.5,2.5 0 0 1 53.5,41 0.5,2.5 0 0 1 54,43.5 0.5,2.5 0 0 1 53.5,46 0.5,2.5 0 0 1 53,43.5 0.5,2.5 0 0 1 53.498047,41 Z" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1758"
width="1"
height="7"
x="81"
y="40" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1762"
width="1"
height="7"
x="21"
y="48" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1766"
width="1"
height="7"
x="29"
y="48" />
<path
id="path1768"
style="fill:#808080;fill-opacity:1;stroke-width:8"
d="M 25.5,48 A 1.5,3.5 0 0 0 24,51.5 1.5,3.5 0 0 0 25.5,55 1.5,3.5 0 0 0 27,51.5 1.5,3.5 0 0 0 25.5,48 Z m -0.002,1 A 0.5,2.5 0 0 1 25.5,49 0.5,2.5 0 0 1 26,51.5 0.5,2.5 0 0 1 25.5,54 0.5,2.5 0 0 1 25,51.5 0.5,2.5 0 0 1 25.498047,49 Z" />
<path
id="path1776"
style="fill:#808080;fill-opacity:1;stroke-width:8"
d="M 41.5,48 A 1.5,3.5 0 0 0 40,51.5 1.5,3.5 0 0 0 41.5,55 1.5,3.5 0 0 0 43,51.5 1.5,3.5 0 0 0 41.5,48 Z m -0.002,1 A 0.5,2.5 0 0 1 41.5,49 0.5,2.5 0 0 1 42,51.5 0.5,2.5 0 0 1 41.5,54 0.5,2.5 0 0 1 41,51.5 0.5,2.5 0 0 1 41.498047,49 Z" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1778"
width="1"
height="7"
x="53"
y="48" />
<path
id="path1782"
style="fill:#808080;fill-opacity:1;stroke-width:8"
d="M 57.5,48 A 1.5,3.5 0 0 0 56,51.5 1.5,3.5 0 0 0 57.5,55 1.5,3.5 0 0 0 59,51.5 1.5,3.5 0 0 0 57.5,48 Z m -0.002,1 A 0.5,2.5 0 0 1 57.5,49 0.5,2.5 0 0 1 58,51.5 0.5,2.5 0 0 1 57.5,54 0.5,2.5 0 0 1 57,51.5 0.5,2.5 0 0 1 57.498047,49 Z" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1784"
width="1"
height="7"
x="25"
y="56" />
<path
id="path1790"
style="fill:#808080;fill-opacity:1;stroke-width:8"
d="M 29.5,56 A 1.5,3.5 0 0 0 28,59.5 1.5,3.5 0 0 0 29.5,63 1.5,3.5 0 0 0 31,59.5 1.5,3.5 0 0 0 29.5,56 Z m -0.002,1 A 0.5,2.5 0 0 1 29.5,57 0.5,2.5 0 0 1 30,59.5 0.5,2.5 0 0 1 29.5,62 0.5,2.5 0 0 1 29,59.5 0.5,2.5 0 0 1 29.498047,57 Z" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1792"
width="1"
height="7"
x="41"
y="56" />
<path
id="path1794"
style="fill:#808080;fill-opacity:1;stroke-width:8"
d="M 37.5,56 A 1.5,3.5 0 0 0 36,59.5 1.5,3.5 0 0 0 37.5,63 1.5,3.5 0 0 0 39,59.5 1.5,3.5 0 0 0 37.5,56 Z m -0.002,1 A 0.5,2.5 0 0 1 37.5,57 0.5,2.5 0 0 1 38,59.5 0.5,2.5 0 0 1 37.5,62 0.5,2.5 0 0 1 37,59.5 0.5,2.5 0 0 1 37.498047,57 Z" />
<path
id="path1798"
style="fill:#808080;fill-opacity:1;stroke-width:8"
d="M 45.5,56 A 1.5,3.5 0 0 0 44,59.5 1.5,3.5 0 0 0 45.5,63 1.5,3.5 0 0 0 47,59.5 1.5,3.5 0 0 0 45.5,56 Z m -0.002,1 A 0.5,2.5 0 0 1 45.5,57 0.5,2.5 0 0 1 46,59.5 0.5,2.5 0 0 1 45.5,62 0.5,2.5 0 0 1 45,59.5 0.5,2.5 0 0 1 45.498047,57 Z" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1800"
width="1"
height="7"
x="57"
y="56" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1806"
width="1"
height="7"
x="21"
y="65" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1810"
width="1"
height="7"
x="29"
y="65" />
<path
id="path1812"
style="fill:#808080;fill-opacity:1;stroke-width:8"
d="M 25.5,65 A 1.5,3.5 0 0 0 24,68.5 1.5,3.5 0 0 0 25.5,72 1.5,3.5 0 0 0 27,68.5 1.5,3.5 0 0 0 25.5,65 Z m -0.002,1 A 0.5,2.5 0 0 1 25.5,66 0.5,2.5 0 0 1 26,68.5 0.5,2.5 0 0 1 25.5,71 0.5,2.5 0 0 1 25,68.5 0.5,2.5 0 0 1 25.498047,66 Z" />
<path
id="path1816"
style="fill:#808080;fill-opacity:1;stroke-width:8"
d="M 33.5,65 A 1.5,3.5 0 0 0 32,68.5 1.5,3.5 0 0 0 33.5,72 1.5,3.5 0 0 0 35,68.5 1.5,3.5 0 0 0 33.5,65 Z m -0.002,1 A 0.5,2.5 0 0 1 33.5,66 0.5,2.5 0 0 1 34,68.5 0.5,2.5 0 0 1 33.5,71 0.5,2.5 0 0 1 33,68.5 0.5,2.5 0 0 1 33.498047,66 Z" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1818"
width="1"
height="7"
x="45"
y="65" />
<path
id="path1825"
style="fill:#808080;fill-opacity:1;stroke-width:8"
d="M 49.5,65 A 1.5,3.5 0 0 0 48,68.5 1.5,3.5 0 0 0 49.5,72 1.5,3.5 0 0 0 51,68.5 1.5,3.5 0 0 0 49.5,65 Z m -0.002,1 A 0.5,2.5 0 0 1 49.5,66 0.5,2.5 0 0 1 50,68.5 0.5,2.5 0 0 1 49.5,71 0.5,2.5 0 0 1 49,68.5 0.5,2.5 0 0 1 49.498047,66 Z" />
<path
id="path1827"
style="fill:#808080;fill-opacity:1;stroke-width:8"
d="M 57.5,65 A 1.5,3.5 0 0 0 56,68.5 1.5,3.5 0 0 0 57.5,72 1.5,3.5 0 0 0 59,68.5 1.5,3.5 0 0 0 57.5,65 Z m -0.002,1 A 0.5,2.5 0 0 1 57.5,66 0.5,2.5 0 0 1 58,68.5 0.5,2.5 0 0 1 57.5,71 0.5,2.5 0 0 1 57,68.5 0.5,2.5 0 0 1 57.498047,66 Z" />
<path
id="path1829"
style="fill:#808080;fill-opacity:1;stroke-width:8"
d="M 37.5,65 A 1.5,3.5 0 0 0 36,68.5 1.5,3.5 0 0 0 37.5,72 1.5,3.5 0 0 0 39,68.5 1.5,3.5 0 0 0 37.5,65 Z m -0.002,1 A 0.5,2.5 0 0 1 37.5,66 0.5,2.5 0 0 1 38,68.5 0.5,2.5 0 0 1 37.5,71 0.5,2.5 0 0 1 37,68.5 0.5,2.5 0 0 1 37.498047,66 Z" />
<path
id="path1831"
style="fill:#808080;fill-opacity:1;stroke-width:8"
d="M 53.5,65 A 1.5,3.5 0 0 0 52,68.5 1.5,3.5 0 0 0 53.5,72 1.5,3.5 0 0 0 55,68.5 1.5,3.5 0 0 0 53.5,65 Z m -0.002,1 A 0.5,2.5 0 0 1 53.5,66 0.5,2.5 0 0 1 54,68.5 0.5,2.5 0 0 1 53.5,71 0.5,2.5 0 0 1 53,68.5 0.5,2.5 0 0 1 53.498047,66 Z" />
<path
id="path1835"
style="fill:#808080;fill-opacity:1;stroke-width:8"
d="M 33.5,56 A 1.5,3.5 0 0 0 32,59.5 1.5,3.5 0 0 0 33.5,63 1.5,3.5 0 0 0 35,59.5 1.5,3.5 0 0 0 33.5,56 Z m -0.002,1 A 0.5,2.5 0 0 1 33.5,57 0.5,2.5 0 0 1 34,59.5 0.5,2.5 0 0 1 33.5,62 0.5,2.5 0 0 1 33,59.5 0.5,2.5 0 0 1 33.498047,57 Z" />
<path
id="path1837"
style="fill:#808080;fill-opacity:1;stroke-width:8"
d="M 25.5,40 A 1.5,3.5 0 0 0 24,43.5 1.5,3.5 0 0 0 25.5,47 1.5,3.5 0 0 0 27,43.5 1.5,3.5 0 0 0 25.5,40 Z m -0.002,1 A 0.5,2.5 0 0 1 25.5,41 0.5,2.5 0 0 1 26,43.5 0.5,2.5 0 0 1 25.5,46 0.5,2.5 0 0 1 25,43.5 0.5,2.5 0 0 1 25.498047,41 Z" />
<path
id="path1839"
style="fill:#808080;fill-opacity:1;stroke-width:8"
d="M 37.5,48 A 1.5,3.5 0 0 0 36,51.5 1.5,3.5 0 0 0 37.5,55 1.5,3.5 0 0 0 39,51.5 1.5,3.5 0 0 0 37.5,48 Z m -0.002,1 A 0.5,2.5 0 0 1 37.5,49 0.5,2.5 0 0 1 38,51.5 0.5,2.5 0 0 1 37.5,54 0.5,2.5 0 0 1 37,51.5 0.5,2.5 0 0 1 37.498047,49 Z" />
<path
id="path1841"
style="fill:#808080;fill-opacity:1;stroke-width:8"
d="M 45.5,48 A 1.5,3.5 0 0 0 44,51.5 1.5,3.5 0 0 0 45.5,55 1.5,3.5 0 0 0 47,51.5 1.5,3.5 0 0 0 45.5,48 Z m -0.002,1 A 0.5,2.5 0 0 1 45.5,49 0.5,2.5 0 0 1 46,51.5 0.5,2.5 0 0 1 45.5,54 0.5,2.5 0 0 1 45,51.5 0.5,2.5 0 0 1 45.498047,49 Z" />
<path
id="path1843"
style="fill:#808080;fill-opacity:1;stroke-width:8"
d="M 57.5,40 A 1.5,3.5 0 0 0 56,43.5 1.5,3.5 0 0 0 57.5,47 1.5,3.5 0 0 0 59,43.5 1.5,3.5 0 0 0 57.5,40 Z m -0.002,1 A 0.5,2.5 0 0 1 57.5,41 0.5,2.5 0 0 1 58,43.5 0.5,2.5 0 0 1 57.5,46 0.5,2.5 0 0 1 57,43.5 0.5,2.5 0 0 1 57.498047,41 Z" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1845"
width="1"
height="7"
x="21"
y="56" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1847"
width="1"
height="7"
x="33"
y="48" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1849"
width="1"
height="7"
x="45"
y="40" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1851"
width="1"
height="7"
x="49"
y="48" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1853"
width="1"
height="7"
x="49"
y="56" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1855"
width="1"
height="7"
x="53"
y="56" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1857"
width="1"
height="7"
x="41"
y="65" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 14 KiB

View File

@ -0,0 +1,181 @@
<?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"
version="1.1"
id="svg2"
width="80"
height="80"
viewBox="0 0 80 80"
sodipodi:docname="efm-db.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/efm-db-040.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48">
<metadata
id="metadata8">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6">
<rect
id="rect1822"
height="22.426638"
width="47.970909"
y="8"
x="16" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect878" />
<rect
x="20"
y="50"
width="40"
height="30"
id="rect872" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect864" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect858" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect852" />
</defs>
<sodipodi:namedview
inkscape:showpageshadow="false"
inkscape:document-rotation="0"
pagecolor="#404040"
bordercolor="#ff66ac"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1756"
inkscape:window-height="1372"
id="namedview4"
showgrid="true"
inkscape:zoom="13.05"
inkscape:cx="40"
inkscape:cy="40.153257"
inkscape:window-x="804"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="g10"
showguides="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-others="false"
inkscape:snap-nodes="true"
borderlayer="true">
<inkscape:grid
type="xygrid"
id="grid837"
empspacing="4" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g10">
<path
style="fill:#839ac7;fill-opacity:1;stroke:none;stroke-width:2.59807;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 16,72 4,68 V 52 l 12,4 z"
id="path3514" />
<path
style="fill:#5d7dbd;fill-opacity:1;stroke:none;stroke-width:2.59807;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 16,72 28,68 V 52 l -12,4 z"
id="path3516" />
<path
style="fill:#b7c6d8;fill-opacity:1;stroke:none;stroke-width:2.59807;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 4,52 12,-4 12,4 -12,4 z"
id="path3518" />
<path
style="fill:#c7b583;fill-opacity:1;stroke:none;stroke-width:2.59807;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 40,72 28,68 V 52 l 12,4 z"
id="path3541" />
<path
style="fill:#bd9b5d;fill-opacity:1;stroke:none;stroke-width:2.59807;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 40,72 52,68 V 52 l -12,4 z"
id="path3543" />
<path
style="fill:#d8d3b7;fill-opacity:1;stroke:none;stroke-width:2.59807;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 28,52 12,-4 12,4 -12,4 z"
id="path3545" />
<path
style="fill:#b183c7;fill-opacity:1;stroke:none;stroke-width:2.59807;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 64,72 52,68 V 52 l 12,4 z"
id="path3547" />
<path
style="fill:#935dbd;fill-opacity:1;stroke:none;stroke-width:2.59807;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 64,72 76,68 V 52 l -12,4 z"
id="path3549" />
<path
style="fill:#d2b7d8;fill-opacity:1;stroke:none;stroke-width:2.59807;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 52,52 12,-4 12,4 -12,4 z"
id="path3551" />
<path
style="fill:#83c7aa;fill-opacity:1;stroke:none;stroke-width:2.59807;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 28,52 16,48 V 32 l 12,4 z"
id="path3553" />
<path
style="fill:#5dbd75;fill-opacity:1;stroke:none;stroke-width:2.59807;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 28,52 40,48 V 32 l -12,4 z"
id="path3555" />
<path
style="fill:#b7d8d1;fill-opacity:1;stroke:none;stroke-width:2.59807;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 16,32 12,-4 12,4 -12,4 z"
id="path3557" />
<path
style="fill:#c79383;fill-opacity:1;stroke:none;stroke-width:2.59807;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 52,52 40,48 V 32 l 12,4 z"
id="path3559" />
<path
style="fill:#bd655d;fill-opacity:1;stroke:none;stroke-width:2.59807;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 52,52 64,48 V 32 l -12,4 z"
id="path3561" />
<path
style="fill:#d8c1b7;fill-opacity:1;stroke:none;stroke-width:2.59807;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 40,32 12,-4 12,4 -12,4 z"
id="path3563" />
<path
style="fill:#c7a383;fill-opacity:1;stroke:none;stroke-width:2.59807;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 40,32 28,28 V 12 l 12,4 z"
id="path3565" />
<path
style="fill:#bd865d;fill-opacity:1;stroke:none;stroke-width:2.59807;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 40,32 52,28 V 12 l -12,4 z"
id="path3567" />
<path
style="fill:#d8c8b7;fill-opacity:1;stroke:none;stroke-width:2.59807;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 28,12 40,8 52,12 40,16 Z"
id="path3569" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 77 KiB

View File

@ -0,0 +1,281 @@
<?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"
version="1.1"
id="svg2"
width="80"
height="80"
viewBox="0 0 80 80"
sodipodi:docname="efm-doc.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/efm-doc-040.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48">
<metadata
id="metadata8">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6">
<rect
x="20"
y="28"
width="40"
height="40"
id="rect2474" />
<rect
x="20"
y="28"
width="40"
height="40"
id="rect2468" />
<rect
x="20"
y="28"
width="40"
height="40"
id="rect2458" />
<rect
x="20"
y="28"
width="40"
height="40"
id="rect2450" />
<rect
x="16"
y="72"
width="48"
height="44"
id="rect2444" />
<rect
id="rect1822"
height="22.426638"
width="47.970909"
y="8"
x="16" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect878" />
<rect
x="20"
y="50"
width="40"
height="30"
id="rect872" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect864" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect858" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect852" />
</defs>
<sodipodi:namedview
inkscape:showpageshadow="false"
inkscape:document-rotation="0"
pagecolor="#404040"
bordercolor="#ff66ac"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1756"
inkscape:window-height="1372"
id="namedview4"
showgrid="true"
inkscape:zoom="13.05"
inkscape:cx="40"
inkscape:cy="40"
inkscape:window-x="804"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="g10"
showguides="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-others="false"
inkscape:snap-nodes="true"
borderlayer="true">
<inkscape:grid
type="xygrid"
id="grid837"
empspacing="4" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g10">
<path
sodipodi:nodetypes="cccccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 68,4 V 76 H 12 V 25 L 34,4 Z"
id="path27896" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1758"
width="1"
height="7"
x="81"
y="40" />
<text
xml:space="preserve"
id="text2442"
style="fill:none;stroke:black;stroke-opacity:1;stroke-width:1px;stroke-linejoin:miter;stroke-linecap:butt;font-family:'Times New Roman';font-size:8px;line-height:25px;letter-spacing:0px;word-spacing:0px;-inkscape-font-specification:'Times New Roman, ';white-space:pre;shape-inside:url(#rect2444);" />
<text
xml:space="preserve"
id="text2456"
style="font-size:32px;line-height:100px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect2458);fill:#ffffff;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:0.2;" />
<text
xml:space="preserve"
style="font-size:8px;line-height:25px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="20"
y="32"
id="text2464"><tspan
sodipodi:role="line"
id="tspan2462"
x="20"
y="32"></tspan></text>
<text
xml:space="preserve"
id="text2466"
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:75px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Italic';letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect2468);fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;" />
<rect
style="fill:#8cb06b;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3331"
width="20"
height="20"
x="28"
y="-36"
transform="rotate(90)" />
<rect
style="fill:#6fd3dd;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3333"
width="20"
height="12"
x="16"
y="28" />
<path
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 37,30 34,4 C 33,10 19,24 12,25 Z"
id="path27900"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 H 34 V 4 Z"
id="path27898" />
<circle
style="fill:#faf3bf;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3335"
cx="23"
cy="35"
r="3" />
<rect
style="fill:#000000;fill-opacity:0.5;stroke:none;stroke-width:2.74955;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3337"
width="21"
height="2"
x="39"
y="28" />
<rect
style="fill:#000000;fill-opacity:0.5;stroke:none;stroke-width:2.8775;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3339"
width="23"
height="2"
x="39"
y="36" />
<rect
style="fill:#000000;fill-opacity:0.5;stroke:none;stroke-width:2.16333;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3341"
width="13"
height="2"
x="39"
y="44" />
<rect
style="fill:#000000;fill-opacity:0.5;stroke:none;stroke-width:3.69865;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3343"
width="38"
height="2"
x="16"
y="52" />
<rect
style="fill:#000000;fill-opacity:0.5;stroke:none;stroke-width:3.6;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3345"
width="36"
height="2"
x="16"
y="60" />
<rect
style="fill:#000000;fill-opacity:0.5;stroke:none;stroke-width:3.93446;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3347"
width="43"
height="2"
x="16"
y="68" />
<rect
style="fill:#000000;fill-opacity:0.5;stroke:none;stroke-width:2.47386;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3349"
width="17"
height="2"
x="39"
y="32" />
<rect
style="fill:#000000;fill-opacity:0.5;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3351"
width="25"
height="2"
x="39"
y="40" />
<rect
style="fill:#000000;fill-opacity:0.5;stroke:none;stroke-width:2.47386;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3353"
width="17"
height="2"
x="39"
y="48" />
<rect
style="fill:#000000;fill-opacity:0.5;stroke:none;stroke-width:4.15692;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3355"
width="48"
height="2"
x="16"
y="56" />
<rect
style="fill:#000000;fill-opacity:0.5;stroke:none;stroke-width:3.79473;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3357"
width="40"
height="2"
x="16"
y="64" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.8 KiB

View File

@ -0,0 +1,180 @@
<?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:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="svg2"
width="80"
height="80"
viewBox="0 0 80 80"
sodipodi:docname="efm-draw.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/efm-draw-040.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48">
<metadata
id="metadata8">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6">
<linearGradient
inkscape:collect="always"
id="linearGradient2416">
<stop
style="stop-color:#000000;stop-opacity:1;"
offset="0"
id="stop2412" />
<stop
style="stop-color:#000000;stop-opacity:0;"
offset="1"
id="stop2414" />
</linearGradient>
<rect
id="rect1822"
height="22.426638"
width="47.970909"
y="8"
x="16" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect878" />
<rect
x="20"
y="50"
width="40"
height="30"
id="rect872" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect864" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect858" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect852" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient2416"
id="linearGradient2418"
x1="36"
y1="67"
x2="60"
y2="67"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
inkscape:showpageshadow="false"
inkscape:document-rotation="0"
pagecolor="#404040"
bordercolor="#ff66ac"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1756"
inkscape:window-height="1372"
id="namedview4"
showgrid="true"
inkscape:zoom="13.05"
inkscape:cx="40"
inkscape:cy="40"
inkscape:window-x="804"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="g10"
showguides="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-others="false"
inkscape:snap-nodes="true"
borderlayer="true">
<inkscape:grid
type="xygrid"
id="grid837"
empspacing="4" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g10">
<path
sodipodi:nodetypes="cccccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 68,4 V 76 H 12 V 25 L 34,4 Z"
id="path27896" />
<path
style="fill:url(#linearGradient2418);fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 20,68 2,-2 h 14 l 24,2 z"
id="path2410"
sodipodi:nodetypes="ccccc" />
<path
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 37,30 34,4 C 33,10 19,24 12,25 Z"
id="path27900"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 H 34 V 4 Z"
id="path27898" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1758"
width="1"
height="7"
x="81"
y="40" />
<path
style="fill:#202020;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 20,68 v -8 l 8,8 z"
id="path2402" />
<path
style="fill:#dbb483;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 20,60 V 52 L 36,68 H 28 Z"
id="path2404"
sodipodi:nodetypes="ccccc" />
<path
style="fill:#4282ca;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 36,68 60,44 44,28 20,52 Z"
id="path2406"
sodipodi:nodetypes="ccccc" />
<path
style="fill:#000000;fill-opacity:0.2;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 20,68 32,64 56,40 60,44 36,68 Z"
id="path2420" />
<path
style="fill:#ffffff;fill-opacity:0.2;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 20,68 24,52 46,30 48,32 26,54 Z"
id="path2422" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.6 KiB

View File

@ -0,0 +1,302 @@
<?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"
version="1.1"
id="svg2"
width="80"
height="80"
viewBox="0 0 80 80"
sodipodi:docname="efm-efile.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/efm-efile-040.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48">
<metadata
id="metadata8">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6">
<rect
x="20"
y="28"
width="40"
height="40"
id="rect2474" />
<rect
x="20"
y="28"
width="40"
height="40"
id="rect2468" />
<rect
x="20"
y="28"
width="40"
height="40"
id="rect2458" />
<rect
x="20"
y="28"
width="40"
height="40"
id="rect2450" />
<rect
x="16"
y="72"
width="48"
height="44"
id="rect2444" />
<rect
id="rect1822"
height="22.426638"
width="47.970909"
y="8"
x="16" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect878" />
<rect
x="20"
y="50"
width="40"
height="30"
id="rect872" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect864" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect858" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect852" />
</defs>
<sodipodi:namedview
inkscape:showpageshadow="false"
inkscape:document-rotation="0"
pagecolor="#404040"
bordercolor="#ff66ac"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1756"
inkscape:window-height="1372"
id="namedview4"
showgrid="true"
inkscape:zoom="13.05"
inkscape:cx="40"
inkscape:cy="40"
inkscape:window-x="804"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="g10"
showguides="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-others="false"
inkscape:snap-nodes="true"
borderlayer="true">
<inkscape:grid
type="xygrid"
id="grid837"
empspacing="4" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g10">
<path
sodipodi:nodetypes="cccccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 68,4 V 76 H 12 V 25 L 34,4 Z"
id="path27896" />
<g
id="g600"
style="fill:#202020;fill-opacity:1;stroke:none;stroke-opacity:1"
transform="matrix(0.06748793,0,0,0.06748793,14.173907,16.282604)">
<path
style="font-size:12px;fill:#202020;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-opacity:1"
d="m 253.0964,451.5499 298.0828,199.0175 c 12.3337,-12.8429 12.3337,-12.8429 20.2182,-24.6206 67.0184,-100.1107 43.7081,-243.6352 -62.1011,-314.0059 -106.1899,-71.5505 -247.7678,-38.4091 -315.2532,61.7845 -64.5802,97.0834 -49.1298,239.61 62.3976,315.1319 97.5272,64.4282 188.9762,36.1043 245.0135,5.0054 L 473.477,645.883 C 413.0772,677.728 342.3128,681.5232 287.7821,644.4234 203.9245,588.8802 187.4273,479.7646 239.093,403.3519 c 50.833,-76.6977 156.0308,-100.0815 239.2262,-45.138 87.5816,59.3819 82.47,162.5595 60.7632,208.7355 -9.5889,-6.5965 -19.1778,-13.1929 -28.7667,-19.7894 24.9959,-64.7622 -0.4326,-128.689 -50.4879,-162.1982 -58.8887,-39.4226 -144.3998,-32.7074 -192.214,38.5467 -9.3484,14.1343 -9.3484,14.1343 -14.5174,28.0414 z"
id="path582"
sodipodi:nodetypes="cccccccccccccccc"
inkscape:connector-curvature="0" />
<path
style="fill:#202020;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 381.9484,173.6221 c -4.4291,44.2913 -10.6299,72.6377 -28.3464,79.7244 17.7165,-1.7717 19.4882,-1.7717 28.3464,-1.7717 8.8583,0 10.63,0 28.3465,1.7717 -17.7165,-7.0867 -23.9173,-35.4331 -28.3465,-79.7244 z"
id="path578"
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0" />
<path
style="font-size:12px;fill:#202020;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-opacity:1"
d="m 314.5494,180.6657 c 4.8241,44.2501 4.618,73.266 -11.2504,83.8626 16.9673,-5.3964 18.7008,-5.7627 27.3676,-7.5942 8.6669,-1.8315 10.4003,-2.1978 28.1003,-4.1274 -18.7989,-3.2706 -30.7265,-29.7224 -44.2175,-72.141 z"
id="path579"
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0" />
<path
style="font-size:12px;fill:#202020;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-opacity:1"
d="m 251.0898,201.0402 c 13.7231,42.344 19.4228,70.7954 6.0412,84.3979 15.5152,-8.7345 17.1379,-9.4457 25.251,-13.0017 8.1133,-3.5559 9.7359,-4.2671 26.6735,-9.7563 -19.0711,0.6212 -36.1294,-22.8518 -57.9657,-61.6399 z"
id="path584"
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0" />
<path
style="font-size:12px;fill:#202020;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-opacity:1"
d="m 192.1871,234.5471 c 22.1815,38.5918 33.6405,65.2499 23.3605,81.3253 13.3739,-11.7537 14.8146,-12.785 22.0172,-17.9416 7.2028,-5.1565 8.6433,-6.1879 24.08,-15.0604 -18.5307,4.5508 -40.0735,-14.8881 -69.4577,-48.3233 z"
id="path585"
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0" />
<path
style="font-size:12px;fill:#202020;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-opacity:1"
d="m 141.7323,279.2385 c 29.644,33.2051 46.3405,56.9368 39.5862,74.7827 10.6708,-14.2529 11.8686,-15.5585 17.8568,-22.0861 5.9884,-6.5276 7.1859,-7.8332 20.468,-19.6907 -17.1987,8.2645 -42.2787,-6.3285 -77.911,-33.0059 z"
id="path586"
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0" />
<path
style="font-size:12px;fill:#202020;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-opacity:1"
d="m 450.0762,180.7087 c -4.8241,44.2501 -4.618,73.266 11.2504,83.8626 -16.9673,-5.3964 -18.7008,-5.7627 -27.3676,-7.5942 -8.6669,-1.8315 -10.4003,-2.1978 -28.1003,-4.1274 18.7989,-3.2706 30.7265,-29.7224 44.2175,-72.141 z"
id="path587"
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0" />
<path
style="font-size:12px;fill:#202020;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-opacity:1"
d="m 513.5358,201.0832 c -13.7231,42.344 -19.4228,70.7954 -6.0412,84.3979 -15.5152,-8.7345 -17.1379,-9.4457 -25.251,-13.0017 -8.1133,-3.5559 -9.7359,-4.2671 -26.6735,-9.7563 19.0711,0.6212 36.1294,-22.8518 57.9657,-61.6399 z"
id="path588"
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0" />
<path
style="font-size:12px;fill:#202020;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-opacity:1"
d="m 572.4385,234.5901 c -22.1815,38.5918 -33.6405,65.2499 -23.3605,81.3253 -13.3739,-11.7537 -14.8146,-12.785 -22.0172,-17.9416 -7.2028,-5.1565 -8.6433,-6.1879 -24.08,-15.0604 18.5307,4.5508 40.0735,-14.8881 69.4577,-48.3233 z"
id="path589"
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0" />
<path
style="font-size:12px;fill:#202020;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-opacity:1"
d="m 622.8933,279.2815 c -29.644,33.2051 -46.3405,56.9368 -39.5862,74.7827 -10.6708,-14.2529 -11.8686,-15.5585 -17.8568,-22.0861 -5.9884,-6.5276 -7.1859,-7.8332 -20.468,-19.6907 17.1987,8.2645 42.2787,-6.3285 77.911,-33.0059 z"
id="path590"
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0" />
<path
style="fill:#202020;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1pt;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 382.6772,825.5905 c -4.4291,-44.2913 -10.6299,-72.6377 -28.3464,-79.7244 17.7165,1.7717 19.4882,1.7717 28.3464,1.7717 8.8583,0 10.63,0 28.3465,-1.7717 -17.7165,7.0867 -23.9173,35.4331 -28.3465,79.7244 z"
id="path591"
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0" />
<path
style="font-size:12px;fill:#202020;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-opacity:1"
d="m 315.2782,818.5469 c 4.8241,-44.2501 4.618,-73.266 -11.2504,-83.8626 16.9673,5.3964 18.7008,5.7627 27.3676,7.5942 8.6669,1.8315 10.4003,2.1978 28.1003,4.1274 -18.7989,3.2706 -30.7265,29.7224 -44.2175,72.141 z"
id="path592"
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0" />
<path
style="font-size:12px;fill:#202020;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-opacity:1"
d="m 251.8186,798.1724 c 13.7231,-42.344 19.4228,-70.7954 6.0412,-84.3979 15.5152,8.7345 17.1379,9.4457 25.251,13.0017 8.1133,3.5559 9.7359,4.2671 26.6735,9.7563 -19.0711,-0.6212 -36.1294,22.8518 -57.9657,61.6399 z"
id="path593"
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0" />
<path
style="font-size:12px;fill:#202020;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-opacity:1"
d="m 192.9159,764.6655 c 22.1815,-38.5918 33.6405,-65.2499 23.3605,-81.3253 13.3739,11.7537 14.8146,12.785 22.0172,17.9416 7.2028,5.1565 8.6433,6.1879 24.08,15.0604 -18.5307,-4.5508 -40.0735,14.8881 -69.4577,48.3233 z"
id="path594"
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0" />
<path
style="font-size:12px;fill:#202020;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-opacity:1"
d="m 142.4611,719.9741 c 29.644,-33.2051 46.3405,-56.9368 39.5862,-74.7827 10.6708,14.2529 11.8686,15.5585 17.8568,22.0861 5.9884,6.5276 7.1859,7.8332 20.468,19.6907 -17.1987,-8.2645 -42.2787,6.3285 -77.911,33.0059 z"
id="path595"
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0" />
<path
style="font-size:12px;fill:#202020;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-opacity:1"
d="m 450.805,818.5039 c -4.8241,-44.2501 -4.618,-73.266 11.2504,-83.8626 -16.9673,5.3964 -18.7008,5.7627 -27.3676,7.5942 -8.6669,1.8315 -10.4003,2.1978 -28.1003,4.1274 18.7989,3.2706 30.7265,29.7224 44.2175,72.141 z"
id="path596"
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0" />
<path
style="font-size:12px;fill:#202020;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-opacity:1"
d="m 514.2646,798.1294 c -13.7231,-42.344 -19.4228,-70.7954 -6.0412,-84.3979 -15.5152,8.7345 -17.1379,9.4457 -25.251,13.0017 -8.1133,3.5559 -9.7359,4.2671 -26.6735,9.7563 19.0711,-0.6212 36.1294,22.8518 57.9657,61.6399 z"
id="path597"
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0" />
<path
style="font-size:12px;fill:#202020;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-opacity:1"
d="m 573.1673,764.6225 c -22.1815,-38.5918 -33.6405,-65.2499 -23.3605,-81.3253 -13.3739,11.7537 -14.8146,12.785 -22.0172,17.9416 -7.2028,5.1565 -8.6433,6.1879 -24.08,15.0604 18.5307,-4.5508 40.0735,14.8881 69.4577,48.3233 z"
id="path598"
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0" />
<path
style="font-size:12px;fill:#202020;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-opacity:1"
d="m 623.6221,719.9311 c -29.644,-33.2051 -46.3405,-56.9368 -39.5862,-74.7827 -10.6708,14.2529 -11.8686,15.5585 -17.8568,22.0861 -5.9884,6.5276 -7.1859,7.8332 -20.468,19.6907 17.1987,-8.2645 42.2787,6.3285 77.911,33.0059 z"
id="path599"
sodipodi:nodetypes="ccccc"
inkscape:connector-curvature="0" />
</g>
<path
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 37,30 34,4 C 33,10 19,24 12,25 Z"
id="path27900"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 H 34 V 4 Z"
id="path27898" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1758"
width="1"
height="7"
x="81"
y="40" />
<text
xml:space="preserve"
id="text2442"
style="fill:none;stroke:black;stroke-opacity:1;stroke-width:1px;stroke-linejoin:miter;stroke-linecap:butt;font-family:'Times New Roman';font-size:8px;line-height:25px;letter-spacing:0px;word-spacing:0px;-inkscape-font-specification:'Times New Roman, ';white-space:pre;shape-inside:url(#rect2444);" />
<text
xml:space="preserve"
id="text2456"
style="font-size:32px;line-height:100px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect2458);fill:#ffffff;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:0.2;" />
<text
xml:space="preserve"
style="font-size:8px;line-height:25px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="20"
y="32"
id="text2464"><tspan
sodipodi:role="line"
id="tspan2462"
x="20"
y="32"></tspan></text>
<text
xml:space="preserve"
id="text2466"
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:75px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Italic';letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect2468);fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 15 KiB

View File

@ -0,0 +1,192 @@
<?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"
version="1.1"
id="svg2"
width="80"
height="80"
viewBox="0 0 80 80"
sodipodi:docname="efm-formula.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/efm-formula-040.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48">
<metadata
id="metadata8">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6">
<rect
x="20"
y="28"
width="40"
height="40"
id="rect2474" />
<rect
x="20"
y="28"
width="40"
height="40"
id="rect2468" />
<rect
x="20"
y="28"
width="40"
height="40"
id="rect2458" />
<rect
x="20"
y="28"
width="40"
height="40"
id="rect2450" />
<rect
x="16"
y="72"
width="48"
height="44"
id="rect2444" />
<rect
id="rect1822"
height="22.426638"
width="47.970909"
y="8"
x="16" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect878" />
<rect
x="20"
y="50"
width="40"
height="30"
id="rect872" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect864" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect858" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect852" />
</defs>
<sodipodi:namedview
inkscape:showpageshadow="false"
inkscape:document-rotation="0"
pagecolor="#404040"
bordercolor="#ff66ac"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1756"
inkscape:window-height="1372"
id="namedview4"
showgrid="true"
inkscape:zoom="13.05"
inkscape:cx="40"
inkscape:cy="40"
inkscape:window-x="804"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="g10"
showguides="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-others="false"
inkscape:snap-nodes="true"
borderlayer="true">
<inkscape:grid
type="xygrid"
id="grid837"
empspacing="4" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g10">
<path
sodipodi:nodetypes="cccccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 68,4 V 76 H 12 V 25 L 34,4 Z"
id="path27896" />
<path
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 37,30 34,4 C 33,10 19,24 12,25 Z"
id="path27900"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 H 34 V 4 Z"
id="path27898" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1758"
width="1"
height="7"
x="81"
y="40" />
<text
xml:space="preserve"
id="text2442"
style="fill:none;stroke:black;stroke-opacity:1;stroke-width:1px;stroke-linejoin:miter;stroke-linecap:butt;font-family:'Times New Roman';font-size:8px;line-height:25px;letter-spacing:0px;word-spacing:0px;-inkscape-font-specification:'Times New Roman, ';white-space:pre;shape-inside:url(#rect2444);" />
<text
xml:space="preserve"
id="text2456"
style="font-size:32px;line-height:100px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect2458);fill:#ffffff;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:0.2;" />
<text
xml:space="preserve"
style="font-size:8px;line-height:25px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="20"
y="32"
id="text2464"><tspan
sodipodi:role="line"
id="tspan2462"
x="20"
y="32"></tspan></text>
<text
xml:space="preserve"
id="text2466"
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:75px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Italic';letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect2468);fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;" />
<text
xml:space="preserve"
id="text2472"
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8px;line-height:25px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Italic';letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect2474);fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
transform="matrix(2.5689915,0,0,2.5689915,-24.214752,-55.720405)"><tspan
x="20"
y="44.706009"><tspan
style="font-size:16px;fill:#000000;fill-opacity:1;stroke:none">f</tspan><tspan
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Italic';fill:#000000;fill-opacity:1;stroke:none">(x)</tspan></tspan></text>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.6 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -0,0 +1,215 @@
<?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"
version="1.1"
id="svg2"
width="80"
height="80"
viewBox="0 0 80 80"
sodipodi:docname="efm-template.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/efm-template-040.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48">
<metadata
id="metadata8">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6">
<rect
x="20"
y="28"
width="40"
height="40"
id="rect2474" />
<rect
x="20"
y="28"
width="40"
height="40"
id="rect2468" />
<rect
x="20"
y="28"
width="40"
height="40"
id="rect2458" />
<rect
x="20"
y="28"
width="40"
height="40"
id="rect2450" />
<rect
x="16"
y="72"
width="48"
height="44"
id="rect2444" />
<rect
id="rect1822"
height="22.426638"
width="47.970909"
y="8"
x="16" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect878" />
<rect
x="20"
y="50"
width="40"
height="30"
id="rect872" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect864" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect858" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect852" />
</defs>
<sodipodi:namedview
inkscape:showpageshadow="false"
inkscape:document-rotation="0"
pagecolor="#404040"
bordercolor="#ff66ac"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1756"
inkscape:window-height="1372"
id="namedview4"
showgrid="true"
inkscape:zoom="13.05"
inkscape:cx="40"
inkscape:cy="40"
inkscape:window-x="804"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="g10"
showguides="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-others="false"
inkscape:snap-nodes="true"
borderlayer="true">
<inkscape:grid
type="xygrid"
id="grid837"
empspacing="4" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g10">
<path
sodipodi:nodetypes="cccccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 68,4 V 76 H 12 V 25 L 34,4 Z"
id="path27896" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1758"
width="1"
height="7"
x="81"
y="40" />
<text
xml:space="preserve"
id="text2442"
style="fill:none;stroke:black;stroke-opacity:1;stroke-width:1px;stroke-linejoin:miter;stroke-linecap:butt;font-family:'Times New Roman';font-size:8px;line-height:25px;letter-spacing:0px;word-spacing:0px;-inkscape-font-specification:'Times New Roman, ';white-space:pre;shape-inside:url(#rect2444);" />
<text
xml:space="preserve"
id="text2456"
style="font-size:32px;line-height:100px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect2458);fill:#ffffff;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:0.2;" />
<text
xml:space="preserve"
style="font-size:8px;line-height:25px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="20"
y="32"
id="text2464"><tspan
sodipodi:role="line"
id="tspan2462"
x="20"
y="32"></tspan></text>
<text
xml:space="preserve"
id="text2466"
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:75px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Italic';letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect2468);fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;" />
<path
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 37,30 34,4 C 33,10 19,24 12,25 Z"
id="path27900"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 H 34 V 4 Z"
id="path27898" />
<rect
style="fill:#000000;fill-opacity:0.25;stroke:none;stroke-width:1.93649;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3410"
width="20"
height="2"
x="16"
y="64" />
<rect
style="fill:#000000;fill-opacity:0.25;stroke:none;stroke-width:2.33184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3412"
width="29"
height="2"
x="16"
y="60" />
<rect
style="fill:#000000;fill-opacity:0.25;stroke:none;stroke-width:3.00001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3414"
width="48"
height="2"
x="16"
y="56" />
<rect
style="fill:#000000;fill-opacity:0.25;stroke:none;stroke-width:2.77263;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3416"
width="41"
height="2"
x="16"
y="52" />
<path
style="fill:#000000;fill-opacity:0.25;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 40,50 -12,-12 6,-6 6,6 6,-6 6,6 z"
id="path3418" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.2 KiB

View File

@ -0,0 +1,149 @@
<?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"
version="1.1"
id="svg2"
width="80"
height="80"
viewBox="0 0 80 80"
sodipodi:docname="efm-lua.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/efm-lua-040.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48">
<metadata
id="metadata8">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6">
<rect
id="rect1822"
height="22.426638"
width="47.970909"
y="8"
x="16" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect878" />
<rect
x="20"
y="50"
width="40"
height="30"
id="rect872" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect864" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect858" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect852" />
</defs>
<sodipodi:namedview
inkscape:showpageshadow="false"
inkscape:document-rotation="0"
pagecolor="#404040"
bordercolor="#ff66ac"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1756"
inkscape:window-height="1372"
id="namedview4"
showgrid="true"
inkscape:zoom="13.05"
inkscape:cx="40"
inkscape:cy="40"
inkscape:window-x="804"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="g10"
showguides="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-others="false"
inkscape:snap-nodes="true"
borderlayer="true">
<inkscape:grid
type="xygrid"
id="grid837"
empspacing="4" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g10">
<path
sodipodi:nodetypes="cccccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 68,4 V 76 H 12 V 25 L 34,4 Z"
id="path27896" />
<text
transform="translate(0.02909091,19.573362)"
style="font-size:7px;line-height:6.87873px;font-family:'Arial Black';-inkscape-font-specification:'Arial Black, ';letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect1822);fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
id="text1820"
xml:space="preserve"><tspan
x="16"
y="13.348456"><tspan
style="font-style:normal;font-variant:normal;font-weight:800;font-stretch:extra-condensed;font-size:7px;font-family:'Input Mono Compressed';-inkscape-font-specification:'Input Mono Compressed Ultra-Bold Extra-Condensed';fill:#000000;fill-opacity:1;stroke:none">print(&quot;Hi&quot;)</tspan></tspan></text>
<path
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 37,30 34,4 C 33,10 19,24 12,25 Z"
id="path27900"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 H 34 V 4 Z"
id="path27898" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1758"
width="1"
height="7"
x="81"
y="40" />
<path
id="circle3440"
style="fill:#51659c;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 40 48 A 12 12 0 0 0 28 60 A 12 12 0 0 0 40 72 A 12 12 0 0 0 52 60 A 12 12 0 0 0 40 48 z M 43.939453 53 A 4 4 0 0 1 44 53 A 4 4 0 0 1 48 57 A 4 4 0 0 1 44 61 A 4 4 0 0 1 40 57 A 4 4 0 0 1 43.939453 53 z " />
<circle
style="fill:#51659c;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="circle3465"
cx="52"
cy="48"
r="4" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.1 KiB

View File

@ -0,0 +1,555 @@
<?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"
version="1.1"
id="svg2"
width="80"
height="80"
viewBox="0 0 80 80"
sodipodi:docname="efm-o.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/efm-o-040.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48">
<metadata
id="metadata8">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6">
<rect
id="rect1822"
height="22.426638"
width="47.970909"
y="8"
x="16" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect878" />
<rect
x="20"
y="50"
width="40"
height="30"
id="rect872" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect864" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect858" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect852" />
</defs>
<sodipodi:namedview
inkscape:showpageshadow="false"
inkscape:document-rotation="0"
pagecolor="#404040"
bordercolor="#ff66ac"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1756"
inkscape:window-height="1372"
id="namedview4"
showgrid="true"
inkscape:zoom="13.05"
inkscape:cx="40"
inkscape:cy="40"
inkscape:window-x="804"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="g10"
showguides="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-others="false"
inkscape:snap-nodes="true"
borderlayer="true">
<inkscape:grid
type="xygrid"
id="grid837"
empspacing="4" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g10">
<path
id="ellipse3599"
style="fill:#84654f;fill-opacity:1;stroke:none;stroke-width:3.09839;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 8,58 v 12 a 8,2 0 0 0 8,2 8,2 0 0 0 8,-2 8,2 0 0 0 0,-0.0078 V 58 Z" />
<path
id="path3606"
style="fill:#4f8475;fill-opacity:1;stroke:none;stroke-width:3.09839;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 23.999985,58 v 12 a 8,2 0 0 0 8,2 8,2 0 0 0 8,-2 8,2 0 0 0 0,-0.0078 V 58 Z" />
<path
id="path3608"
style="fill:#714f84;fill-opacity:1;stroke:none;stroke-width:3.09839;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 39.999985,58 v 12 a 8,2 0 0 0 8,2 8,2 0 0 0 8,-2 8,2 0 0 0 0,-0.0078 V 58 Z" />
<path
id="path3610"
style="fill:#844f57;fill-opacity:1;stroke:none;stroke-width:3.09839;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 55.999985,58 v 12 a 8,2 0 0 0 8,2 8,2 0 0 0 8,-2 8,2 0 0 0 0,-0.0078 V 58 Z" />
<ellipse
style="fill:#cfa688;fill-opacity:1;stroke:none;stroke-width:3.09839;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3591"
cx="16"
cy="58"
rx="8"
ry="2" />
<ellipse
style="fill:#88cfc7;fill-opacity:1;stroke:none;stroke-width:3.09839;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="ellipse3593"
cx="32"
cy="58"
rx="8"
ry="2" />
<ellipse
style="fill:#be88cf;fill-opacity:1;stroke:none;stroke-width:3.09839;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="ellipse3595"
cx="48"
cy="58"
rx="8"
ry="2" />
<ellipse
style="fill:#cf88a5;fill-opacity:1;stroke:none;stroke-width:3.09839;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="ellipse3597"
cx="64"
cy="58"
rx="8"
ry="2" />
<path
id="path3612"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 13.5,40 A 1.5,3.5 0 0 0 12,43.5 1.5,3.5 0 0 0 13.5,47 1.5,3.5 0 0 0 15,43.5 1.5,3.5 0 0 0 13.5,40 Z m -0.002,1 A 0.5,2.5 0 0 1 13.5,41 0.5,2.5 0 0 1 14,43.5 0.5,2.5 0 0 1 13.5,46 0.5,2.5 0 0 1 13,43.5 0.5,2.5 0 0 1 13.498,41 Z" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3619"
width="1"
height="7"
x="17"
y="40" />
<path
id="path3625"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 29.5,40 A 1.5,3.5 0 0 0 28,43.5 1.5,3.5 0 0 0 29.5,47 1.5,3.5 0 0 0 31,43.5 1.5,3.5 0 0 0 29.5,40 Z m -0.002,1 A 0.5,2.5 0 0 1 29.5,41 0.5,2.5 0 0 1 30,43.5 0.5,2.5 0 0 1 29.5,46 0.5,2.5 0 0 1 29,43.5 0.5,2.5 0 0 1 29.498,41 Z" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3627"
width="1"
height="7"
x="33"
y="40" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3631"
width="1"
height="7"
x="41"
y="40" />
<path
id="path3633"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 45.5,40 A 1.5,3.5 0 0 0 44,43.5 1.5,3.5 0 0 0 45.5,47 1.5,3.5 0 0 0 47,43.5 1.5,3.5 0 0 0 45.5,40 Z m -0.002,1 A 0.5,2.5 0 0 1 45.5,41 0.5,2.5 0 0 1 46,43.5 0.5,2.5 0 0 1 45.5,46 0.5,2.5 0 0 1 45,43.5 0.5,2.5 0 0 1 45.498,41 Z" />
<path
id="path3637"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 53.5,40 A 1.5,3.5 0 0 0 52,43.5 1.5,3.5 0 0 0 53.5,47 1.5,3.5 0 0 0 55,43.5 1.5,3.5 0 0 0 53.5,40 Z m -0.002,1 A 0.5,2.5 0 0 1 53.5,41 0.5,2.5 0 0 1 54,43.5 0.5,2.5 0 0 1 53.5,46 0.5,2.5 0 0 1 53,43.5 0.5,2.5 0 0 1 53.498,41 Z" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3643"
width="1"
height="7"
x="65"
y="40" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3655"
width="1"
height="7"
x="21"
y="32" />
<path
id="path3657"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 25.5,32 A 1.5,3.5 0 0 0 24,35.5 1.5,3.5 0 0 0 25.5,39 1.5,3.5 0 0 0 27,35.5 1.5,3.5 0 0 0 25.5,32 Z m -0.002,1 A 0.5,2.5 0 0 1 25.5,33 0.5,2.5 0 0 1 26,35.5 0.5,2.5 0 0 1 25.5,38 0.5,2.5 0 0 1 25,35.5 0.5,2.5 0 0 1 25.498,33 Z" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3659"
width="1"
height="7"
x="29"
y="32" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3663"
width="1"
height="7"
x="37"
y="32" />
<path
id="path3665"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 41.5,32 A 1.5,3.5 0 0 0 40,35.5 1.5,3.5 0 0 0 41.5,39 1.5,3.5 0 0 0 43,35.5 1.5,3.5 0 0 0 41.5,32 Z m -0.002,1 A 0.5,2.5 0 0 1 41.5,33 0.5,2.5 0 0 1 42,35.5 0.5,2.5 0 0 1 41.5,38 0.5,2.5 0 0 1 41,35.5 0.5,2.5 0 0 1 41.498,33 Z" />
<path
id="path3669"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 49.5,32 A 1.5,3.5 0 0 0 48,35.5 1.5,3.5 0 0 0 49.5,39 1.5,3.5 0 0 0 51,35.5 1.5,3.5 0 0 0 49.5,32 Z m -0.002,1 A 0.5,2.5 0 0 1 49.5,33 0.5,2.5 0 0 1 50,35.5 0.5,2.5 0 0 1 49.5,38 0.5,2.5 0 0 1 49,35.5 0.5,2.5 0 0 1 49.498,33 Z" />
<path
id="path3673"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 57.5,32 A 1.5,3.5 0 0 0 56,35.5 1.5,3.5 0 0 0 57.5,39 1.5,3.5 0 0 0 59,35.5 1.5,3.5 0 0 0 57.5,32 Z m -0.002,1 A 0.5,2.5 0 0 1 57.5,33 0.5,2.5 0 0 1 58,35.5 0.5,2.5 0 0 1 57.5,38 0.5,2.5 0 0 1 57,35.5 0.5,2.5 0 0 1 57.498,33 Z" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3675"
width="1"
height="7"
x="61"
y="32" />
<path
id="path3677"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 65.5,32 A 1.5,3.5 0 0 0 64,35.5 1.5,3.5 0 0 0 65.5,39 1.5,3.5 0 0 0 67,35.5 1.5,3.5 0 0 0 65.5,32 Z m -0.002,1 A 0.5,2.5 0 0 1 65.5,33 0.5,2.5 0 0 1 66,35.5 0.5,2.5 0 0 1 65.5,38 0.5,2.5 0 0 1 65,35.5 0.5,2.5 0 0 1 65.498,33 Z" />
<path
id="path3681"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 13.5,24 A 1.5,3.5 0 0 0 12,27.5 1.5,3.5 0 0 0 13.5,31 1.5,3.5 0 0 0 15,27.5 1.5,3.5 0 0 0 13.5,24 Z m -0.002,1 A 0.5,2.5 0 0 1 13.5,25 0.5,2.5 0 0 1 14,27.5 0.5,2.5 0 0 1 13.5,30 0.5,2.5 0 0 1 13,27.5 0.5,2.5 0 0 1 13.498047,25 Z" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3683"
width="1"
height="7"
x="17"
y="24" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3687"
width="1"
height="7"
x="25"
y="24" />
<path
id="path3689"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 29.5,24 A 1.5,3.5 0 0 0 28,27.5 1.5,3.5 0 0 0 29.5,31 1.5,3.5 0 0 0 31,27.5 1.5,3.5 0 0 0 29.5,24 Z m -0.002,1 A 0.5,2.5 0 0 1 29.5,25 0.5,2.5 0 0 1 30,27.5 0.5,2.5 0 0 1 29.5,30 0.5,2.5 0 0 1 29,27.5 0.5,2.5 0 0 1 29.498,25 Z" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3691"
width="1"
height="7"
x="33"
y="24" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3695"
width="1"
height="7"
x="41"
y="24" />
<path
id="path3697"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 45.5,24 A 1.5,3.5 0 0 0 44,27.5 1.5,3.5 0 0 0 45.5,31 1.5,3.5 0 0 0 47,27.5 1.5,3.5 0 0 0 45.5,24 Z m -0.002,1 A 0.5,2.5 0 0 1 45.5,25 0.5,2.5 0 0 1 46,27.5 0.5,2.5 0 0 1 45.5,30 0.5,2.5 0 0 1 45,27.5 0.5,2.5 0 0 1 45.498,25 Z" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3699"
width="1"
height="7"
x="49"
y="24" />
<path
id="path3705"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 61.5,24 A 1.5,3.5 0 0 0 60,27.5 1.5,3.5 0 0 0 61.5,31 1.5,3.5 0 0 0 63,27.5 1.5,3.5 0 0 0 61.5,24 Z m -0.002,1 A 0.5,2.5 0 0 1 61.5,25 0.5,2.5 0 0 1 62,27.5 0.5,2.5 0 0 1 61.5,30 0.5,2.5 0 0 1 61,27.5 0.5,2.5 0 0 1 61.498,25 Z" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3707"
width="1"
height="7"
x="65"
y="24" />
<path
id="path3709"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 69.5,24 A 1.5,3.5 0 0 0 68,27.5 1.5,3.5 0 0 0 69.5,31 1.5,3.5 0 0 0 71,27.5 1.5,3.5 0 0 0 69.5,24 Z m -0.002,1 A 0.5,2.5 0 0 1 69.5,25 0.5,2.5 0 0 1 70,27.5 0.5,2.5 0 0 1 69.5,30 0.5,2.5 0 0 1 69,27.5 0.5,2.5 0 0 1 69.498,25 Z" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3715"
width="1"
height="7"
x="13"
y="16" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3723"
width="1"
height="7"
x="29"
y="16" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3727"
width="1"
height="7"
x="37"
y="16" />
<path
id="path3729"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 41.5,16 A 1.5,3.5 0 0 0 40,19.5 1.5,3.5 0 0 0 41.5,23 1.5,3.5 0 0 0 43,19.5 1.5,3.5 0 0 0 41.5,16 Z m -0.002,1 A 0.5,2.5 0 0 1 41.5,17 0.5,2.5 0 0 1 42,19.5 0.5,2.5 0 0 1 41.5,22 0.5,2.5 0 0 1 41,19.5 0.5,2.5 0 0 1 41.498,17 Z" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3731"
width="1"
height="7"
x="45"
y="16" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3735"
width="1"
height="7"
x="53"
y="16" />
<path
id="path3741"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 65.5,16 A 1.5,3.5 0 0 0 64,19.5 1.5,3.5 0 0 0 65.5,23 1.5,3.5 0 0 0 67,19.5 1.5,3.5 0 0 0 65.5,16 Z m -0.002,1 A 0.5,2.5 0 0 1 65.5,17 0.5,2.5 0 0 1 66,19.5 0.5,2.5 0 0 1 65.5,22 0.5,2.5 0 0 1 65,19.5 0.5,2.5 0 0 1 65.498,17 Z" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3743"
width="1"
height="7"
x="69"
y="16" />
<path
id="path3745"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 13.5,8 A 1.5,3.5 0 0 0 12,11.5 1.5,3.5 0 0 0 13.5,15 1.5,3.5 0 0 0 15,11.5 1.5,3.5 0 0 0 13.5,8 Z M 13.498,9 A 0.5,2.5 0 0 1 13.5,9 0.5,2.5 0 0 1 14,11.5 0.5,2.5 0 0 1 13.5,14 0.5,2.5 0 0 1 13,11.5 0.5,2.5 0 0 1 13.498047,9 Z" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3747"
width="1"
height="7"
x="17"
y="8" />
<path
id="path3753"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 29.5,8 A 1.5,3.5 0 0 0 28,11.5 1.5,3.5 0 0 0 29.5,15 1.5,3.5 0 0 0 31,11.5 1.5,3.5 0 0 0 29.5,8 Z M 29.498,9 A 0.5,2.5 0 0 1 29.5,9 0.5,2.5 0 0 1 30,11.5 0.5,2.5 0 0 1 29.5,14 0.5,2.5 0 0 1 29,11.5 0.5,2.5 0 0 1 29.498,9 Z" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3759"
width="1"
height="7"
x="41"
y="8" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3763"
width="1"
height="7"
x="49"
y="8" />
<path
id="path3765"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 53.5,8 A 1.5,3.5 0 0 0 52,11.5 1.5,3.5 0 0 0 53.5,15 1.5,3.5 0 0 0 55,11.5 1.5,3.5 0 0 0 53.5,8 Z M 53.498,9 A 0.5,2.5 0 0 1 53.5,9 0.5,2.5 0 0 1 54,11.5 0.5,2.5 0 0 1 53.5,14 0.5,2.5 0 0 1 53,11.5 0.5,2.5 0 0 1 53.498,9 Z" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3767"
width="1"
height="7"
x="57"
y="8" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3771"
width="1"
height="7"
x="65"
y="8" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3809"
width="1"
height="7"
x="17"
y="32" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3811"
width="1"
height="7"
x="21"
y="40" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3813"
width="1"
height="7"
x="61"
y="40" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3815"
width="1"
height="7"
x="53"
y="24" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3817"
width="1"
height="7"
x="61"
y="8" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3819"
width="1"
height="7"
x="45"
y="8" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3821"
width="1"
height="7"
x="17"
y="16" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3823"
width="1"
height="7"
x="69"
y="8" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3825"
width="1"
height="7"
x="21"
y="16" />
<path
id="path3827"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 21.5,8 A 1.5,3.5 0 0 0 20,11.5 1.5,3.5 0 0 0 21.5,15 1.5,3.5 0 0 0 23,11.5 1.5,3.5 0 0 0 21.5,8 Z M 21.498,9 A 0.5,2.5 0 0 1 21.5,9 0.5,2.5 0 0 1 22,11.5 0.5,2.5 0 0 1 21.5,14 0.5,2.5 0 0 1 21,11.5 0.5,2.5 0 0 1 21.498,9 Z" />
<path
id="path3829"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 25.5,8 A 1.5,3.5 0 0 0 24,11.5 1.5,3.5 0 0 0 25.5,15 1.5,3.5 0 0 0 27,11.5 1.5,3.5 0 0 0 25.5,8 Z M 25.498,9 A 0.5,2.5 0 0 1 25.5,9 0.5,2.5 0 0 1 26,11.5 0.5,2.5 0 0 1 25.5,14 0.5,2.5 0 0 1 25,11.5 0.5,2.5 0 0 1 25.498,9 Z" />
<path
id="path3831"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 33.5,8 A 1.5,3.5 0 0 0 32,11.5 1.5,3.5 0 0 0 33.5,15 1.5,3.5 0 0 0 35,11.5 1.5,3.5 0 0 0 33.5,8 Z M 33.498,9 A 0.5,2.5 0 0 1 33.5,9 0.5,2.5 0 0 1 34,11.5 0.5,2.5 0 0 1 33.5,14 0.5,2.5 0 0 1 33,11.5 0.5,2.5 0 0 1 33.498,9 Z" />
<path
id="path3833"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 37.5,8 A 1.5,3.5 0 0 0 36,11.5 1.5,3.5 0 0 0 37.5,15 1.5,3.5 0 0 0 39,11.5 1.5,3.5 0 0 0 37.5,8 Z M 37.498,9 A 0.5,2.5 0 0 1 37.5,9 0.5,2.5 0 0 1 38,11.5 0.5,2.5 0 0 1 37.5,14 0.5,2.5 0 0 1 37,11.5 0.5,2.5 0 0 1 37.498,9 Z" />
<path
id="path3835"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 25.5,16 A 1.5,3.5 0 0 0 24,19.5 1.5,3.5 0 0 0 25.5,23 1.5,3.5 0 0 0 27,19.5 1.5,3.5 0 0 0 25.5,16 Z m -0.002,1 A 0.5,2.5 0 0 1 25.5,17 0.5,2.5 0 0 1 26,19.5 0.5,2.5 0 0 1 25.5,22 0.5,2.5 0 0 1 25,19.5 0.5,2.5 0 0 1 25.498,17 Z" />
<path
id="path3837"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 33.5,16 A 1.5,3.5 0 0 0 32,19.5 1.5,3.5 0 0 0 33.5,23 1.5,3.5 0 0 0 35,19.5 1.5,3.5 0 0 0 33.5,16 Z m -0.002,1 A 0.5,2.5 0 0 1 33.5,17 0.5,2.5 0 0 1 34,19.5 0.5,2.5 0 0 1 33.5,22 0.5,2.5 0 0 1 33,19.5 0.5,2.5 0 0 1 33.498,17 Z" />
<path
id="path3839"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 49.5,16 A 1.5,3.5 0 0 0 48,19.5 1.5,3.5 0 0 0 49.5,23 1.5,3.5 0 0 0 51,19.5 1.5,3.5 0 0 0 49.5,16 Z m -0.002,1 A 0.5,2.5 0 0 1 49.5,17 0.5,2.5 0 0 1 50,19.5 0.5,2.5 0 0 1 49.5,22 0.5,2.5 0 0 1 49,19.5 0.5,2.5 0 0 1 49.498,17 Z" />
<path
id="path3841"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 57.5,16 A 1.5,3.5 0 0 0 56,19.5 1.5,3.5 0 0 0 57.5,23 1.5,3.5 0 0 0 59,19.5 1.5,3.5 0 0 0 57.5,16 Z m -0.002,1 A 0.5,2.5 0 0 1 57.5,17 0.5,2.5 0 0 1 58,19.5 0.5,2.5 0 0 1 57.5,22 0.5,2.5 0 0 1 57,19.5 0.5,2.5 0 0 1 57.498,17 Z" />
<path
id="path3843"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 61.5,16 A 1.5,3.5 0 0 0 60,19.5 1.5,3.5 0 0 0 61.5,23 1.5,3.5 0 0 0 63,19.5 1.5,3.5 0 0 0 61.5,16 Z m -0.002,1 A 0.5,2.5 0 0 1 61.5,17 0.5,2.5 0 0 1 62,19.5 0.5,2.5 0 0 1 61.5,22 0.5,2.5 0 0 1 61,19.5 0.5,2.5 0 0 1 61.498,17 Z" />
<path
id="path3845"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 57.5,24 A 1.5,3.5 0 0 0 56,27.5 1.5,3.5 0 0 0 57.5,31 1.5,3.5 0 0 0 59,27.5 1.5,3.5 0 0 0 57.5,24 Z m -0.002,1 A 0.5,2.5 0 0 1 57.5,25 0.5,2.5 0 0 1 58,27.5 0.5,2.5 0 0 1 57.5,30 0.5,2.5 0 0 1 57,27.5 0.5,2.5 0 0 1 57.498,25 Z" />
<path
id="path3847"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 37.5,24 A 1.5,3.5 0 0 0 36,27.5 1.5,3.5 0 0 0 37.5,31 1.5,3.5 0 0 0 39,27.5 1.5,3.5 0 0 0 37.5,24 Z m -0.002,1 A 0.5,2.5 0 0 1 37.5,25 0.5,2.5 0 0 1 38,27.5 0.5,2.5 0 0 1 37.5,30 0.5,2.5 0 0 1 37,27.5 0.5,2.5 0 0 1 37.498,25 Z" />
<path
id="path3849"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 21.5,24 A 1.5,3.5 0 0 0 20,27.5 1.5,3.5 0 0 0 21.5,31 1.5,3.5 0 0 0 23,27.5 1.5,3.5 0 0 0 21.5,24 Z m -0.002,1 A 0.5,2.5 0 0 1 21.5,25 0.5,2.5 0 0 1 22,27.5 0.5,2.5 0 0 1 21.5,30 0.5,2.5 0 0 1 21,27.5 0.5,2.5 0 0 1 21.498,25 Z" />
<path
id="path3851"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 13.5,32 A 1.5,3.5 0 0 0 12,35.5 1.5,3.5 0 0 0 13.5,39 1.5,3.5 0 0 0 15,35.5 1.5,3.5 0 0 0 13.5,32 Z m -0.002,1 A 0.5,2.5 0 0 1 13.5,33 0.5,2.5 0 0 1 14,35.5 0.5,2.5 0 0 1 13.5,38 0.5,2.5 0 0 1 13,35.5 0.5,2.5 0 0 1 13.498,33 Z" />
<path
id="path3853"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 25.5,40 A 1.5,3.5 0 0 0 24,43.5 1.5,3.5 0 0 0 25.5,47 1.5,3.5 0 0 0 27,43.5 1.5,3.5 0 0 0 25.5,40 Z m -0.002,1 A 0.5,2.5 0 0 1 25.5,41 0.5,2.5 0 0 1 26,43.5 0.5,2.5 0 0 1 25.5,46 0.5,2.5 0 0 1 25,43.5 0.5,2.5 0 0 1 25.498,41 Z" />
<path
id="path3855"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 33.5,32 A 1.5,3.5 0 0 0 32,35.5 1.5,3.5 0 0 0 33.5,39 1.5,3.5 0 0 0 35,35.5 1.5,3.5 0 0 0 33.5,32 Z m -0.002,1 A 0.5,2.5 0 0 1 33.5,33 0.5,2.5 0 0 1 34,35.5 0.5,2.5 0 0 1 33.5,38 0.5,2.5 0 0 1 33,35.5 0.5,2.5 0 0 1 33.498,33 Z" />
<path
id="path3857"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 37.5,40 A 1.5,3.5 0 0 0 36,43.5 1.5,3.5 0 0 0 37.5,47 1.5,3.5 0 0 0 39,43.5 1.5,3.5 0 0 0 37.5,40 Z m -0.002,1 A 0.5,2.5 0 0 1 37.5,41 0.5,2.5 0 0 1 38,43.5 0.5,2.5 0 0 1 37.5,46 0.5,2.5 0 0 1 37,43.5 0.5,2.5 0 0 1 37.498,41 Z" />
<path
id="path3859"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 49.5,40 A 1.5,3.5 0 0 0 48,43.5 1.5,3.5 0 0 0 49.5,47 1.5,3.5 0 0 0 51,43.5 1.5,3.5 0 0 0 49.5,40 Z m -0.002,1 A 0.5,2.5 0 0 1 49.5,41 0.5,2.5 0 0 1 50,43.5 0.5,2.5 0 0 1 49.5,46 0.5,2.5 0 0 1 49,43.5 0.5,2.5 0 0 1 49.498,41 Z" />
<path
id="path3861"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 45.5,32 A 1.5,3.5 0 0 0 44,35.5 1.5,3.5 0 0 0 45.5,39 1.5,3.5 0 0 0 47,35.5 1.5,3.5 0 0 0 45.5,32 Z m -0.002,1 A 0.5,2.5 0 0 1 45.5,33 0.5,2.5 0 0 1 46,35.5 0.5,2.5 0 0 1 45.5,38 0.5,2.5 0 0 1 45,35.5 0.5,2.5 0 0 1 45.498,33 Z" />
<path
id="path3863"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 53.5,32 A 1.5,3.5 0 0 0 52,35.5 1.5,3.5 0 0 0 53.5,39 1.5,3.5 0 0 0 55,35.5 1.5,3.5 0 0 0 53.5,32 Z m -0.002,1 A 0.5,2.5 0 0 1 53.5,33 0.5,2.5 0 0 1 54,35.5 0.5,2.5 0 0 1 53.5,38 0.5,2.5 0 0 1 53,35.5 0.5,2.5 0 0 1 53.498,33 Z" />
<path
id="path3865"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 57.5,40 A 1.5,3.5 0 0 0 56,43.5 1.5,3.5 0 0 0 57.5,47 1.5,3.5 0 0 0 59,43.5 1.5,3.5 0 0 0 57.5,40 Z m -0.002,1 A 0.5,2.5 0 0 1 57.5,41 0.5,2.5 0 0 1 58,43.5 0.5,2.5 0 0 1 57.5,46 0.5,2.5 0 0 1 57,43.5 0.5,2.5 0 0 1 57.498,41 Z" />
<path
id="path3867"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 69.5,40 A 1.5,3.5 0 0 0 68,43.5 1.5,3.5 0 0 0 69.5,47 1.5,3.5 0 0 0 71,43.5 1.5,3.5 0 0 0 69.5,40 Z m -0.002,1 A 0.5,2.5 0 0 1 69.5,41 0.5,2.5 0 0 1 70,43.5 0.5,2.5 0 0 1 69.5,46 0.5,2.5 0 0 1 69,43.5 0.5,2.5 0 0 1 69.498,41 Z" />
<path
id="path3869"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 69.5,32 A 1.5,3.5 0 0 0 68,35.5 1.5,3.5 0 0 0 69.5,39 1.5,3.5 0 0 0 71,35.5 1.5,3.5 0 0 0 69.5,32 Z m -0.002,1 A 0.5,2.5 0 0 1 69.5,33 0.5,2.5 0 0 1 70,35.5 0.5,2.5 0 0 1 69.5,38 0.5,2.5 0 0 1 69,35.5 0.5,2.5 0 0 1 69.498,33 Z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 33 KiB

View File

@ -0,0 +1,136 @@
<?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"
version="1.1"
id="svg2"
width="80"
height="80"
viewBox="0 0 80 80"
sodipodi:docname="efm-pdf.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/efm-pdf-040.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48">
<metadata
id="metadata8">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6">
<rect
id="rect1822"
height="22.426638"
width="47.970909"
y="8"
x="16" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect878" />
<rect
x="20"
y="50"
width="40"
height="30"
id="rect872" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect864" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect858" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect852" />
</defs>
<sodipodi:namedview
inkscape:showpageshadow="false"
inkscape:document-rotation="0"
pagecolor="#404040"
bordercolor="#ff66ac"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1756"
inkscape:window-height="1372"
id="namedview4"
showgrid="true"
inkscape:zoom="13.05"
inkscape:cx="40"
inkscape:cy="40"
inkscape:window-x="804"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="g10"
showguides="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-others="false"
inkscape:snap-nodes="true"
borderlayer="true">
<inkscape:grid
type="xygrid"
id="grid837"
empspacing="4" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g10">
<path
sodipodi:nodetypes="cccccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 68,4 V 76 H 12 V 25 L 34,4 Z"
id="path27896" />
<path
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 37,30 34,4 C 33,10 19,24 12,25 Z"
id="path27900"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 H 34 V 4 Z"
id="path27898" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1758"
width="1"
height="7"
x="81"
y="40" />
<path
style="fill:none;fill-opacity:0.33;stroke:#ca3a1b;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 22,68 C 25,77 49,30 39,30 29,30 52,65 60,57 68,49 19,59 22,68 Z"
id="path2255"
sodipodi:nodetypes="zzzz" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.9 KiB

View File

@ -0,0 +1,144 @@
<?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"
version="1.1"
id="svg2"
width="80"
height="80"
viewBox="0 0 80 80"
sodipodi:docname="efm-php.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/efm-php-040.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48">
<metadata
id="metadata8">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6">
<rect
id="rect1822"
height="22.426638"
width="47.970909"
y="8"
x="16" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect878" />
<rect
x="20"
y="50"
width="40"
height="30"
id="rect872" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect864" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect858" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect852" />
</defs>
<sodipodi:namedview
inkscape:showpageshadow="false"
inkscape:document-rotation="0"
pagecolor="#404040"
bordercolor="#ff66ac"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1756"
inkscape:window-height="1372"
id="namedview4"
showgrid="true"
inkscape:zoom="13.05"
inkscape:cx="40"
inkscape:cy="40.153257"
inkscape:window-x="804"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="g10"
showguides="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-others="false"
inkscape:snap-nodes="true"
borderlayer="true">
<inkscape:grid
type="xygrid"
id="grid837"
empspacing="4" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g10">
<path
sodipodi:nodetypes="cccccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 68,4 V 76 H 12 V 25 L 34,4 Z"
id="path27896" />
<text
transform="translate(0.02909091,19.573362)"
style="font-size:7px;line-height:6.87873px;font-family:'Arial Black';-inkscape-font-specification:'Arial Black, ';letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect1822);fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
id="text1820"
xml:space="preserve"><tspan
x="16"
y="13.348456"><tspan
style="font-style:normal;font-variant:normal;font-weight:800;font-stretch:extra-condensed;font-size:7px;font-family:'Input Mono Compressed';-inkscape-font-specification:'Input Mono Compressed Ultra-Bold Extra-Condensed';fill:#000000;fill-opacity:1;stroke:none">echo &quot;Hi&quot;;</tspan></tspan></text>
<path
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 37,30 34,4 C 33,10 19,24 12,25 Z"
id="path27900"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 H 34 V 4 Z"
id="path27898" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1758"
width="1"
height="7"
x="81"
y="40" />
<path
id="path3490"
style="fill:#839ac7;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 50.404297,37.726562 C 48.214355,37.713867 46.4375,39.1875 44,40 c -4,0 -11,-3 -12,0 -1,3 -1,31 0,32 1,1 3.230309,0.353938 5,0 1.769691,-0.353938 1.907197,-0.03083 1.907197,-0.973637 0,-0.942809 0.424593,-1.289915 -0.518216,-1.289915 -0.942809,0 -1.751973,0.578026 -2.694782,0.578026 C 34.75139,70.314474 34.635191,70.553663 35,68 c 0.364809,-2.553663 1.666667,-8 3,-12 4,0 11,2 14,0 3,-2 4,-4.714233 4,-8 0,-3.285767 -1,-9 -4,-10 -0.5625,-0.1875 -1.090332,-0.270508 -1.595703,-0.273438 z M 36.5,44 C 37.328427,44 38,44.671573 38,45.5 38,46.328427 37.328427,47 36.5,47 35.671573,47 35,46.328427 35,45.5 35,44.671573 35.671573,44 36.5,44 Z"
sodipodi:nodetypes="scsszsssscsssssssss" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 10 KiB

View File

@ -0,0 +1,277 @@
<?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"
version="1.1"
id="svg2"
width="80"
height="80"
viewBox="0 0 80 80"
sodipodi:docname="efm-present.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/efm-present-040.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48">
<metadata
id="metadata8">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6">
<rect
x="20"
y="28"
width="40"
height="40"
id="rect2474" />
<rect
x="20"
y="28"
width="40"
height="40"
id="rect2468" />
<rect
x="20"
y="28"
width="40"
height="40"
id="rect2458" />
<rect
x="20"
y="28"
width="40"
height="40"
id="rect2450" />
<rect
x="16"
y="72"
width="48"
height="44"
id="rect2444" />
<rect
id="rect1822"
height="22.426638"
width="47.970909"
y="8"
x="16" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect878" />
<rect
x="20"
y="50"
width="40"
height="30"
id="rect872" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect864" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect858" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect852" />
</defs>
<sodipodi:namedview
inkscape:showpageshadow="false"
inkscape:document-rotation="0"
pagecolor="#404040"
bordercolor="#ff66ac"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1756"
inkscape:window-height="1372"
id="namedview4"
showgrid="true"
inkscape:zoom="13.05"
inkscape:cx="40"
inkscape:cy="40"
inkscape:window-x="804"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="g10"
showguides="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-others="false"
inkscape:snap-nodes="true"
borderlayer="true">
<inkscape:grid
type="xygrid"
id="grid837"
empspacing="4" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g10">
<path
sodipodi:nodetypes="cccccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 68,4 V 76 H 12 V 25 L 34,4 Z"
id="path27896" />
<path
style="fill:#ffc23b;fill-opacity:1;stroke:#a05e2d;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;stroke-linecap:round;stroke-linejoin:round"
d="M 40,55 32,68"
id="path3293" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1758"
width="1"
height="7"
x="81"
y="40" />
<text
xml:space="preserve"
id="text2442"
style="fill:none;stroke:black;stroke-opacity:1;stroke-width:1px;stroke-linejoin:miter;stroke-linecap:butt;font-family:'Times New Roman';font-size:8px;line-height:25px;letter-spacing:0px;word-spacing:0px;-inkscape-font-specification:'Times New Roman, ';white-space:pre;shape-inside:url(#rect2444);" />
<text
xml:space="preserve"
id="text2456"
style="font-size:32px;line-height:100px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect2458);fill:#ffffff;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:0.2;" />
<text
xml:space="preserve"
style="font-size:8px;line-height:25px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="20"
y="32"
id="text2464"><tspan
sodipodi:role="line"
id="tspan2462"
x="20"
y="32"></tspan></text>
<text
xml:space="preserve"
id="text2466"
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:75px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Italic';letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect2468);fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;" />
<path
style="fill:#ffc23b;fill-opacity:1;stroke:#a05e2d;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 40,55 8,13"
id="path3295" />
<path
style="fill:#ffc23b;fill-opacity:1;stroke:#a05e2d;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="M 40,55 V 68"
id="path3297"
sodipodi:nodetypes="cc" />
<rect
style="fill:#ffc23b;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3285"
width="44"
height="2"
x="18"
y="28" />
<rect
style="fill:#ffc23b;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3287"
width="44"
height="2"
x="18"
y="54" />
<rect
style="fill:#c0c0c0;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3289"
width="40"
height="24"
x="20"
y="30" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3291"
width="36"
height="20"
x="22"
y="32" />
<path
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 37,30 34,4 C 33,10 19,24 12,25 Z"
id="path27900"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 H 34 V 4 Z"
id="path27898" />
<circle
style="fill:#6db0cd;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3299"
cx="30"
cy="42"
r="6" />
<rect
style="fill:#a56dcd;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3301"
width="4"
height="4"
x="40"
y="46" />
<rect
style="fill:#a56dcd;fill-opacity:1;stroke:none;stroke-width:2.59808;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3303"
width="4"
height="6"
x="46"
y="44" />
<rect
style="fill:#a56dcd;fill-opacity:1;stroke:none;stroke-width:2.48747;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3305"
width="4"
height="11"
x="52"
y="39" />
<rect
style="fill:#aacd6d;fill-opacity:1;stroke:none;stroke-width:1.67705;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3307"
width="4"
height="5"
x="52"
y="34" />
<rect
style="fill:#aacd6d;fill-opacity:1;stroke:none;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3309"
width="4"
height="2"
x="46"
y="42" />
<path
style="fill:#e9bfd7;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="circle3311"
sodipodi:type="arc"
sodipodi:cx="30"
sodipodi:cy="42"
sodipodi:rx="6"
sodipodi:ry="6"
sodipodi:start="0"
sodipodi:end="2.1531434"
sodipodi:arc-type="slice"
d="m 36,42 a 6,6 0 0 1 -3.153905,5.282021 6,6 0 0 1 -6.146009,-0.270976 L 30,42 Z" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.7 KiB

View File

@ -0,0 +1,255 @@
<?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"
version="1.1"
id="svg2"
width="80"
height="80"
viewBox="0 0 80 80"
sodipodi:docname="efm-ps.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/efm-ps-040.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48">
<metadata
id="metadata8">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6">
<rect
id="rect1822"
height="22.426638"
width="47.970909"
y="8"
x="16" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect878" />
<rect
x="20"
y="50"
width="40"
height="30"
id="rect872" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect864" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect858" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect852" />
</defs>
<sodipodi:namedview
inkscape:showpageshadow="false"
inkscape:document-rotation="0"
pagecolor="#404040"
bordercolor="#ff66ac"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1756"
inkscape:window-height="1372"
id="namedview4"
showgrid="true"
inkscape:zoom="13.05"
inkscape:cx="40"
inkscape:cy="40"
inkscape:window-x="804"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="g10"
showguides="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-others="false"
inkscape:snap-nodes="true"
borderlayer="true">
<inkscape:grid
type="xygrid"
id="grid837"
empspacing="4" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g10">
<path
sodipodi:nodetypes="cccccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 68,4 V 76 H 12 V 25 L 34,4 Z"
id="path27896" />
<ellipse
style="fill:#000000;fill-opacity:0.33;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="ellipse2163"
cx="53"
cy="43"
rx="4"
ry="6" />
<path
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 37,30 34,4 C 33,10 19,24 12,25 Z"
id="path27900"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 H 34 V 4 Z"
id="path27898" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1758"
width="1"
height="7"
x="81"
y="40" />
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 21,69 V 33 h 12 c 4,0 8,6 8,10 0,4 -4,10 -8,10 h -8 v 16 z"
id="path2129"
sodipodi:nodetypes="cccccccc" />
<ellipse
style="fill:#000000;fill-opacity:0.33000004;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path2159"
cx="32"
cy="43"
rx="4"
ry="6" />
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 25,37 v 12 h 6 c 3,0 5,-3 5,-6 0,-3 -2,-6 -5,-6 z"
id="path2131"
sodipodi:nodetypes="cccccc" />
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 45,69 v -4 h 8 c 3,0 4,-3 4,-6 0,-3 -1,-6 -4,-6 h -2 c -4,0 -6,-6 -6,-10 0,-4 2,-10 6,-10 h 10 v 4 h -8 c -3,0 -4,3 -4,6 0,3 1,6 4,6 h 2 c 4,0 6,6 6,10 0,3 -2,10 -6,10 z"
id="path2133"
sodipodi:nodetypes="ccccccccccccccccc" />
<ellipse
style="fill:#000000;fill-opacity:0.33;stroke:none;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="ellipse2165"
cx="53"
cy="59"
rx="4"
ry="6" />
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 21,33 V 28"
id="path2135" />
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 14,33 h 7"
id="path2137" />
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 21,69 v 3"
id="path2139" />
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 25,74 v -5 h 7"
id="path2141" />
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 21,69 H 16"
id="path2143" />
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 45,65 H 38"
id="path2145" />
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 45,69 H 41"
id="path2147" />
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 45,65 V 60"
id="path2149" />
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 45,69 v 5"
id="path2151" />
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 61,37 v 3"
id="path2153" />
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 61,37 h 5"
id="path2155" />
<path
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 64,33 H 61 V 24"
id="path2157" />
<path
style="fill:none;fill-opacity:0.33;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:2, 2;stroke-dashoffset:0;stroke-opacity:1"
id="ellipse2161"
sodipodi:type="arc"
sodipodi:cx="32"
sodipodi:cy="43"
sodipodi:rx="4"
sodipodi:ry="6"
sodipodi:start="1.5867995"
sodipodi:end="4.6931105"
sodipodi:open="true"
sodipodi:arc-type="arc"
d="m 31.93599,48.999232 a 4,6 0 0 1 -3.935985,-5.989406 4,6 0 0 1 3.922886,-6.008711" />
<path
style="fill:none;fill-opacity:0.33;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:2, 2;stroke-dashoffset:0;stroke-opacity:1"
id="path2167"
sodipodi:type="arc"
sodipodi:cx="53.07711"
sodipodi:cy="58.998886"
sodipodi:rx="4"
sodipodi:ry="6"
sodipodi:start="1.5867995"
sodipodi:end="4.6931105"
sodipodi:open="true"
sodipodi:arc-type="arc"
d="m 53.0131,64.998118 a 4,6 0 0 1 -3.935984,-5.989406 4,6 0 0 1 3.922885,-6.008711" />
<path
style="fill:none;fill-opacity:0.33;stroke:#000000;stroke-width:2;stroke-miterlimit:4;stroke-dasharray:2, 2;stroke-dashoffset:0;stroke-opacity:1"
id="path2169"
sodipodi:type="arc"
sodipodi:cx="-52.92289"
sodipodi:cy="42.998886"
sodipodi:rx="4"
sodipodi:ry="6"
sodipodi:start="1.5867995"
sodipodi:end="4.6931105"
sodipodi:open="true"
sodipodi:arc-type="arc"
d="m -52.9869,48.998118 a 4,6 0 0 1 -3.935984,-5.989406 4,6 0 0 1 3.922885,-6.008711"
transform="scale(-1,1)" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 9.0 KiB

View File

@ -0,0 +1,145 @@
<?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"
version="1.1"
id="svg2"
width="80"
height="80"
viewBox="0 0 80 80"
sodipodi:docname="efm-py.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/efm-py-040.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48">
<metadata
id="metadata8">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6">
<rect
id="rect1822"
height="22.426638"
width="47.970909"
y="8"
x="16" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect878" />
<rect
x="20"
y="50"
width="40"
height="30"
id="rect872" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect864" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect858" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect852" />
</defs>
<sodipodi:namedview
inkscape:showpageshadow="false"
inkscape:document-rotation="0"
pagecolor="#404040"
bordercolor="#ff66ac"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview4"
showgrid="true"
inkscape:zoom="10.4875"
inkscape:cx="39.42789"
inkscape:cy="40"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="g10"
showguides="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-others="false"
inkscape:snap-nodes="true"
borderlayer="true">
<inkscape:grid
type="xygrid"
id="grid837"
empspacing="4" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g10">
<path
sodipodi:nodetypes="cccccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 68,4 V 76 H 12 V 25 L 34,4 Z"
id="path27896" />
<text
transform="translate(0.02909091,19.573362)"
style="font-size:7px;line-height:6.87873px;font-family:'Arial Black';-inkscape-font-specification:'Arial Black, ';letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect1822);fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
id="text1820"
xml:space="preserve"><tspan
x="16"
y="13.348456"><tspan
style="font-style:normal;font-variant:normal;font-weight:800;font-stretch:extra-condensed;font-size:7px;font-family:'Input Mono Compressed';-inkscape-font-specification:'Input Mono Compressed Ultra-Bold Extra-Condensed';fill:#000000;fill-opacity:1;stroke:none">print(&quot;Hi&quot;)</tspan></tspan></text>
<path
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 37,30 34,4 C 33,10 19,24 12,25 Z"
id="path27900"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 H 34 V 4 Z"
id="path27898" />
<g
id="g1894"
transform="matrix(0.31039466,0,0,0.31039466,8.7775049,17.060842)"
style="fill:#000000;fill-opacity:0.5">
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#6989b1;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none"
d="M 99.75,67.46875 C 71.718268,67.468752 73.46875,79.625 73.46875,79.625 L 73.5,92.21875 h 26.75 V 96 H 62.875 c 0,0 -17.9375,-2.034276 -17.9375,26.25 -2e-6,28.28427 15.65625,27.28125 15.65625,27.28125 h 9.34375 v -13.125 c 0,0 -0.503652,-15.65625 15.40625,-15.65625 15.9099,0 26.53125,0 26.53125,0 0,0 14.90625,0.24096 14.90625,-14.40625 0,-14.647206 0,-24.21875 0,-24.21875 0,-2e-6 2.26318,-14.65625 -27.03125,-14.65625 z M 85,75.9375 c 2.661429,-2e-6 4.8125,2.151071 4.8125,4.8125 2e-6,2.661429 -2.151071,4.8125 -4.8125,4.8125 -2.661429,2e-6 -4.8125,-2.151071 -4.8125,-4.8125 -2e-6,-2.661429 2.151071,-4.8125 4.8125,-4.8125 z"
id="path8615" />
<path
id="path8620"
d="m 100.5461,177.31485 c 28.03174,0 26.28125,-12.15625 26.28125,-12.15625 l -0.0312,-12.59375 h -26.75 v -3.78125 h 37.375 c 0,0 17.9375,2.03427 17.9375,-26.25001 10e-6,-28.284267 -15.65625,-27.281247 -15.65625,-27.281247 h -9.34375 v 13.124997 c 0,0 0.50366,15.65625 -15.40625,15.65625 -15.909902,0 -26.531252,0 -26.531252,0 0,0 -14.90625,-0.24096 -14.90625,14.40626 0,14.6472 0,24.21875 0,24.21875 0,0 -2.26318,14.65625 27.031252,14.65625 z m 14.75,-8.46875 c -2.66143,0 -4.8125,-2.15107 -4.8125,-4.8125 0,-2.66143 2.15107,-4.8125 4.8125,-4.8125 2.66143,0 4.8125,2.15107 4.8125,4.8125 1e-5,2.66143 -2.15107,4.8125 -4.8125,4.8125 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#ffd460;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 6.4 KiB

View File

@ -0,0 +1,142 @@
<?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"
version="1.1"
id="svg2"
width="80"
height="80"
viewBox="0 0 80 80"
sodipodi:docname="efm-pyb.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/efm-pyb-040.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48">
<metadata
id="metadata8">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6">
<rect
id="rect1822"
height="22.426638"
width="47.970909"
y="8"
x="16" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect878" />
<rect
x="20"
y="50"
width="40"
height="30"
id="rect872" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect864" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect858" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect852" />
</defs>
<sodipodi:namedview
inkscape:showpageshadow="false"
inkscape:document-rotation="0"
pagecolor="#404040"
bordercolor="#ff66ac"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1017"
id="namedview4"
showgrid="true"
inkscape:zoom="10.4875"
inkscape:cx="32.371871"
inkscape:cy="40"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="g10"
showguides="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-others="false"
inkscape:snap-nodes="true"
borderlayer="true">
<inkscape:grid
type="xygrid"
id="grid837"
empspacing="4" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g10">
<path
sodipodi:nodetypes="cccccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 68,4 V 76 H 12 V 25 L 34,4 Z"
id="path27896" />
<text
transform="translate(0.02909091,19.573362)"
style="font-size:7px;line-height:6.87873px;font-family:'Arial Black';-inkscape-font-specification:'Arial Black, ';letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect1822);fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
id="text1820"
xml:space="preserve"><tspan
x="16"
y="13.348456"><tspan
style="font-style:normal;font-variant:normal;font-weight:800;font-stretch:extra-condensed;font-size:7px;font-family:'Input Mono Compressed';-inkscape-font-specification:'Input Mono Compressed Ultra-Bold Extra-Condensed';fill:#000000;fill-opacity:1;stroke:none">print(&quot;Hi&quot;)</tspan></tspan></text>
<path
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 37,30 34,4 C 33,10 19,24 12,25 Z"
id="path27900"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 H 34 V 4 Z"
id="path27898" />
<path
id="rect2442"
style="opacity:1;fill:#ffd460;fill-opacity:1;stroke:none;stroke-width:2;stroke-linejoin:round;stroke-opacity:1"
d="M 52,44 V 56 H 40 32 v 16 h 8 8 v -4 -4 h -4 v 4 H 40 V 60 H 56 V 56 44 Z"
sodipodi:nodetypes="ccccccccccccccccc" />
<path
id="rect2442-3"
style="opacity:1;fill:#6989b1;fill-opacity:1;stroke:none;stroke-width:2;stroke-linejoin:round;stroke-opacity:1"
d="m 32,36 v 4 4 h 4 v -4 h 4 v 8 H 24 v 4 12 h 4 V 52 h 12 8 V 40 36 Z"
sodipodi:nodetypes="ccccccccccccccccc" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

View File

@ -0,0 +1,174 @@
<?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"
version="1.1"
id="svg2"
width="80"
height="80"
viewBox="0 0 80 80"
sodipodi:docname="efm-rb.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/efm-rb-040.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48">
<metadata
id="metadata8">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6">
<rect
id="rect1822"
height="22.426638"
width="47.970909"
y="8"
x="16" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect878" />
<rect
x="20"
y="50"
width="40"
height="30"
id="rect872" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect864" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect858" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect852" />
</defs>
<sodipodi:namedview
inkscape:showpageshadow="false"
inkscape:document-rotation="0"
pagecolor="#404040"
bordercolor="#ff66ac"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1756"
inkscape:window-height="1378"
id="namedview4"
showgrid="true"
inkscape:zoom="13.05"
inkscape:cx="40"
inkscape:cy="40"
inkscape:window-x="804"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="g10"
showguides="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-others="false"
inkscape:snap-nodes="true"
borderlayer="true">
<inkscape:grid
type="xygrid"
id="grid837"
empspacing="4" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g10">
<path
sodipodi:nodetypes="cccccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 68,4 V 76 H 12 V 25 L 34,4 Z"
id="path27896" />
<path
style="fill:#b31724;fill-opacity:1;stroke-width:8"
d="M 56,70 29,72 40,38 Z"
id="path946"
sodipodi:nodetypes="cccc" />
<path
style="fill:#c4192a;fill-opacity:1;stroke-width:8"
d="M 32,46 56,70 58,43 Z"
id="path948" />
<ellipse
style="fill:#c9303d;fill-opacity:1;stroke-width:8.09017"
id="path950"
cx="-9.8994913"
cy="66.46804"
rx="23.141016"
ry="10.606298"
transform="rotate(-45.000001)" />
<text
transform="translate(0.02909091,19.573362)"
style="font-size:7px;line-height:6.87873px;font-family:'Arial Black';-inkscape-font-specification:'Arial Black, ';letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect1822);fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
id="text1820"
xml:space="preserve"><tspan
x="16"
y="13.348456"><tspan
style="font-style:normal;font-variant:normal;font-weight:800;font-stretch:extra-condensed;font-size:7px;font-family:'Input Mono Compressed';-inkscape-font-specification:'Input Mono Compressed Ultra-Bold Extra-Condensed';fill:#000000;fill-opacity:1;stroke:none">puts &quot;Hello&quot;</tspan></tspan></text>
<path
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 37,30 34,4 C 33,10 19,24 12,25 Z"
id="path27900"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 H 34 V 4 Z"
id="path27898" />
<path
style="fill:#eb3e4c;fill-opacity:1;stroke-width:8"
d="m 22,54 4,-7 7,-7 8,-4 5,2 1,2 1,5 -4,4 -1,6 -8,2 -5,6 -4,-3 h -3 z"
id="path962" />
<path
style="fill:#f17c86;fill-opacity:1;stroke-width:8"
d="M 22,65 V 54 l 4,6 z"
id="path952" />
<path
style="fill:#f17c86;fill-opacity:1;stroke-width:8"
d="m 26,60 4,12 5,-15 z"
id="path954" />
<path
style="fill:#f17c86;fill-opacity:1;stroke-width:8"
d="M 35,57 48.235,62.235 44,49 Z"
id="path956"
sodipodi:nodetypes="cccc" />
<path
style="fill:#f17c86;fill-opacity:1;stroke-width:8"
d="M 44,49 58,45 47,40 Z"
id="path958" />
<path
style="fill:#f17c86;fill-opacity:1;stroke-width:8"
d="M 47,40 41,36 H 52 Z"
id="path960" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@ -0,0 +1,174 @@
<?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"
version="1.1"
id="svg2"
width="80"
height="80"
viewBox="0 0 80 80"
sodipodi:docname="efm-so.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/efm-so-040.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48">
<metadata
id="metadata8">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6">
<rect
id="rect1822"
height="22.426638"
width="47.970909"
y="8"
x="16" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect878" />
<rect
x="20"
y="50"
width="40"
height="30"
id="rect872" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect864" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect858" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect852" />
</defs>
<sodipodi:namedview
inkscape:showpageshadow="false"
inkscape:document-rotation="0"
pagecolor="#404040"
bordercolor="#ff66ac"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1756"
inkscape:window-height="1372"
id="namedview4"
showgrid="true"
inkscape:zoom="13.05"
inkscape:cx="40"
inkscape:cy="40"
inkscape:window-x="804"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="g10"
showguides="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-others="false"
inkscape:snap-nodes="true"
borderlayer="true">
<inkscape:grid
type="xygrid"
id="grid837"
empspacing="4" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g10">
<rect
style="fill:#6fa7e8;fill-opacity:1;stroke:none;stroke-width:3.28634;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3895"
width="32"
height="12"
x="24"
y="54"
inkscape:transform-center-x="0.013235976"
inkscape:transform-center-y="15.98601" />
<rect
style="fill:#6fa7e8;fill-opacity:1;stroke:none;stroke-width:3.28634;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3897"
width="32"
height="12"
x="-74.935242"
y="19.791653"
inkscape:transform-center-x="-13.850908"
inkscape:transform-center-y="-7.9815448"
transform="rotate(-120)" />
<rect
style="fill:#6fa7e8;fill-opacity:1;stroke:none;stroke-width:3.28634;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3899"
width="32"
height="12"
x="-37.980762"
y="-49.641018"
inkscape:transform-center-x="13.85091"
inkscape:transform-center-y="-7.9815446"
transform="matrix(0.5,-0.8660254,-0.8660254,-0.5,0,0)" />
<circle
style="fill:#c0c0c0;fill-opacity:1;stroke:none;stroke-width:4.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="circle3891"
cx="60"
cy="60"
r="12" />
<circle
style="fill:#c0c0c0;fill-opacity:1;stroke:none;stroke-width:4.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="circle3893"
cx="20"
cy="60"
r="12" />
<circle
style="fill:#c0c0c0;fill-opacity:1;stroke:none;stroke-width:4.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path3889"
cx="40"
cy="20"
r="12" />
<circle
style="fill:#dcdcdc;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="circle3901"
cx="40"
cy="18"
r="8" />
<circle
style="fill:#dcdcdc;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="circle3903"
cx="20"
cy="58"
r="8" />
<circle
style="fill:#dcdcdc;fill-opacity:1;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="circle3905"
cx="60"
cy="58"
r="8" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@ -0,0 +1,248 @@
<?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"
version="1.1"
id="svg2"
width="80"
height="80"
viewBox="0 0 80 80"
sodipodi:docname="efm-spreadsheet.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/efm-spreadsheet-040.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48">
<metadata
id="metadata8">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6">
<rect
x="20"
y="28"
width="40"
height="40"
id="rect2474" />
<rect
x="20"
y="28"
width="40"
height="40"
id="rect2468" />
<rect
x="20"
y="28"
width="40"
height="40"
id="rect2458" />
<rect
x="20"
y="28"
width="40"
height="40"
id="rect2450" />
<rect
x="16"
y="72"
width="48"
height="44"
id="rect2444" />
<rect
id="rect1822"
height="22.426638"
width="47.970909"
y="8"
x="16" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect878" />
<rect
x="20"
y="50"
width="40"
height="30"
id="rect872" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect864" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect858" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect852" />
</defs>
<sodipodi:namedview
inkscape:showpageshadow="false"
inkscape:document-rotation="0"
pagecolor="#404040"
bordercolor="#ff66ac"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1756"
inkscape:window-height="1372"
id="namedview4"
showgrid="true"
inkscape:zoom="13.05"
inkscape:cx="40"
inkscape:cy="40"
inkscape:window-x="804"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="g10"
showguides="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-others="false"
inkscape:snap-nodes="true"
borderlayer="true">
<inkscape:grid
type="xygrid"
id="grid837"
empspacing="4" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g10">
<path
sodipodi:nodetypes="cccccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 68,4 V 76 H 12 V 25 L 34,4 Z"
id="path27896" />
<rect
style="fill:#e4e390;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3265"
width="46"
height="12"
x="17"
y="29" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1758"
width="1"
height="7"
x="81"
y="40" />
<text
xml:space="preserve"
id="text2442"
style="fill:none;stroke:black;stroke-opacity:1;stroke-width:1px;stroke-linejoin:miter;stroke-linecap:butt;font-family:'Times New Roman';font-size:8px;line-height:25px;letter-spacing:0px;word-spacing:0px;-inkscape-font-specification:'Times New Roman, ';white-space:pre;shape-inside:url(#rect2444);" />
<text
xml:space="preserve"
id="text2456"
style="font-size:32px;line-height:100px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect2458);fill:#ffffff;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:0.2;" />
<text
xml:space="preserve"
style="font-size:8px;line-height:25px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="20"
y="32"
id="text2464"><tspan
sodipodi:role="line"
id="tspan2462"
x="20"
y="32"></tspan></text>
<text
xml:space="preserve"
id="text2466"
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:75px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Italic';letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect2468);fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;" />
<text
xml:space="preserve"
id="text2472"
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:8px;line-height:25px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Italic';letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect2474);fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;"
transform="matrix(0.54935625,0,0,0.54935625,9.5450639,24.543479)"><tspan
x="20"
y="44.706009"><tspan
style="font-size:16px;fill:#000000;fill-opacity:1;stroke:none">f</tspan><tspan
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Italic';fill:#000000;fill-opacity:1;stroke:none">(x)</tspan></tspan></text>
<rect
style="fill:#202020;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3251"
width="48"
height="2"
x="16"
y="28" />
<rect
style="fill:#202020;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3253"
width="48"
height="2"
x="16"
y="40" />
<rect
style="fill:#202020;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3255"
width="48"
height="2"
x="16"
y="52" />
<rect
style="fill:#202020;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3257"
width="48"
height="2"
x="16"
y="64" />
<rect
style="fill:#202020;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3259"
width="2"
height="36"
x="16"
y="29" />
<rect
style="fill:#202020;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3261"
width="2"
height="36"
x="62"
y="30" />
<rect
style="fill:#202020;fill-opacity:1;stroke:none;stroke-width:3;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3263"
width="2"
height="36"
x="40"
y="29" />
<path
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 37,30 34,4 C 33,10 19,24 12,25 Z"
id="path27900"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 H 34 V 4 Z"
id="path27898" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 8.6 KiB

View File

@ -0,0 +1,215 @@
<?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"
version="1.1"
id="svg2"
width="80"
height="80"
viewBox="0 0 80 80"
sodipodi:docname="efm-template.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/efm-install-040.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48">
<metadata
id="metadata8">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6">
<rect
x="20"
y="28"
width="40"
height="40"
id="rect2474" />
<rect
x="20"
y="28"
width="40"
height="40"
id="rect2468" />
<rect
x="20"
y="28"
width="40"
height="40"
id="rect2458" />
<rect
x="20"
y="28"
width="40"
height="40"
id="rect2450" />
<rect
x="16"
y="72"
width="48"
height="44"
id="rect2444" />
<rect
id="rect1822"
height="22.426638"
width="47.970909"
y="8"
x="16" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect878" />
<rect
x="20"
y="50"
width="40"
height="30"
id="rect872" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect864" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect858" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect852" />
</defs>
<sodipodi:namedview
inkscape:showpageshadow="false"
inkscape:document-rotation="0"
pagecolor="#404040"
bordercolor="#ff66ac"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1756"
inkscape:window-height="1372"
id="namedview4"
showgrid="true"
inkscape:zoom="13.05"
inkscape:cx="40"
inkscape:cy="40"
inkscape:window-x="804"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="g10"
showguides="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-others="false"
inkscape:snap-nodes="true"
borderlayer="true">
<inkscape:grid
type="xygrid"
id="grid837"
empspacing="4" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g10">
<path
sodipodi:nodetypes="cccccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 68,4 V 76 H 12 V 25 L 34,4 Z"
id="path27896" />
<rect
style="fill:#808080;fill-opacity:1;stroke-width:5.2915"
id="rect1758"
width="1"
height="7"
x="81"
y="40" />
<text
xml:space="preserve"
id="text2442"
style="fill:none;stroke:black;stroke-opacity:1;stroke-width:1px;stroke-linejoin:miter;stroke-linecap:butt;font-family:'Times New Roman';font-size:8px;line-height:25px;letter-spacing:0px;word-spacing:0px;-inkscape-font-specification:'Times New Roman, ';white-space:pre;shape-inside:url(#rect2444);" />
<text
xml:space="preserve"
id="text2456"
style="font-size:32px;line-height:100px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect2458);fill:#ffffff;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:0.2;" />
<text
xml:space="preserve"
style="font-size:8px;line-height:25px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, ';letter-spacing:0px;word-spacing:0px;fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
x="20"
y="32"
id="text2464"><tspan
sodipodi:role="line"
id="tspan2462"
x="20"
y="32"></tspan></text>
<text
xml:space="preserve"
id="text2466"
style="font-style:italic;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:24px;line-height:75px;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Italic';letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect2468);fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;" />
<path
style="opacity:0.25;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 37,30 34,4 C 33,10 19,24 12,25 Z"
id="path27900"
sodipodi:nodetypes="cccc" />
<path
sodipodi:nodetypes="cccc"
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 12,25 H 34 V 4 Z"
id="path27898" />
<rect
style="fill:#000000;fill-opacity:0.25;stroke:none;stroke-width:1.93649;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3410"
width="20"
height="2"
x="16"
y="64" />
<rect
style="fill:#000000;fill-opacity:0.25;stroke:none;stroke-width:2.33184;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3412"
width="29"
height="2"
x="16"
y="60" />
<rect
style="fill:#000000;fill-opacity:0.25;stroke:none;stroke-width:3.00001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3414"
width="48"
height="2"
x="16"
y="56" />
<rect
style="fill:#000000;fill-opacity:0.25;stroke:none;stroke-width:2.77263;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect3416"
width="41"
height="2"
x="16"
y="52" />
<path
style="fill:#000000;fill-opacity:0.25;stroke:none;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
d="m 40,50 -12,-12 6,-6 6,6 6,-6 6,6 z"
id="path3418" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 7.2 KiB

View File

@ -0,0 +1,171 @@
<?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:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="svg2"
width="80"
height="80"
viewBox="0 0 80 80"
sodipodi:docname="film.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/film-040.png"
inkscape:export-xdpi="48"
inkscape:export-ydpi="48">
<metadata
id="metadata8">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6">
<linearGradient
inkscape:collect="always"
id="linearGradient989">
<stop
style="stop-color:#5772b1;stop-opacity:1;"
offset="0"
id="stop985" />
<stop
style="stop-color:#5772b1;stop-opacity:0;"
offset="1"
id="stop987" />
</linearGradient>
<rect
id="rect1822"
height="22.426638"
width="47.970909"
y="8"
x="16" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect878" />
<rect
x="20"
y="50"
width="40"
height="30"
id="rect872" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect864" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect858" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect852" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient989"
id="linearGradient991"
x1="40"
y1="21"
x2="40"
y2="4"
gradientUnits="userSpaceOnUse" />
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient989"
id="linearGradient997"
gradientUnits="userSpaceOnUse"
x1="40"
y1="21"
x2="40"
y2="4"
gradientTransform="translate(0,-80)" />
</defs>
<sodipodi:namedview
inkscape:showpageshadow="false"
inkscape:document-rotation="0"
pagecolor="#404040"
bordercolor="#ff66ac"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1756"
inkscape:window-height="1378"
id="namedview4"
showgrid="true"
inkscape:zoom="13.05"
inkscape:cx="40"
inkscape:cy="40"
inkscape:window-x="804"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="g10"
showguides="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-others="false"
inkscape:snap-nodes="true"
borderlayer="true">
<inkscape:grid
type="xygrid"
id="grid837"
empspacing="4" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g10">
<rect
style="fill:url(#linearGradient997);fill-opacity:1;stroke:none;stroke-width:8"
id="rect995"
width="50"
height="17"
x="15"
y="-76"
transform="scale(1,-1)" />
<rect
style="fill:url(#linearGradient991);fill-opacity:1;stroke:none;stroke-width:8"
id="rect983"
width="50"
height="17"
x="15"
y="4" />
<rect
style="fill:#937da5;fill-opacity:1;stroke:none;stroke-width:8"
id="rect981"
width="50"
height="34"
x="15"
y="23" />
<path
id="rect894"
style="fill:#202020;fill-opacity:1;stroke-width:8;stroke:none"
d="M 8 4 L 8 76 L 10 76 L 10 72 L 14 72 L 14 76 L 16 76 L 16 68 C 16 63.568 19.568 60 24 60 L 56 60 C 60.432 60 64 63.568 64 68 L 64 76 L 66 76 L 66 72 L 70 72 L 70 76 L 72 76 L 72 4 L 64 4 L 64 12 C 64 16.432 60.432 20 56 20 L 24 20 C 19.568 20 16 16.432 16 12 L 16 4 L 8 4 z M 10 6 L 14 6 L 14 10 L 10 10 L 10 6 z M 66 6 L 70 6 L 70 10 L 66 10 L 66 6 z M 10 12 L 14 12 L 14 16 L 10 16 L 10 12 z M 66 12 L 70 12 L 70 16 L 66 16 L 66 12 z M 10 18 L 14 18 L 14 22 L 10 22 L 10 18 z M 66 18 L 70 18 L 70 22 L 66 22 L 66 18 z M 10 24 L 14 24 L 14 28 L 10 28 L 10 24 z M 24 24 L 56 24 C 60.432 24 64 27.568 64 32 L 64 48 C 64 52.432 60.432 56 56 56 L 24 56 C 19.568 56 16 52.432 16 48 L 16 32 C 16 27.568 19.568 24 24 24 z M 66 24 L 70 24 L 70 28 L 66 28 L 66 24 z M 10 30 L 14 30 L 14 34 L 10 34 L 10 30 z M 66 30 L 70 30 L 70 34 L 66 34 L 66 30 z M 10 36 L 14 36 L 14 40 L 10 40 L 10 36 z M 66 36 L 70 36 L 70 40 L 66 40 L 66 36 z M 10 42 L 14 42 L 14 46 L 10 46 L 10 42 z M 66 42 L 70 42 L 70 46 L 66 46 L 66 42 z M 10 48 L 14 48 L 14 52 L 10 52 L 10 48 z M 66 48 L 70 48 L 70 52 L 66 52 L 66 48 z M 10 54 L 14 54 L 14 58 L 10 58 L 10 54 z M 66 54 L 70 54 L 70 58 L 66 58 L 66 54 z M 10 60 L 14 60 L 14 64 L 10 64 L 10 60 z M 66 60 L 70 60 L 70 64 L 66 64 L 66 60 z M 10 66 L 14 66 L 14 70 L 10 70 L 10 66 z M 66 66 L 70 66 L 70 70 L 66 70 L 66 66 z " />
<path
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8"
d="M 32,32 V 48 L 48,40 Z"
id="path993" />
</g>
</svg>

After

Width:  |  Height:  |  Size: 5.5 KiB

View File

@ -0,0 +1,563 @@
<?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:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="svg2"
width="80"
height="80"
viewBox="0 0 80 80"
sodipodi:docname="font-file.svg"
inkscape:version="1.0.1 (3bc2e813f5, 2020-09-07)"
inkscape:export-filename="/home/raster/C/th-efl/th/img/ic/sound-080.png"
inkscape:export-xdpi="96"
inkscape:export-ydpi="96">
<metadata
id="metadata8">
<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></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs6">
<linearGradient
inkscape:collect="always"
id="linearGradient2045">
<stop
style="stop-color:#ffffff;stop-opacity:1;"
offset="0"
id="stop2041" />
<stop
style="stop-color:#ffffff;stop-opacity:1"
offset="0.5"
id="stop2049" />
<stop
style="stop-color:#ffffff;stop-opacity:0;"
offset="1"
id="stop2043" />
</linearGradient>
<rect
x="4"
y="4"
width="16"
height="16"
id="rect1835" />
<rect
x="4"
y="4"
width="12"
height="12"
id="rect1829" />
<rect
id="rect1822"
height="22.426638"
width="47.970909"
y="8"
x="16" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect878" />
<rect
x="20"
y="50"
width="40"
height="30"
id="rect872" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect864" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect858" />
<rect
x="20"
y="20"
width="40"
height="30"
id="rect852" />
<radialGradient
inkscape:collect="always"
xlink:href="#linearGradient2045"
id="radialGradient2047"
cx="41.400005"
cy="10.976198"
fx="41.400005"
fy="10.976198"
r="20"
gradientTransform="matrix(-1.5999998,4.2922775e-7,-1.7871204e-7,-3.8,134.23999,45.709535)"
gradientUnits="userSpaceOnUse" />
</defs>
<sodipodi:namedview
inkscape:showpageshadow="false"
inkscape:document-rotation="0"
pagecolor="#404040"
bordercolor="#ff66ac"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1756"
inkscape:window-height="1372"
id="namedview4"
showgrid="true"
inkscape:zoom="13.05"
inkscape:cx="40"
inkscape:cy="40"
inkscape:window-x="804"
inkscape:window-y="0"
inkscape:window-maximized="0"
inkscape:current-layer="g10"
showguides="false"
inkscape:snap-bbox="true"
inkscape:bbox-nodes="true"
inkscape:snap-others="false"
inkscape:snap-nodes="true"
borderlayer="true">
<inkscape:grid
type="xygrid"
id="grid837"
empspacing="4" />
</sodipodi:namedview>
<g
inkscape:groupmode="layer"
inkscape:label="Image"
id="g10">
<path
style="fill:#ff3393;fill-opacity:1;stroke:none;stroke-width:8"
d="m 52,52 v -8 h -8 c 4,0 8,4 8,8 z"
id="path1952"
sodipodi:nodetypes="cccc" />
<rect
style="fill:#e5614d;fill-opacity:1;stroke:none;stroke-width:8"
id="rect1857"
width="8"
height="8"
x="20"
y="4" />
<rect
style="fill:#d65c80;fill-opacity:1;stroke:none;stroke-width:8"
id="rect1859"
width="8"
height="8"
x="28"
y="4" />
<rect
style="fill:#7099c2;fill-opacity:1;stroke:none;stroke-width:8"
id="rect1861"
width="8"
height="8"
x="36"
y="4" />
<rect
style="fill:#7eb48b;fill-opacity:1;stroke:none;stroke-width:8"
id="rect1863"
width="8"
height="8"
x="44"
y="4" />
<rect
style="fill:#b0af82;fill-opacity:1;stroke:none;stroke-width:8"
id="rect1865"
width="8"
height="8"
x="52"
y="4" />
<rect
style="fill:#8a8ea8;fill-opacity:1;stroke:none;stroke-width:8"
id="rect1871"
width="8"
height="8"
x="60"
y="4" />
<rect
style="fill:#50e2ca;fill-opacity:1;stroke:none;stroke-width:8"
id="rect1873"
width="8"
height="8"
x="20"
y="12" />
<rect
style="fill:#c350e2;fill-opacity:1;stroke:none;stroke-width:8"
id="rect1875"
width="8"
height="8"
x="20"
y="20" />
<rect
style="fill:#e833ff;fill-opacity:1;stroke:none;stroke-width:8"
id="rect1877"
width="8"
height="8"
x="20"
y="28" />
<rect
style="fill:#33ffda;fill-opacity:1;stroke:none;stroke-width:8"
id="rect1879"
width="8"
height="8"
x="20"
y="36" />
<rect
style="fill:#b4ff33;fill-opacity:1;stroke:none;stroke-width:8"
id="rect1881"
width="8"
height="8"
x="20"
y="44" />
<rect
style="fill:#ff7033;fill-opacity:1;stroke:none;stroke-width:8"
id="rect1883"
width="8"
height="8"
x="20"
y="52" />
<rect
style="fill:#d233ff;fill-opacity:1;stroke:none;stroke-width:8"
id="rect1885"
width="8"
height="8"
x="20"
y="60" />
<rect
style="fill:#33ff74;fill-opacity:1;stroke:none;stroke-width:8"
id="rect1887"
width="8"
height="8"
x="20"
y="68" />
<rect
style="fill:#ff335b;fill-opacity:1;stroke:none;stroke-width:8"
id="rect1891"
width="8"
height="8"
x="28"
y="68" />
<rect
style="fill:#e7ff33;fill-opacity:1;stroke:none;stroke-width:8"
id="rect1893"
width="8"
height="8"
x="28"
y="36" />
<rect
style="fill:#eca146;fill-opacity:1;stroke:none;stroke-width:8"
id="rect1895"
width="8"
height="8"
x="36"
y="36" />
<rect
style="fill:#5eb0d4;fill-opacity:1;stroke:none;stroke-width:8"
id="rect1897"
width="8"
height="8"
x="44"
y="36" />
<rect
style="fill:#c56d91;fill-opacity:1;stroke:none;stroke-width:8"
id="rect1899"
width="8"
height="8"
x="44"
y="28" />
<rect
style="fill:#ad858e;fill-opacity:1;stroke:none;stroke-width:8"
id="rect1903"
width="8"
height="8"
x="60"
y="12" />
<rect
style="fill:#d8bc5a;fill-opacity:1;stroke:none;stroke-width:8"
id="rect1905"
width="8"
height="8"
x="28"
y="12" />
<rect
style="fill:#5dc2d5;fill-opacity:1;stroke:none;stroke-width:8"
id="rect1907"
width="8"
height="8"
x="28"
y="20" />
<rect
style="fill:#7ded45;fill-opacity:1;stroke:none;stroke-width:8"
id="rect1909"
width="8"
height="8"
x="28"
y="28" />
<rect
style="fill:#cc33ff;fill-opacity:1;stroke:none;stroke-width:8"
id="rect1911"
width="8"
height="8"
x="28"
y="44" />
<rect
style="fill:#333bff;fill-opacity:1;stroke:none;stroke-width:8"
id="rect1913"
width="8"
height="8"
x="28"
y="52" />
<rect
style="fill:#ffb133;fill-opacity:1;stroke:none;stroke-width:8"
id="rect1915"
width="8"
height="8"
x="28"
y="60" />
<path
style="fill:#3399ff;fill-opacity:1;stroke:none;stroke-width:8"
d="m 20,68 v 8 h -8 c 4,0 8,-4 8,-8 z"
id="path1921"
sodipodi:nodetypes="cccc" />
<path
id="path1923"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8"
d="M 12 60 A 8 8 0 0 0 4 68 A 8 8 0 0 0 12 76 A 8 8 0 0 0 20 68 A 8 8 0 0 0 12 60 z M 12 62 A 6 6 0 0 1 18 68 A 6 6 0 0 1 12 74 A 6 6 0 0 1 6 68 A 6 6 0 0 1 12 62 z " />
<path
style="fill:#ffe833;fill-opacity:1;stroke:none;stroke-width:8"
d="M 20,12 V 4 h -8 c 4,0 8,4 8,8 z"
id="path1930"
sodipodi:nodetypes="cccc" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1932"
width="2"
height="2"
x="11"
y="67" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1934"
width="2"
height="2"
x="11"
y="63" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1936"
width="2"
height="2"
x="11"
y="59" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1938"
width="2"
height="2"
x="11"
y="55" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1940"
width="2"
height="2"
x="3"
y="67" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1942"
width="2"
height="2"
x="11"
y="55" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1944"
width="2"
height="2"
x="7"
y="67" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1946"
width="2"
height="2"
x="11"
y="71" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1948"
width="2"
height="2"
x="15"
y="67" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1950"
width="2"
height="2"
x="11"
y="51" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1954"
width="2"
height="2"
x="11"
y="47" />
<path
style="fill:#baff33;fill-opacity:1;stroke:none;stroke-width:8"
d="m 36,68 v 8 h 8 c -4,0 -8,-4 -8,-8 z"
id="path1956"
sodipodi:nodetypes="cccc" />
<path
style="fill:#33ff8a;fill-opacity:1;stroke:none;stroke-width:8"
d="m 36,52 v -8 h 8 c -4,0 -8,4 -8,8 z"
id="path1958"
sodipodi:nodetypes="cccc" />
<path
id="path1960"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8"
d="m 12,4 a 8,8 0 0 0 -8,8 8,8 0 0 0 8,8 8,8 0 0 0 8,-8 8,8 0 0 0 -8,-8 z m 0,2 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" />
<path
id="path1962"
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8"
d="m 44,60 a 8,8 0 0 0 -8,8 8,8 0 0 0 8,8 8,8 0 0 0 8,-8 8,8 0 0 0 -8,-8 z m 0,2 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1966"
width="2"
height="2"
x="43"
y="67" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1968"
width="2"
height="2"
x="43"
y="63" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1970"
width="2"
height="2"
x="43"
y="59" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1972"
width="2"
height="2"
x="43"
y="55" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1974"
width="2"
height="2"
x="35"
y="67" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1976"
width="2"
height="2"
x="43"
y="55" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1978"
width="2"
height="2"
x="39"
y="67" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1980"
width="2"
height="2"
x="43"
y="71" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1982"
width="2"
height="2"
x="47"
y="67" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1988"
width="2"
height="2"
x="11"
y="11" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1990"
width="2"
height="2"
x="11"
y="7" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1992"
width="2"
height="2"
x="7"
y="11"
inkscape:transform-center-x="-1.0457824" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1994"
width="2"
height="2"
x="11"
y="15"
inkscape:transform-center-x="-1.0457824" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1996"
width="2"
height="2"
x="15"
y="11" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect1998"
width="2"
height="2"
x="11"
y="19" />
<rect
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="rect2000"
width="2"
height="2"
x="11"
y="23" />
<path
id="rect2002"
style="fill:url(#radialGradient2047);fill-opacity:1;stroke:none;stroke-width:8;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 36 4 L 36 6 L 44 6 L 44 10 L 36 10 L 36 12 L 60 12 L 60 18 L 56 18 L 56 20 L 66 20 L 66 32 L 68 32 L 68 20 L 72 20 L 72 18 L 68 18 L 68 6 L 76 6 L 76 4 L 68 4 L 36 4 z M 46 6 L 52 6 L 52 10 L 46 10 L 46 6 z M 54 6 L 60 6 L 60 10 L 54 10 L 54 6 z M 62 6 L 66 6 L 66 10 L 62 10 L 62 6 z M 62 12 L 66 12 L 66 18 L 62 18 L 62 12 z " />
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 861 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 815 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 580 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 950 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 767 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 989 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 544 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 905 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 728 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 969 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 900 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 772 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Some files were not shown because too many files have changed in this diff Show More