1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
// ************************************************************************************************
//
// BornAgain: simulate and fit reflection and scattering
//
//! @file GUI/coregui/Views/CommonWidgets/AdjustingScrollArea.cpp
//! @brief Implements class AdjustingScrollArea
//!
//! @homepage http://www.bornagainproject.org
//! @license GNU General Public License v3 or higher (see COPYING)
//! @copyright Forschungszentrum Jülich GmbH 2018
//! @authors Scientific Computing Group at MLZ (see CITATION, AUTHORS)
//
// ************************************************************************************************
#include "GUI/coregui/Views/CommonWidgets/AdjustingScrollArea.h"
#include <QEvent>
#include <QScrollBar>
AdjustingScrollArea::AdjustingScrollArea(QWidget* parent) : QScrollArea(parent)
{
setObjectName("MyScrollArea");
setContentsMargins(0, 0, 0, 0);
setWidgetResizable(true);
setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
setStyleSheet("QScrollArea#MyScrollArea {border: 0px; background-color:transparent;}");
}
void AdjustingScrollArea::setWidget(QWidget* w)
{
QScrollArea::setWidget(w);
w->installEventFilter(this);
}
QSize AdjustingScrollArea::sizeHint() const
{
QScrollBar* horizontal = horizontalScrollBar();
QSize result(viewport()->width(), widget()->height() + horizontal->height() * 2);
return result;
}
bool AdjustingScrollArea::eventFilter(QObject* obj, QEvent* ev)
{
if (obj == widget() && ev->type() != QEvent::Resize) {
widget()->setMaximumWidth(viewport()->width());
setMaximumHeight(height() - viewport()->height() + widget()->height());
}
return QScrollArea::eventFilter(obj, ev);
}
|