bctitle.h
来自「用你的语音Modem实现像电话一样通话的程序」· C头文件 代码 · 共 30 行
H
30 行
#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 + =
减小字号Ctrl + -
显示快捷键?