##// END OF EJS Templates
New register explorer WIP...
New register explorer WIP !!!!!!!!!!!!!!!!!!!!!!!!!!!!! REMOVED OLD genericPySysdriver interface Now the plugins are directly exposed to python. ABI not compatible with previous plugins. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!

File last commit:

r0:1aa783210b8e default
r79:3440ba47d0f1 default
Show More
mainwindowsmenubar.h
33 lines | 585 B | text/x-c | CLexer
/ src / mainwindowsmenubar.h
#ifndef MAINWINDOWSMENUBAR_H
#define MAINWINDOWSMENUBAR_H
#include <QMenuBar>
#include <QMenu>
#include <QAction>
class mainwindowsmenubar : public QMenuBar
{
public:
mainwindowsmenubar(QWidget *parent = 0);
QMenu* pluginMenu0;
QMenu* connectionMenu0;
};
class pluginMenu : public QMenu
{
public:
pluginMenu(QWidget *parent = 0);
QAction* managePlugins;
};
class connectionMenu : public QMenu
{
public:
connectionMenu(QWidget *parent = 0);
QAction* connect;
QAction* disconnect;
};
#endif // MAINWINDOWSMENUBAR_H