]> git.siccegge.de Git - frida/frida.git/blobdiff - src/gui/widgets/BasicBlockWidget.hxx
Move qt.hxx up one directory
[frida/frida.git] / src / gui / widgets / BasicBlockWidget.hxx
index b45069cc560155bfcfa01b7bba87de067fe5cd1c..7c402c0a663bb4f89d8b0216ce6280aee5e752a6 100644 (file)
@@ -1,7 +1,7 @@
 #ifndef INCLUDE__BasicBlockWidget_hxx
 #define INCLUDE__BasicBlockWidget_hxx
 
-#include "gui/qt.hxx"
+#include "qt.hxx"
 #include <vector>
 #include <cassert>
 #include <tuple>
@@ -9,16 +9,21 @@
 #include <memory>
 #include <log4cxx/logger.h>
 
+#include "disassembler/Instruction.hxx"
+
 class Mainwindow;
+class CustomQGraphicsTextItem;
 class BasicBlock;
+class RenameFunctionEvent;
+class ChangeCommentEvent;
 
 class BasicBlockWidget : public QObject, public QGraphicsItem
 {
        Q_OBJECT
+       friend class CustomQGraphicsTextItem;
 public:
        BasicBlockWidget(const QString& name, BasicBlock * block, Mainwindow * mainwindow);
 
-       void addItem(uint8_t* bytes, size_t num_bytes, QString line, const QString& href);
        void paint(QPainter *painter, const QStyleOptionGraphicsItem *option,
                   QWidget *widget);
        QRectF boundingRect() const;
@@ -41,12 +46,28 @@ public:
 
        QString getName() const
                { return name; }
+
+       QColor setColor(const QColor& newColor) {
+               QColor lastcolor = currentColor;
+               currentColor = newColor;
+               return lastcolor;
+       }
+
+       const QColor defaultColor = QColor(0xcc, 0xcc, 0xff, 0xff);
+       const QColor highlightColor = QColor(0xff, 0x99, 0xff, 0xff);
 private:
+       void updateFunctionName(RenameFunctionEvent* event);
+       void populateWidget();
+       void changeCommentHandler(ChangeCommentEvent* event);
+       QString formatComments(Instruction* inst);
+
        uint32_t width, height;
        QString name;
+       QColor currentColor;
        std::unique_ptr<QGraphicsTextItem> _widget;
        QTextTable* _table;
        BasicBlock* block;
+       std::vector<Instruction> instructions;
        Mainwindow* mainwindow;
        std::vector<BasicBlockWidget*> previous;
        BasicBlockWidget* next[2];