mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
161 lines
5.4 KiB
C++
161 lines
5.4 KiB
C++
/*=========================================================================
|
|
|
|
Program: ParaView
|
|
Module: pqPopOutWidget.cxx
|
|
|
|
Copyright (c) 2005-2012 Sandia Corporation, Kitware Inc.
|
|
All rights reserved.
|
|
|
|
ParaView is a free software; you can redistribute it and/or modify it
|
|
under the terms of the ParaView license version 1.2.
|
|
|
|
See License_v1.2.txt for the full ParaView license.
|
|
A copy of this license can be obtained by contacting
|
|
Kitware Inc.
|
|
28 Corporate Drive
|
|
Clifton Park, NY 12065
|
|
USA
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR
|
|
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
=========================================================================*/
|
|
|
|
#include "pqPopOutWidget.h"
|
|
|
|
#include "pqApplicationCore.h"
|
|
#include "pqDialog.h"
|
|
#include "pqSettings.h"
|
|
|
|
#include <QIcon>
|
|
#include <QLayout>
|
|
#include <QPointer>
|
|
#include <QPushButton>
|
|
#include <QStyle>
|
|
#include <QWidget>
|
|
|
|
class pqPopOutWidget::pqInternal
|
|
{
|
|
public:
|
|
pqSettings* Settings;
|
|
QString Title;
|
|
QPointer<QHBoxLayout> Layout;
|
|
QPointer<QWidget> WidgetToPopOut;
|
|
QPointer<pqDialog> Dialog;
|
|
QPointer<QPushButton> Button;
|
|
int Index;
|
|
bool WidgetIsInDialog;
|
|
pqInternal() : Settings(NULL), Layout(NULL), WidgetToPopOut(NULL),
|
|
Dialog(NULL), Button(NULL), Index(-1), WidgetIsInDialog(false)
|
|
{
|
|
Settings = pqApplicationCore::instance()->settings();
|
|
}
|
|
};
|
|
|
|
//------------------------------------------------------------------------------
|
|
pqPopOutWidget::pqPopOutWidget(QWidget *widgetToPopOut,
|
|
const QString& dialogTitle, QWidget *p)
|
|
: QWidget(p), Internals(new pqInternal)
|
|
{
|
|
this->Internals->Title = dialogTitle;
|
|
this->Internals->Layout = new QHBoxLayout(this);
|
|
this->Internals->Layout->setMargin(0);
|
|
this->Internals->Layout->setSpacing(0);
|
|
this->Internals->WidgetToPopOut = widgetToPopOut;
|
|
this->Internals->Layout->addWidget(this->Internals->WidgetToPopOut);
|
|
this->Internals->Dialog = new pqDialog(this);
|
|
this->Internals->Dialog->setWindowTitle(dialogTitle);
|
|
this->Internals->Dialog->setLayout(new QHBoxLayout(this->Internals->Dialog));
|
|
this->connect(this->Internals->Dialog,SIGNAL(finished(int)),
|
|
this,SLOT(moveWidgetBackToParent()));
|
|
this->Internals->Index = 0;
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
|
pqPopOutWidget::~pqPopOutWidget()
|
|
{
|
|
delete this->Internals;
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
|
void pqPopOutWidget::setPopOutButton(QPushButton *button)
|
|
{
|
|
// It could handle multiple buttons, but doesn't right now
|
|
Q_ASSERT(this->Internals->Button.isNull());
|
|
this->Internals->Button = button;
|
|
if (this->Internals->WidgetIsInDialog)
|
|
{
|
|
this->Internals->Button->setIcon(this->style()->standardIcon(
|
|
QStyle::SP_TitleBarNormalButton));
|
|
}
|
|
else
|
|
{
|
|
this->Internals->Button->setIcon(this->style()->standardIcon(
|
|
QStyle::SP_TitleBarMaxButton));
|
|
}
|
|
this->connect(this->Internals->Button,SIGNAL(clicked()),
|
|
this,SLOT(toggleWidgetLocation()));
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
|
void pqPopOutWidget::toggleWidgetLocation()
|
|
{
|
|
if (this->Internals->WidgetIsInDialog)
|
|
{
|
|
this->moveWidgetBackToParent();
|
|
}
|
|
else
|
|
{
|
|
this->moveWidgetToDialog();
|
|
}
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
|
void pqPopOutWidget::moveWidgetToDialog()
|
|
{
|
|
if (!this->Internals->WidgetIsInDialog)
|
|
{
|
|
this->Internals->Dialog->layout()->addWidget(this->Internals->WidgetToPopOut);
|
|
this->Internals->WidgetIsInDialog = true;
|
|
this->Internals->Settings->restoreState(this->Internals->Title,
|
|
*this->Internals->Dialog.data());
|
|
this->Internals->Dialog->show();
|
|
if (this->Internals->Button)
|
|
{
|
|
this->Internals->Button->setIcon(this->style()->standardIcon(
|
|
QStyle::SP_TitleBarNormalButton));
|
|
}
|
|
}
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
|
void pqPopOutWidget::moveWidgetBackToParent()
|
|
{
|
|
if (this->Internals->Dialog->isVisible())
|
|
{
|
|
this->Internals->Dialog->hide();
|
|
}
|
|
if (this->Internals->WidgetIsInDialog)
|
|
{
|
|
this->Internals->Settings->saveState(*this->Internals->Dialog.data(),
|
|
this->Internals->Title);
|
|
this->Internals->Layout->insertWidget(
|
|
this->Internals->Index,this->Internals->WidgetToPopOut);
|
|
this->Internals->WidgetIsInDialog = false;
|
|
if (this->Internals->Button)
|
|
{
|
|
this->Internals->Button->setIcon(this->style()->standardIcon(
|
|
QStyle::SP_TitleBarMaxButton));
|
|
}
|
|
}
|
|
}
|