2015-02-05 16:53:25 +00:00
|
|
|
// Copyright 2015 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QAbstractItemModel>
|
|
|
|
#include <QDockWidget>
|
|
|
|
#include <QTimer>
|
2016-04-29 00:17:31 +00:00
|
|
|
#include "common/microprofile.h"
|
2015-02-05 16:53:25 +00:00
|
|
|
#include "common/profiler_reporting.h"
|
2016-09-20 15:21:23 +00:00
|
|
|
#include "ui_profiler.h"
|
2015-02-05 16:53:25 +00:00
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
class ProfilerModel : public QAbstractItemModel {
|
2015-02-05 16:53:25 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
ProfilerModel(QObject* parent);
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
QVariant headerData(int section, Qt::Orientation orientation,
|
|
|
|
int role = Qt::DisplayRole) const override;
|
|
|
|
QModelIndex index(int row, int column,
|
|
|
|
const QModelIndex& parent = QModelIndex()) const override;
|
2015-02-05 16:53:25 +00:00
|
|
|
QModelIndex parent(const QModelIndex& child) const override;
|
|
|
|
int columnCount(const QModelIndex& parent = QModelIndex()) const override;
|
|
|
|
int rowCount(const QModelIndex& parent = QModelIndex()) const override;
|
|
|
|
QVariant data(const QModelIndex& index, int role = Qt::DisplayRole) const override;
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void updateProfilingInfo();
|
|
|
|
|
|
|
|
private:
|
|
|
|
Common::Profiling::AggregatedFrameResult results;
|
|
|
|
};
|
|
|
|
|
2016-09-18 00:38:01 +00:00
|
|
|
class ProfilerWidget : public QDockWidget {
|
2015-02-05 16:53:25 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2015-09-11 18:50:10 +00:00
|
|
|
ProfilerWidget(QWidget* parent = nullptr);
|
2015-02-05 16:53:25 +00:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void setProfilingInfoUpdateEnabled(bool enable);
|
|
|
|
|
|
|
|
private:
|
|
|
|
Ui::Profiler ui;
|
|
|
|
ProfilerModel* model;
|
|
|
|
|
|
|
|
QTimer update_timer;
|
|
|
|
};
|
2015-08-17 21:25:21 +00:00
|
|
|
|
|
|
|
class MicroProfileDialog : public QWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2015-09-12 03:04:19 +00:00
|
|
|
MicroProfileDialog(QWidget* parent = nullptr);
|
2015-08-17 21:25:21 +00:00
|
|
|
|
|
|
|
/// Returns a QAction that can be used to toggle visibility of this dialog.
|
|
|
|
QAction* toggleViewAction();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void showEvent(QShowEvent* ev) override;
|
|
|
|
void hideEvent(QHideEvent* ev) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
QAction* toggle_view_action = nullptr;
|
|
|
|
};
|