📄 test_it.cpp
字号:
// test_it.cpp#include <iostream.h>#include "PaneWindow.hxx"#include "Label.hxx"#include "Button.hxx"#include "Text.hxx"Text *text;void button_cb() { cout << "Text is:\n" << text->getText() << "\n";}void main() { PaneWindow pw; Label label("this is a test"); Button button("Get text", button_cb); text = new Text(300, 120); pw.addComponent(&label); pw.addComponent(&button); pw.addComponent(text); pw.run();}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -