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/context.h

26 lines
313 B
C
Raw Normal View History

2019-12-04 15:51:46 +08:00
#ifndef CONTEXT_H
#define CONTEXT_H
#include <QString>
2019-12-04 16:44:30 +08:00
2019-12-04 15:51:46 +08:00
#include "driver/driver.h"
class Context
{
private:
int contextId;
2019-12-13 17:48:37 +08:00
QString *source;
2019-12-04 15:51:46 +08:00
public:
2019-12-14 10:04:17 +08:00
Driver *driver;
2019-12-04 15:51:46 +08:00
2019-12-14 10:04:17 +08:00
Context(int contextId, QString *source);
2019-12-04 16:44:30 +08:00
2019-12-14 10:04:17 +08:00
void show();
2019-12-14 10:04:17 +08:00
void init(double width, double height);
2019-12-04 15:51:46 +08:00
};
#endif // CONTEXT_H