aboutsummaryrefslogtreecommitdiffstats
path: root/src/virtualkeyboard/enterkeyaction.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/virtualkeyboard/enterkeyaction.h')
-rw-r--r--src/virtualkeyboard/enterkeyaction.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/virtualkeyboard/enterkeyaction.h b/src/virtualkeyboard/enterkeyaction.h
new file mode 100644
index 00000000..aea64362
--- /dev/null
+++ b/src/virtualkeyboard/enterkeyaction.h
@@ -0,0 +1,35 @@
+/****************************************************************************
+**
+** Copyright (C) 2014 Digia Plc
+** All rights reserved.
+** For any questions to Digia, please use contact form at http://qt.digia.com
+**
+** This file is part of the Qt Quick Enterprise Controls add-on.
+**
+** Licensees holding valid Qt Enterprise licenses may use this file in
+** accordance with the Qt Enterprise License Agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and Digia.
+**
+** If you have questions regarding the use of this file, please use
+** contact form at http://qt.digia.com
+**
+****************************************************************************/
+
+#ifndef ENTERKEYACTION_H
+#define ENTERKEYACTION_H
+
+#include <qqml.h>
+
+class EnterKeyActionAttachedType;
+
+class EnterKeyAction : public QObject
+{
+ Q_OBJECT
+public:
+ static EnterKeyActionAttachedType *qmlAttachedProperties(QObject *object);
+};
+
+QML_DECLARE_TYPEINFO(EnterKeyAction, QML_HAS_ATTACHED_PROPERTIES)
+
+#endif