📄 rgobject.h
字号:
#ifndef _PWFGOBJ_
#define _PWFGOBJ_
#include <stddef.h>
#include "types.h"
#include "gobjects.h"
class RCastGobject : public gobject {
public:
RCastGobject(UCHAR imagenum = 1) : gobject(imagenum)
{};
PUCHAR Image(UCHAR imagenum = 0){return image[imagenum];};
USHORT Width() { return width; };
USHORT Height() { return height; };
VOID SetImage(PUCHAR imageptr, UCHAR imagenum = 0) {image[imagenum]=imageptr;};
LONG load(UCHAR imagenum = 0) {
LONG q=gobject::load(imagenum);
if (inpcxfile.is_open())
inpcxfile.close();
return q;};
~RCastGobject() {
};
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -