2009-02-25 09:15:00 +01:00
|
|
|
/**************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2012-01-26 18:33:46 +01:00
|
|
|
** Copyright (c) 2012 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-07-19 12:26:56 +02:00
|
|
|
** Contact: http://www.qt-project.org/
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** This file may be used under the terms of the GNU Lesser General Public
|
|
|
|
|
** License version 2.1 as published by the Free Software Foundation and
|
|
|
|
|
** appearing in the file LICENSE.LGPL included in the packaging of this file.
|
|
|
|
|
** Please review the following information to ensure the GNU Lesser General
|
|
|
|
|
** Public License version 2.1 requirements will be met:
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2010-12-17 16:01:08 +01:00
|
|
|
** In addition, as a special exception, Nokia gives you certain additional
|
2011-04-13 08:42:33 +02:00
|
|
|
** rights. These rights are described in the Nokia Qt LGPL Exception
|
2010-12-17 16:01:08 +01:00
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
2011-04-13 08:42:33 +02:00
|
|
|
** Other Usage
|
|
|
|
|
**
|
|
|
|
|
** Alternatively, this file may be used in accordance with the terms and
|
|
|
|
|
** conditions contained in a signed written agreement between you and Nokia.
|
|
|
|
|
**
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
**************************************************************************/
|
2008-12-02 14:09:21 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "outputpane.h"
|
2010-09-16 12:26:28 +02:00
|
|
|
#include "outputpanemanager.h"
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "coreconstants.h"
|
2009-01-23 13:03:36 +01:00
|
|
|
#include "icore.h"
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "ioutputpane.h"
|
|
|
|
|
#include "modemanager.h"
|
|
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QSplitter>
|
|
|
|
|
#include <QVBoxLayout>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2010-09-16 12:26:28 +02:00
|
|
|
namespace Core {
|
2009-01-19 12:39:20 +01:00
|
|
|
|
2010-09-16 12:26:28 +02:00
|
|
|
struct OutputPanePlaceHolderPrivate {
|
|
|
|
|
explicit OutputPanePlaceHolderPrivate(Core::IMode *mode, QSplitter *parent);
|
2009-07-16 16:30:00 +02:00
|
|
|
|
2010-09-16 12:26:28 +02:00
|
|
|
Core::IMode *m_mode;
|
|
|
|
|
QSplitter *m_splitter;
|
2011-06-30 16:14:45 +02:00
|
|
|
int m_lastNonMaxSize;
|
2010-09-16 12:26:28 +02:00
|
|
|
static OutputPanePlaceHolder* m_current;
|
|
|
|
|
};
|
2009-04-30 12:50:52 +02:00
|
|
|
|
2010-09-16 12:26:28 +02:00
|
|
|
OutputPanePlaceHolderPrivate::OutputPanePlaceHolderPrivate(Core::IMode *mode, QSplitter *parent) :
|
2011-06-30 16:14:45 +02:00
|
|
|
m_mode(mode), m_splitter(parent), m_lastNonMaxSize(0)
|
2010-09-16 12:26:28 +02:00
|
|
|
{
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2010-09-16 12:26:28 +02:00
|
|
|
OutputPanePlaceHolder *OutputPanePlaceHolderPrivate::m_current = 0;
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2009-12-14 11:52:23 +01:00
|
|
|
OutputPanePlaceHolder::OutputPanePlaceHolder(Core::IMode *mode, QSplitter* parent)
|
2010-09-16 12:26:28 +02:00
|
|
|
: QWidget(parent), d(new OutputPanePlaceHolderPrivate(mode, parent))
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
setVisible(false);
|
|
|
|
|
setLayout(new QVBoxLayout);
|
|
|
|
|
QSizePolicy sp;
|
|
|
|
|
sp.setHorizontalPolicy(QSizePolicy::Preferred);
|
|
|
|
|
sp.setVerticalPolicy(QSizePolicy::Preferred);
|
|
|
|
|
sp.setHorizontalStretch(0);
|
|
|
|
|
setSizePolicy(sp);
|
|
|
|
|
layout()->setMargin(0);
|
2012-03-05 22:30:59 +01:00
|
|
|
connect(Core::ModeManager::instance(), SIGNAL(currentModeChanged(Core::IMode*)),
|
|
|
|
|
this, SLOT(currentModeChanged(Core::IMode*)));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
OutputPanePlaceHolder::~OutputPanePlaceHolder()
|
|
|
|
|
{
|
2010-09-16 12:26:28 +02:00
|
|
|
if (d->m_current == this) {
|
2010-12-06 10:23:51 +01:00
|
|
|
if (Internal::OutputPaneManager *om = Internal::OutputPaneManager::instance()) {
|
|
|
|
|
om->setParent(0);
|
|
|
|
|
om->hide();
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2011-09-16 15:00:41 +02:00
|
|
|
delete d;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void OutputPanePlaceHolder::currentModeChanged(Core::IMode *mode)
|
|
|
|
|
{
|
2010-09-16 12:26:28 +02:00
|
|
|
if (d->m_current == this) {
|
|
|
|
|
d->m_current = 0;
|
|
|
|
|
Internal::OutputPaneManager *om = Internal::OutputPaneManager::instance();
|
|
|
|
|
om->setParent(0);
|
|
|
|
|
om->hide();
|
|
|
|
|
om->updateStatusButtons(false);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2010-09-16 12:26:28 +02:00
|
|
|
if (d->m_mode == mode) {
|
|
|
|
|
d->m_current = this;
|
|
|
|
|
Internal::OutputPaneManager *om = Internal::OutputPaneManager::instance();
|
|
|
|
|
layout()->addWidget(om);
|
|
|
|
|
om->show();
|
|
|
|
|
om->updateStatusButtons(isVisible());
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-14 11:52:23 +01:00
|
|
|
void OutputPanePlaceHolder::maximizeOrMinimize(bool maximize)
|
|
|
|
|
{
|
2010-09-16 12:26:28 +02:00
|
|
|
if (!d->m_splitter)
|
2009-12-14 11:52:23 +01:00
|
|
|
return;
|
2010-09-16 12:26:28 +02:00
|
|
|
int idx = d->m_splitter->indexOf(this);
|
2009-12-14 11:52:23 +01:00
|
|
|
if (idx < 0)
|
|
|
|
|
return;
|
|
|
|
|
|
2010-09-16 12:26:28 +02:00
|
|
|
QList<int> sizes = d->m_splitter->sizes();
|
2009-12-14 11:52:23 +01:00
|
|
|
|
|
|
|
|
if (maximize) {
|
2011-06-30 16:14:45 +02:00
|
|
|
d->m_lastNonMaxSize = sizes[idx];
|
2009-12-15 10:09:27 +01:00
|
|
|
int sum = 0;
|
2009-12-14 11:52:23 +01:00
|
|
|
foreach(int s, sizes)
|
|
|
|
|
sum += s;
|
|
|
|
|
for (int i = 0; i < sizes.count(); ++i) {
|
|
|
|
|
sizes[i] = 32;
|
|
|
|
|
}
|
|
|
|
|
sizes[idx] = sum - (sizes.count()-1) * 32;
|
|
|
|
|
} else {
|
2011-06-30 16:14:45 +02:00
|
|
|
int target = d->m_lastNonMaxSize > 0 ? d->m_lastNonMaxSize : sizeHint().height();
|
2009-12-14 11:52:23 +01:00
|
|
|
int space = sizes[idx] - target;
|
|
|
|
|
if (space > 0) {
|
|
|
|
|
for (int i = 0; i < sizes.count(); ++i) {
|
|
|
|
|
sizes[i] += space / (sizes.count()-1);
|
|
|
|
|
}
|
|
|
|
|
sizes[idx] = target;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2010-09-16 12:26:28 +02:00
|
|
|
d->m_splitter->setSizes(sizes);
|
2009-12-14 11:52:23 +01:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-15 11:05:17 +01:00
|
|
|
bool OutputPanePlaceHolder::isMaximized() const
|
|
|
|
|
{
|
2010-09-16 12:26:28 +02:00
|
|
|
return Internal::OutputPaneManager::instance()->isMaximized();
|
2009-12-15 11:05:17 +01:00
|
|
|
}
|
|
|
|
|
|
2011-11-24 11:38:35 +01:00
|
|
|
void OutputPanePlaceHolder::ensureSizeHintAsMinimum()
|
|
|
|
|
{
|
|
|
|
|
if (!d->m_splitter)
|
|
|
|
|
return;
|
|
|
|
|
int idx = d->m_splitter->indexOf(this);
|
|
|
|
|
if (idx < 0)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
QList<int> sizes = d->m_splitter->sizes();
|
|
|
|
|
Internal::OutputPaneManager *om = Internal::OutputPaneManager::instance();
|
|
|
|
|
int minimum = (d->m_splitter->orientation() == Qt::Vertical
|
|
|
|
|
? om->sizeHint().height() : om->sizeHint().width());
|
|
|
|
|
int difference = minimum - sizes.at(idx);
|
|
|
|
|
if (difference <= 0) // is already larger
|
|
|
|
|
return;
|
|
|
|
|
for (int i = 0; i < sizes.count(); ++i) {
|
|
|
|
|
sizes[i] += difference / (sizes.count()-1);
|
|
|
|
|
}
|
|
|
|
|
sizes[idx] = minimum;
|
|
|
|
|
d->m_splitter->setSizes(sizes);
|
|
|
|
|
}
|
|
|
|
|
|
2009-12-15 11:05:17 +01:00
|
|
|
void OutputPanePlaceHolder::unmaximize()
|
|
|
|
|
{
|
2010-09-16 12:26:28 +02:00
|
|
|
if (Internal::OutputPaneManager::instance()->isMaximized())
|
|
|
|
|
Internal::OutputPaneManager::instance()->slotMinMax();
|
2009-04-30 12:50:52 +02:00
|
|
|
}
|
|
|
|
|
|
2010-09-16 12:26:28 +02:00
|
|
|
OutputPanePlaceHolder *OutputPanePlaceHolder::getCurrent()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2010-09-16 12:26:28 +02:00
|
|
|
return OutputPanePlaceHolderPrivate::m_current;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2010-09-16 12:26:28 +02:00
|
|
|
bool OutputPanePlaceHolder::canMaximizeOrMinimize() const
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2010-09-16 12:26:28 +02:00
|
|
|
return d->m_splitter != 0;
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2010-09-16 12:26:28 +02:00
|
|
|
bool OutputPanePlaceHolder::isCurrentVisible()
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2010-09-16 12:26:28 +02:00
|
|
|
return OutputPanePlaceHolderPrivate::m_current && OutputPanePlaceHolderPrivate::m_current->isVisible();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2010-09-16 12:26:28 +02:00
|
|
|
} // namespace Core
|
2009-04-30 12:50:52 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
|