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

📄 test_it.cpp

📁 GNU/Linux程序开发指南书的所有例子源代码
💻 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 + -