diff options
author | Carsten Haitzler <raster@rasterman.com> | 2007-05-06 05:03:18 +0000 |
---|---|---|
committer | Carsten Haitzler <raster@rasterman.com> | 2007-05-06 05:03:18 +0000 |
commit | 826f1c2dcf159c8af60e0aec778633c9e1938b70 (patch) | |
tree | 13cc5af9e2161e1175717549bfa8922e325e8508 /legacy/emotion/src/lib/emotion_smart.c | |
parent | 002d09cc7de19ab1a68281fad64195e639095f00 (diff) |
export api calls to modules
SVN revision: 29867
Diffstat (limited to '')
-rw-r--r-- | legacy/emotion/src/lib/emotion_smart.c | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/legacy/emotion/src/lib/emotion_smart.c b/legacy/emotion/src/lib/emotion_smart.c index b24ce9c6a5..a0b4a083a1 100644 --- a/legacy/emotion/src/lib/emotion_smart.c +++ b/legacy/emotion/src/lib/emotion_smart.c | |||
@@ -807,7 +807,7 @@ emotion_object_meta_info_get(Evas_Object *obj, Emotion_Meta_Info meta) | |||
807 | /* Utility calls for modules */ | 807 | /* Utility calls for modules */ |
808 | /*****************************/ | 808 | /*****************************/ |
809 | 809 | ||
810 | void * | 810 | EAPI void * |
811 | _emotion_video_get(Evas_Object *obj) | 811 | _emotion_video_get(Evas_Object *obj) |
812 | { | 812 | { |
813 | Smart_Data *sd; | 813 | Smart_Data *sd; |
@@ -816,7 +816,7 @@ _emotion_video_get(Evas_Object *obj) | |||
816 | return sd->video; | 816 | return sd->video; |
817 | } | 817 | } |
818 | 818 | ||
819 | void | 819 | EAPI void |
820 | _emotion_frame_new(Evas_Object *obj) | 820 | _emotion_frame_new(Evas_Object *obj) |
821 | { | 821 | { |
822 | Smart_Data *sd; | 822 | Smart_Data *sd; |
@@ -825,7 +825,7 @@ _emotion_frame_new(Evas_Object *obj) | |||
825 | evas_object_image_pixels_dirty_set(sd->obj, 1); | 825 | evas_object_image_pixels_dirty_set(sd->obj, 1); |
826 | } | 826 | } |
827 | 827 | ||
828 | void | 828 | EAPI void |
829 | _emotion_video_pos_update(Evas_Object *obj, double pos, double len) | 829 | _emotion_video_pos_update(Evas_Object *obj, double pos, double len) |
830 | { | 830 | { |
831 | Smart_Data *sd; | 831 | Smart_Data *sd; |
@@ -840,7 +840,7 @@ _emotion_video_pos_update(Evas_Object *obj, double pos, double len) | |||
840 | if (nlen) evas_object_smart_callback_call(obj, "length_change", NULL); | 840 | if (nlen) evas_object_smart_callback_call(obj, "length_change", NULL); |
841 | } | 841 | } |
842 | 842 | ||
843 | void | 843 | EAPI void |
844 | _emotion_frame_resize(Evas_Object *obj, int w, int h, double ratio) | 844 | _emotion_frame_resize(Evas_Object *obj, int w, int h, double ratio) |
845 | { | 845 | { |
846 | Smart_Data *sd; | 846 | Smart_Data *sd; |
@@ -864,7 +864,7 @@ _emotion_frame_resize(Evas_Object *obj, int w, int h, double ratio) | |||
864 | if (changed) evas_object_smart_callback_call(obj, "frame_resize", NULL); | 864 | if (changed) evas_object_smart_callback_call(obj, "frame_resize", NULL); |
865 | } | 865 | } |
866 | 866 | ||
867 | void | 867 | EAPI void |
868 | _emotion_decode_stop(Evas_Object *obj) | 868 | _emotion_decode_stop(Evas_Object *obj) |
869 | { | 869 | { |
870 | Smart_Data *sd; | 870 | Smart_Data *sd; |
@@ -877,18 +877,19 @@ _emotion_decode_stop(Evas_Object *obj) | |||
877 | } | 877 | } |
878 | } | 878 | } |
879 | 879 | ||
880 | void | 880 | EAPI void |
881 | _emotion_playback_finished(Evas_Object *obj) | 881 | _emotion_playback_finished(Evas_Object *obj) |
882 | { | 882 | { |
883 | evas_object_smart_callback_call(obj, "playback_finished", NULL); | 883 | evas_object_smart_callback_call(obj, "playback_finished", NULL); |
884 | } | 884 | } |
885 | 885 | ||
886 | void _emotion_audio_level_change(Evas_Object *obj) | 886 | EAPI void |
887 | _emotion_audio_level_change(Evas_Object *obj) | ||
887 | { | 888 | { |
888 | evas_object_smart_callback_call(obj, "audio_level_change", NULL); | 889 | evas_object_smart_callback_call(obj, "audio_level_change", NULL); |
889 | } | 890 | } |
890 | 891 | ||
891 | void | 892 | EAPI void |
892 | _emotion_channels_change(Evas_Object *obj) | 893 | _emotion_channels_change(Evas_Object *obj) |
893 | { | 894 | { |
894 | Smart_Data *sd; | 895 | Smart_Data *sd; |
@@ -897,7 +898,7 @@ _emotion_channels_change(Evas_Object *obj) | |||
897 | evas_object_smart_callback_call(obj, "channels_change", NULL); | 898 | evas_object_smart_callback_call(obj, "channels_change", NULL); |
898 | } | 899 | } |
899 | 900 | ||
900 | void | 901 | EAPI void |
901 | _emotion_title_set(Evas_Object *obj, char *title) | 902 | _emotion_title_set(Evas_Object *obj, char *title) |
902 | { | 903 | { |
903 | Smart_Data *sd; | 904 | Smart_Data *sd; |
@@ -908,7 +909,7 @@ _emotion_title_set(Evas_Object *obj, char *title) | |||
908 | evas_object_smart_callback_call(obj, "title_change", NULL); | 909 | evas_object_smart_callback_call(obj, "title_change", NULL); |
909 | } | 910 | } |
910 | 911 | ||
911 | void | 912 | EAPI void |
912 | _emotion_progress_set(Evas_Object *obj, char *info, double stat) | 913 | _emotion_progress_set(Evas_Object *obj, char *info, double stat) |
913 | { | 914 | { |
914 | Smart_Data *sd; | 915 | Smart_Data *sd; |
@@ -920,7 +921,7 @@ _emotion_progress_set(Evas_Object *obj, char *info, double stat) | |||
920 | evas_object_smart_callback_call(obj, "progress_change", NULL); | 921 | evas_object_smart_callback_call(obj, "progress_change", NULL); |
921 | } | 922 | } |
922 | 923 | ||
923 | void | 924 | EAPI void |
924 | _emotion_file_ref_set(Evas_Object *obj, char *file, int num) | 925 | _emotion_file_ref_set(Evas_Object *obj, char *file, int num) |
925 | { | 926 | { |
926 | Smart_Data *sd; | 927 | Smart_Data *sd; |
@@ -932,7 +933,7 @@ _emotion_file_ref_set(Evas_Object *obj, char *file, int num) | |||
932 | evas_object_smart_callback_call(obj, "ref_change", NULL); | 933 | evas_object_smart_callback_call(obj, "ref_change", NULL); |
933 | } | 934 | } |
934 | 935 | ||
935 | void | 936 | EAPI void |
936 | _emotion_spu_button_num_set(Evas_Object *obj, int num) | 937 | _emotion_spu_button_num_set(Evas_Object *obj, int num) |
937 | { | 938 | { |
938 | Smart_Data *sd; | 939 | Smart_Data *sd; |
@@ -942,7 +943,7 @@ _emotion_spu_button_num_set(Evas_Object *obj, int num) | |||
942 | evas_object_smart_callback_call(obj, "button_num_change", NULL); | 943 | evas_object_smart_callback_call(obj, "button_num_change", NULL); |
943 | } | 944 | } |
944 | 945 | ||
945 | void | 946 | EAPI void |
946 | _emotion_spu_button_set(Evas_Object *obj, int button) | 947 | _emotion_spu_button_set(Evas_Object *obj, int button) |
947 | { | 948 | { |
948 | Smart_Data *sd; | 949 | Smart_Data *sd; |