mirror of
https://github.com/isledecomp/SIEdit.git
synced 2024-11-27 09:35:45 -05:00
33 lines
486 B
C
33 lines
486 B
C
|
#ifndef INFOPANEL_H
|
||
|
#define INFOPANEL_H
|
||
|
|
||
|
#include <QLabel>
|
||
|
#include <QPlainTextEdit>
|
||
|
#include <QPushButton>
|
||
|
|
||
|
#include "panel.h"
|
||
|
|
||
|
class InfoPanel : public Panel
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
InfoPanel(QWidget *parent = nullptr);
|
||
|
|
||
|
protected:
|
||
|
virtual void OnOpeningData(void *data) override;
|
||
|
virtual void OnClosingData(void *data) override;
|
||
|
|
||
|
private:
|
||
|
QLabel *m_Lbl;
|
||
|
|
||
|
QPushButton *m_ShowDataBtn;
|
||
|
|
||
|
QPlainTextEdit *m_DataView;
|
||
|
|
||
|
private slots:
|
||
|
void ShowData();
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // INFOPANEL_H
|