/********* * * This file is part of BibleTime's source code, http://www.bibletime.info/. * * Copyright 1999-2011 by the BibleTime developers. * The BibleTime source code is licensed under the GNU General Public License version 2.0. * **********/ #ifndef SEARCHCSEARCHANALYSISLEGENDITEM_H #define SEARCHCSEARCHANALYSISLEGENDITEM_H #include class CSwordModuleInfo; namespace Search { class CSearchAnalysisLegendItem : public QGraphicsRectItem { public: /* Methods: */ inline CSearchAnalysisLegendItem(const QList &modules) : m_moduleList(modules) {} private: /* Methods: */ /** Reimplementation of QGraphicsItem::paint. */ virtual void paint(QPainter* painter, const QStyleOptionGraphicsItem*, QWidget*); private: /* Fields: */ QList m_moduleList; }; } // namespace Search #endif