aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/qmlprofiler/inputeventsmodel.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/qmlprofiler/inputeventsmodel.h')
-rw-r--r--plugins/qmlprofiler/inputeventsmodel.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/plugins/qmlprofiler/inputeventsmodel.h b/plugins/qmlprofiler/inputeventsmodel.h
index 43a9dc4498..8c0ff17216 100644
--- a/plugins/qmlprofiler/inputeventsmodel.h
+++ b/plugins/qmlprofiler/inputeventsmodel.h
@@ -32,6 +32,14 @@ protected:
bool accepted(const QmlProfiler::QmlProfilerDataModel::QmlEventTypeData &event) const;
public:
+ struct InputEvent {
+ InputEvent(QmlDebug::InputEventType type = QmlDebug::MaximumInputEventType, int a = 0,
+ int b = 0);
+ QmlDebug::InputEventType type;
+ int a;
+ int b;
+ };
+
InputEventsModel(QmlProfiler::QmlProfilerModelManager *manager, QObject *parent = 0);
int typeId(int index) const;
@@ -47,6 +55,7 @@ private:
int m_keyTypeId;
int m_mouseTypeId;
+ QVector<InputEvent> m_data;
};
}