21 lines
315 B
C
21 lines
315 B
C
|
#ifndef PANEL_H
|
||
|
#define PANEL_H
|
||
|
|
||
|
#include "DoricContext.h"
|
||
|
|
||
|
class DoricPanel {
|
||
|
private:
|
||
|
DoricContext *mContext;
|
||
|
int renderedWidth = -1;
|
||
|
int renderedHeight = -1;
|
||
|
|
||
|
public:
|
||
|
DoricPanel();
|
||
|
|
||
|
void config(QString script, QString alias, QString extra);
|
||
|
|
||
|
void config(DoricContext *context);
|
||
|
};
|
||
|
|
||
|
#endif // PANEL_H
|