summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Juyung Seo <seojuyung2@gmail.com>2014-11-20 23:30:56 +0900
committerDaniel Juyung Seo <seojuyung2@gmail.com>2014-11-22 00:38:44 +0900
commitdd914ef0336ebdbe4024d6d365ad234b41c95b12 (patch)
tree78b768c95a62b35aae24f597afb843df3f5f02a4
parent73a59b5812a1b0e8b218c9c0cd4e8fa841a35179 (diff)
downloadelementary-dd914ef0336ebdbe4024d6d365ad234b41c95b12.tar.gz
clock, datetime, dayselector: Fix and clean up doxygen documentation.
-rw-r--r--src/lib/elm_clock_common.h11
-rw-r--r--src/lib/elm_datetime_common.h12
-rw-r--r--src/lib/elm_dayselector_common.h9
3 files changed, 30 insertions, 2 deletions
diff --git a/src/lib/elm_clock_common.h b/src/lib/elm_clock_common.h
index 60a38bda4..4253ff897 100644
--- a/src/lib/elm_clock_common.h
+++ b/src/lib/elm_clock_common.h
@@ -1,4 +1,12 @@
/**
+ * @addtogroup Clock
+ *
+ * @{
+ */
+
+/**
+ * @enum Elm_Clock_Edit_Mode
+ *
* Identifiers for which clock digits should be editable, when a
* clock widget is in edition mode. Values may be OR-ed together to
* make a mask, naturally.
@@ -18,3 +26,6 @@ typedef enum
ELM_CLOCK_EDIT_ALL = (1 << 6) - 1 /**< All digits should be editable */
} Elm_Clock_Edit_Mode;
+/**
+ * @}
+ */
diff --git a/src/lib/elm_datetime_common.h b/src/lib/elm_datetime_common.h
index 7dfd7eeb8..f6499d2c3 100644
--- a/src/lib/elm_datetime_common.h
+++ b/src/lib/elm_datetime_common.h
@@ -1,9 +1,14 @@
/**
+ * @addtogroup Datetime
+ *
+ * @{
+ */
+
+/**
* Identifies a Datetime field, The widget supports 6 fields : Year, month,
* Date, Hour, Minute, AM/PM
- *
*/
-typedef enum _Elm_Datetime_Field_Type
+typedef enum
{
ELM_DATETIME_YEAR = 0, /**< Indicates Year field */
ELM_DATETIME_MONTH = 1, /**< Indicates Month field */
@@ -13,3 +18,6 @@ typedef enum _Elm_Datetime_Field_Type
ELM_DATETIME_AMPM = 5, /**< Indicates AM/PM field */
} Elm_Datetime_Field_Type;
+/**
+ * @}
+ */
diff --git a/src/lib/elm_dayselector_common.h b/src/lib/elm_dayselector_common.h
index f68554b88..076ac3890 100644
--- a/src/lib/elm_dayselector_common.h
+++ b/src/lib/elm_dayselector_common.h
@@ -1,4 +1,10 @@
/**
+ * @addtogroup Dayselector
+ *
+ * @{
+ */
+
+/**
* Identifies the day of the week.
* API can call the selection/unselection of day with this as a parameter.
*
@@ -17,3 +23,6 @@ typedef enum
ELM_DAYSELECTOR_MAX /**< Sentinel value, @b don't use */
} Elm_Dayselector_Day;
+/**
+ * @}
+ */