mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-20 16:20:52 +01:00
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@2812 bfdf4180-ca20-0410-9c96-a3a8aa849046
21 lines
407 B
C++
21 lines
407 B
C++
#ifndef DIAGRAMFOLIOLIST_H
|
|
#define DIAGRAMFOLIOLIST_H
|
|
|
|
#include "diagram.h"
|
|
|
|
class DiagramFolioList : public Diagram
|
|
{
|
|
public:
|
|
DiagramFolioList(QObject *parent = 0) : Diagram(parent) {}
|
|
virtual ~DiagramFolioList() {}
|
|
|
|
protected:
|
|
void drawBackground(QPainter *, const QRectF &);
|
|
|
|
private:
|
|
void fillRow(QPainter *, const QRectF &, QString, QString, QString, QString);
|
|
|
|
};
|
|
|
|
#endif // DIAGRAMFOLIOLIST_H
|