finddialog.h /* * 未实现findNextSignal和findPreviousSignal */ #ifndef FINDDIALOG_H #define FINDDIALOG_H #include <QDialog> class QLabel; class QLineEdit; class QCheckBox; class QPushButton; class QHBoxLayout; class QVBoxLayout; class FindDialog : public…
1. C++ GUI Qt4编程第三章,增加工具栏.状态栏和快捷键. 2. mainwindow.h /**/ #ifndef MAINWINDOW_H #define MAINWINDOW_H #include <QMainWindow> class QMenu; class QAction; class QToolBar; class QLabel; class MainWindow : public QMainWindow { Q_OBJECT public: MainWindow();…