Files
qt-creator/src/plugins/coreplugin/outputpane.cpp

194 lines
5.8 KiB
C++
Raw Normal View History

/****************************************************************************
2008-12-02 12:01:29 +01:00
**
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
** Contact: http://www.qt-project.org/legal
2008-12-02 12:01:29 +01:00
**
** This file is part of Qt Creator.
2008-12-02 12:01:29 +01:00
**
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Digia. For licensing terms and
** conditions see http://www.qt.io/licensing. For further information
** use the contact form at http://www.qt.io/contact-us.
**
** GNU Lesser General Public License Usage
** Alternatively, this file may be used under the terms of the GNU Lesser
** General Public License version 2.1 or version 3 as published by the Free
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
** following information to ensure the GNU Lesser General Public License
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Digia gives you certain additional
** rights. These rights are described in the Digia Qt LGPL Exception
2010-12-17 16:01:08 +01:00
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
****************************************************************************/
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 "modemanager.h"
#include <QSplitter>
#include <QVBoxLayout>
2008-12-02 12:01:29 +01:00
2010-09-16 12:26:28 +02:00
namespace Core {
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;
int m_lastNonMaxSize;
2010-09-16 12:26:28 +02:00
static OutputPanePlaceHolder* m_current;
};
2010-09-16 12:26:28 +02:00
OutputPanePlaceHolderPrivate::OutputPanePlaceHolderPrivate(Core::IMode *mode, QSplitter *parent) :
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
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);
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) {
if (Internal::OutputPaneManager *om = Internal::OutputPaneManager::instance()) {
om->setParent(0);
om->hide();
}
2008-12-02 12:01:29 +01: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
}
}
void OutputPanePlaceHolder::maximizeOrMinimize(bool maximize)
{
2010-09-16 12:26:28 +02:00
if (!d->m_splitter)
return;
2010-09-16 12:26:28 +02:00
int idx = d->m_splitter->indexOf(this);
if (idx < 0)
return;
2010-09-16 12:26:28 +02:00
QList<int> sizes = d->m_splitter->sizes();
if (maximize) {
d->m_lastNonMaxSize = sizes[idx];
int sum = 0;
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 {
int target = d->m_lastNonMaxSize > 0 ? d->m_lastNonMaxSize : sizeHint().height();
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);
}
bool OutputPanePlaceHolder::isMaximized() const
{
2010-09-16 12:26:28 +02:00
return Internal::OutputPaneManager::instance()->isMaximized();
}
void OutputPanePlaceHolder::setDefaultHeight(int height)
{
if (height == 0)
return;
if (!d->m_splitter)
return;
int idx = d->m_splitter->indexOf(this);
if (idx < 0)
return;
d->m_splitter->refresh();
QList<int> sizes = d->m_splitter->sizes();
int difference = height - 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] = height;
d->m_splitter->setSizes(sizes);
}
void OutputPanePlaceHolder::ensureSizeHintAsMinimum()
{
Internal::OutputPaneManager *om = Internal::OutputPaneManager::instance();
int minimum = (d->m_splitter->orientation() == Qt::Vertical
? om->sizeHint().height() : om->sizeHint().width());
setDefaultHeight(minimum);
}
void OutputPanePlaceHolder::unmaximize()
{
2010-09-16 12:26:28 +02:00
if (Internal::OutputPaneManager::instance()->isMaximized())
Internal::OutputPaneManager::instance()->slotMinMax();
}
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
2008-12-02 12:01:29 +01:00