diff options
author | Miculcy Brian <morlenxus@gmx.net> | 2007-09-04 23:59:01 +0000 |
---|---|---|
committer | Miculcy Brian <morlenxus@gmx.net> | 2007-09-04 23:59:01 +0000 |
commit | aed16d2e23bb7012b0bcb7a3ef561ecc7b5a5c3e (patch) | |
tree | 4bd4c65ff8cda9d5626d119e504a4ccef3234673 /src/bin/e_config.h | |
parent | 485417d47a929b5c39680b08c4ebdc7bbb59b969 (diff) | |
download | enlightenment-aed16d2e23bb7012b0bcb7a3ef561ecc7b5a5c3e.tar.gz |
This allows to have shelfs only on specified desktops. Someone might want to add a nice hide/show animation...
SVN revision: 31619
Diffstat (limited to 'src/bin/e_config.h')
-rw-r--r-- | src/bin/e_config.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/bin/e_config.h b/src/bin/e_config.h index 7fd64d21f6..344e6fb8e8 100644 --- a/src/bin/e_config.h +++ b/src/bin/e_config.h @@ -37,6 +37,7 @@ typedef struct _E_Config_Desktop_Name E_Config_Desktop_Name; typedef struct _E_Config_Gadcon E_Config_Gadcon; typedef struct _E_Config_Gadcon_Client E_Config_Gadcon_Client; typedef struct _E_Config_Shelf E_Config_Shelf; +typedef struct _E_Config_Shelf_Desk E_Config_Shelf_Desk; typedef struct _E_Config_Mime_Icon E_Config_Mime_Icon; typedef struct _E_Event_Config_Icon_Theme E_Event_Config_Icon_Theme; @@ -412,6 +413,13 @@ struct _E_Config_Shelf int autohide_show_action; float hide_timeout; float hide_duration; + int desk_show_mode; + Evas_List *desk_list; +}; + +struct _E_Config_Shelf_Desk +{ + int x, y; }; struct _E_Config_Mime_Icon |