Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaas Freitag <freitag@owncloud.com>2015-11-16 17:38:08 +0300
committerKlaas Freitag <freitag@owncloud.com>2015-11-16 17:38:08 +0300
commitff76a842d04e63f0f661569b6cfffbc55627b37b (patch)
tree5f6ba082fd666cab743d32ae9a8f3c0d90165dd3 /src/gui/activitywidget.h
parenta56926b8d94ebd6add7a2ce69e9f4b7ef3424b12 (diff)
Added some documentation.
Diffstat (limited to 'src/gui/activitywidget.h')
-rw-r--r--src/gui/activitywidget.h27
1 files changed, 25 insertions, 2 deletions
diff --git a/src/gui/activitywidget.h b/src/gui/activitywidget.h
index 90aebd06a..7949a74e3 100644
--- a/src/gui/activitywidget.h
+++ b/src/gui/activitywidget.h
@@ -40,8 +40,10 @@ namespace Ui {
class Application;
/**
- * @brief The ActivityListModel
+ * @brief Activity Structure
* @ingroup gui
+ *
+ * contains all the information describing a single activity.
*/
class Activity
@@ -66,6 +68,12 @@ public:
};
+/**
+ * @brief The ActivityList
+ * @ingroup gui
+ *
+ * A QList based list of Activities
+ */
class ActivityList:public QList<Activity>
{
// explicit ActivityList();
@@ -78,7 +86,12 @@ private:
};
-
+/**
+ * @brief The ActivityListModel
+ * @ingroup gui
+ *
+ * Simple list model to provide the list view with data.
+ */
class ActivityListModel : public QAbstractListModel
{
Q_OBJECT
@@ -113,6 +126,9 @@ private:
/**
* @brief The ActivityWidget class
* @ingroup gui
+ *
+ * The list widget to display the activities, contained in the
+ * subsequent ActivitySettings widget.
*/
class ActivityWidget : public QWidget
@@ -143,6 +159,13 @@ private:
};
+/**
+ * @brief The ActivitySettings class
+ * @ingroup gui
+ *
+ * Implements a tab for the settings dialog, displaying the three activity
+ * lists.
+ */
class ActivitySettings : public QWidget
{
Q_OBJECT