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

📄 twl_misc.h

📁 UC Library Extensions UnderC comes with a pocket implementation of the standard C++ libraries, wh
💻 H
字号:
// twl_misc.h// Things for which we need to find a home!#ifndef __TWL_MISC#define __TWL_MISCclass TCaret {protected:  TWin *m_win;  int m_width, m_height;  bool m_created;public:  TCaret();  void set(TWin *win, int width, int height);  void create();  void destroy();  void set_pos(int ix, int iy);  void show();  void hide();};class TClipboard {protected:  TWin *m_owner;  bool m_clipboard_open;  Handle m_buff_hand;public:      TClipboard(TWin *win);    ~TClipboard();    void close();    void open();    char *buffer(int sz);    void write(char *buff=NULL);    char *read();};#endif

⌨️ 快捷键说明

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