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

📄 proxywindow.h

📁 Unix下的MUD客户端程序
💻 H
字号:
// A ProxyWindow forwards most requests to it to its child// Used for a Borderclass ProxyWindow : public Window {public:    ProxyWindow(Window *_parent, int _w, int _h, int _x, int _y);    virtual void insert(Window*);protected:    Window *proxy_target; // first thing that's inserted};class Border : public ProxyWindow {public:    Border(Window *_parent, int _w, int _h, int _x, int _y);    virtual void redraw();    virtual void set_top_message(const char*);    virtual void set_bottom_message(const char *);    virtual void visibilityNotify(Window*, bool);    virtual void deathNotify(Window*);private:    String top_message;    String bottom_message;};

⌨️ 快捷键说明

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