]> git.siccegge.de Git - frida/frida.git/blobdiff - src/gui/Mainwindow.cxx
work
[frida/frida.git] / src / gui / Mainwindow.cxx
index 3e26227ad6acd086854dfe7ab08a1d347c2b605f..412c42400f4170d06457edc400efebd70bd7b9ff 100644 (file)
@@ -1,31 +1,41 @@
 #include "Mainwindow.h++"
 
+#include <iostream>
+#include <sstream>
+
 #include <QtGui>
 
+namespace {
+
+}
+
 Mainwindow::Mainwindow()
 {
-    // openAction = new QAction(tr("&Open"), this);
+    openAction = new QAction(tr("&Open"), this);
     // saveAction = new QAction(tr("&Save"), this);
     exitAction = new QAction(tr("E&xit"), this);
 
-    // connect(openAction, SIGNAL(triggered()), this, SLOT(open()));
+    connect(openAction, SIGNAL(triggered()), this, SLOT(open()));
     // connect(saveAction, SIGNAL(triggered()), this, SLOT(save()));
     connect(exitAction, SIGNAL(triggered()), qApp, SLOT(quit()));
 
     fileMenu = menuBar()->addMenu(tr("&File"));
-    // fileMenu->addAction(openAction);
+    fileMenu->addAction(openAction);
     // fileMenu->addAction(saveAction);
-    // fileMenu->addSeparator();
+    fileMenu->addSeparator();
     fileMenu->addAction(exitAction);
 
-    // 
-    // setCentralWidget(textEdit);
+    listWidget = new QListWidget();
+    stackedWidget = new QStackedWidget();
+    dockWidget = new QDockWidget(tr("Functions"), this);
+    dockWidget->setAllowedAreas(Qt::LeftDockWidgetArea |
+                                Qt::RightDockWidgetArea);
+    dockWidget->setWidget(listWidget);
+    addDockWidget(Qt::LeftDockWidgetArea, dockWidget);
+    setCentralWidget(stackedWidget);
 
-    tabwidget = new QTabWidget;
-    setCentralWidget(tabwidget);
-
-    textEdit = new QTextEdit;
-    tabwidget->addTab(textEdit, "edit");
+    connect(listWidget, SIGNAL(currentRowChanged(int)),
+            stackedWidget, SLOT(setCurrentIndex(int)));
 
     setWindowTitle(tr("Notepad"));
 }
@@ -42,5 +52,53 @@ void Mainwindow::quit()
 }
 
 void Mainwindow::open() {
+    QString fileName = QFileDialog::getOpenFileName(this, tr("Open File"), "",
+                                                    tr("Binaries (*)"));
+
+    if (fileName != "") {
+        curBin = new qtlldb::Binary(fileName.toStdString());
+
+        std::vector<std::string> symbols = curBin->getSymbols();
+        if (0 == symbols.size())
+            populateSymbolInformation(".text");
+        for (std::vector<std::string>::iterator it = symbols.begin();
+             it != symbols.end();
+             ++it) {
+            populateSymbolInformation(*it);
+        }
+    }
+}
+
+void Mainwindow::populateSymbolInformation(const std::string& sym) {
+    QTabWidget * w = new QTabWidget();
+
+    // Listing
+    QTableWidget * t = new QTableWidget();
+    t->setColumnCount(3);
+    t->horizontalHeader()->setResizeMode(QHeaderView::ResizeToContents);
+    curBin->for_each_instruction(sym, [&t](long add, std::string bytes, std::string mnemonic) {
+            int row = t->rowCount();
+            std::stringstream s;
+            t->setRowCount(t->rowCount() + 1);
+            s << std::hex << add;
+            t->setItem(row,0,new QTableWidgetItem(s.str().c_str()));
+            s.str("");
+            s << std::hex;
+            for_each(bytes.begin(), bytes.end(), [&s](char c){s << (unsigned int)((unsigned char)c) << ' ';});
+            t->setItem(row,1,new QTableWidgetItem(s.str().c_str()));
+            t->setItem(row,2,new QTableWidgetItem(mnemonic.c_str() + 1));
+        });
+    w->addTab(t, "Listing");
+
+    // CFG
+    QGraphicsScene * scene = new QGraphicsScene;
+    QGraphicsRectItem *rect = scene->addRect(QRectF(0, 0, 100, 100));
+    rect->setFlag(QGraphicsItem::ItemIsMovable);
+    QGraphicsView * view = new QGraphicsView(scene);
+    w->addTab(view, "CFG");
+
+
 
+    listWidget->addItem(sym.c_str());
+    stackedWidget->addWidget(w);
 }