porymap/include/ui/eventpropertiesframe.h

30 lines
490 B
C
Raw Normal View History

2018-09-27 17:23:40 +01:00
#ifndef EVENTPROPERTIESFRAME_H
#define EVENTPROPERTIESFRAME_H
#include "event.h"
#include <QFrame>
namespace Ui {
2018-09-27 17:23:40 +01:00
class EventPropertiesFrame;
}
class EventPropertiesFrame : public QFrame
{
Q_OBJECT
public:
explicit EventPropertiesFrame(Event *event, QWidget *parent = nullptr);
~EventPropertiesFrame();
void paintEvent(QPaintEvent*);
public:
2018-09-27 17:23:40 +01:00
Ui::EventPropertiesFrame *ui;
private:
Event *event;
bool firstShow = true;
};
2018-09-27 17:23:40 +01:00
#endif // EVENTPROPERTIESFRAME_H