summaryrefslogtreecommitdiffstats
path: root/src/controls/qtaction_p.h
diff options
context:
space:
mode:
authorJens Bache-Wiig <jens.bache-wiig@digia.com>2013-02-20 17:38:44 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-02-21 16:59:55 +0100
commit6ea1b2b1f26d266b88b091ddece0cdaad5d3accc (patch)
tree38b488f646b7070b0bc8ef1edae7281f8a24e1e3 /src/controls/qtaction_p.h
parente8a53a5a3a4b3d8069e69eba7f96e1f0b47699b6 (diff)
Rename QtDesktop to QtQuick.Controls
Change-Id: Icc61dbfc74cc2a303b9847e7d2c7ace4a9002046 Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>
Diffstat (limited to 'src/controls/qtaction_p.h')
-rw-r--r--src/controls/qtaction_p.h148
1 files changed, 148 insertions, 0 deletions
diff --git a/src/controls/qtaction_p.h b/src/controls/qtaction_p.h
new file mode 100644
index 000000000..1e44b003a
--- /dev/null
+++ b/src/controls/qtaction_p.h
@@ -0,0 +1,148 @@
+/****************************************************************************
+**
+** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
+** Contact: http://www.qt-project.org/legal
+**
+** This file is part of the Qt Components project.
+**
+** $QT_BEGIN_LICENSE:BSD$
+** You may use this file under the terms of the BSD license as follows:
+**
+** "Redistribution and use in source and binary forms, with or without
+** modification, are permitted provided that the following conditions are
+** met:
+** * Redistributions of source code must retain the above copyright
+** notice, this list of conditions and the following disclaimer.
+** * Redistributions in binary form must reproduce the above copyright
+** notice, this list of conditions and the following disclaimer in
+** the documentation and/or other materials provided with the
+** distribution.
+** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
+** of its contributors may be used to endorse or promote products derived
+** from this software without specific prior written permission.
+**
+**
+** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#ifndef QTACTION_H
+#define QTACTION_H
+
+#include <QtCore/QObject>
+#include <QtCore/QUrl>
+#include <QtCore/QVariant>
+#include <QtGui/QIcon>
+#include <QtGui/qkeysequence.h>
+
+QT_BEGIN_NAMESPACE
+
+class QtExclusiveGroup;
+
+class QtAction : public QObject
+{
+ Q_OBJECT
+
+ Q_PROPERTY(QString text READ text WRITE setText NOTIFY textChanged)
+ Q_PROPERTY(QUrl iconSource READ iconSource WRITE setIconSource NOTIFY iconSourceChanged)
+ Q_PROPERTY(QString iconName READ iconName WRITE setIconName NOTIFY iconNameChanged)
+ Q_PROPERTY(QVariant __icon READ iconVariant NOTIFY iconChanged)
+ Q_PROPERTY(QString toolTip READ tooltip WRITE setToolTip NOTIFY toolTipChanged)
+ Q_PROPERTY(bool enabled READ isEnabled WRITE setEnabled NOTIFY enabledChanged)
+ Q_PROPERTY(bool checkable READ isCheckable WRITE setCheckable NOTIFY checkableChanged)
+ Q_PROPERTY(bool checked READ isChecked WRITE setChecked DESIGNABLE isCheckable NOTIFY toggled)
+
+ Q_PROPERTY(QtExclusiveGroup *exclusiveGroup READ exclusiveGroup WRITE setExclusiveGroup NOTIFY exclusiveGroupChanged)
+#ifndef QT_NO_SHORTCUT
+ Q_PROPERTY(QString shortcut READ shortcut WRITE setShortcut NOTIFY shortcutChanged)
+ Q_PROPERTY(QString mnemonic READ mnemonic WRITE setMnemonic NOTIFY mnemonicChanged)
+#endif
+
+public:
+ explicit QtAction(QObject *parent = 0);
+ ~QtAction();
+
+ QString text() const { return m_text; }
+ void setText(const QString &text);
+
+ QString shortcut() const;
+ void setShortcut(const QString &shortcut);
+
+ QString mnemonic() const;
+ void setMnemonic(const QString &mnemonic);
+
+ QString iconName() const;
+ void setIconName(const QString &iconName);
+
+ QUrl iconSource() const { return m_iconSource; }
+ void setIconSource(const QUrl &iconSource);
+
+ QString tooltip() const { return m_toolTip; }
+ void setToolTip(const QString &toolTip);
+
+ bool isEnabled() const { return m_enabled; }
+ void setEnabled(bool e);
+
+ bool isCheckable() const { return m_checkable; }
+ void setCheckable(bool c);
+
+ bool isChecked() const { return m_checked; }
+ void setChecked(bool c);
+
+ QtExclusiveGroup *exclusiveGroup() const { return m_exclusiveGroup; }
+ void setExclusiveGroup(QtExclusiveGroup * arg);
+
+ QIcon icon() const { return m_icon; }
+ QVariant iconVariant() const { return QVariant(m_icon); }
+ void setIcon(QIcon icon) { m_icon = icon; emit iconChanged(); }
+
+ bool event(QEvent *e);
+
+public Q_SLOTS:
+ void trigger();
+
+Q_SIGNALS:
+ void triggered();
+ void toggled(bool);
+
+ void textChanged();
+ void shortcutChanged(QString shortcut);
+ void mnemonicChanged(QString mnemonic);
+
+ void iconChanged();
+ void iconNameChanged();
+ void iconSourceChanged();
+ void toolTipChanged(QString arg);
+ void enabledChanged();
+ void checkableChanged();
+
+ void exclusiveGroupChanged();
+
+private:
+ QString m_text;
+ QUrl m_iconSource;
+ QIcon m_icon;
+ bool m_enabled;
+ bool m_checkable;
+ bool m_checked;
+ QtExclusiveGroup *m_exclusiveGroup;
+ QKeySequence m_shortcut;
+ QKeySequence m_mnemonic;
+ QString m_toolTip;
+};
+
+QT_END_NAMESPACE
+
+#endif // QTACTION_H