summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Michael <cp.michael@samsung.com>2014-08-23 10:16:40 -0400
committerChris Michael <cp.michael@samsung.com>2014-09-16 09:15:43 -0400
commitd394da67bbbe0e456a83104aec6061cef57966ce (patch)
tree8dccd88743ce10d48a6827fe3aeb2cd0726efae9
parentd0a39bd80cf842b8d74212ff96bfbf726dfca336 (diff)
downloadefl-d394da67bbbe0e456a83104aec6061cef57966ce.tar.gz
Revert "ecore-input: Add an API-facing Ecore_Input_Device structure"
This reverts commit 67d6847fe8af7ef554c5ec6a41ea783259c5cc36. Revert adding an API-facing Ecore_Input_Device. Instead we will end up keeping the structure opaque and provide API functions to deal with input devices.
-rw-r--r--src/lib/ecore_input/Ecore_Input.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/lib/ecore_input/Ecore_Input.h b/src/lib/ecore_input/Ecore_Input.h
index 36e39599f9..8544b7a5b1 100644
--- a/src/lib/ecore_input/Ecore_Input.h
+++ b/src/lib/ecore_input/Ecore_Input.h
@@ -72,7 +72,6 @@ typedef struct _Ecore_Event_Mouse_Wheel Ecore_Event_Mouse_Wheel;
typedef struct _Ecore_Event_Mouse_Move Ecore_Event_Mouse_Move;
typedef struct _Ecore_Event_Mouse_IO Ecore_Event_Mouse_IO;
typedef struct _Ecore_Event_Modifiers Ecore_Event_Modifiers;
-typedef struct _Ecore_Input_Device Ecore_Input_Device;
typedef enum _Ecore_Event_Modifier
{
@@ -106,13 +105,6 @@ typedef enum _Ecore_Compose_State
ECORE_COMPOSE_DONE
} Ecore_Compose_State;
-typedef enum _Ecore_Input_Device_Type
-{
- ECORE_INPUT_DEVICE_POINTER = (1 << 0),
- ECORE_INPUT_DEVICE_KEYBOARD = (1 << 1),
- ECORE_INPUT_DEVICE_TOUCH = (1 << 2)
-} Ecore_Input_Device_Type;
-
struct _Ecore_Event_Key
{
const char *keyname;
@@ -241,15 +233,6 @@ struct _Ecore_Event_Modifiers
unsigned int array[ECORE_LAST];
};
-struct _Ecore_Input_Device
-{
- const char *seat;
- const char *name;
- const char *output;
-
- Ecore_Input_Device_Type type;
-};
-
EINA_DEPRECATED EAPI int ecore_event_init(void);
EINA_DEPRECATED EAPI int ecore_event_shutdown(void);