diff --git a/legacy/elementary/data/themes/default.edc b/legacy/elementary/data/themes/default.edc index 41fd0779e5..6700bed69c 100644 --- a/legacy/elementary/data/themes/default.edc +++ b/legacy/elementary/data/themes/default.edc @@ -133,6 +133,7 @@ collections { #include "edc/evrything.edc" #include "edc/illume.edc" #include "edc/bluez4.edc" +#include "edc/packagekit.edc" // icons #include "edc/icons.edc" diff --git a/legacy/elementary/data/themes/edc/packagekit.edc b/legacy/elementary/data/themes/edc/packagekit.edc new file mode 100644 index 0000000000..9859d92985 --- /dev/null +++ b/legacy/elementary/data/themes/edc/packagekit.edc @@ -0,0 +1,180 @@ + +images { + image: "packagekit_base.png" COMP; + image: "packagekit_info_bugfix.png" COMP; + image: "packagekit_info_enhancement.png" COMP; + image: "packagekit_info_important.png" COMP; + image: "packagekit_info_low.png" COMP; + image: "packagekit_info_normal.png" COMP; + image: "packagekit_info_security.png" COMP; + image: "packagekit_work1.png" COMP; + image: "packagekit_work2.png" COMP; + image: "packagekit_work3.png" COMP; + image: "packagekit_work4.png" COMP; + image: "packagekit_updates.png" COMP; + image: "packagekit_updated.png" COMP; + image: "packagekit_error.png" COMP; +} + +group { name: "icon"; + max: 24 24; + parts { + part { name: "image"; + type: IMAGE; + mouse_events: 0; + description { state: "default" 0.0; + aspect: 1.0 1.0; + aspect_preference: BOTH; + image.normal: "packagekit_base.png"; + } + } + } +} + +group { name: "e/modules/packagekit/icon/bugfix"; + parts { + part { name: "image"; type: IMAGE; + mouse_events: 0; + description { state: "default" 0.0; + image.normal: "packagekit_info_bugfix.png"; + } + } + } +} + +group { name: "e/modules/packagekit/icon/enhancement"; + parts { + part { name: "image"; type: IMAGE; + mouse_events: 0; + description { state: "default" 0.0; + image.normal: "packagekit_info_enhancement.png"; + } + } + } +} + +group { name: "e/modules/packagekit/icon/important"; + parts { + part { name: "image"; type: IMAGE; + mouse_events: 0; + description { state: "default" 0.0; + image.normal: "packagekit_info_important.png"; + } + } + } +} + +group { name: "e/modules/packagekit/icon/low"; + parts { + part { name: "image"; type: IMAGE; + mouse_events: 0; + description { state: "default" 0.0; + image.normal: "packagekit_info_low.png"; + } + } + } +} + +group { name: "e/modules/packagekit/icon/normal"; + parts { + part { name: "image"; type: IMAGE; + mouse_events: 0; + description { state: "default" 0.0; + image.normal: "packagekit_info_normal.png"; + } + } + } +} + +group { name: "e/modules/packagekit/icon/security"; + parts { + part { name: "image"; type: IMAGE; + mouse_events: 0; + description { state: "default" 0.0; + image.normal: "packagekit_info_security.png"; + } + } + } +} + +group { name: "e/modules/packagekit/main"; + max: 128 128; + parts { + part { name: "base"; type: IMAGE; + description { state: "default" 0.0; + aspect: 1.0 1.0; + aspect_preference: BOTH; + image.normal: "packagekit_base.png"; + } + } + part { name: "status"; type: IMAGE; + description { state: "default" 0.0; + aspect: 1.0 1.0; + aspect_preference: BOTH; + visible: 0; + } + description { state: "running" 0.0; + inherit: "default" 0.0; + visible: 1; + image.normal: "packagekit_work1.png"; + image.tween: "packagekit_work2.png"; + image.tween: "packagekit_work3.png"; + image.tween: "packagekit_work4.png"; + } + description { state: "updates" 0.0; + inherit: "default" 0.0; + visible: 1; + image.normal: "packagekit_updates.png"; + } + description { state: "updated" 0.0; + inherit: "default" 0.0; + visible: 1; + image.normal: "packagekit_updated.png"; + } + description { state: "error" 0.0; + inherit: "default" 0.0; + visible: 1; + image.normal: "packagekit_error.png"; + } + } + part { name: "num_updates"; type: TEXT; + effect: SHADOW; + description { state: "default" 0.0; + text { + font: FNBD; + size: 9; + } + } + } + } + programs { + program { + signal: "packagekit,state,none"; source: "e"; + action: STATE_SET "default" 0.0; + target: "status"; + } + program { + name: "working"; + signal: "packagekit,state,working"; source: "e"; + action: STATE_SET "running" 0.0; + target: "status"; + transition: LINEAR 0.3; + after: "working"; + } + program { + signal: "packagekit,state,updates"; source: "e"; + action: STATE_SET "updates" 0.0; + target: "status"; + } + program { + signal: "packagekit,state,updated"; source: "e"; + action: STATE_SET "updated" 0.0; + target: "status"; + } + program { + signal: "packagekit,state,error"; source: "e"; + action: STATE_SET "error" 0.0; + target: "status"; + } + } +} diff --git a/legacy/elementary/data/themes/img/packagekit_base.png b/legacy/elementary/data/themes/img/packagekit_base.png new file mode 100644 index 0000000000..f2d3f392f9 Binary files /dev/null and b/legacy/elementary/data/themes/img/packagekit_base.png differ diff --git a/legacy/elementary/data/themes/img/packagekit_error.png b/legacy/elementary/data/themes/img/packagekit_error.png new file mode 100644 index 0000000000..f98f4795d7 Binary files /dev/null and b/legacy/elementary/data/themes/img/packagekit_error.png differ diff --git a/legacy/elementary/data/themes/img/packagekit_info_bugfix.png b/legacy/elementary/data/themes/img/packagekit_info_bugfix.png new file mode 100644 index 0000000000..54569985dd Binary files /dev/null and b/legacy/elementary/data/themes/img/packagekit_info_bugfix.png differ diff --git a/legacy/elementary/data/themes/img/packagekit_info_enhancement.png b/legacy/elementary/data/themes/img/packagekit_info_enhancement.png new file mode 100644 index 0000000000..084b75448b Binary files /dev/null and b/legacy/elementary/data/themes/img/packagekit_info_enhancement.png differ diff --git a/legacy/elementary/data/themes/img/packagekit_info_important.png b/legacy/elementary/data/themes/img/packagekit_info_important.png new file mode 100644 index 0000000000..2d4ecae66e Binary files /dev/null and b/legacy/elementary/data/themes/img/packagekit_info_important.png differ diff --git a/legacy/elementary/data/themes/img/packagekit_info_low.png b/legacy/elementary/data/themes/img/packagekit_info_low.png new file mode 100644 index 0000000000..e7ad6084a7 Binary files /dev/null and b/legacy/elementary/data/themes/img/packagekit_info_low.png differ diff --git a/legacy/elementary/data/themes/img/packagekit_info_normal.png b/legacy/elementary/data/themes/img/packagekit_info_normal.png new file mode 100644 index 0000000000..95a86cbfc0 Binary files /dev/null and b/legacy/elementary/data/themes/img/packagekit_info_normal.png differ diff --git a/legacy/elementary/data/themes/img/packagekit_info_security.png b/legacy/elementary/data/themes/img/packagekit_info_security.png new file mode 100644 index 0000000000..6223571ae8 Binary files /dev/null and b/legacy/elementary/data/themes/img/packagekit_info_security.png differ diff --git a/legacy/elementary/data/themes/img/packagekit_updated.png b/legacy/elementary/data/themes/img/packagekit_updated.png new file mode 100644 index 0000000000..d4ef7d755d Binary files /dev/null and b/legacy/elementary/data/themes/img/packagekit_updated.png differ diff --git a/legacy/elementary/data/themes/img/packagekit_updates.png b/legacy/elementary/data/themes/img/packagekit_updates.png new file mode 100644 index 0000000000..9d7759382c Binary files /dev/null and b/legacy/elementary/data/themes/img/packagekit_updates.png differ diff --git a/legacy/elementary/data/themes/img/packagekit_work1.png b/legacy/elementary/data/themes/img/packagekit_work1.png new file mode 100644 index 0000000000..f0608e2c66 Binary files /dev/null and b/legacy/elementary/data/themes/img/packagekit_work1.png differ diff --git a/legacy/elementary/data/themes/img/packagekit_work2.png b/legacy/elementary/data/themes/img/packagekit_work2.png new file mode 100644 index 0000000000..076053c281 Binary files /dev/null and b/legacy/elementary/data/themes/img/packagekit_work2.png differ diff --git a/legacy/elementary/data/themes/img/packagekit_work3.png b/legacy/elementary/data/themes/img/packagekit_work3.png new file mode 100644 index 0000000000..c1b6cadbd8 Binary files /dev/null and b/legacy/elementary/data/themes/img/packagekit_work3.png differ diff --git a/legacy/elementary/data/themes/img/packagekit_work4.png b/legacy/elementary/data/themes/img/packagekit_work4.png new file mode 100644 index 0000000000..a6546d0857 Binary files /dev/null and b/legacy/elementary/data/themes/img/packagekit_work4.png differ