summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-02-27 15:36:00 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2012-02-27 15:36:00 +0100
commit8dc91c77cfcb1e6adc7cbabef1fa578df00a3617 (patch)
tree9170624fcbe1083b35f0d777d8d59cdd30e7e8d0 /lib
parent2d73b282cb57c14a2dc9b8d4a052643c48bae892 (diff)
downloadffi-efl-8dc91c77cfcb1e6adc7cbabef1fa578df00a3617.zip
ffi-efl-8dc91c77cfcb1e6adc7cbabef1fa578df00a3617.tar.gz
parse elm_calendar.h, generate elm_calendar.rb
Diffstat (limited to 'lib')
-rw-r--r--lib/efl/elm/elm_calendar.rb22
-rw-r--r--lib/efl/native/elm/elm_calendar.rb76
2 files changed, 98 insertions, 0 deletions
diff --git a/lib/efl/elm/elm_calendar.rb b/lib/efl/elm/elm_calendar.rb
new file mode 100644
index 0000000..e8cf708
--- /dev/null
+++ b/lib/efl/elm/elm_calendar.rb
@@ -0,0 +1,22 @@
+#! /usr/bin/env ruby
+# -*- coding: UTF-8 -*-
+#
+require 'efl/elm/elm_object'
+require 'efl/native/elm/elm_calendar'
+#
+module Efl
+ #
+ module Elm
+ #
+ class ElmCalendar < ElmObject
+ #
+ include Helper
+ constructor :elm_calendar_add
+ search_prefixes 'elm_calendar_'
+ #
+ end
+ #
+ end
+end
+#
+# EOF
diff --git a/lib/efl/native/elm/elm_calendar.rb b/lib/efl/native/elm/elm_calendar.rb
new file mode 100644
index 0000000..9677040
--- /dev/null
+++ b/lib/efl/native/elm/elm_calendar.rb
@@ -0,0 +1,76 @@
+#! /usr/bin/env ruby
+# -*- coding: UTF-8 -*-
+#
+require 'efl/native'
+require 'efl/native/elementary'
+#
+module Efl
+ #
+ module ElmCalendar
+ #
+ FCT_PREFIX = 'elm_calendar_' unless const_defined? :FCT_PREFIX
+ #
+ def self.method_missing meth, *args, &block
+ sym = Efl::MethodResolver.resolve self, meth, FCT_PREFIX
+ self.send sym, *args, &block
+ end
+ #
+ end
+ #
+ module Native
+ #
+ ffi_lib 'elementary-ver-pre-svn-09.so.0'
+ #
+ # ENUMS
+ # typedef enum {...} Elm_Calendar_Mark_Repeat;
+ enum :elm_calendar_mark_repeat, [ :elm_calendar_unique, :elm_calendar_daily, :elm_calendar_weekly, :elm_calendar_monthly,
+ :elm_calendar_annually ]
+ #
+ # TYPEDEFS
+ # typedef struct _Elm_Calendar_Mark Elm_Calendar_Mark;
+ typedef :pointer, :elm_calendar_mark
+ #
+ # FUNCTIONS
+ fcts = [
+ # EAPI Evas_Object *elm_calendar_add(Evas_Object *parent);
+ [ :elm_calendar_add, [ :evas_object ], :evas_object ],
+ # EAPI const char **elm_calendar_weekdays_names_get(const Evas_Object *obj);
+ [ :elm_calendar_weekdays_names_get, [ :evas_object ], :pointer ],
+ # EAPI void elm_calendar_weekdays_names_set(Evas_Object *obj, const char *weekdays[]);
+ # FIXME
+ # EAPI void elm_calendar_min_max_year_set(Evas_Object *obj, int min, int max);
+ [ :elm_calendar_min_max_year_set, [ :evas_object, :int, :int ], :void ],
+ # EAPI void elm_calendar_min_max_year_get(const Evas_Object *obj, int *min, int *max);
+ [ :elm_calendar_min_max_year_get, [ :evas_object, :pointer, :pointer ], :void ],
+ # EAPI void elm_calendar_day_selection_enabled_set(Evas_Object *obj, Eina_Bool enabled);
+ [ :elm_calendar_day_selection_enabled_set, [ :evas_object, :bool ], :void ],
+ # EAPI Eina_Bool elm_calendar_day_selection_enabled_get(const Evas_Object *obj);
+ [ :elm_calendar_day_selection_enabled_get, [ :evas_object ], :bool ],
+ # EAPI void elm_calendar_selected_time_set(Evas_Object *obj, struct tm *selected_time);
+ [ :elm_calendar_selected_time_set, [ :evas_object, :pointer ], :void ],
+ # EAPI Eina_Bool elm_calendar_selected_time_get(const Evas_Object *obj, struct tm *selected_time);
+ [ :elm_calendar_selected_time_get, [ :evas_object, :pointer ], :bool ],
+ # EAPI void elm_calendar_format_function_set(Evas_Object *obj, char *(*format_function)(struct tm *stime));
+ # FIXME
+ # EAPI Elm_Calendar_Mark *elm_calendar_mark_add(Evas_Object *obj, const char *mark_type, struct tm *mark_time, Elm_Calendar_Mark_Repeat repeat);
+ [ :elm_calendar_mark_add, [ :evas_object, :string, :pointer, :elm_calendar_mark_repeat ], :elm_calendar_mark ],
+ # EAPI void elm_calendar_mark_del(Elm_Calendar_Mark *mark);
+ [ :elm_calendar_mark_del, [ :elm_calendar_mark ], :void ],
+ # EAPI void elm_calendar_marks_clear(Evas_Object *obj);
+ [ :elm_calendar_marks_clear, [ :evas_object ], :void ],
+ # EAPI const Eina_List *elm_calendar_marks_get(const Evas_Object *obj);
+ [ :elm_calendar_marks_get, [ :evas_object ], :eina_list ],
+ # EAPI void elm_calendar_marks_draw(Evas_Object *obj);
+ [ :elm_calendar_marks_draw, [ :evas_object ], :void ],
+ # EAPI void elm_calendar_interval_set(Evas_Object *obj, double interval);
+ [ :elm_calendar_interval_set, [ :evas_object, :double ], :void ],
+ # EAPI double elm_calendar_interval_get(const Evas_Object *obj);
+ [ :elm_calendar_interval_get, [ :evas_object ], :double ],
+ ]
+ #
+ attach_fcts fcts
+ #
+ end
+end
+#
+# EOF