2017-12-13 22:38:46 +00:00
|
|
|
#ifndef GRAPHVIEW_H
|
|
|
|
#define GRAPHVIEW_H
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QPainter>
|
|
|
|
#include <QWidget>
|
|
|
|
#include <QAbstractScrollArea>
|
|
|
|
#include <QScrollBar>
|
2017-12-14 21:07:48 +00:00
|
|
|
#include <QElapsedTimer>
|
2017-12-19 16:59:39 +00:00
|
|
|
#include <QHelpEvent>
|
2017-12-13 22:38:46 +00:00
|
|
|
|
|
|
|
#include <unordered_map>
|
|
|
|
#include <unordered_set>
|
|
|
|
#include <queue>
|
2019-04-04 05:54:42 +00:00
|
|
|
#include <memory>
|
2017-12-13 22:38:46 +00:00
|
|
|
|
2019-02-22 16:50:45 +00:00
|
|
|
#include "core/Cutter.h"
|
2019-04-04 05:54:42 +00:00
|
|
|
#include "widgets/GraphLayout.h"
|
2017-12-13 22:38:46 +00:00
|
|
|
|
|
|
|
class GraphView : public QAbstractScrollArea
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2019-01-24 17:13:04 +00:00
|
|
|
signals:
|
|
|
|
void refreshBlock();
|
|
|
|
|
2017-12-13 22:38:46 +00:00
|
|
|
public:
|
2019-04-04 05:54:42 +00:00
|
|
|
using GraphBlock = GraphLayout::GraphBlock;
|
|
|
|
using GraphEdge = GraphLayout::GraphEdge;
|
2017-12-13 22:38:46 +00:00
|
|
|
|
2018-03-21 20:32:32 +00:00
|
|
|
struct EdgeConfiguration {
|
2017-12-13 22:38:46 +00:00
|
|
|
QColor color = QColor(128, 128, 128);
|
|
|
|
bool start_arrow = false;
|
|
|
|
bool end_arrow = true;
|
2019-01-24 17:13:04 +00:00
|
|
|
qreal width_scale = 1.0;
|
2017-12-13 22:38:46 +00:00
|
|
|
};
|
|
|
|
|
2019-01-13 14:40:37 +00:00
|
|
|
explicit GraphView(QWidget *parent);
|
|
|
|
~GraphView() override;
|
2018-03-21 20:32:32 +00:00
|
|
|
void paintEvent(QPaintEvent *event) override;
|
2017-12-13 22:38:46 +00:00
|
|
|
|
2019-02-16 17:17:11 +00:00
|
|
|
void showBlock(GraphBlock &block);
|
|
|
|
void showBlock(GraphBlock *block);
|
2017-12-13 22:38:46 +00:00
|
|
|
|
2019-01-24 17:13:04 +00:00
|
|
|
// Zoom data
|
|
|
|
qreal current_scale = 1.0;
|
|
|
|
|
2019-03-23 08:21:06 +00:00
|
|
|
QPoint offset = QPoint(0, 0);
|
2019-01-24 17:13:04 +00:00
|
|
|
|
2019-03-12 07:37:10 +00:00
|
|
|
/**
|
|
|
|
* @brief flag to control if the cached pixmap should be used
|
|
|
|
*/
|
|
|
|
bool useCache = false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief keep the current addr of the fcn of Graph
|
|
|
|
* Everytime overview updates its contents, it compares this value with the one in Graph
|
|
|
|
* if they aren't same, then Overview needs to update the pixmap cache.
|
|
|
|
*/
|
2019-04-04 05:54:42 +00:00
|
|
|
ut64 currentFcnAddr = 0; // TODO: move application specific code out of graph view
|
2019-03-12 07:37:10 +00:00
|
|
|
|
2017-12-13 22:38:46 +00:00
|
|
|
protected:
|
|
|
|
std::unordered_map<ut64, GraphBlock> blocks;
|
|
|
|
QColor backgroundColor = QColor(Qt::white);
|
2017-12-14 21:07:48 +00:00
|
|
|
|
|
|
|
// Padding inside the block
|
|
|
|
int block_padding = 16;
|
2017-12-13 22:38:46 +00:00
|
|
|
|
2017-12-14 21:07:48 +00:00
|
|
|
|
2017-12-13 22:38:46 +00:00
|
|
|
void addBlock(GraphView::GraphBlock block);
|
|
|
|
void setEntry(ut64 e);
|
|
|
|
void computeGraph(ut64 entry);
|
|
|
|
|
|
|
|
// Callbacks that should be overridden
|
2018-03-21 20:32:32 +00:00
|
|
|
virtual void drawBlock(QPainter &p, GraphView::GraphBlock &block);
|
2017-12-13 22:38:46 +00:00
|
|
|
virtual void blockClicked(GraphView::GraphBlock &block, QMouseEvent *event, QPoint pos);
|
2017-12-14 21:07:48 +00:00
|
|
|
virtual void blockDoubleClicked(GraphView::GraphBlock &block, QMouseEvent *event, QPoint pos);
|
2017-12-19 16:59:39 +00:00
|
|
|
virtual void blockHelpEvent(GraphView::GraphBlock &block, QHelpEvent *event, QPoint pos);
|
|
|
|
virtual bool helpEvent(QHelpEvent *event);
|
2017-12-13 22:38:46 +00:00
|
|
|
virtual void blockTransitionedTo(GraphView::GraphBlock *to);
|
2018-05-21 17:33:46 +00:00
|
|
|
virtual void wheelEvent(QWheelEvent *event) override;
|
2017-12-13 22:38:46 +00:00
|
|
|
virtual EdgeConfiguration edgeConfiguration(GraphView::GraphBlock &from, GraphView::GraphBlock *to);
|
|
|
|
|
2019-03-12 07:37:10 +00:00
|
|
|
void drawGraph();
|
2018-03-11 10:29:37 +00:00
|
|
|
bool event(QEvent *event) override;
|
2019-01-24 17:13:04 +00:00
|
|
|
|
|
|
|
// Mouse events
|
|
|
|
void mousePressEvent(QMouseEvent *event) override;
|
|
|
|
void mouseMoveEvent(QMouseEvent *event) override;
|
|
|
|
void mouseReleaseEvent(QMouseEvent *event) override;
|
|
|
|
void mouseDoubleClickEvent(QMouseEvent *event) override;
|
|
|
|
|
2019-02-16 17:17:11 +00:00
|
|
|
void center();
|
|
|
|
void centerX();
|
|
|
|
void centerY();
|
2019-01-24 17:13:04 +00:00
|
|
|
int width = 0;
|
|
|
|
int height = 0;
|
2019-03-12 07:37:10 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief pixmap that caches the graph nodes
|
|
|
|
*/
|
|
|
|
QPixmap pixmap;
|
|
|
|
|
2017-12-13 22:38:46 +00:00
|
|
|
private:
|
2018-03-21 20:32:32 +00:00
|
|
|
bool checkPointClicked(QPointF &point, int x, int y, bool above_y = false);
|
2017-12-13 22:38:46 +00:00
|
|
|
|
|
|
|
ut64 entry;
|
|
|
|
|
2019-04-04 05:54:42 +00:00
|
|
|
std::unique_ptr<GraphLayout> graphLayoutSystem;
|
2017-12-13 22:38:46 +00:00
|
|
|
|
2018-06-26 20:23:10 +00:00
|
|
|
bool ready = false;
|
2017-12-13 22:38:46 +00:00
|
|
|
|
|
|
|
// Scrolling data
|
2018-06-26 20:23:10 +00:00
|
|
|
int scroll_base_x = 0;
|
|
|
|
int scroll_base_y = 0;
|
|
|
|
bool scroll_mode = false;
|
2017-12-13 22:38:46 +00:00
|
|
|
|
|
|
|
// Todo: remove charheight/charwidth cause it should be handled in child class
|
|
|
|
qreal charWidth = 10.0;
|
|
|
|
|
2019-02-16 17:17:11 +00:00
|
|
|
QPolygonF recalculatePolygon(QPolygonF polygon);
|
2017-12-13 22:38:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // GRAPHVIEW_H
|