diff libcore/core/button.h @ 147:b386d25832c8

doc: use new nomenclature, closes #2497
author David Demelier <markand@malikania.fr>
date Thu, 15 Oct 2020 09:21:04 +0200
parents 789b23e01f52
children
line wrap: on
line diff
--- a/libcore/core/button.h	Wed Oct 14 18:20:58 2020 +0200
+++ b/libcore/core/button.h	Thu Oct 15 09:21:04 2020 +0200
@@ -41,13 +41,13 @@
  * \brief GUI button.
  */
 struct button {
-	int x;                          /*!< (RW) Position in x. */
-	int y;                          /*!< (RW) Position in y. */
-	unsigned int w;                 /*!< (RW) Width. */
-	unsigned int h;                 /*!< (RW) Height. */
-	const char *text;               /*!< (RW, ref) Text to draw. */
-	enum button_state state;        /*!< (RW) Button state. */
-	struct theme *theme;            /*!< (RW, ref, optional) Theme to use. */
+	int x;                          /*!< (+) Position in x. */
+	int y;                          /*!< (+) Position in y. */
+	unsigned int w;                 /*!< (+) Width. */
+	unsigned int h;                 /*!< (+) Height. */
+	const char *text;               /*!< (+&) Text to draw. */
+	enum button_state state;        /*!< (+) Button state. */
+	struct theme *theme;            /*!< (+&?) Theme to use. */
 };
 
 /**