From eeceea4151ea4541c67cd7c8d30e3ef77bb661af Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Tue, 24 Mar 2009 18:42:21 -0400 Subject: Add ClassModel --- sigtools/ClassModel.cpp | 63 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 sigtools/ClassModel.cpp (limited to 'sigtools/ClassModel.cpp') diff --git a/sigtools/ClassModel.cpp b/sigtools/ClassModel.cpp new file mode 100644 index 00000000..3bab9b35 --- /dev/null +++ b/sigtools/ClassModel.cpp @@ -0,0 +1,63 @@ +/* + * Copyright 2009 Ben Boeckel + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program. If not, see . + */ + +// Header include +#include "ClassModel.h" + +// Sigtools includes +#include "PluginModel.h" + +// Qt includes +#include + +using namespace Sigtools; + +ClassModel::ClassModel(const QIcon& icon, const QString& name, const QString& description, PluginModel* parent) : + BaseModel(parent), + m_icon(icon), + m_name(name), + m_description(description) +{ +} + +int ClassModel::rowCount() const +{ + return 0; +} + +Qt::ItemFlags ClassModel::flags() const +{ + return Qt::ItemIsEnabled; +} + +void ClassModel::paint(QPainter* painter, const QStyleOptionViewItem& option) const +{ +} + +QSize ClassModel::sizeHint(const QStyleOptionViewItem& option) const +{ +} + +BaseModel* ClassModel::childItem(const int row) +{ + return NULL; +} + +int ClassModel::findChild(BaseModel* model) const +{ + return -1; +} -- cgit