qonsole.h

来自「压缩包里有教材<<C++模式设计-基于QT4开源跨平台开发框架&gt」· C头文件 代码 · 共 32 行

H
32
字号
#ifndef QONSOLE_H#define QONSOLE_Hclass LogWindow; #include <QMainWindow>class QLineEdit;class QProcess;/**  A simple demo application that shows how to use QProcess,  with signals/slots providing bidirectional communication.  */class Qonsole : public QMainWindow {    Q_OBJECT    public:    Qonsole();    public slots:    void execute();    void showOutput();        private:    LogWindow* m_Logw;    QLineEdit* m_InputArea;    QProcess* m_Bash;};#endif

⌨️ 快捷键说明

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