simplelistapp.h

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

H
27
字号
#ifndef SIMPLELIST_H#define SIMPLELIST_H#include <QApplication>#include <QListView>#include <QStringListModel>#include <QMainWindow>#include <QPushButton>/* Controller example */class SimpleListApp : public QApplication {    Q_OBJECT    public:    SimpleListApp(int argc, char* argv[]);   public slots:    void showNewChanges();    void addItem();  private:    QStringListModel m_Model;     /* created first */    QMainWindow m_Window;    QListView m_View;                 QPushButton m_Button;        /* destroyed first */};#endif

⌨️ 快捷键说明

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