davemds pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=c985061c10dbe57b97a6291bd36272efa933fdfe
commit c985061c10dbe57b97a6291bd36272efa933fdfe Author: davemds <[email protected]> Date: Sun Jan 19 11:37:00 2014 +0100 theme for the packagekit module IN --- data/themes/default.edc | 1 + data/themes/edc/packagekit.edc | 180 ++++++++++++++++++++++++ data/themes/img/packagekit_base.png | Bin 0 -> 4205 bytes data/themes/img/packagekit_error.png | Bin 0 -> 2166 bytes data/themes/img/packagekit_info_bugfix.png | Bin 0 -> 3604 bytes data/themes/img/packagekit_info_enhancement.png | Bin 0 -> 2591 bytes data/themes/img/packagekit_info_important.png | Bin 0 -> 2718 bytes data/themes/img/packagekit_info_low.png | Bin 0 -> 2769 bytes data/themes/img/packagekit_info_normal.png | Bin 0 -> 2511 bytes data/themes/img/packagekit_info_security.png | Bin 0 -> 2825 bytes data/themes/img/packagekit_updated.png | Bin 0 -> 2133 bytes data/themes/img/packagekit_updates.png | Bin 0 -> 2440 bytes data/themes/img/packagekit_work1.png | Bin 0 -> 3077 bytes data/themes/img/packagekit_work2.png | Bin 0 -> 3042 bytes data/themes/img/packagekit_work3.png | Bin 0 -> 3039 bytes data/themes/img/packagekit_work4.png | Bin 0 -> 3062 bytes 16 files changed, 181 insertions(+) diff --git a/data/themes/default.edc b/data/themes/default.edc index 41fd077..6700bed 100644 --- a/data/themes/default.edc +++ b/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/data/themes/edc/packagekit.edc b/data/themes/edc/packagekit.edc new file mode 100644 index 0000000..9859d92 --- /dev/null +++ b/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/data/themes/img/packagekit_base.png b/data/themes/img/packagekit_base.png new file mode 100644 index 0000000..f2d3f39 Binary files /dev/null and b/data/themes/img/packagekit_base.png differ diff --git a/data/themes/img/packagekit_error.png b/data/themes/img/packagekit_error.png new file mode 100644 index 0000000..f98f479 Binary files /dev/null and b/data/themes/img/packagekit_error.png differ diff --git a/data/themes/img/packagekit_info_bugfix.png b/data/themes/img/packagekit_info_bugfix.png new file mode 100644 index 0000000..5456998 Binary files /dev/null and b/data/themes/img/packagekit_info_bugfix.png differ diff --git a/data/themes/img/packagekit_info_enhancement.png b/data/themes/img/packagekit_info_enhancement.png new file mode 100644 index 0000000..084b754 Binary files /dev/null and b/data/themes/img/packagekit_info_enhancement.png differ diff --git a/data/themes/img/packagekit_info_important.png b/data/themes/img/packagekit_info_important.png new file mode 100644 index 0000000..2d4ecae Binary files /dev/null and b/data/themes/img/packagekit_info_important.png differ diff --git a/data/themes/img/packagekit_info_low.png b/data/themes/img/packagekit_info_low.png new file mode 100644 index 0000000..e7ad608 Binary files /dev/null and b/data/themes/img/packagekit_info_low.png differ diff --git a/data/themes/img/packagekit_info_normal.png b/data/themes/img/packagekit_info_normal.png new file mode 100644 index 0000000..95a86cb Binary files /dev/null and b/data/themes/img/packagekit_info_normal.png differ diff --git a/data/themes/img/packagekit_info_security.png b/data/themes/img/packagekit_info_security.png new file mode 100644 index 0000000..6223571 Binary files /dev/null and b/data/themes/img/packagekit_info_security.png differ diff --git a/data/themes/img/packagekit_updated.png b/data/themes/img/packagekit_updated.png new file mode 100644 index 0000000..d4ef7d7 Binary files /dev/null and b/data/themes/img/packagekit_updated.png differ diff --git a/data/themes/img/packagekit_updates.png b/data/themes/img/packagekit_updates.png new file mode 100644 index 0000000..9d77593 Binary files /dev/null and b/data/themes/img/packagekit_updates.png differ diff --git a/data/themes/img/packagekit_work1.png b/data/themes/img/packagekit_work1.png new file mode 100644 index 0000000..f0608e2 Binary files /dev/null and b/data/themes/img/packagekit_work1.png differ diff --git a/data/themes/img/packagekit_work2.png b/data/themes/img/packagekit_work2.png new file mode 100644 index 0000000..076053c Binary files /dev/null and b/data/themes/img/packagekit_work2.png differ diff --git a/data/themes/img/packagekit_work3.png b/data/themes/img/packagekit_work3.png new file mode 100644 index 0000000..c1b6cad Binary files /dev/null and b/data/themes/img/packagekit_work3.png differ diff --git a/data/themes/img/packagekit_work4.png b/data/themes/img/packagekit_work4.png new file mode 100644 index 0000000..a6546d0 Binary files /dev/null and b/data/themes/img/packagekit_work4.png differ --
