propertyselectorcontrol.h

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

H
32
字号
#ifndef _PROPERTY_SELECTOR_CONTROL_#define _PROPERTY_SELECTOR_CONTROL_#include <QObject>#include <QMainWindow>#include <dataobject.h>class PropertySelectorModel;class PropertySelectorView;/** This is a controler class that connects the model and the view classesfor an application that facilitates the selection of column headers for a guiapplication that handles a class with properties.*/class PropertySelectorControl : public QMainWindow {    Q_OBJECT  public:    PropertySelectorControl(DataObject* sourceptr);    QString getSelectedPropertyNames() const;  signals:    void readyShow();  public slots:    void showWindow(bool);    void outputSelects(bool);  private:    PropertySelectorModel* m_Chdm;    PropertySelectorView*  m_Chdv;};#endif

⌨️ 快捷键说明

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