X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_PageBase.cpp;h=118ad800f65f7a4b13179c83d3880d4b8ff51627;hb=0f31b19c1a4208e3021259ccba85889a7a29add5;hp=dac665edd3fbb0fd089e2c90e43ca7c14156d3b2;hpb=806d6cb3a4f7980426bc63d7c6f1d9c87be260a4;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_PageBase.cpp b/src/ModuleBase/ModuleBase_PageBase.cpp index dac665edd..118ad800f 100644 --- a/src/ModuleBase/ModuleBase_PageBase.cpp +++ b/src/ModuleBase/ModuleBase_PageBase.cpp @@ -1,9 +1,21 @@ -/* - * ModuleBase_PageBase.cpp - * - * Created on: Mar 4, 2015 - * Author: sbh - */ +// Copyright (C) 2014-2019 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #include #include @@ -38,29 +50,49 @@ void ModuleBase_PageBase::addPageWidget(ModuleBase_PageBase* thePage) placePageWidget(thePage); } +void ModuleBase_PageBase::addWidget(QWidget* theWidget) +{ + placeWidget(theWidget); +} + void ModuleBase_PageBase::clearPage() { + myWidgetList.clear(); + QLayoutItem *aChild; while ((aChild = pageLayout()->takeAt(0)) != 0) { if(aChild->widget()) { - aChild->widget()->deleteLater(); + delete aChild->widget(); } else { delete aChild; } } - myWidgetList.clear(); + + // Issue #460: this patch is necessary since the row stretch information + // is stored independently on the items: when the items are removed + // from the layout the stretch information is kept, so in the next + // filling of the layout some "additional" (old) rows may be stretched + // without necessity. + // In this patch we clear the stretch information specifying the default value: 0. + QGridLayout* aLayout = dynamic_cast( pageLayout() ); + if( aLayout ) + { + int r = aLayout->rowCount(); + for( int i=0; isetRowStretch( i, 0 ); + } } -void ModuleBase_PageBase::takeFocus() +bool ModuleBase_PageBase::takeFocus() { if(myWidgetList.isEmpty()) - return; + return false; - myWidgetList.first()->focusTo(); + return myWidgetList.first()->focusTo(); } -QList ModuleBase_PageBase::modelWidgets() +QList ModuleBase_PageBase::modelWidgets() const { return myWidgetList; } @@ -84,3 +116,9 @@ void ModuleBase_PageBase::alignToTop() addPageStretch(); } } + +void ModuleBase_PageBase::placePageWidget(ModuleBase_PageBase* theWidget) +{ + QWidget* aWidget = dynamic_cast(theWidget); + placeWidget(aWidget); +}