| 31 | #include "menulabel.h" |
| 32 | |
| 33 | ToolMenu::ToolMenu(QWidget * parent) : QMenu(parent), |
| 34 | _toolFactory(new ToolFactory()) |
| 35 | { |
| 36 | // Style of the menu |
| 37 | this->setStyleSheet(ContextManager::theme()->getMenuTheme()); |
| 38 | |
| 39 | // Connection of the actions |
| 40 | connect(this, SIGNAL(triggered(QAction*)), this, SLOT(onTriggered(QAction*))); |
| 41 | } |
| 42 | |
| 43 | ToolMenu::~ToolMenu() |
| 44 | { |
nothing calls this directly
no test coverage detected