#! /usr/bin/env ruby # -*- coding: UTF-8 -*- # require 'efl/native' require 'efl/native/elementary' # module Efl # module ElmFileSelectorButton # FCT_PREFIX = 'elm_fileselector_button_' 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.so.1' # # FUNCTIONS fcts = [ # EAPI Evas_Object *elm_fileselector_button_add(Evas_Object *parent); [ :elm_fileselector_button_add, [ :pointer ], :pointer ], # EAPI void elm_fileselector_button_window_title_set(Evas_Object *obj, const char *title); [ :elm_fileselector_button_window_title_set, [ :pointer, :string ], :void ], # EAPI const char *elm_fileselector_button_window_title_get(const Evas_Object *obj); [ :elm_fileselector_button_window_title_get, [ :pointer ], :string ], # EAPI void elm_fileselector_button_window_size_set(Evas_Object *obj, Evas_Coord width, Evas_Coord height); [ :elm_fileselector_button_window_size_set, [ :pointer, :int, :int ], :void ], # EAPI void elm_fileselector_button_window_size_get(const Evas_Object *obj, Evas_Coord *width, Evas_Coord *height); [ :elm_fileselector_button_window_size_get, [ :pointer, :pointer, :pointer ], :void ], # EAPI void elm_fileselector_button_path_set(Evas_Object *obj, const char *path); [ :elm_fileselector_button_path_set, [ :pointer, :string ], :void ], # EAPI const char *elm_fileselector_button_path_get(const Evas_Object *obj); [ :elm_fileselector_button_path_get, [ :pointer ], :string ], # EAPI void elm_fileselector_button_expandable_set(Evas_Object *obj, Eina_Bool value); [ :elm_fileselector_button_expandable_set, [ :pointer, :bool ], :void ], # EAPI Eina_Bool elm_fileselector_button_expandable_get(const Evas_Object *obj); [ :elm_fileselector_button_expandable_get, [ :pointer ], :bool ], # EAPI void elm_fileselector_button_folder_only_set(Evas_Object *obj, Eina_Bool value); [ :elm_fileselector_button_folder_only_set, [ :pointer, :bool ], :void ], # EAPI Eina_Bool elm_fileselector_button_folder_only_get(const Evas_Object *obj); [ :elm_fileselector_button_folder_only_get, [ :pointer ], :bool ], # EAPI void elm_fileselector_button_is_save_set(Evas_Object *obj, Eina_Bool value); [ :elm_fileselector_button_is_save_set, [ :pointer, :bool ], :void ], # EAPI Eina_Bool elm_fileselector_button_is_save_get(const Evas_Object *obj); [ :elm_fileselector_button_is_save_get, [ :pointer ], :bool ], # EAPI void elm_fileselector_button_inwin_mode_set(Evas_Object *obj, Eina_Bool value); [ :elm_fileselector_button_inwin_mode_set, [ :pointer, :bool ], :void ], # EAPI Eina_Bool elm_fileselector_button_inwin_mode_get(const Evas_Object *obj); [ :elm_fileselector_button_inwin_mode_get, [ :pointer ], :bool ], ] # attach_fcts fcts # end end # # EOF