1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00

add dict table model

This commit is contained in:
tianduanrui 2018-06-20 17:00:53 +08:00
parent 3c7804225b
commit 31a2ca28ac
3 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,7 @@
#include "qqtdicttablemodel.h"
#include "qqtcore.h"
QQtDictTableModel::QQtDictTableModel ( QObject* parent ) : QQtTableModel ( parent )
{
}

View File

@ -0,0 +1,27 @@
#ifndef QQTDICTTABLEMODEL_H
#define QQTDICTTABLEMODEL_H
#include <qqttablemodel.h>
#include <qqtdictionary.h>
#include <qqt-local.h>
class QQTSHARED_EXPORT QQtDictTableModel : public QQtTableModel
{
Q_OBJECT
public:
explicit QQtDictTableModel ( QObject* parent = 0 );
signals:
public slots:
// QQtDictTableModel interface
public:
protected:
private:
};
#endif // QQTDICTTABLEMODEL_H

View File

@ -66,6 +66,7 @@ HEADERS += \
SOURCES += \ SOURCES += \
$$PWD/gui/qqttablemodel.cpp \ $$PWD/gui/qqttablemodel.cpp \
$$PWD/gui/qqtdicttreemodel.cpp \ $$PWD/gui/qqtdicttreemodel.cpp \
$$PWD/gui/qqtdicttablemodel.cpp \
$$PWD/gui/qqttreemodel.cpp \ $$PWD/gui/qqttreemodel.cpp \
$$PWD/gui/qqtftptreemodel.cpp \ $$PWD/gui/qqtftptreemodel.cpp \
$$PWD/gui/qqtsqltreemodel.cpp \ $$PWD/gui/qqtsqltreemodel.cpp \
@ -77,6 +78,7 @@ HEADERS += \
$$PWD/gui/qqttablemodel.h \ $$PWD/gui/qqttablemodel.h \
$$PWD/gui/qqttreemodel.h \ $$PWD/gui/qqttreemodel.h \
$$PWD/gui/qqtdicttreemodel.h \ $$PWD/gui/qqtdicttreemodel.h \
$$PWD/gui/qqtdicttablemodel.h \
$$PWD/gui/qqtftptreemodel.h \ $$PWD/gui/qqtftptreemodel.h \
$$PWD/gui/qqtsqltreemodel.h \ $$PWD/gui/qqtsqltreemodel.h \
$$PWD/gui/qqtjsontreemodel.h \ $$PWD/gui/qqtjsontreemodel.h \