summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Blumenkrantz <zmike@osg.samsung.com>2015-08-10 16:07:41 -0400
committerMike Blumenkrantz <zmike@osg.samsung.com>2015-08-10 16:22:23 -0400
commitd014a7646b9cbc14a56182d21d6778a2b154e634 (patch)
tree3cd2ba4d74aae36618591d22d5faec0ae6c64b63
parente319d4a5908a60fe9f6a4c7b7e26cf5e33a02082 (diff)
downloadelementary-d014a7646b9cbc14a56182d21d6778a2b154e634.tar.gz
cnp: add docs for Elm_Selection_Data members
-rw-r--r--src/lib/elm_cnp.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/elm_cnp.h b/src/lib/elm_cnp.h
index 61c9fc1e0..ae03ced9b 100644
--- a/src/lib/elm_cnp.h
+++ b/src/lib/elm_cnp.h
@@ -98,10 +98,10 @@ typedef enum
*/
struct _Elm_Selection_Data
{
- Evas_Coord x, y;
- Elm_Sel_Format format;
- void *data;
- size_t len;
+ Evas_Coord x, y; /**< The coordinates of the drop (DND operations only) */
+ Elm_Sel_Format format; /**< The format of the selection */
+ void *data; /**< The selection data, type determined by format member */
+ size_t len; /**< The length of the selection data */
Elm_Xdnd_Action action; /**< The action to perform with the data @since 1.8 */
};
typedef struct _Elm_Selection_Data Elm_Selection_Data;