projects
/
platform
/
upstream
/
elementary.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9a284a1
)
fileselector: Added a description for Elm_Fileselector_Filter_Func.
author
Daniel Juyung Seo
<seojuyung2@gmail.com>
Sun, 29 Dec 2013 15:31:04 +0000
(
00:31
+0900)
committer
Daniel Juyung Seo
<seojuyung2@gmail.com>
Sun, 29 Dec 2013 15:31:04 +0000
(
00:31
+0900)
src/lib/elc_fileselector_common.h
patch
|
blob
|
history
diff --git
a/src/lib/elc_fileselector_common.h
b/src/lib/elc_fileselector_common.h
index 8b12c922f9a0836d3f28ee62ae8c56244e3bcd8f..5c22fd9ab201e283e262c21eee3efa7eaa363a98 100644
(file)
--- a/
src/lib/elc_fileselector_common.h
+++ b/
src/lib/elc_fileselector_common.h
@@
-22,4
+22,6
@@
typedef enum
ELM_FILESELECTOR_SORT_LAST /**< sentinel (helper) value, not used */
} Elm_Fileselector_Sort;
-typedef Eina_Bool (*Elm_Fileselector_Filter_Func)(const char *path, Eina_Bool dir, void *data);
+typedef Eina_Bool (*Elm_Fileselector_Filter_Func)(const char *path, /*<< File path */
+ Eina_Bool dir, /*<< A flag to show if path is a directory or not. True if the path is a directory. */
+ void *data /*<< A user data that was given by elm_fileselector_custom_filter_append. */);