📄 guiappimage.h
字号:
#ifndef __GUIAPPIMAGE_H__
#define __GUIAPPIMAGE_H__
#include "guiappobj.h"
class GUIAppImage : public GUIAppObject
{
public:
GUIAppImage(int id, float x, float y, char* file);
virtual ~GUIAppImage();
void Scale(float x, float y);
void Render();
void Move( float dx, float dy);
private:
void SetPos(float x, float y);
hgeQuad m_Quad;
float m_Width;
float m_Height;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -