/usr/include/tulip/PluginModel.h is in libtulip-dev 4.4.0dfsg2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 | /*
*
* This file is part of Tulip (www.tulip-software.org)
*
* Authors: David Auber and the Tulip development Team
* from LaBRI, University of Bordeaux 1 and Inria Bordeaux - Sud Ouest
*
* Tulip is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation, either version 3
* of the License, or (at your option) any later version.
*
* Tulip 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.
*
*/
///@cond DOXYGEN_HIDDEN
#ifndef PLUGINMODEL_H
#define PLUGINMODEL_H
#include <QIcon>
#include <QFont>
#include <tulip/TulipModel.h>
#include <tulip/TlpQtTools.h>
#include <tulip/PluginLister.h>
#include <string>
namespace tlp {
/*
* @brief Build and manage a Qt Model of a list of plugins
*/
class TLP_QT_SCOPE SimplePluginListModel : public tlp::TulipModel {
private:
QList<std::string> _list;
public:
SimplePluginListModel(const QList<std::string>& plugins,QObject *parent = NULL);
virtual ~SimplePluginListModel();
int columnCount ( const QModelIndex& = QModelIndex() ) const;
int rowCount(const QModelIndex &parent = QModelIndex()) const;
QModelIndex parent(const QModelIndex &) const;
QModelIndex index(int row, int column,const QModelIndex &parent = QModelIndex()) const;
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
QList<std::string> plugins()const;
std::string pluginName(const QModelIndex& index) const;
};
template<typename PLUGIN>
class PluginModel : public tlp::TulipModel {
struct TreeItem {
TreeItem(QString name, QString infos = QString::null,
TreeItem* parent = NULL): name(name), infos(infos), parent(parent) {}
virtual ~TreeItem() {
foreach(TreeItem* c, children)
delete c;
}
TreeItem* addChild(QString name, QString infos = QString::null) {
TreeItem* result = new TreeItem(name, infos, this);
children.push_back(result);
return result;
}
QString name;
QString infos;
TreeItem* parent;
QList<TreeItem*> children;
};
TreeItem* _root;
// FIXME: Non-optimized piece of crap, should be fixed
void buildTree() {
delete _root;
_root = new TreeItem("root");
QMap<QString,QMap<QString,QStringList > > pluginTree;
std::list<std::string> plugins = PluginLister::instance()->availablePlugins<PLUGIN>();
for(std::list<std::string>::iterator it = plugins.begin(); it != plugins.end(); ++it) {
std::string name = *it;
const Plugin& plugin = PluginLister::instance()->pluginInformation(name);
pluginTree[plugin.category().c_str()][plugin.group().c_str()].append(name.c_str());
}
foreach(QString cat, pluginTree.keys()) {
TreeItem* catItem = _root->addChild(cat);
foreach(QString group, pluginTree[cat].keys()) {
TreeItem* groupItem = catItem;
if ((group != "") && (pluginTree[cat].keys().size() > 1))
groupItem = catItem->addChild(group);
// sort in case insensitive alphabetic order
std::sort(pluginTree[cat][group].begin(),
pluginTree[cat][group].end(), QStringCaseCmp);
foreach(QString alg, pluginTree[cat][group]) {
const Plugin& plugin =
PluginLister::instance()->pluginInformation(alg.toStdString());
std::string infos = plugin.info();
// set infos only if they contain more than one word
if (infos.find(' ') != std::string::npos)
groupItem->addChild(alg, infos.c_str());
else
groupItem->addChild(alg);
}
}
}
}
QList<int> indexHierarchy(TreeItem* item) const {
QList<int> result;
TreeItem* parent = item->parent;
TreeItem* child = item;
while (child != _root) {
result.push_front(parent->children.indexOf(child));
parent = parent->parent;
child = child->parent;
}
return result;
}
public:
explicit PluginModel(QObject *parent = NULL): TulipModel(parent), _root(NULL) {
buildTree();
}
virtual ~PluginModel() {
delete _root;
}
int rowCount(const QModelIndex &parent = QModelIndex()) const {
TreeItem* item = _root;
if (parent.isValid())
item = (TreeItem*)parent.internalPointer();
return item->children.size();
}
int columnCount(const QModelIndex & = QModelIndex()) const {
return 1;
}
QModelIndex parent(const QModelIndex &child) const {
if (!child.isValid())
return QModelIndex();
TreeItem* childItem = (TreeItem*)child.internalPointer();
if (childItem->parent == _root)
return QModelIndex();
QList<int> indexes = indexHierarchy(childItem->parent);
int row = indexes[indexes.size()-1];
return createIndex(row,child.column(),childItem->parent);
}
QModelIndex index(int row, int column,const QModelIndex &parent = QModelIndex()) const {
TreeItem* parentItem = _root;
if (parent.isValid()) {
parentItem = (TreeItem*)parent.internalPointer();
}
if (row >= parentItem->children.size())
return QModelIndex();
return createIndex(row,column,parentItem->children[row]);
}
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const {
TreeItem* item = (TreeItem*)index.internalPointer();
if (role == Qt::DisplayRole)
return item->name;
else if (role == Qt::ToolTipRole) {
if (item->infos.isNull())
return item->name;
else
return QString("<table><tr><td>%1</td></tr><tr><td><i>%2</i></td></tr></table>").arg(item->name + " :").arg(item->infos);
}
else if (role == Qt::FontRole && !index.parent().parent().isValid()) {
QFont f;
f.setBold(true);
return f;
}
else if (role == Qt::DecorationRole && tlp::PluginLister::pluginExists(item->name.toStdString())) {
const tlp::Plugin& p = tlp::PluginLister::pluginInformation(item->name.toStdString());
QIcon icon(p.icon().c_str());
return icon;
}
return QVariant();
}
virtual Qt::ItemFlags flags ( const QModelIndex& index ) const {
Qt::ItemFlags result(QAbstractItemModel::flags(index));
if(index.isValid()) {
TreeItem* item = (TreeItem*)index.internalPointer();
if (!PluginLister::instance()->pluginExists<PLUGIN>(item->name.toStdString()))
result = Qt::ItemIsEnabled;
}
return result;
}
};
}
#endif // PLUGINMODEL_H
///@endcond
|