2010-01-21 21:12:40 +01:00
|
|
|
/********************Q******************************************************
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator
|
|
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-06-17 00:01:27 +10:00
|
|
|
** Contact: Nokia Corporation (qt-info@nokia.com)
|
2008-12-02 12:01:29 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Commercial Usage
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** Licensees holding valid Qt Commercial licenses may use this file in
|
|
|
|
|
** accordance with the Qt Commercial License Agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Nokia.
|
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
|
|
|
**
|
2009-02-25 09:15:00 +01: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.
|
2008-12-02 14:17:16 +01:00
|
|
|
**
|
2009-02-25 09:15:00 +01:00
|
|
|
** If you are unsure which license is appropriate for your use, please
|
2009-08-14 09:30:56 +02:00
|
|
|
** contact the sales department at http://qt.nokia.com/contact.
|
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 "fancyactionbar.h"
|
|
|
|
|
|
2010-01-21 21:12:40 +01:00
|
|
|
#include <utils/stylehelper.h>
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
#include <coreplugin/mainwindow.h>
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
#include <QtGui/QHBoxLayout>
|
|
|
|
|
#include <QtGui/QPainter>
|
|
|
|
|
#include <QtGui/QPicture>
|
|
|
|
|
#include <QtGui/QVBoxLayout>
|
2009-08-20 18:44:02 +02:00
|
|
|
#include <QtGui/QAction>
|
2010-01-21 21:12:40 +01:00
|
|
|
#include <QtGui/QStatusBar>
|
|
|
|
|
#include <QtGui/QStyle>
|
|
|
|
|
#include <QtGui/QStyleOption>
|
2008-12-02 12:01:29 +01:00
|
|
|
|
|
|
|
|
using namespace Core;
|
|
|
|
|
using namespace Internal;
|
|
|
|
|
|
|
|
|
|
FancyToolButton::FancyToolButton(QWidget *parent)
|
|
|
|
|
: QToolButton(parent)
|
|
|
|
|
{
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FancyToolButton::paintEvent(QPaintEvent *event)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(event)
|
|
|
|
|
QPainter p(this);
|
2010-01-21 21:12:40 +01:00
|
|
|
|
|
|
|
|
QLayout *parentLayout = qobject_cast<FancyActionBar*>(parentWidget())->actionsLayout();
|
|
|
|
|
int lineHeight = fontMetrics().height();
|
|
|
|
|
bool isTitledAction = defaultAction()->property("titledAction").toBool();
|
|
|
|
|
|
2009-06-03 20:45:49 +02:00
|
|
|
#ifndef Q_WS_MAC // Mac UIs usually don't hover
|
2010-01-21 21:12:40 +01:00
|
|
|
if (underMouse() && isEnabled() && !isDown()) {
|
|
|
|
|
QColor whiteOverlay(Qt::white);
|
|
|
|
|
whiteOverlay.setAlpha(20);
|
|
|
|
|
p.fillRect(rect().adjusted(1, 1, -1, -1), whiteOverlay);
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
#endif
|
2009-07-13 18:04:08 +02:00
|
|
|
|
2010-01-21 21:12:40 +01:00
|
|
|
if (isDown()) {
|
|
|
|
|
QColor whiteOverlay(Qt::black);
|
|
|
|
|
whiteOverlay.setAlpha(20);
|
|
|
|
|
p.fillRect(rect().adjusted(1, 1, -1, -1), whiteOverlay);
|
|
|
|
|
}
|
2009-07-13 18:04:08 +02:00
|
|
|
|
2010-01-21 21:12:40 +01:00
|
|
|
QPixmap borderPixmap;
|
|
|
|
|
QMargins margins;
|
|
|
|
|
if (parentLayout && parentLayout->count() > 0 &&
|
|
|
|
|
parentLayout->itemAt(parentLayout->count()-1)->widget() == this) {
|
|
|
|
|
margins = QMargins(3, 3, 2, 0);
|
|
|
|
|
borderPixmap = QPixmap(
|
|
|
|
|
QLatin1String(":/fancyactionbar/images/fancytoolbutton_bottom_outline.png"));
|
|
|
|
|
} else if (parentLayout && parentLayout->count() > 0 &&
|
|
|
|
|
parentLayout->itemAt(0)->widget() == this) {
|
|
|
|
|
margins = QMargins(3, 3, 2, 3);
|
|
|
|
|
borderPixmap = QPixmap(
|
|
|
|
|
QLatin1String(":/fancyactionbar/images/fancytoolbutton_top_outline.png"));
|
|
|
|
|
} else {
|
|
|
|
|
margins = QMargins(3, 3, 2, 0);
|
|
|
|
|
borderPixmap = QPixmap(
|
|
|
|
|
QLatin1String(":/fancyactionbar/images/fancytoolbutton_normal_outline.png"));
|
|
|
|
|
}
|
2009-07-13 18:04:08 +02:00
|
|
|
|
2010-01-21 21:12:40 +01:00
|
|
|
QRect drawRect = rect();
|
|
|
|
|
qDrawBorderPixmap(&p, drawRect, margins, borderPixmap);
|
|
|
|
|
|
|
|
|
|
QPixmap pix = icon().pixmap(size() - QSize(15, 15), isEnabled() ? QIcon::Normal : QIcon::Disabled);
|
|
|
|
|
QPoint center = rect().center();
|
|
|
|
|
QSize halfPixSize = pix.size()/2;
|
|
|
|
|
|
|
|
|
|
p.drawPixmap(center-QPoint(halfPixSize.width()-1, halfPixSize.height()-1), pix);
|
|
|
|
|
|
|
|
|
|
if (popupMode() == QToolButton::DelayedPopup && !isTitledAction) {
|
|
|
|
|
QPoint arrowOffset = center + QPoint(pix.rect().width()/2, pix.rect().height()/2);
|
|
|
|
|
QStyleOption opt;
|
|
|
|
|
if (isEnabled())
|
|
|
|
|
opt.state &= QStyle::State_Enabled;
|
|
|
|
|
else
|
|
|
|
|
opt.state |= QStyle::State_Enabled;
|
|
|
|
|
opt.rect = QRect(arrowOffset.x(), arrowOffset.y(), 6, 6);
|
|
|
|
|
style()->drawPrimitive(QStyle::PE_IndicatorArrowDown,
|
|
|
|
|
&opt, &p, this);
|
2009-07-13 18:04:08 +02:00
|
|
|
}
|
|
|
|
|
|
2010-01-21 21:12:40 +01:00
|
|
|
if (isTitledAction) {
|
|
|
|
|
QRect r(0, lineHeight/2, rect().width(), lineHeight);
|
|
|
|
|
QColor penColor;
|
|
|
|
|
if (isEnabled())
|
|
|
|
|
penColor = Qt::white;
|
|
|
|
|
else
|
|
|
|
|
penColor = Qt::gray;
|
|
|
|
|
p.setPen(penColor);
|
|
|
|
|
const QString projectName = defaultAction()->property("heading").toString();
|
|
|
|
|
QFont f = font();
|
|
|
|
|
f.setPointSize(f.pointSize()-1);
|
|
|
|
|
p.setFont(f);
|
|
|
|
|
QFontMetrics fm(f);
|
|
|
|
|
QString ellidedProjectName = fm.elidedText(projectName, Qt::ElideMiddle, r.width());
|
|
|
|
|
if (isEnabled()) {
|
|
|
|
|
const QRect shadowR = r.translated(0, 1);
|
|
|
|
|
p.setPen(Qt::black);
|
|
|
|
|
p.drawText(shadowR, Qt::AlignVCenter|Qt::AlignHCenter, ellidedProjectName);
|
|
|
|
|
p.setPen(penColor);
|
|
|
|
|
}
|
|
|
|
|
p.drawText(r, Qt::AlignVCenter|Qt::AlignHCenter, ellidedProjectName);
|
|
|
|
|
r = QRect(0, rect().bottom()-lineHeight*1.5, rect().width(), lineHeight);
|
|
|
|
|
const QString buildConfiguration = defaultAction()->property("subtitle").toString();
|
|
|
|
|
f.setBold(true);
|
|
|
|
|
p.setFont(f);
|
|
|
|
|
QString ellidedBuildConfiguration = fm.elidedText(buildConfiguration, Qt::ElideMiddle, r.width());
|
|
|
|
|
if (isEnabled()) {
|
|
|
|
|
const QRect shadowR = r.translated(0, 1);
|
|
|
|
|
p.setPen(Qt::black);
|
|
|
|
|
p.drawText(shadowR, Qt::AlignVCenter|Qt::AlignHCenter, ellidedBuildConfiguration);
|
|
|
|
|
p.setPen(penColor);
|
|
|
|
|
}
|
|
|
|
|
p.drawText(r, Qt::AlignVCenter|Qt::AlignHCenter, ellidedBuildConfiguration);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
2009-07-13 18:04:08 +02:00
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FancyActionBar::paintEvent(QPaintEvent *event)
|
|
|
|
|
{
|
|
|
|
|
Q_UNUSED(event)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QSize FancyToolButton::sizeHint() const
|
|
|
|
|
{
|
2010-01-21 21:12:40 +01:00
|
|
|
QSize buttonSize = iconSize().expandedTo(QSize(64, 40));
|
|
|
|
|
if (defaultAction()->property("titledAction").toBool()) {
|
|
|
|
|
int lineHeight = fontMetrics().height();
|
|
|
|
|
buttonSize += QSize(0, lineHeight*4);
|
|
|
|
|
}
|
|
|
|
|
return buttonSize;
|
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
|
|
|
|
|
if (QAction* action = defaultAction())
|
|
|
|
|
setVisible(action->isVisible());
|
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 12:01:29 +01:00
|
|
|
FancyActionBar::FancyActionBar(QWidget *parent)
|
|
|
|
|
: QWidget(parent)
|
|
|
|
|
{
|
|
|
|
|
m_actionsLayout = new QVBoxLayout;
|
|
|
|
|
|
2010-01-21 21:12:40 +01:00
|
|
|
QVBoxLayout *spacerLayout = new QVBoxLayout;
|
|
|
|
|
spacerLayout->addLayout(m_actionsLayout);
|
|
|
|
|
int sbh = ICore::instance()->statusBar()->height();
|
|
|
|
|
spacerLayout->addSpacing(sbh);
|
|
|
|
|
spacerLayout->setMargin(0);
|
|
|
|
|
spacerLayout->setSpacing(0);
|
|
|
|
|
|
|
|
|
|
QHBoxLayout *orientRightLayout = new QHBoxLayout;
|
|
|
|
|
orientRightLayout->addStretch();
|
|
|
|
|
orientRightLayout->setMargin(0);
|
|
|
|
|
orientRightLayout->setSpacing(0);
|
|
|
|
|
orientRightLayout->setContentsMargins(0, 0, 1, 0);
|
|
|
|
|
orientRightLayout->addLayout(spacerLayout);
|
|
|
|
|
setLayout(orientRightLayout);
|
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);
|
|
|
|
|
|
|
|
|
|
}
|
2008-12-02 12:01:29 +01:00
|
|
|
void FancyActionBar::insertAction(int index, QAction *action, QMenu *menu)
|
|
|
|
|
{
|
|
|
|
|
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
|
|
|
if (menu) {
|
|
|
|
|
toolButton->setMenu(menu);
|
|
|
|
|
toolButton->setPopupMode(QToolButton::DelayedPopup);
|
2009-08-20 18:44:02 +02:00
|
|
|
|
|
|
|
|
// execute action also if a context menu item is select
|
|
|
|
|
connect(toolButton, SIGNAL(triggered(QAction*)),
|
2009-08-20 19:02:53 +02:00
|
|
|
this, SLOT(toolButtonContextMenuActionTriggered(QAction*)),
|
|
|
|
|
Qt::QueuedConnection);
|
2008-12-02 12:01:29 +01:00
|
|
|
}
|
|
|
|
|
m_actionsLayout->insertWidget(index, toolButton);
|
|
|
|
|
}
|
2009-08-20 18:44:02 +02:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
This slot is invoked when a context menu action of a tool button is triggered.
|
|
|
|
|
In this case we also want to trigger the default action of the button.
|
|
|
|
|
|
|
|
|
|
This allows the user e.g. to select and run a specific run configuration with one click.
|
|
|
|
|
*/
|
|
|
|
|
void FancyActionBar::toolButtonContextMenuActionTriggered(QAction* action)
|
|
|
|
|
{
|
|
|
|
|
if (QToolButton *button = qobject_cast<QToolButton*>(sender())) {
|
|
|
|
|
if (action != button->defaultAction())
|
|
|
|
|
button->defaultAction()->trigger();
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-01-21 21:12:40 +01:00
|
|
|
|
|
|
|
|
QLayout *FancyActionBar::actionsLayout() const
|
|
|
|
|
{
|
|
|
|
|
return m_actionsLayout;
|
|
|
|
|
}
|