⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 atom.h

📁 initial working phase of the design of said editor, featuring multicasting, advanced linux keyboard
💻 H
字号:
#ifndef __ATOM_H#define __ATOM_H//#include "context.h"class context;#include "type.h" // dword#define ID_MAIN		0x0000#define ID_LINE		0x0001#define ID_LINE_S	0x0002#define ID_SCRIPT	0x0100#define ID_SCRIPT_DIR	0x0101class atom{  public:   atom* parent;   context* cx;   dword id_mask;//   bool visible;   ~atom();   atom( atom& );   atom( atom* );   atom* cxtoptr( char* );   char* ptrtocx( atom* );//   virtual atom* cxtoptr( char* ) = 0;//   virtual char* ptrtocx( atom* ) = 0;   char* namecx(); // absolute?};#endif // __ATOM_H

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -