📄 bctitle.h
字号:
#ifndef BCTITLE_H#define BCTITLE_Hclass BC_Title;#include "bccolors.h"#include "bctool.h"class BC_Title : public BC_Tool{public: BC_Title(int x, int y, char *text, // string to draw int font = 0, // a font macro int color = BLACK); // a color macro create_tool_objects(); resize(int w, int h); resize_tool(int x, int y); set_color(int color); update(char *text); // replace the text draw(); char text[256]; int color; int font;};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -