Enlightenment CVS committal
Author : atmosphere
Project : e17
Module : apps/entice
Dir : e17/apps/entice/data/themes/default/programs
Modified Files:
buttons.edc delete_dialog.edc enticeimage.edc
enticethumb_group.edc panel.edc slideshow.edc
Log Message:
migrate default theme to new signal namespace
===================================================================
RCS file:
/cvsroot/enlightenment/e17/apps/entice/data/themes/default/programs/buttons.edc,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- buttons.edc 2 Mar 2004 19:16:27 -0000 1.3
+++ buttons.edc 3 Apr 2004 02:24:12 -0000 1.4
@@ -27,28 +27,17 @@
transition, DECELERATE 0.25; target, pname; } \
program { name, pcname; signal, "mouse,clicked,1"; source, \
pname; action, SIGNAL_EMIT psig ""; }
- BUTTON_PROG("ButtonNextImage", "EnticeImageNext", "nidown",
- "niup", "niclicked");
- BUTTON_PROG("ButtonPrevImage", "EnticeImagePrev", "ipdown",
- "ipup", "ipclicked");
- BUTTON_PROG("ButtonZoomNormal", "EnticeImageZoomDefault", "zndown",
- "znup", "znclicked");
- BUTTON_PROG("ButtonZoomIn", "EnticeImageZoomIn", "zindown",
- "zinup", "zinclicked");
- BUTTON_PROG("ButtonZoomOut", "EnticeImageZoomOut", "zoutdown",
- "zoutup", "zoutclicked");
- BUTTON_PROG("ButtonExpandImage", "EnticeImageZoomFit", "zfitdown",
- "zfitup", "zfitclicked");
- BUTTON_PROG("ButtonFullScreen", "EnticeFullScreen", "zfsdown",
- "zfsup", "zfsclicked");
- BUTTON_PROG("ButtonSaveImage", "EnticeImageSave", "sidown",
- "siup", "siclicked");
- BUTTON_PROG("ButtonRotateRight", "EnticeImageRotateRight", "rrdown",
- "rrup", "rrclicked");
- BUTTON_PROG("ButtonRotateLeft", "EnticeImageRotateLeft", "rldown",
- "rlup", "rlclicked");
- BUTTON_PROG("ButtonExit", "EnticeQuit", "qbdown",
- "qbcup", "qbclicked");
+ BUTTON_PROG("ButtonNextImage", "entice,image,next", "nidown", "niup",
"niclicked");
+ BUTTON_PROG("ButtonPrevImage", "entice,image,prev", "ipdown", "ipup",
"ipclicked");
+ BUTTON_PROG("ButtonZoomNormal", "entice,image,current,zoom,reset",
"zndown", "znup", "znclicked");
+ BUTTON_PROG("ButtonZoomIn", "entice,image,current,zoom,in", "zindown",
"zinup", "zinclicked");
+ BUTTON_PROG("ButtonZoomOut", "entice,image,current,zoom,out", "zoutdown",
"zoutup", "zoutclicked");
+ BUTTON_PROG("ButtonExpandImage", "entice,image,current,zoom,fit",
"zfitdown", "zfitup", "zfitclicked");
+ BUTTON_PROG("ButtonFullScreen", "entice,window,fullscreen", "zfsdown",
"zfsup", "zfsclicked");
+ BUTTON_PROG("ButtonSaveImage", "entice,image,current,save", "sidown",
"siup", "siclicked");
+ BUTTON_PROG("ButtonRotateRight", "entice,image,current,rotate,right",
"rrdown", "rrup", "rrclicked");
+ BUTTON_PROG("ButtonRotateLeft", "entice,image,current,rotate,left",
"rldown", "rlup", "rlclicked");
+ BUTTON_PROG("ButtonExit", "entice,quit", "qbdown", "qbcup", "qbclicked");
program
{
name, "DeleteImageRequest";
@@ -62,7 +51,7 @@
program
{
name, "DisplaySaveImageButton";
- signal, "EnticeImageModified";
+ signal, "entice,image,modified";
source, "";
action, STATE_SET "visible" 0.0;
transition, LINEAR 0.25;
===================================================================
RCS file:
/cvsroot/enlightenment/e17/apps/entice/data/themes/default/programs/delete_dialog.edc,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- delete_dialog.edc 9 Jan 2004 07:05:25 -0000 1.1
+++ delete_dialog.edc 3 Apr 2004 02:24:12 -0000 1.2
@@ -12,7 +12,7 @@
name, "DeleteFileFromFSRequest";
signal, "mouse,clicked,1";
source, "DeleteFromFS";
- action, SIGNAL_EMIT "EnticeImageDelete" "";
+ action, SIGNAL_EMIT "entice,image,delete" "";
after, "DeleteDialogHide";
}
program
@@ -20,7 +20,7 @@
name, "DeleteFileFromEnticeRequest";
signal, "mouse,clicked,1";
source, "DeleteFromEntice";
- action, SIGNAL_EMIT "EnticeImageRemove" "";
+ action, SIGNAL_EMIT "entice,image,remove" "";
after, "DeleteDialogHide";
}
program
===================================================================
RCS file:
/cvsroot/enlightenment/e17/apps/entice/data/themes/default/programs/enticeimage.edc,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- enticeimage.edc 9 Jan 2004 08:09:44 -0000 1.2
+++ enticeimage.edc 3 Apr 2004 02:24:12 -0000 1.3
@@ -2,53 +2,53 @@
{
name, "MouseWheelZoomerInner";
signal, "mouse,wheel,0,-1";
- source, "EnticeImage";
- action, SIGNAL_EMIT "EnticeImageZoomIn" "";
+ source, "entice.image";
+ action, SIGNAL_EMIT "entice,image,current,zoom,in" "";
}
program
{
name, "MouseWheelZoomerOuter";
signal, "mouse,wheel,0,1";
- source, "EnticeImage";
- action, SIGNAL_EMIT "EnticeImageZoomOut" "";
+ source, "entice.image";
+ action, SIGNAL_EMIT "entice,image,current,zoom,out" "";
}
program
{
name, "JustImage";
signal, "mouse,in";
- source, "EnticeImage";
+ source, "entice.image";
action, STATE_SET "default" 0.0;
transition, LINEAR 0.15;
- target, "EnticeImagePreview";
+ target, "entice.preview";
}
program
{
name, "IncomingImageShow";
- signal, "EnticeImageDisplay";
+ signal, "entice,image,display";
source, "";
action, STATE_SET "default" 0.0;
transition, DECELERATE 0.1;
- target, "EnticeImage";
target, "EnticeImageClip";
- target, "EnticeImagePreview";
+ target, "entice.image";
+ target, "entice.preview";
target, "ButtonSaveImage";
after, "KillSaveImagePulsing";
}
program
{
name, "ShowPreview";
- signal, "EnticeImagePreviewPrep";
+ signal, "entice,preview,before";
source, "";
action, STATE_SET "default" 0.0;
transition, ACCELERATE 0.1;
- target, "EnticeImagePreview";
+ target, "entice.preview";
}
program
{
name, "ShowPreviewAfter";
- signal, "EnticeImagePreviewShow";
+ signal, "entice,preview,show";
source, "";
action, STATE_SET "visible" 0.0;
transition, ACCELERATE 0.25;
- target, "EnticeImagePreview";
+ target, "entice.preview";
}
===================================================================
RCS file:
/cvsroot/enlightenment/e17/apps/entice/data/themes/default/programs/enticethumb_group.edc,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- enticethumb_group.edc 9 Jan 2004 07:26:00 -0000 1.2
+++ enticethumb_group.edc 3 Apr 2004 02:24:12 -0000 1.3
@@ -2,15 +2,15 @@
{
name, "ShowThumb";
signal, "mouse,in";
- source, "EnticeThumb";
+ source, "entice.thumb";
in, 0.35 0.0;
- action, SIGNAL_EMIT "EnticeThumbPreview" "";
+ action, SIGNAL_EMIT "entice,thumb,preview" "";
}
program
{
name, "StopShrinkThumb";
signal, "mouse,in";
- source, "EnticeThumb";
+ source, "entice.thumb";
action, ACTION_STOP;
target, "ShrinkThumb";
}
@@ -18,16 +18,16 @@
{
name, "GrowThumb";
signal, "mouse,in";
- source, "EnticeThumb";
+ source, "entice.thumb";
action, STATE_SET "selected" 0.0;
- target, "EnticeThumb";
+ target, "entice.thumb";
transition, LINEAR 0.2;
}
program
{
name, "StopShowThumb";
signal, "mouse,out";
- source, "EnticeThumb";
+ source, "entice.thumb";
action, ACTION_STOP;
target, "ShowThumb";
}
@@ -35,7 +35,7 @@
{
name, "StopGrowThumb";
signal, "mouse,out";
- source, "EnticeThumb";
+ source, "entice.thumb";
action, ACTION_STOP;
target, "GrowThumb";
}
@@ -43,9 +43,9 @@
{
name, "ShrinkThumb";
signal, "mouse,out";
- source, "EnticeThumb";
+ source, "entice.thumb";
action, STATE_SET "default" 0.0;
- target, "EnticeThumb";
+ target, "entice.thumb";
transition, LINEAR 0.4;
in, 0.15 0.0;
}
@@ -53,26 +53,26 @@
{
name, "SelectThumb";
signal, "mouse,clicked,1";
- source, "EnticeThumb";
- action, SIGNAL_EMIT "EnticeThumbLoad" "";
+ source, "entice.thumb";
+ action, SIGNAL_EMIT "entice,thumb,load" "";
}
program
{
name, "ThumbSelected";
- signal, "EnticeThumbLoaded";
+ signal, "entice,thumb,load";
source, "";
action, STATE_SET "selected" 0.0;
transition, SINUSOIDAL 0.3;
target, "ThumbClip";
- target, "EnticeThumb";
+ target, "entice.thumb";
}
program
{
name, "ThumbUnSelected";
- signal, "EnticeThumbUnLoaded";
+ signal, "entice,thumb,unload";
source, "";
action, STATE_SET "default" 0.0;
transition, SINUSOIDAL 0.3;
target, "ThumbClip";
- target, "EnticeThumb";
+ target, "entice.thumb";
}
===================================================================
RCS file:
/cvsroot/enlightenment/e17/apps/entice/data/themes/default/programs/panel.edc,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- panel.edc 2 Mar 2004 21:14:10 -0000 1.3
+++ panel.edc 3 Apr 2004 02:24:12 -0000 1.4
@@ -12,14 +12,14 @@
name, "MouseWheelUp";
signal, "mouse,wheel,0,-1";
source, "PanelMouseArea";
- action, SIGNAL_EMIT "EnticeImagePrev" "";
+ action, SIGNAL_EMIT "entice,image,prev" "";
}
program
{
name, "MouseWheelDown";
signal, "mouse,wheel,0,1";
source, "PanelMouseArea";
- action, SIGNAL_EMIT "EnticeImageNext" "";
+ action, SIGNAL_EMIT "entice,image,next" "";
}
program
{
@@ -82,26 +82,26 @@
name, "ThumbScrollDownStop";
signal, "mouse,up,1";
source, "ScrollDown";
- action, SIGNAL_EMIT "EnticeThumbsScrollStop" "";
+ action, SIGNAL_EMIT "entice,thumbnail,scroll,stop" "";
}
program
{
name, "ThumbScrollDownStart";
signal, "mouse,down,1";
source, "ScrollDown";
- action, SIGNAL_EMIT "EnticeThumbsScrollPrevStart" "";
+ action, SIGNAL_EMIT "entice,thumbnail,scroll,start,prev" "";
}
program
{
name, "ThumbScrollUpStop";
signal, "mouse,up,1";
source, "ScrollUp";
- action, SIGNAL_EMIT "EnticeThumbsScrollStop" "";
+ action, SIGNAL_EMIT "entice,thumbnail,scroll,stop" "";
}
program
{
name, "ThumbScrollUpStart";
signal, "mouse,down,1";
source, "ScrollUp";
- action, SIGNAL_EMIT "EnticeThumbsScrollNextStart" "";
+ action, SIGNAL_EMIT "entice,thumbnail,scroll,start,next" "";
}
===================================================================
RCS file:
/cvsroot/enlightenment/e17/apps/entice/data/themes/default/programs/slideshow.edc,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- slideshow.edc 9 Jan 2004 07:05:25 -0000 1.1
+++ slideshow.edc 3 Apr 2004 02:24:12 -0000 1.2
@@ -23,7 +23,7 @@
name, "SlideShowAnimate";
signal, "";
source, "";
- action, SIGNAL_EMIT "EnticeImageNext" "";
+ action, SIGNAL_EMIT "entice,image,next" "";
in, 1.5 1.6;
after, "SlideShowAnimate";
}
-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
_______________________________________________
enlightenment-cvs mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs