?? component.hxx
字號:
// Component.hxx//// This is the super class for Label, Button, and Text//#ifndef Component__hxx#define Component__hxx#include <X11/Intrinsic.h>class Component {public: Component(); virtual void setup(Widget parent) = 0; Widget getWidget() { return my_widget; }protected: Widget my_widget;};#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -