aboutsummaryrefslogtreecommitdiff
path: root/src/corelib/widgets/mprogressindicatormodel.h
diff options
context:
space:
mode:
authorTomas Junnonen <tomas.junnonen@nokia.com>2010-04-12 13:50:25 +0300
committerTomas Junnonen <tomas.junnonen@nokia.com>2010-04-12 13:52:31 +0300
commitda73676c8a5af66b55523a9cdfbfbea2baa88a2a (patch)
tree0a3b8933a1817c152116da5fa8a7b5cdd8102e60 /src/corelib/widgets/mprogressindicatormodel.h
parent8832674482d3b9a7fcf77b0cfdcb8e6fe4960b4d (diff)
Changes: Renamed dui to meegotouch
By: Holger, Daniel, Janne RevBy: Tomas, Holger
Diffstat (limited to 'src/corelib/widgets/mprogressindicatormodel.h')
-rw-r--r--src/corelib/widgets/mprogressindicatormodel.h64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/corelib/widgets/mprogressindicatormodel.h b/src/corelib/widgets/mprogressindicatormodel.h
new file mode 100644
index 00000000..afbe393e
--- /dev/null
+++ b/src/corelib/widgets/mprogressindicatormodel.h
@@ -0,0 +1,64 @@
+/***************************************************************************
+**
+** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
+** All rights reserved.
+** Contact: Nokia Corporation (directui@nokia.com)
+**
+** This file is part of libmeegotouch.
+**
+** If you have questions regarding the use of this file, please contact
+** Nokia at directui@nokia.com.
+**
+** This library is free software; you can redistribute it and/or
+** modify it under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation
+** and appearing in the file LICENSE.LGPL included in the packaging
+** of this file.
+**
+****************************************************************************/
+
+#ifndef MPROGRESSINDICATORMODEL_H
+#define MPROGRESSINDICATORMODEL_H
+
+#include <mwidgetmodel.h>
+
+/*!
+ \class MProgressIndicatorModel
+ \brief This is the data model class for progress indicator.
+
+ \ingroup models
+ \sa MProgressIndicator
+*/
+
+class M_EXPORT MProgressIndicatorModel : public MWidgetModel
+{
+ Q_OBJECT
+ M_MODEL_INTERNAL(MProgressIndicatorModel)
+
+ /*!
+ * \property MProgressIndicatorModel::value
+ * \brief This property holds the progress indicator's current value.
+ */
+ M_MODEL_PROPERTY(int, value, Value, true, 0)
+
+ /*!
+ * \property MProgressIndicatorModel::minimum
+ * \brief This property holds the progress indicator's minimum value.
+ */
+ M_MODEL_PROPERTY(int, minimum, Minimum, true, 0)
+
+ /*!
+ * \property MProgressIndicatorModel::maximum
+ * \brief This property holds the progress indicator's maximum value.
+ */
+ M_MODEL_PROPERTY(int, maximum, Maximum, true, 100)
+
+ /*!
+ * \property MProgressIndicatorModel::unknownDuration
+ * \brief This property holds whether the progress indicator is type of known duration / unknown duration.
+ */
+ M_MODEL_PROPERTY(bool, unknownDuration, UnknownDuration, true, false)
+};
+
+#endif
+