summaryrefslogtreecommitdiffstats
path: root/parts/classview/digraphview.h
blob: c5fb2a289af1c27f22149132b476c59805fd2834 (plain)
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
/***************************************************************************
 *   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