New Mouse Bindings dialog. Plz try, test, and let me know, if something

is wrong.


SVN revision: 25071
This commit is contained in:
sndev 2006-08-23 12:49:11 +00:00 committed by sndev
parent 96c905183d
commit 705029347c
12 changed files with 1163 additions and 0 deletions

View File

@ -40,6 +40,12 @@ images {
image: "e17_icon_right_arrow.png" COMP;
image: "e17_icon_up_arrow.png" COMP;
image: "e17_icon_down_arrow.png" COMP;
image: "e17_icon_mouse_bindings_left.png" COMP;
image: "e17_icon_mouse_bindings_middle.png" COMP;
image: "e17_icon_mouse_bindings_right.png" COMP;
image: "e17_icon_mouse_bindings_scroll_up.png" COMP;
image: "e17_icon_mouse_bindings_scroll_down.png" COMP;
image: "e17_shelf_bottom_left.png" COMP;
image: "e17_shelf_bottom.png" COMP;
@ -617,6 +623,101 @@ group {
}
}
}
group {
name: "e/icons/enlightenment/mouse_binding_left";
max: 64 64;
parts {
part {
name: "icon";
mouse_events: 0;
description {
state: "default" 0.0;
aspect: 1.0 1.0;
aspect_preference: BOTH;
max: 64 64;
image {
normal: "e17_icon_mouse_bindings_left.png";
}
}
}
}
}
group {
name: "e/icons/enlightenment/mouse_binding_middle";
max: 64 64;
parts {
part {
name: "icon";
mouse_events: 0;
description {
state: "default" 0.0;
aspect: 1.0 1.0;
aspect_preference: BOTH;
max: 64 64;
image {
normal: "e17_icon_mouse_bindings_middle.png";
}
}
}
}
}
group {
name: "e/icons/enlightenment/mouse_binding_right";
max: 64 64;
parts {
part {
name: "icon";
mouse_events: 0;
description {
state: "default" 0.0;
aspect: 1.0 1.0;
aspect_preference: BOTH;
max: 64 64;
image {
normal: "e17_icon_mouse_bindings_right.png";
}
}
}
}
}
group {
name: "e/icons/enlightenment/mouse_binding_scroll_up";
max: 64 64;
parts {
part {
name: "icon";
mouse_events: 0;
description {
state: "default" 0.0;
aspect: 1.0 1.0;
aspect_preference: BOTH;
max: 64 64;
image {
normal: "e17_icon_mouse_bindings_scroll_up.png";
}
}
}
}
}
group {
name: "e/icons/enlightenment/mouse_binding_scroll_down";
max: 64 64;
parts {
part {
name: "icon";
mouse_events: 0;
description {
state: "default" 0.0;
aspect: 1.0 1.0;
aspect_preference: BOTH;
max: 64 64;
image {
normal: "e17_icon_mouse_bindings_scroll_down.png";
}
}
}
}
}
group {
name: "e/icons/enlightenment/keys";
max: 64 64;

View File

@ -314,6 +314,11 @@ e17_icon_windows.png \
e17_icon_window_focus.png \
e17_icon_lost_windows.png \
e17_icon_screen_resolution.png \
e17_icon_mouse_bindings_left.png \
e17_icon_mouse_bindings_middle.png \
e17_icon_mouse_bindings_right.png \
e17_icon_mouse_bindings_scroll_up.png \
e17_icon_mouse_bindings_scroll_down.png \
e17_pointer.png \
e17_pointer_mono.png \
e17_dialog_watermark.png \

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -132,6 +132,7 @@ e_int_config_theme.h \
e_int_config_icon_themes.h \
e_int_config_menus.h \
e_int_config_keybindings.h \
e_int_config_mousebindings.h \
e_int_config_cursor.h \
e_int_config_fonts.h \
e_int_config_startup.h \
@ -283,6 +284,7 @@ e_int_config_theme.c \
e_int_config_icon_themes.c \
e_int_config_menus.c \
e_int_config_keybindings.c \
e_int_config_mousebindings.c \
e_int_config_cursor.c \
e_int_config_fonts.c \
e_int_config_startup.c \

View File

@ -80,6 +80,7 @@ e_configure_show(E_Container *con)
e_configure_header_item_add(eco, "enlightenment/behavior", _("Behavior"));
e_configure_standard_item_add(eco, "enlightenment/focus", _("Window Focus"), e_int_config_focus);
e_configure_standard_item_add(eco, "enlightenment/keys", _("Key Bindings"), e_int_config_keybindings);
e_configure_standard_item_add(eco, "enlightenment/mouse_binding_left", _("Mouse Bindings"), e_int_config_mousebindings);
e_configure_standard_item_add(eco, "enlightenment/menus", _("Menus"), e_int_config_menus);
e_configure_header_item_add(eco, "enlightenment/misc", _("Miscellaneous"));

View File

@ -105,6 +105,7 @@
#include "e_int_config_icon_themes.h"
#include "e_int_config_menus.h"
#include "e_int_config_keybindings.h"
#include "e_int_config_mousebindings.h"
#include "e_int_config_cursor.h"
#include "e_int_config_fonts.h"
#include "e_int_config_startup.h"

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,9 @@
#ifdef E_TYPEDEFS
#else
#ifndef E_INT_CONFIG_MOUSEBINDINGS_H
#define E_INT_CONFIG_MOUSEBINDINGS_H
EAPI E_Config_Dialog *e_int_config_mousebindings(E_Container *con);
#endif
#endif