porymap/include/ui/wildmonchart.h

29 lines
492 B
C
Raw Normal View History

2024-08-21 18:06:30 +01:00
#ifndef WILDMONCHART_H
#define WILDMONCHART_H
#include "encountertablemodel.h"
#include <QWidget>
namespace Ui {
class WildMonChart;
}
class WildMonChart : public QWidget
{
Q_OBJECT
public:
2024-08-22 04:28:33 +01:00
explicit WildMonChart(QWidget *parent, const EncounterTableModel *table);
2024-08-21 18:06:30 +01:00
~WildMonChart();
public slots:
2024-08-22 04:28:33 +01:00
void setTable(const EncounterTableModel *table);
2024-08-21 18:06:30 +01:00
void updateChart();
private:
Ui::WildMonChart *ui;
2024-08-22 04:28:33 +01:00
const EncounterTableModel *table;
2024-08-21 18:06:30 +01:00
};
#endif // WILDMONCHART_H