diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 114a878c64ce6f8223cfd22d76a20eb16d177e5e (patch) | |
tree | acaf47eb0fa12142d3896416a69e74cbf5a72242 /parts/classview/digraphview.h | |
download | tdevelop-114a878c64ce6f8223cfd22d76a20eb16d177e5e.tar.gz tdevelop-114a878c64ce6f8223cfd22d76a20eb16d177e5e.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdevelop@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'parts/classview/digraphview.h')
-rw-r--r-- | parts/classview/digraphview.h | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/parts/classview/digraphview.h b/parts/classview/digraphview.h new file mode 100644 index 00000000..c5fb2a28 --- /dev/null +++ b/parts/classview/digraphview.h @@ -0,0 +1,66 @@ +/*************************************************************************** + * Copyright (C) 2001 by Bernd Gehrmann * + * bernd@kdevelop.org * + * * + * 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 2 of the License, or * + * (at your option) any later version. * + * * + ***************************************************************************/ + +#ifndef _DIGRAPHVIEW_H_ +#define _DIGRAPHVIEW_H_ + +#include <qptrlist.h> +#include <qscrollview.h> +#include <qstringlist.h> +#include <qimage.h> + +class DigraphNode; +class DigraphEdge; + + +class DigraphView : public QScrollView +{ + Q_OBJECT + +public: + DigraphView(QWidget *parent, const char *name); + ~DigraphView(); + + void addEdge(const QString &name1, const QString &name2); + void process(const QString& file = "", const QString& ext = ""); + void clear(); + void setSelected(const QString &name); + void ensureVisible(const QString &name); + +signals: + void selected(const QString &name); + +protected: + virtual void drawContents(QPainter* p, int clipx, int clipy, int clipw, int cliph); + virtual void contentsMousePressEvent(QMouseEvent *e); + virtual QSize sizeHint() const; + +private: + int toXPixel(double x); + int toYPixel(double x); + + void setRenderedExtent(double w, double h); + void addRenderedNode(const QString &name, + double x, double y, double w, double h); + void addRenderedEdge(const QString &name1, const QString &name2, + QMemArray<double> coords); + static QStringList splitLine(QString str); + void parseDotResults(const QStringList &list); + + double xscale, yscale; + int width, height; + QStringList inputs; + QPtrList<DigraphNode> nodes; + QPtrList<DigraphEdge> edges; + DigraphNode *selNode; +}; + +#endif |