📄 qonsole.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -