2012-10-02 09:12:39 +02:00
|
|
|
/****************************************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
|
|
|
|
|
** Contact: http://www.qt-project.org/legal
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
** This file is part of Qt Creator.
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2012-10-02 09:12:39 +02: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://qt.digia.com/licensing. For further information
|
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** GNU Lesser General Public License Usage
|
2012-10-02 09:12:39 +02:00
|
|
|
** Alternatively, 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.
|
|
|
|
|
**
|
|
|
|
|
** 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.
|
|
|
|
|
**
|
2012-10-02 09:12:39 +02:00
|
|
|
****************************************************************************/
|
2008-12-02 14:09:21 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include "fancyactionbar.h"
|
2010-02-09 19:05:15 +01:00
|
|
|
#include "coreconstants.h"
|
2008-12-02 12:01:29 +01:00
|
|
|
|
2010-01-21 21:12:40 +01:00
|
|
|
#include <utils/stylehelper.h>
|
2011-11-14 17:33:28 +01:00
|
|
|
#include <utils/stringutils.h>
|
2010-01-21 21:12:40 +01:00
|
|
|
|
|
|
|
|
#include <coreplugin/icore.h>
|
2010-03-12 14:22:26 +01:00
|
|
|
#include <coreplugin/imode.h>
|
2010-01-21 21:12:40 +01:00
|
|
|
|
2012-02-15 10:42:41 +01:00
|
|
|
#include <QHBoxLayout>
|
|
|
|
|
#include <QPainter>
|
|
|
|
|
#include <QPicture>
|
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
|
#include <QAction>
|
|
|
|
|
#include <QStatusBar>
|
|
|
|
|
#include <QStyle>
|
|
|
|
|
#include <QStyleOption>
|
|
|
|
|
#include <QMouseEvent>
|
|
|
|
|
#include <QApplication>
|
|
|
|
|
#include <QEvent>
|
|
|
|
|
#include <QAnimationGroup>
|
|
|
|
|
#include <QPropertyAnimation>
|
|
|
|
|
#include <QDebug>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
using namespace Core;
|
|
|
|
|
using namespace Internal;
|
|
|
|
|
|
|
|
|
|
FancyToolButton::FancyToolButton(QWidget *parent)
|
2010-02-17 17:20:31 +01:00
|
|
|
: QToolButton(parent), m_fader(0)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
2010-03-12 17:24:20 +01:00
|
|
|
m_hasForceVisible = false;
|
2008-12-02 12:01:29 +01:00
|
|
|
setAttribute(Qt::WA_Hover, true);
|
2009-07-13 18:04:08 +02:00
|
|
|
setSizePolicy(QSizePolicy::Preferred, QSizePolicy::Preferred);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2010-03-12 17:24:20 +01:00
|
|
|
void FancyToolButton::forceVisible(bool visible)
|
|
|
|
|
{
|
|
|
|
|
m_hasForceVisible = true;
|
|
|
|
|
setVisible(visible);
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-17 17:09:00 +01:00
|
|
|
bool FancyToolButton::event(QEvent *e)
|
|
|
|
|
{
|
|
|
|
|
switch(e->type()) {
|
|
|
|
|
case QEvent::Enter:
|
|
|
|
|
{
|
|
|
|
|
QPropertyAnimation *animation = new QPropertyAnimation(this, "fader");
|
2010-02-17 17:20:31 +01:00
|
|
|
animation->setDuration(125);
|
2010-02-17 17:09:00 +01:00
|
|
|
animation->setEndValue(1.0);
|
|
|
|
|
animation->start(QAbstractAnimation::DeleteWhenStopped);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case QEvent::Leave:
|
|
|
|
|
{
|
|
|
|
|
QPropertyAnimation *animation = new QPropertyAnimation(this, "fader");
|
2010-02-17 17:20:31 +01:00
|
|
|
animation->setDuration(125);
|
2010-02-17 17:09:00 +01:00
|
|
|
animation->setEndValue(0.0);
|
|
|
|
|
animation->start(QAbstractAnimation::DeleteWhenStopped);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return QToolButton::event(e);
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-14 17:33:28 +01:00
|
|
|
static QVector<QString> splitInTwoLines(const QString &text, const QFontMetrics &fontMetrics,
|
|
|
|
|
qreal availableWidth)
|
|
|
|
|
{
|
|
|
|
|
// split in two lines.
|
|
|
|
|
// this looks if full words can be split off at the end of the string,
|
|
|
|
|
// to put them in the second line. First line is drawn with ellipsis,
|
|
|
|
|
// second line gets ellipsis if it couldn't split off full words.
|
|
|
|
|
QVector<QString> splitLines(2);
|
|
|
|
|
QRegExp rx(QLatin1String("\\s+"));
|
|
|
|
|
int splitPos = -1;
|
|
|
|
|
int nextSplitPos = text.length();
|
|
|
|
|
do {
|
|
|
|
|
nextSplitPos = rx.lastIndexIn(text,
|
|
|
|
|
nextSplitPos - text.length() - 1);
|
|
|
|
|
if (nextSplitPos != -1) {
|
|
|
|
|
int splitCandidate = nextSplitPos + rx.matchedLength();
|
|
|
|
|
if (fontMetrics.width(text.mid(splitCandidate)) <= availableWidth) {
|
|
|
|
|
splitPos = splitCandidate;
|
|
|
|
|
} else {
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} while (nextSplitPos > 0 && fontMetrics.width(text.left(nextSplitPos)) > availableWidth);
|
|
|
|
|
// check if we could split at white space at all
|
|
|
|
|
if (splitPos < 0) {
|
|
|
|
|
splitLines[0] = fontMetrics.elidedText(text, Qt::ElideRight,
|
|
|
|
|
availableWidth);
|
|
|
|
|
QString common = Utils::commonPrefix(QStringList()
|
|
|
|
|
<< splitLines[0] << text);
|
|
|
|
|
splitLines[1] = text.mid(common.length());
|
|
|
|
|
// elide the second line even if it fits, since it is cut off in mid-word
|
|
|
|
|
while (fontMetrics.width(QChar(0x2026) /*'...'*/ + splitLines[1]) > availableWidth
|
|
|
|
|
&& splitLines[1].length() > 3
|
|
|
|
|
/*keep at least three original characters (should not happen)*/) {
|
|
|
|
|
splitLines[1].remove(0, 1);
|
|
|
|
|
}
|
|
|
|
|
splitLines[1] = QChar(0x2026) /*'...'*/ + splitLines[1];
|
|
|
|
|
} else {
|
|
|
|
|
splitLines[0] = fontMetrics.elidedText(text.left(splitPos).trimmed(), Qt::ElideRight, availableWidth);
|
|
|
|
|
splitLines[1] = text.mid(splitPos);
|
|
|
|
|
}
|
|
|
|
|
return splitLines;
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
void FancyToolButton::paintEvent(QPaintEvent *event)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(event)
|
2010-01-22 18:04:24 +01:00
|
|
|
QPainter painter(this);
|
2010-01-21 21:12:40 +01:00
|
|
|
|
2010-01-22 18:04:24 +01:00
|
|
|
// draw borders
|
2010-01-21 21:12:40 +01:00
|
|
|
bool isTitledAction = defaultAction()->property("titledAction").toBool();
|
|
|
|
|
|
2012-01-25 10:25:05 +01:00
|
|
|
#ifndef Q_OS_MAC // Mac UIs usually don't hover
|
2010-02-18 12:50:26 +01:00
|
|
|
if (m_fader > 0 && isEnabled() && !isDown() && !isChecked()) {
|
2010-02-17 17:09:00 +01:00
|
|
|
painter.save();
|
2010-02-18 12:50:26 +01:00
|
|
|
int fader = int(40 * m_fader);
|
|
|
|
|
QLinearGradient grad(rect().topLeft(), rect().topRight());
|
|
|
|
|
grad.setColorAt(0, Qt::transparent);
|
|
|
|
|
grad.setColorAt(0.5, QColor(255, 255, 255, fader));
|
|
|
|
|
grad.setColorAt(1, Qt::transparent);
|
|
|
|
|
painter.fillRect(rect(), grad);
|
|
|
|
|
painter.setPen(QPen(grad, 1.0));
|
|
|
|
|
painter.drawLine(rect().topLeft(), rect().topRight());
|
|
|
|
|
painter.drawLine(rect().bottomLeft(), rect().bottomRight());
|
2010-02-17 17:09:00 +01:00
|
|
|
painter.restore();
|
2010-02-18 12:50:26 +01:00
|
|
|
} else
|
2010-02-24 19:54:35 +01:00
|
|
|
#endif
|
2010-02-17 17:09:00 +01:00
|
|
|
if (isDown() || isChecked()) {
|
|
|
|
|
painter.save();
|
2010-02-18 12:50:26 +01:00
|
|
|
QLinearGradient grad(rect().topLeft(), rect().topRight());
|
|
|
|
|
grad.setColorAt(0, Qt::transparent);
|
|
|
|
|
grad.setColorAt(0.5, QColor(0, 0, 0, 50));
|
|
|
|
|
grad.setColorAt(1, Qt::transparent);
|
|
|
|
|
painter.fillRect(rect(), grad);
|
|
|
|
|
painter.setPen(QPen(grad, 1.0));
|
|
|
|
|
painter.drawLine(rect().topLeft(), rect().topRight());
|
|
|
|
|
painter.drawLine(rect().topLeft(), rect().topRight());
|
|
|
|
|
painter.drawLine(rect().topLeft() + QPoint(0,1), rect().topRight() + QPoint(0,1));
|
|
|
|
|
painter.drawLine(rect().bottomLeft(), rect().bottomRight());
|
|
|
|
|
painter.drawLine(rect().bottomLeft(), rect().bottomRight());
|
|
|
|
|
painter.drawLine(rect().topLeft() - QPoint(0,1), rect().topRight() - QPoint(0,1));
|
2010-02-17 17:09:00 +01:00
|
|
|
painter.restore();
|
2010-01-21 21:12:40 +01:00
|
|
|
}
|
2010-01-22 18:04:24 +01:00
|
|
|
QPixmap borderPixmap;
|
|
|
|
|
QMargins margins;
|
2010-01-21 21:12:40 +01:00
|
|
|
|
2010-03-23 15:47:43 +01:00
|
|
|
QRect iconRect(0, 0, Core::Constants::TARGET_ICON_SIZE, Core::Constants::TARGET_ICON_SIZE);
|
2010-01-22 18:04:24 +01:00
|
|
|
// draw popup texts
|
2010-01-21 21:12:40 +01:00
|
|
|
if (isTitledAction) {
|
2010-03-12 18:46:25 +01:00
|
|
|
|
2010-01-22 18:04:24 +01:00
|
|
|
QFont normalFont(painter.font());
|
2010-03-23 15:47:43 +01:00
|
|
|
QRect centerRect = rect();
|
2010-01-22 18:04:24 +01:00
|
|
|
normalFont.setPointSizeF(Utils::StyleHelper::sidebarFontSize());
|
|
|
|
|
QFont boldFont(normalFont);
|
|
|
|
|
boldFont.setBold(true);
|
|
|
|
|
QFontMetrics fm(normalFont);
|
|
|
|
|
QFontMetrics boldFm(boldFont);
|
|
|
|
|
int lineHeight = boldFm.height();
|
|
|
|
|
int textFlags = Qt::AlignVCenter|Qt::AlignHCenter;
|
|
|
|
|
|
2010-03-12 18:46:25 +01:00
|
|
|
const QString projectName = defaultAction()->property("heading").toString();
|
|
|
|
|
if (!projectName.isNull())
|
2010-03-23 15:47:43 +01:00
|
|
|
centerRect.adjust(0, lineHeight + 4, 0, 0);
|
2010-03-12 18:46:25 +01:00
|
|
|
|
2012-01-26 13:06:30 +01:00
|
|
|
centerRect.adjust(0, 0, 0, -lineHeight*2 - 4);
|
2010-03-12 18:46:25 +01:00
|
|
|
|
2010-03-23 15:47:43 +01:00
|
|
|
iconRect.moveCenter(centerRect.center());
|
|
|
|
|
Utils::StyleHelper::drawIconWithShadow(icon(), iconRect, &painter, isEnabled() ? QIcon::Normal : QIcon::Disabled);
|
2010-01-22 18:04:24 +01:00
|
|
|
painter.setFont(normalFont);
|
|
|
|
|
|
2010-03-23 15:47:43 +01:00
|
|
|
QPoint textOffset = centerRect.center() - QPoint(iconRect.width()/2, iconRect.height()/2);
|
|
|
|
|
textOffset = textOffset - QPoint(0, lineHeight + 4);
|
2010-01-22 18:04:24 +01:00
|
|
|
QRectF r(0, textOffset.y(), rect().width(), lineHeight);
|
2010-01-21 21:12:40 +01:00
|
|
|
QColor penColor;
|
|
|
|
|
if (isEnabled())
|
|
|
|
|
penColor = Qt::white;
|
|
|
|
|
else
|
|
|
|
|
penColor = Qt::gray;
|
2010-01-22 18:04:24 +01:00
|
|
|
painter.setPen(penColor);
|
2010-03-12 18:46:25 +01:00
|
|
|
|
2011-11-14 17:33:28 +01:00
|
|
|
// draw project name
|
2010-04-14 17:59:31 +02:00
|
|
|
const int margin = 6;
|
2011-11-14 17:33:28 +01:00
|
|
|
const qreal availableWidth = r.width() - margin;
|
|
|
|
|
QString ellidedProjectName = fm.elidedText(projectName, Qt::ElideMiddle, availableWidth);
|
2010-01-21 21:12:40 +01:00
|
|
|
if (isEnabled()) {
|
2010-01-22 18:04:24 +01:00
|
|
|
const QRectF shadowR = r.translated(0, 1);
|
|
|
|
|
painter.setPen(QColor(30, 30, 30, 80));
|
|
|
|
|
painter.drawText(shadowR, textFlags, ellidedProjectName);
|
|
|
|
|
painter.setPen(penColor);
|
2010-01-21 21:12:40 +01:00
|
|
|
}
|
2010-01-22 18:04:24 +01:00
|
|
|
painter.drawText(r, textFlags, ellidedProjectName);
|
2011-11-14 17:33:28 +01:00
|
|
|
|
|
|
|
|
// draw build configuration name
|
2010-03-23 15:47:43 +01:00
|
|
|
textOffset = iconRect.center() + QPoint(iconRect.width()/2, iconRect.height()/2);
|
2011-11-14 17:33:28 +01:00
|
|
|
QRectF buildConfigRect[2];
|
|
|
|
|
buildConfigRect[0] = QRectF(0, textOffset.y() + 5, rect().width(), lineHeight);
|
|
|
|
|
buildConfigRect[1] = QRectF(0, textOffset.y() + 5 + lineHeight, rect().width(), lineHeight);
|
2010-01-22 18:04:24 +01:00
|
|
|
painter.setFont(boldFont);
|
2011-11-14 17:33:28 +01:00
|
|
|
QVector<QString> splitBuildConfiguration(2);
|
2012-01-26 13:06:30 +01:00
|
|
|
const QString buildConfiguration = defaultAction()->property("subtitle").toString();
|
2011-11-14 17:33:28 +01:00
|
|
|
if (boldFm.width(buildConfiguration) <= availableWidth) {
|
|
|
|
|
// text fits in one line
|
|
|
|
|
splitBuildConfiguration[0] = buildConfiguration;
|
|
|
|
|
} else {
|
|
|
|
|
splitBuildConfiguration = splitInTwoLines(buildConfiguration, boldFm, availableWidth);
|
2010-01-21 21:12:40 +01:00
|
|
|
}
|
2011-11-14 17:33:28 +01:00
|
|
|
// draw the two lines for the build configuration
|
|
|
|
|
for (int i = 0; i < 2; ++i) {
|
|
|
|
|
if (splitBuildConfiguration[i].isEmpty())
|
|
|
|
|
continue;
|
|
|
|
|
if (isEnabled()) {
|
|
|
|
|
const QRectF shadowR = buildConfigRect[i].translated(0, 1);
|
|
|
|
|
painter.setPen(QColor(30, 30, 30, 80));
|
|
|
|
|
painter.drawText(shadowR, textFlags, splitBuildConfiguration[i]);
|
|
|
|
|
painter.setPen(penColor);
|
|
|
|
|
}
|
|
|
|
|
painter.drawText(buildConfigRect[i], textFlags, splitBuildConfiguration[i]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// pop up arrow next to icon
|
2010-03-12 18:46:25 +01:00
|
|
|
if (!icon().isNull()) {
|
|
|
|
|
QStyleOption opt;
|
|
|
|
|
opt.initFrom(this);
|
2010-03-23 15:47:43 +01:00
|
|
|
opt.rect = rect().adjusted(rect().width() - 16, 0, -8, 0);
|
2010-03-12 18:46:25 +01:00
|
|
|
Utils::StyleHelper::drawArrow(QStyle::PE_IndicatorArrowRight, &painter, &opt);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2010-03-23 15:47:43 +01:00
|
|
|
iconRect.moveCenter(rect().center());
|
|
|
|
|
Utils::StyleHelper::drawIconWithShadow(icon(), iconRect, &painter, isEnabled() ? QIcon::Normal : QIcon::Disabled);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FancyActionBar::paintEvent(QPaintEvent *event)
|
|
|
|
|
{
|
2010-02-17 17:09:00 +01:00
|
|
|
QPainter painter(this);
|
2008-12-02 12:01:29 +01:00
|
|
|
Q_UNUSED(event)
|
2010-02-18 11:41:58 +01:00
|
|
|
QColor light = Utils::StyleHelper::sidebarHighlight();
|
|
|
|
|
QColor dark = Utils::StyleHelper::sidebarShadow();
|
2010-02-17 17:09:00 +01:00
|
|
|
painter.setPen(dark);
|
|
|
|
|
painter.drawLine(rect().topLeft(), rect().topRight());
|
|
|
|
|
painter.setPen(light);
|
2010-02-19 18:05:42 +01:00
|
|
|
painter.drawLine(rect().topLeft() + QPoint(1,1), rect().topRight() + QPoint(0,1));
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2010-02-17 17:09:00 +01:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
QSize FancyToolButton::sizeHint() const
|
|
|
|
|
{
|
2010-03-11 18:05:29 +01:00
|
|
|
QSizeF buttonSize = iconSize().expandedTo(QSize(64, 38));
|
2010-01-21 21:12:40 +01:00
|
|
|
if (defaultAction()->property("titledAction").toBool()) {
|
2010-01-22 18:04:24 +01:00
|
|
|
QFont boldFont(font());
|
|
|
|
|
boldFont.setPointSizeF(Utils::StyleHelper::sidebarFontSize());
|
|
|
|
|
boldFont.setBold(true);
|
|
|
|
|
QFontMetrics fm(boldFont);
|
|
|
|
|
qreal lineHeight = fm.height();
|
2010-03-12 18:46:25 +01:00
|
|
|
const QString projectName = defaultAction()->property("heading").toString();
|
2010-03-19 18:40:00 +01:00
|
|
|
buttonSize += QSizeF(0, 10);
|
2010-03-12 18:46:25 +01:00
|
|
|
if (!projectName.isEmpty())
|
2010-03-19 18:40:00 +01:00
|
|
|
buttonSize += QSizeF(0, lineHeight + 2);
|
2010-03-12 18:46:25 +01:00
|
|
|
|
2012-01-26 13:06:30 +01:00
|
|
|
buttonSize += QSizeF(0, lineHeight*2 + 2);
|
2010-01-21 21:12:40 +01:00
|
|
|
}
|
2010-01-22 18:04:24 +01:00
|
|
|
return buttonSize.toSize();
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2009-07-13 18:04:08 +02:00
|
|
|
QSize FancyToolButton::minimumSizeHint() const
|
|
|
|
|
{
|
|
|
|
|
return QSize(8, 8);
|
|
|
|
|
}
|
|
|
|
|
|
2009-10-16 15:50:52 +02:00
|
|
|
void FancyToolButton::actionChanged()
|
|
|
|
|
{
|
|
|
|
|
// the default action changed in some way, e.g. it might got hidden
|
|
|
|
|
// since we inherit a tool button we won't get invisible, so do this here
|
2010-03-12 17:24:20 +01:00
|
|
|
if (!m_hasForceVisible) {
|
|
|
|
|
if (QAction* action = defaultAction())
|
|
|
|
|
setVisible(action->isVisible());
|
|
|
|
|
}
|
2009-10-16 15:50:52 +02:00
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
FancyActionBar::FancyActionBar(QWidget *parent)
|
|
|
|
|
: QWidget(parent)
|
|
|
|
|
{
|
2012-01-30 16:39:10 +02:00
|
|
|
setObjectName(QLatin1String("actionbar"));
|
2008-12-02 12:01:29 +01:00
|
|
|
m_actionsLayout = new QVBoxLayout;
|
2010-01-21 21:12:40 +01:00
|
|
|
QVBoxLayout *spacerLayout = new QVBoxLayout;
|
|
|
|
|
spacerLayout->addLayout(m_actionsLayout);
|
2010-03-31 18:51:06 +02:00
|
|
|
int sbh = 8;
|
2010-01-21 21:12:40 +01:00
|
|
|
spacerLayout->addSpacing(sbh);
|
|
|
|
|
spacerLayout->setMargin(0);
|
|
|
|
|
spacerLayout->setSpacing(0);
|
2010-02-17 17:09:00 +01:00
|
|
|
setLayout(spacerLayout);
|
|
|
|
|
setContentsMargins(0,2,0,0);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
2010-01-21 21:12:40 +01:00
|
|
|
void FancyActionBar::addProjectSelector(QAction *action)
|
|
|
|
|
{
|
|
|
|
|
FancyToolButton* toolButton = new FancyToolButton(this);
|
|
|
|
|
toolButton->setDefaultAction(action);
|
|
|
|
|
connect(action, SIGNAL(changed()), toolButton, SLOT(actionChanged()));
|
|
|
|
|
m_actionsLayout->insertWidget(0, toolButton);
|
|
|
|
|
|
|
|
|
|
}
|
2010-01-22 18:04:24 +01:00
|
|
|
void FancyActionBar::insertAction(int index, QAction *action)
|
2008-12-02 12:01:29 +01:00
|
|
|
{
|
|
|
|
|
FancyToolButton *toolButton = new FancyToolButton(this);
|
|
|
|
|
toolButton->setDefaultAction(action);
|
2009-10-16 15:50:52 +02:00
|
|
|
connect(action, SIGNAL(changed()), toolButton, SLOT(actionChanged()));
|
2008-12-02 12:01:29 +01:00
|
|
|
m_actionsLayout->insertWidget(index, toolButton);
|
|
|
|
|
}
|
2009-08-20 18:44:02 +02:00
|
|
|
|
2010-01-21 21:12:40 +01:00
|
|
|
QLayout *FancyActionBar::actionsLayout() const
|
|
|
|
|
{
|
|
|
|
|
return m_actionsLayout;
|
|
|
|
|
}
|
2010-03-31 18:51:06 +02:00
|
|
|
|
|
|
|
|
QSize FancyActionBar::minimumSizeHint() const
|
|
|
|
|
{
|
|
|
|
|
return sizeHint();
|
|
|
|
|
}
|
|
|
|
|
|