2 * ModuleBase_PageWidget.cpp
4 * Created on: Mar 4, 2015
8 #include <ModuleBase_PageWidget.h>
9 #include <ModuleBase_ModelWidget.h>
10 #include <ModuleBase_Tools.h>
12 #include <QGridLayout>
16 ModuleBase_PageWidget::ModuleBase_PageWidget(QWidget* theParent)
19 myMainLayout = new QGridLayout(this);
20 ModuleBase_Tools::adjustMargins(myMainLayout);
21 setLayout(myMainLayout);
24 ModuleBase_PageWidget::~ModuleBase_PageWidget()
28 void ModuleBase_PageWidget::addPageStretch()
30 myMainLayout->setRowStretch(myMainLayout->rowCount(), 1);
33 void ModuleBase_PageWidget::placeModelWidget(ModuleBase_ModelWidget* theWidget)
36 const int kRow = myMainLayout->count();
37 myMainLayout->addWidget(theWidget, kRow, kCol);
38 myMainLayout->setRowStretch(kRow, 0);
41 void ModuleBase_PageWidget::placePageWidget(ModuleBase_PageBase* theWidget)
43 QWidget* aWidget = dynamic_cast<QWidget*>(theWidget);
46 std::cout << "ModuleBase_PageWidget::placePageWidget: can not cast page" << std::endl;
51 const int kRow = myMainLayout->count();
52 myMainLayout->addWidget(aWidget, kRow, kCol);
53 myMainLayout->setRowStretch(kRow, 0);
56 QLayout* ModuleBase_PageWidget::pageLayout()