diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2011-04-28 15:11:39 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2011-04-28 15:11:39 +0200 |
commit | b6f478475c6d29da86aba650793fe46b0548207f (patch) | |
tree | 8ff4a9b42bfc62fa2fca3f15273b6a9eb1931f25 /lib/efl/ffi/ecore_input.rb | |
parent | ef95395fd1467b2f84ad664356d5b6d8dd13b71a (diff) | |
download | ffi-efl-b6f478475c6d29da86aba650793fe46b0548207f.zip ffi-efl-b6f478475c6d29da86aba650793fe46b0548207f.tar.gz |
regenerate lib/efl/ffi with new hierarchy
Diffstat (limited to 'lib/efl/ffi/ecore_input.rb')
-rw-r--r-- | lib/efl/ffi/ecore_input.rb | 78 |
1 files changed, 0 insertions, 78 deletions
diff --git a/lib/efl/ffi/ecore_input.rb b/lib/efl/ffi/ecore_input.rb deleted file mode 100644 index e88e7fb..0000000 --- a/lib/efl/ffi/ecore_input.rb +++ /dev/null @@ -1,78 +0,0 @@ -#! /usr/bin/env ruby -# -*- coding: UTF-8 -*- -# -require 'efl/ffi' -# -module Efl - # - module EcoreInput - def self.method_missing m, *args, &block - return Efl::FFI.send 'ecore_'+m.to_s, *args, &block - end - end - # - module FFI - # - # - ffi_lib 'ecore' - # - # ENUMS - # typedef enum _Ecore_Event_Modifier {...} Ecore_Event_Modifier; - enum :ecore_event_modifier, [ :ecore_none, :ecore_shift, :ecore_ctrl, :ecore_alt, :ecore_win, :ecore_scroll, :ecore_caps, :ecore_last ] - # typedef enum _Ecore_Event_Press {...} Ecore_Event_Press; - enum :ecore_event_press, [ :ecore_down, :ecore_up ] - # typedef enum _Ecore_Event_IO {...} Ecore_Event_IO; - enum :ecore_event_io, [ :ecore_in, :ecore_out ] - # - # TYPEDEFS - # typedef uintptr_t Ecore_Window; - typedef :uintptr_t, :ecore_window - # typedef struct _Ecore_Event_Key Ecore_Event_Key; - typedef :pointer, :ecore_event_key - # typedef struct _Ecore_Event_Mouse_Button Ecore_Event_Mouse_Button; - typedef :pointer, :ecore_event_mouse_button - # typedef struct _Ecore_Event_Mouse_Wheel Ecore_Event_Mouse_Wheel; - typedef :pointer, :ecore_event_mouse_wheel - # typedef struct _Ecore_Event_Mouse_Move Ecore_Event_Mouse_Move; - typedef :pointer, :ecore_event_mouse_move - # typedef struct _Ecore_Event_Mouse_IO Ecore_Event_Mouse_IO; - typedef :pointer, :ecore_event_mouse_io - # typedef struct _Ecore_Event_Modifiers Ecore_Event_Modifiers; - typedef :pointer, :ecore_event_modifiers - typedef :pointer, :ecore_event_modifiers_p - # - # CALLBACKS - # - # FUNCTIONS - fcts = [ - # EAPI extern int ECORE_EVENT_KEY_DOWN; - # FIXME - # EAPI extern int ECORE_EVENT_KEY_UP; - # FIXME - # EAPI extern int ECORE_EVENT_MOUSE_BUTTON_DOWN; - # FIXME - # EAPI extern int ECORE_EVENT_MOUSE_BUTTON_UP; - # FIXME - # EAPI extern int ECORE_EVENT_MOUSE_MOVE; - # FIXME - # EAPI extern int ECORE_EVENT_MOUSE_WHEEL; - # FIXME - # EAPI extern int ECORE_EVENT_MOUSE_IN; - # FIXME - # EAPI extern int ECORE_EVENT_MOUSE_OUT; - # FIXME - # EAPI int ecore_event_init(void); - [ :ecore_event_init, [ ], :int ], - # EAPI int ecore_event_shutdown(void); - [ :ecore_event_shutdown, [ ], :int ], - # EAPI unsigned int ecore_event_modifier_mask(Ecore_Event_Modifier modifier); - [ :ecore_event_modifier_mask, [ :ecore_event_modifier ], :uint ], - # EAPI Ecore_Event_Modifier ecore_event_update_modifier(const char *key, Ecore_Event_Modifiers *modifiers, int inc); - [ :ecore_event_update_modifier, [ :string, :ecore_event_modifiers_p, :int ], :ecore_event_modifier ], - ] - # - attach_fcts fcts - end -end -# -# EOF |