First tab at building a mechanism where tabpages can supply a list of actions that are added to the global main toolbar.
This commit is contained in:
parent
c2d725ec6d
commit
3d516e6006
10 changed files with 130 additions and 26 deletions
16
pglab/PlgPage.cpp
Normal file
16
pglab/PlgPage.cpp
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#include "PlgPage.h"
|
||||
|
||||
//PglPage::PglPage()
|
||||
//{
|
||||
|
||||
//}
|
||||
|
||||
std::vector<QAction*> PlgPage::getToolbarActions()
|
||||
{
|
||||
return std::vector<QAction*>();
|
||||
}
|
||||
|
||||
bool PlgPage::canClose()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue