[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[E-devel] [PATCH] toc, toc... hello ?
The day 2005-12-28 i have send a patch for the Entrance themes (nebulous and darkrock), for the button of the menus to not works correctly, i don't have received any response of this email...
Yesterday i have make a little look to my actual cvs... and i have found "M" updates.. oh! my patches :) i have forgoted it!... ok, i have assumed to are included in the cvs and i have deleted my "M" files for update it correctly. Today i have look a person with a strange problem... "i can't posible to select any WM on entrance!!" have say... and i don't have understand... my patch not are applied ? my email not are received ? I don't know... but for this moments i put again my old "M" files modified...
Thanks
Thanatermesis
PS: http://sourceforge.net/mailarchive/message.php?msg_id=14304442
? patch.diff
? patch.diff.2
Index: Nebulous/Nebulous.edc
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/entrance/data/themes/Nebulous/Nebulous.edc,v
retrieving revision 1.13
diff -u -r1.13 Nebulous.edc
--- Nebulous/Nebulous.edc 10 Dec 2004 23:31:19 -0000 1.13
+++ Nebulous/Nebulous.edc 24 Feb 2006 22:59:43 -0000
@@ -25,6 +25,9 @@
group
{
name, "Main";
+ script {
+ public sessions_visible;
+ }
parts
{
part
@@ -1521,36 +1524,6 @@
}
program
{
- name, "ShowSessionChooser";
- signal, "mouse,up,1";
- source, "EntranceSessionMouseArea";
- action, STATE_SET "opening" 0.0;
- target, "EntranceSessionListClip";
- transition, LINEAR 0.35;
- after, "DisplaySessionChooser";
- }
- program
- {
- name, "DisplaySessionChooser";
- signal, "mouse,up,1";
- source, "EntranceSessionMouseArea";
- action, STATE_SET "visible" 0.0;
- target, "EntranceSessionListClip";
- target, "EntranceSessionListMouseArea";
- transition, LINEAR 0.5;
- }
- program
- {
- name, "SelectSession";
- signal, "entrance,xsession,selected";
- source, "";
- action, STATE_SET "default" 0.0;
- target, "EntranceSessionListClip";
- target, "EntranceSessionListMouseArea";
- transition, SINUSOIDAL 0.5;
- }
- program
- {
name, "SessionFaceLoaded";
signal, "entrance,user,selected";
source, "";
@@ -1596,6 +1569,49 @@
transition, LINEAR 0.3;
}
*/
+ program {
+ name: "session_selected";
+ signal: "entrance,xsession,selected";
+ source: "";
+ script {
+ new vis = get_int(sessions_visible);
+ if (vis == 1) {
+ emit("sessions_hide", "");
+ set_int(sessions_visible, 0);
+ }
+ else if (vis == 0) {
+ emit("sessions_show", "");
+ set_int(sessions_visible, 1);
+ }
+ else {
+ set_int(sessions_visible, 0);
+ }
+ }
+ }
+ program {
+ name, "ShowSessionChooserShow";
+ signal, "sessions_show";
+ action, STATE_SET "opening" 0.0;
+ target, "EntranceSessionListClip";
+ transition, LINEAR 0.35;
+ after, "DisplaySessionChooser";
+ }
+ program {
+ name, "ShowSessionChooserHide";
+ signal, "sessions_hide";
+ action, STATE_SET "default" 0.0;
+ target, "EntranceSessionListClip";
+ transition, LINEAR 0.35;
+ }
+ program {
+ name, "DisplaySessionChooser";
+ signal, "sessions_show";
+ action, STATE_SET "visible" 0.0;
+ target, "EntranceSessionListClip";
+ target, "EntranceSessionListMouseArea";
+ transition, LINEAR 0.5;
+ }
+
}
}
group
@@ -1607,7 +1623,7 @@
{
name, "entrance.xsession.icon";
type, RECT;
- mouse_events, 1;
+ mouse_events, 0;
description
{
state, "default" 0.0;
@@ -1629,7 +1645,7 @@
{
name, "entrance.xsession.title";
type, TEXT;
- mouse_events, 1;
+ mouse_events, 0;
effect, SOFT_SHADOW;
description
{
@@ -1659,24 +1675,28 @@
}
}
}
+ part {
+ name: "event_rect";
+ type: RECT;
+ mouse_events: 1;
+ description {
+ state: "default" 0.0;
+ visible: 1;
+ color: 0 0 0 0;
+ }
+ }
+
}
programs
{
- program
- {
- name, "SessionIconClicked";
- signal, "mouse,clicked,1";
- source, "entrance.xsession.icon";
- action, SIGNAL_EMIT "entrance,xsession,selected" "";
- }
- program
- {
- name, "SessionTitleClicked";
- signal, "mouse,clicked,1";
- source, "entrance.xsession.title";
- action, SIGNAL_EMIT "entrance,xsession,selected" "";
- }
- }
+ program {
+ name: "session_sel";
+ signal: "mouse,clicked,1";
+ source: "event_rect";
+ action: SIGNAL_EMIT "entrance,xsession,selected" "";
+ }
+ }
+
}
group
{
Index: darkrock/darkrock.edc
===================================================================
RCS file: /cvsroot/enlightenment/e17/apps/entrance/data/themes/darkrock/darkrock.edc,v
retrieving revision 1.5
diff -u -r1.5 darkrock.edc
--- darkrock/darkrock.edc 10 Dec 2004 23:31:20 -0000 1.5
+++ darkrock/darkrock.edc 24 Feb 2006 22:59:45 -0000
@@ -158,6 +158,9 @@
collections {
group {
name, "Main";
+ script {
+ public sessions_visible;
+ }
parts {
part {
name, "all_clip";
@@ -1961,27 +1964,7 @@
source, "";
action, SIGNAL_EMIT "entrance,user,auth,success,done" "";
}
- program
- {
- name, "SelectSession";
- signal, "entrance,xsession,selected";
- source, "";
- action, STATE_SET "default" 0.0;
- target, "EntranceSessionListClip";
- target, "EntranceSessionListMouseArea";
- transition, SINUSOIDAL 0.5;
- }
- program
- {
- name, "SelectSessionToo";
- signal, "entrance,xsession,selected";
- source, "";
- action, STATE_SET "default" 0.0;
- target, "EntranceSessionListClip";
- target, "EntranceSessionListMouseArea";
- transition, SINUSOIDAL 0.5;
- }
- program
+ program
{
name, "ShowSessionChooser";
signal, "mouse,up,1";
@@ -1991,23 +1974,56 @@
transition, LINEAR 0.35;
after, "DisplaySessionChooser";
}
- program
+ program
{
+ name, "session_default_save_on_change";
+ signal, "entrance,xsession,selected";
+ source, "";
+ action, SIGNAL_EMIT "entrance,user,xsession,set" "";
+ }
+ program {
+ name: "session_selected";
+ signal: "entrance,xsession,selected";
+ source: "";
+ script {
+ new vis = get_int(sessions_visible);
+ if (vis == 1) {
+ emit("sessions_hide", "");
+ set_int(sessions_visible, 0);
+ }
+ else if (vis == 0) {
+ emit("sessions_show", "");
+ set_int(sessions_visible, 1);
+ }
+ else {
+ set_int(sessions_visible, 0);
+ }
+ }
+ }
+ program {
+ name, "ShowSessionChooserShow";
+ signal, "sessions_show";
+ action, STATE_SET "opening" 0.0;
+ target, "EntranceSessionListClip";
+ transition, LINEAR 0.35;
+ after, "DisplaySessionChooser";
+ }
+ program {
+ name, "ShowSessionChooserHide";
+ signal, "sessions_hide";
+ action, STATE_SET "default" 0.0;
+ target, "EntranceSessionListClip";
+ transition, LINEAR 0.35;
+ }
+ program {
name, "DisplaySessionChooser";
- signal, "mouse,up,1";
- source, "EntranceSessionMouseArea";
+ signal, "sessions_show";
action, STATE_SET "visible" 0.0;
target, "EntranceSessionListClip";
target, "EntranceSessionListMouseArea";
transition, LINEAR 0.5;
}
- program
- {
- name, "session_default_save_on_change";
- signal, "entrance,xsession,selected";
- source, "";
- action, SIGNAL_EMIT "entrance,user,xsession,set" "";
- }
+
}
}
group
@@ -2019,7 +2035,7 @@
{
name, "entrance.xsession.icon";
type, RECT;
- mouse_events, 1;
+ mouse_events, 0;
description
{
state, "default" 0.0;
@@ -2041,7 +2057,7 @@
{
name, "entrance.xsession.title";
type, TEXT;
- mouse_events, 1;
+ mouse_events, 0;
effect, SHADOW;
description
{
@@ -2071,23 +2087,27 @@
}
}
}
+ part {
+ name: "event_rect";
+ type: RECT;
+ mouse_events: 1;
+ description {
+ state: "default" 0.0;
+ visible: 1;
+ color: 0 0 0 0;
+ }
+ }
+
}
programs
{
- program
- {
- name, "SessionTitleClicked";
- signal, "mouse,clicked,1";
- source, "entrance.xsession.title";
- action, SIGNAL_EMIT "entrance,xsession,selected" "";
- }
- program
- {
- name, "SessionIconClicked";
- signal, "mouse,clicked,1";
- source, "entrance.xsession.icon";
- action, SIGNAL_EMIT "entrance,xsession,selected" "";
- }
+
+ program {
+ name: "session_sel";
+ signal: "mouse,clicked,1";
+ source: "event_rect";
+ action: SIGNAL_EMIT "entrance,xsession,selected" "";
+ }
}
}
group