📄 script.h
字号:
#ifndef __SCRIPT_H#define __SCRIPT_H#include "atom.h"#include "line.h"class script : public atom{ public: line* top; line* bot; script* last; script* next; ~script(); script( atom* a ); script( atom* a, line* content ); void del( line* ); line* ins( line* ); void close( line* ); int load( char* ); void save( char* );};class line_s : public line{ public: script* scr;// int fgcolor, bgcolor; // changed with key combo, auto mode virtual ~line_s(); line_s(); line_s( line* here );};#endif // __SCRIPT_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -