diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2011-08-30 15:19:57 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2011-08-30 15:19:57 +0200 |
commit | 7e329c15fe8f339177a7ff2b3ee3af734898b0e5 (patch) | |
tree | 9f78f104bc9d9c2d1e0baaa967dd10943aa728a6 /lib | |
parent | b3a31efd9abecaf1c93675257cd64220c8862d7f (diff) | |
download | ffi-efl-7e329c15fe8f339177a7ff2b3ee3af734898b0e5.zip ffi-efl-7e329c15fe8f339177a7ff2b3ee3af734898b0e5.tar.gz |
update edje, elementary, evas API
Diffstat (limited to 'lib')
-rw-r--r-- | lib/efl/native/edje.rb | 7 | ||||
-rw-r--r-- | lib/efl/native/elementary.rb | 26 | ||||
-rw-r--r-- | lib/efl/native/evas.rb | 4 |
3 files changed, 35 insertions, 2 deletions
diff --git a/lib/efl/native/edje.rb b/lib/efl/native/edje.rb index a841623..16487c7 100644 --- a/lib/efl/native/edje.rb +++ b/lib/efl/native/edje.rb @@ -71,6 +71,9 @@ module Efl enum :edje_external_param_flags, [ :edje_external_param_flags_none, 0, :edje_external_param_flags_get, :edje_external_param_flags_set, :edje_external_param_flags_state, :edje_external_param_flags_constructor, :edje_external_param_flags_regular, :edje_external_param_flags_set, :edje_external_param_flags_state ] + # typedef enum {...} Edje_Input_Panel_Layout; + enum :edje_input_panel_layout, [ :edje_input_panel_layout_normal, :edje_input_panel_layout_number, :edje_input_panel_layout_email, :edje_input_panel_layout_url, + :edje_input_panel_layout_phonenumber, :edje_input_panel_layout_ip, :edje_input_panel_layout_month, :edje_input_panel_layout_numberonly, :edje_input_panel_layout_invalid ] # # TYPEDEFS # typedef struct _Edje_Version Edje_Version; @@ -337,6 +340,10 @@ module Efl [ :edje_object_part_text_cursor_pos_set, [ :evas_object_p, :string, :edje_cursor, :int ], :void ], # EAPI int edje_object_part_text_cursor_pos_get (const Evas_Object *obj, const char *part, Edje_Cursor cur); [ :edje_object_part_text_cursor_pos_get, [ :evas_object_p, :string, :edje_cursor ], :int ], + # EAPI void edje_object_part_text_input_panel_layout_set (const Evas_Object *obj, const char *part, Edje_Input_Panel_Layout layout); + [ :edje_object_part_text_input_panel_layout_set, [ :evas_object_p, :string, :edje_input_panel_layout ], :void ], + # EAPI Edje_Input_Panel_Layout edje_object_part_text_input_panel_layout_get (const Evas_Object *obj, const char *part); + [ :edje_object_part_text_input_panel_layout_get, [ :evas_object_p, :string ], :edje_input_panel_layout ], # EAPI void edje_object_text_insert_filter_callback_add (Evas_Object *obj, const char *part, Edje_Text_Filter_Cb func, void *data); [ :edje_object_text_insert_filter_callback_add, [ :evas_object_p, :string, :edje_text_filter_cb, :void_p ], :void ], # EAPI void *edje_object_text_insert_filter_callback_del (Evas_Object *obj, const char *part, Edje_Text_Filter_Cb func); diff --git a/lib/efl/native/elementary.rb b/lib/efl/native/elementary.rb index ca8e85e..2940033 100644 --- a/lib/efl/native/elementary.rb +++ b/lib/efl/native/elementary.rb @@ -39,6 +39,9 @@ module Efl typedef :pointer, :elm_text_format_p # typedef enum _Elm_Wrap_Type {...} Elm_Wrap_Type; enum :elm_wrap_type, [ :elm_wrap_none, 0, :elm_wrap_char, :elm_wrap_word, :elm_wrap_mixed, :elm_wrap_last ] + # typedef enum {...} Elm_Input_Panel_Layout; + enum :elm_input_panel_layout, [ :elm_input_panel_layout_normal, :elm_input_panel_layout_number, :elm_input_panel_layout_email, :elm_input_panel_layout_url, + :elm_input_panel_layout_phonenumber, :elm_input_panel_layout_ip, :elm_input_panel_layout_month, :elm_input_panel_layout_numberonly, :elm_input_panel_layout_invalid ] # typedef enum _Elm_Win_Type {...} Elm_Win_Type; enum :elm_win_type, [ :elm_win_basic, :elm_win_dialog_basic, :elm_win_desktop, :elm_win_dock, :m, :elm_win_toolbar, :elm_win_menu, :elm_win_utility, :elm_win_splash, :elm_win_dropdown_menu, :elm_win_popup_menu, :elm_win_tooltip, :t, :elm_win_notification, :elm_win_combo, :elm_win_dnd, :elm_win_inlined_image, :t, :e, @@ -120,7 +123,8 @@ module Efl # typedef enum _Elm_Calendar_Mark_Repeat {...} Elm_Calendar_Mark_Repeat; enum :elm_calendar_mark_repeat, [ :elm_calendar_unique, :elm_calendar_daily, :elm_calendar_weekly, :elm_calendar_monthly, :elm_calendar_annually ] # typedef enum _Elm_Ctxpopup_Direction {...} Elm_Ctxpopup_Direction; - enum :elm_ctxpopup_direction, [ :elm_ctxpopup_direction_down, :elm_ctxpopup_direction_right, :elm_ctxpopup_direction_left, :elm_ctxpopup_direction_up ] + enum :elm_ctxpopup_direction, [ :elm_ctxpopup_direction_down, :elm_ctxpopup_direction_right, :elm_ctxpopup_direction_left, :elm_ctxpopup_direction_up, + :elm_ctxpopup_direction_dont_know ] typedef :pointer, :elm_ctxpopup_direction_p # typedef enum {...} Elm_Transit_Tween_Mode; enum :elm_transit_tween_mode, [ :elm_transit_tween_mode_linear, :elm_transit_tween_mode_sinusoidal, :elm_transit_tween_mode_decelerate, @@ -518,6 +522,14 @@ module Efl [ :elm_object_scale_set, [ :evas_object_p, :double ], :void ], # EAPI double elm_object_scale_get(const Evas_Object *obj); [ :elm_object_scale_get, [ :evas_object_p ], :double ], + # EAPI Eina_Bool elm_password_show_last_get(void); + [ :elm_password_show_last_get, [ ], :eina_bool ], + # EAPI void elm_password_show_last_set(Eina_Bool password_show_last); + [ :elm_password_show_last_set, [ :eina_bool ], :void ], + # EAPI double elm_password_show_last_timeout_get(void); + [ :elm_password_show_last_timeout_get, [ ], :double ], + # EAPI void elm_password_show_last_timeout_set(double password_show_last_timeout); + [ :elm_password_show_last_timeout_set, [ :double ], :void ], # EAPI Eina_Bool elm_mirrored_get(void); [ :elm_mirrored_get, [ ], :eina_bool ], # EAPI void elm_mirrored_set(Eina_Bool mirrored); @@ -1675,6 +1687,10 @@ module Efl [ :elm_entry_filter_limit_size, [ :void_p, :evas_object_p, :string_array ], :void ], # EAPI void elm_entry_filter_accept_set(void *data, Evas_Object *entry, char **text); [ :elm_entry_filter_accept_set, [ :void_p, :evas_object_p, :string_array ], :void ], + # EAPI void elm_entry_input_panel_layout_set(Evas_Object *obj, Elm_Input_Panel_Layout layout); + [ :elm_entry_input_panel_layout_set, [ :evas_object_p, :elm_input_panel_layout ], :void ], + # EAPI Elm_Input_Panel_Layout elm_entry_input_panel_layout_get(Evas_Object *obj); + [ :elm_entry_input_panel_layout_get, [ :evas_object_p ], :elm_input_panel_layout ], # EAPI Evas_Object *elm_anchorview_add(Evas_Object *parent); [ :elm_anchorview_add, [ :evas_object_p ], :evas_object_p ], # EAPI void elm_anchorview_hover_parent_set(Evas_Object *obj, Evas_Object *parent); @@ -3117,6 +3133,8 @@ module Efl # EAPI void elm_ctxpopup_direction_priority_get(Evas_Object *obj, Elm_Ctxpopup_Direction *first, Elm_Ctxpopup_Direction *second, Elm_Ctxpopup_Direction *third, Elm_Ctxpopup_Direction *fourth); [ :elm_ctxpopup_direction_priority_get, [ :evas_object_p, :elm_ctxpopup_direction_p, :elm_ctxpopup_direction_p, :elm_ctxpopup_direction_p, :elm_ctxpopup_direction_p ], :void ], + # EAPI Elm_Ctxpopup_Direction elm_ctxpopup_direction_get(const Evas_Object *obj); + [ :elm_ctxpopup_direction_get, [ :evas_object_p ], :elm_ctxpopup_direction ], # EAPI Elm_Transit *elm_transit_add(void); [ :elm_transit_add, [ ], :elm_transit_p ], # EAPI void elm_transit_del(Elm_Transit *transit); @@ -3283,6 +3301,12 @@ module Efl [ :elm_factory_content_set, [ :evas_object_p, :evas_object_p ], :void ], # EAPI Evas_Object *elm_factory_content_get(const Evas_Object *obj); [ :elm_factory_content_get, [ :evas_object_p ], :evas_object_p ], + # EAPI void elm_factory_maxmin_mode_set(Evas_Object *obj, Eina_Bool enabled); + [ :elm_factory_maxmin_mode_set, [ :evas_object_p, :eina_bool ], :void ], + # EAPI Eina_Bool elm_factory_maxmin_mode_get(const Evas_Object *obj); + [ :elm_factory_maxmin_mode_get, [ :evas_object_p ], :eina_bool ], + # EAPI void elm_factory_maxmin_reset_set(Evas_Object *obj); + [ :elm_factory_maxmin_reset_set, [ :evas_object_p ], :void ], # EAPI Evas_Object *elm_video_add(Evas_Object *parent); [ :elm_video_add, [ :evas_object_p ], :evas_object_p ], # EAPI void elm_video_file_set(Evas_Object *video, const char *filename); diff --git a/lib/efl/native/evas.rb b/lib/efl/native/evas.rb index c65177f..d713bde 100644 --- a/lib/efl/native/evas.rb +++ b/lib/efl/native/evas.rb @@ -42,7 +42,7 @@ module Efl enum :evas_font_hinting_flags, [ :evas_font_hinting_none, :evas_font_hinting_auto, :evas_font_hinting_bytecode ] # typedef enum _Evas_Colorspace {...} Evas_Colorspace; enum :evas_colorspace, [ :evas_colorspace_argb8888, :evas_colorspace_ycbcr422p601_pl, :evas_colorspace_ycbcr422p709_pl, :evas_colorspace_rgb565_a5p, - :evas_colorspace_gry8, :evas_colorspace_ycbcr422601_pl ] + :evas_colorspace_gry8, :evas_colorspace_ycbcr422601_pl, :evas_colorspace_ycbcr420nv12601_pl, :evas_colorspace_ycbcr420tm12601_pl ] # typedef enum _Evas_Object_Table_Homogeneous_Mode {...} Evas_Object_Table_Homogeneous_Mode; enum :evas_object_table_homogeneous_mode, [ :evas_object_table_homogeneous_none, 0, :evas_object_table_homogeneous_table, 1, :evas_object_table_homogeneous_item, 2 ] @@ -1118,6 +1118,8 @@ module Efl [ :evas_object_smart_calculate, [ :evas_object_p ], :void ], # EAPI void evas_smart_objects_calculate (Evas *e); [ :evas_smart_objects_calculate, [ :evas_p ], :void ], + # EAPI int evas_smart_objects_calculate_count_get (const Evas *e); + [ :evas_smart_objects_calculate_count_get, [ :evas_p ], :int ], # EAPI void evas_object_smart_move_children_relative(Evas_Object *obj, Evas_Coord dx, Evas_Coord dy); [ :evas_object_smart_move_children_relative, [ :evas_object_p, :int, :int ], :void ], # EAPI Evas_Object *evas_object_smart_clipped_clipper_get (Evas_Object *obj); |