2016-04-26 11:50:59 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
|
|
|
**
|
|
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <QString>
|
2016-05-10 13:18:12 +02:00
|
|
|
#include <QMetaType>
|
2016-04-26 11:50:59 +02:00
|
|
|
|
|
|
|
|
namespace QmlProfiler {
|
|
|
|
|
|
2016-06-07 13:54:23 +02:00
|
|
|
class QmlNote {
|
|
|
|
|
|
|
|
|
|
public:
|
2016-07-06 11:34:15 +02:00
|
|
|
QmlNote(int typeIndex = -1, int collapsedRow = -1, qint64 startTime = -1, qint64 duration = 0,
|
2016-06-07 14:15:17 +02:00
|
|
|
const QString &text = QString()) :
|
2016-07-06 11:34:15 +02:00
|
|
|
m_typeIndex(typeIndex), m_collapsedRow(collapsedRow), m_startTime(startTime),
|
|
|
|
|
m_duration(duration), m_text(text), m_loaded(false)
|
2016-04-26 11:50:59 +02:00
|
|
|
{}
|
|
|
|
|
|
2016-06-07 13:54:23 +02:00
|
|
|
int typeIndex() const { return m_typeIndex; }
|
2016-07-06 11:34:15 +02:00
|
|
|
int collapsedRow() const { return m_collapsedRow; }
|
2016-06-07 13:54:23 +02:00
|
|
|
qint64 startTime() const { return m_startTime; }
|
|
|
|
|
qint64 duration() const { return m_duration; }
|
|
|
|
|
QString text() const { return m_text; }
|
2016-07-06 11:34:15 +02:00
|
|
|
bool loaded() const { return m_loaded; }
|
2016-06-07 13:54:23 +02:00
|
|
|
|
|
|
|
|
void setText(const QString &text) { m_text = text; }
|
2016-07-06 11:34:15 +02:00
|
|
|
void setLoaded(bool loaded) { m_loaded = loaded; }
|
2016-06-07 13:54:23 +02:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
friend QDataStream &operator>>(QDataStream &stream, QmlNote ¬e);
|
|
|
|
|
friend QDataStream &operator<<(QDataStream &stream, const QmlNote ¬e);
|
|
|
|
|
|
|
|
|
|
int m_typeIndex;
|
2016-07-06 11:34:15 +02:00
|
|
|
int m_collapsedRow;
|
2016-06-07 13:54:23 +02:00
|
|
|
qint64 m_startTime;
|
|
|
|
|
qint64 m_duration;
|
|
|
|
|
QString m_text;
|
2016-07-06 11:34:15 +02:00
|
|
|
bool m_loaded;
|
2016-04-26 11:50:59 +02:00
|
|
|
};
|
|
|
|
|
|
2016-06-07 14:15:17 +02:00
|
|
|
bool operator==(const QmlNote ¬e1, const QmlNote ¬e2);
|
|
|
|
|
bool operator!=(const QmlNote ¬e1, const QmlNote ¬e2);
|
|
|
|
|
|
2016-05-04 18:55:44 +02:00
|
|
|
QDataStream &operator>>(QDataStream &stream, QmlNote ¬e);
|
|
|
|
|
QDataStream &operator<<(QDataStream &stream, const QmlNote ¬e);
|
|
|
|
|
|
2016-04-26 11:50:59 +02:00
|
|
|
} // namespace QmlProfiler
|
2016-05-10 13:18:12 +02:00
|
|
|
|
|
|
|
|
Q_DECLARE_METATYPE(QmlProfiler::QmlNote)
|