diff options
Diffstat (limited to 'src/pluginflagicondelegate.h')
| -rw-r--r-- | src/pluginflagicondelegate.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/pluginflagicondelegate.h b/src/pluginflagicondelegate.h new file mode 100644 index 00000000..554e968b --- /dev/null +++ b/src/pluginflagicondelegate.h @@ -0,0 +1,17 @@ +#ifndef PLUGINFLAGICONDELEGATE_H
+#define PLUGINFLAGICONDELEGATE_H
+
+#include "icondelegate.h"
+
+class PluginFlagIconDelegate : public IconDelegate
+{
+public:
+ PluginFlagIconDelegate(QObject *parent = NULL);
+
+ // IconDelegate interface
+private:
+ virtual QList<QIcon> getIcons(const QModelIndex &index) const;
+ virtual size_t getNumIcons(const QModelIndex &index) const;
+};
+
+#endif // PLUGINFLAGICONDELEGATE_H
|
