This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Doric/doric-Qt/doric/panel.h
2021-05-20 18:27:45 +08:00

22 lines
302 B
C++

#ifndef PANEL_H
#define PANEL_H
#include "context.h"
class Panel
{
private:
Context *mContext;
int renderedWidth = -1;
int renderedHeight = -1;
public:
Panel();
void config(QString script, QString alias, QString extra);
void config(Context *context);
};
#endif // PANEL_H