##// END OF EJS Templates
Working snapshot.
Working snapshot.

File last commit:

r0:1aa783210b8e default
r5:483cfe27e044 Working snapshot default
Show More
mainwindowsmenubar.cpp
25 lines | 624 B | text/x-c | CppLexer
/ src / mainwindowsmenubar.cpp
#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);
}