##// END OF EJS Templates
Removed annoying GUI bug with dock widget handling:...
Removed annoying GUI bug with dock widget handling: -when last the plugin is removed the GUI is broken, if you add a new plugin it will not tabify correctly. Some cleaning on proxy: -removed dead code. Updated credits: -added LppSerial link to hephaistos -added gnome icons link

File last commit:

r0:1aa783210b8e default
r12:a31c7daed0d6 default
Show More
toolbar.cpp
21 lines | 489 B | text/x-c | CppLexer
#include "toolbar.h"
toolBar::toolBar(QWidget *parent) :
QDockWidget(parent)
{
this->toolsContainer = new toolBarContainer;
this->setWidget(this->toolsContainer);
this->setFeatures(DockWidgetMovable | DockWidgetFloatable);
this->setWindowTitle("SocExplorer Toolbar");
}
void toolBar::addTool(QDockWidget* widget)
{
widget->setAllowedAreas(Qt::AllDockWidgetAreas);
this->toolsContainer->addDockWidget(Qt::TopDockWidgetArea,widget);
}