diff --git a/data/themes/Makefile.am b/data/themes/Makefile.am index 993cf6a9f..0f83b9402 100644 --- a/data/themes/Makefile.am +++ b/data/themes/Makefile.am @@ -210,6 +210,7 @@ img/led_light.png \ img/led_tiny_green.png \ img/led_tiny_orange.png \ img/logo_blue_small.png \ +img/logo_blue_small_glow.png \ img/media_busy_progress.png \ img/mini_blue_glow_arrow_0.png \ img/mini_blue_glow_arrow_1.png \ diff --git a/data/themes/edc/desklock.edc b/data/themes/edc/desklock.edc index 6e7f65af6..e5e7155da 100644 --- a/data/themes/edc/desklock.edc +++ b/data/themes/edc/desklock.edc @@ -28,6 +28,7 @@ group { name: "e/desklock/login_box"; images.image: "bevel_in.png" COMP; images.image: "white_bar_vert_glow.png" COMP; images.image: "logo_blue_small.png" COMP; + images.image: "logo_blue_small_glow.png" COMP; images.image: "knob_round_busy.png" COMP; images.image: "glow_round_corners.png" COMP; parts { @@ -39,6 +40,18 @@ group { name: "e/desklock/login_box"; FIXED_SIZE(100, 127) } } + part { name: "logo_glow"; + description { state: "default" 0.0; + image.normal: "logo_blue_small_glow.png"; + rel1.to: "logo"; + rel2.to: "logo"; + color: 255 255 255 192; + } + description { state: "active" 0.0; + inherit: "default" 0.0; + color: 255 255 255 255; + } + } part { name: "bg"; type: RECT; description { state: "default" 0.0; rel1.to: "inset"; @@ -205,6 +218,20 @@ group { name: "e/desklock/login_box"; } } programs { + program { name: "logo_pulse"; + signal: "show"; source: ""; + in: 3.0 5.0; + action: STATE_SET "active" 0.0; + target: "logo_glow"; + transition: BOUNCE 0.8 0.5 6; + after: "logo_pulse2"; + } + program { name: "logo_pulse2"; + action: STATE_SET "default" 0.0; + target: "logo_glow"; + transition: SINUSOIDAL 2.4; + after: "logo_pulse"; + } program { name: "cursor_show"; signal: "show"; source: ""; action: STATE_SET "visible" 0.0; diff --git a/data/themes/img/logo_blue_small.png b/data/themes/img/logo_blue_small.png index e038ec8e2..0a0323709 100644 Binary files a/data/themes/img/logo_blue_small.png and b/data/themes/img/logo_blue_small.png differ diff --git a/data/themes/img/logo_blue_small_glow.png b/data/themes/img/logo_blue_small_glow.png new file mode 100644 index 000000000..a13cc0f67 Binary files /dev/null and b/data/themes/img/logo_blue_small_glow.png differ