##// END OF EJS Templates
Added bool loadfile(abstractBinFile* file)...
Added bool loadfile(abstractBinFile* file) and bool dumpMemory(unsigned int address, unsigned int count, QString file, const QString &format); to the genericPySysDriver, now all plugins can load an abstract binary file(bin/srec/elf) and they can dump any memory space to either an srec or a binary file. This function are able to deal with file and host endianness. Functions: -bool dumpMemory(unsigned int address,unsigned int count,QString file); -bool memSet(unsigned int address,int value, unsigned int count); -bool loadbin(unsigned int address,QString file); are moved to socexplorerplugin which makes them available from C++.

File last commit:

r0:1aa783210b8e default
r71:c4b98d42ee59 default
Show More
mainwindowsmenubar.cpp
25 lines | 624 B | text/x-c | CppLexer
/ src / mainwindowsmenubar.cpp
Jeandet Alexis
First init of SocExplorer Repository.
r0 #include "mainwindowsmenubar.h"
mainwindowsmenubar::mainwindowsmenubar(QWidget *parent)
: QMenuBar(parent)
{
this->pluginMenu0 = new pluginMenu;
this->addMenu(this->pluginMenu0);
this->connectionMenu0 = new connectionMenu;
}
pluginMenu::pluginMenu(QWidget *parent)
: QMenu(parent)
{
this->managePlugins = new QAction(tr("&Manage Plugins"),parent);
this->addAction(this->managePlugins);
}
connectionMenu::connectionMenu(QWidget *parent)
: QMenu(parent)
{
this->connect = new QAction(tr("&Connect"),parent);
this->disconnect = new QAction(tr("&Disconnect"),parent);
}