2011-01-12 09:45:19 +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).
|
2011-01-12 09:45:19 +01:00
|
|
|
**
|
2012-07-19 12:26:56 +02:00
|
|
|
** Contact: http://www.qt-project.org/
|
2011-01-12 09:45:19 +01:00
|
|
|
**
|
|
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
**
|
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.
|
2011-01-12 09:45:19 +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
|
2011-01-12 09:45:19 +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.
|
|
|
|
|
**
|
2011-01-12 09:45:19 +01:00
|
|
|
**
|
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "proxyaction.h"
|
|
|
|
|
|
|
|
|
|
using namespace Utils;
|
|
|
|
|
|
|
|
|
|
ProxyAction::ProxyAction(QObject *parent) :
|
|
|
|
|
QAction(parent),
|
|
|
|
|
m_action(0),
|
|
|
|
|
m_attributes(0),
|
2011-05-27 14:34:48 +02:00
|
|
|
m_showShortcut(false),
|
|
|
|
|
m_block(false)
|
2011-01-12 09:45:19 +01:00
|
|
|
{
|
|
|
|
|
connect(this, SIGNAL(changed()), this, SLOT(updateToolTipWithKeySequence()));
|
|
|
|
|
updateState();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProxyAction::setAction(QAction *action)
|
|
|
|
|
{
|
|
|
|
|
if (m_action == action)
|
|
|
|
|
return;
|
|
|
|
|
disconnectAction();
|
|
|
|
|
m_action = action;
|
|
|
|
|
connectAction();
|
|
|
|
|
updateState();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProxyAction::updateState()
|
|
|
|
|
{
|
|
|
|
|
if (m_action) {
|
|
|
|
|
update(m_action, false);
|
|
|
|
|
} else {
|
|
|
|
|
// no active/delegate action, "visible" action is not enabled/visible
|
|
|
|
|
if (hasAttribute(Hide))
|
|
|
|
|
setVisible(false);
|
|
|
|
|
setEnabled(false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProxyAction::disconnectAction()
|
|
|
|
|
{
|
|
|
|
|
if (m_action) {
|
|
|
|
|
disconnect(m_action, SIGNAL(changed()), this, SLOT(actionChanged()));
|
|
|
|
|
disconnect(this, SIGNAL(triggered(bool)), m_action, SIGNAL(triggered(bool)));
|
|
|
|
|
disconnect(this, SIGNAL(toggled(bool)), m_action, SLOT(setChecked(bool)));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProxyAction::connectAction()
|
|
|
|
|
{
|
|
|
|
|
if (m_action) {
|
|
|
|
|
connect(m_action, SIGNAL(changed()), this, SLOT(actionChanged()));
|
|
|
|
|
connect(this, SIGNAL(triggered(bool)), m_action, SIGNAL(triggered(bool)));
|
|
|
|
|
connect(this, SIGNAL(toggled(bool)), m_action, SLOT(setChecked(bool)));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QAction *ProxyAction::action() const
|
|
|
|
|
{
|
|
|
|
|
return m_action;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProxyAction::setAttribute(ProxyAction::Attribute attribute)
|
|
|
|
|
{
|
|
|
|
|
m_attributes |= attribute;
|
2011-01-31 15:16:52 +01:00
|
|
|
updateState();
|
2011-01-12 09:45:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProxyAction::removeAttribute(ProxyAction::Attribute attribute)
|
|
|
|
|
{
|
|
|
|
|
m_attributes &= ~attribute;
|
2011-01-31 15:16:52 +01:00
|
|
|
updateState();
|
2011-01-12 09:45:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ProxyAction::hasAttribute(ProxyAction::Attribute attribute)
|
|
|
|
|
{
|
|
|
|
|
return (m_attributes & attribute);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProxyAction::actionChanged()
|
|
|
|
|
{
|
|
|
|
|
update(m_action, false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProxyAction::initialize(QAction *action)
|
|
|
|
|
{
|
|
|
|
|
update(action, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProxyAction::update(QAction *action, bool initialize)
|
|
|
|
|
{
|
|
|
|
|
if (!action)
|
|
|
|
|
return;
|
|
|
|
|
disconnectAction();
|
|
|
|
|
disconnect(this, SIGNAL(changed()), this, SLOT(updateToolTipWithKeySequence()));
|
|
|
|
|
if (initialize)
|
|
|
|
|
setSeparator(action->isSeparator());
|
|
|
|
|
if (hasAttribute(UpdateIcon) || initialize) {
|
|
|
|
|
setIcon(action->icon());
|
|
|
|
|
setIconText(action->iconText());
|
|
|
|
|
setIconVisibleInMenu(action->isIconVisibleInMenu());
|
|
|
|
|
}
|
|
|
|
|
if (hasAttribute(UpdateText) || initialize) {
|
|
|
|
|
setText(action->text());
|
|
|
|
|
m_toolTip = action->toolTip();
|
|
|
|
|
updateToolTipWithKeySequence();
|
|
|
|
|
setStatusTip(action->statusTip());
|
|
|
|
|
setWhatsThis(action->whatsThis());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setCheckable(action->isCheckable());
|
|
|
|
|
|
2011-01-13 11:35:22 +01:00
|
|
|
if (!initialize) {
|
|
|
|
|
setChecked(action->isChecked());
|
|
|
|
|
setEnabled(action->isEnabled());
|
|
|
|
|
setVisible(action->isVisible());
|
|
|
|
|
}
|
2011-01-12 09:45:19 +01:00
|
|
|
connectAction();
|
|
|
|
|
connect(this, SIGNAL(changed()), this, SLOT(updateToolTipWithKeySequence()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool ProxyAction::shortcutVisibleInToolTip() const
|
|
|
|
|
{
|
|
|
|
|
return m_showShortcut;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProxyAction::setShortcutVisibleInToolTip(bool visible)
|
|
|
|
|
{
|
|
|
|
|
m_showShortcut = visible;
|
|
|
|
|
updateToolTipWithKeySequence();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ProxyAction::updateToolTipWithKeySequence()
|
|
|
|
|
{
|
2011-05-27 14:34:48 +02:00
|
|
|
if (m_block)
|
2011-01-12 09:45:19 +01:00
|
|
|
return;
|
2011-05-27 14:34:48 +02:00
|
|
|
m_block = true;
|
2011-01-12 09:45:19 +01:00
|
|
|
if (!m_showShortcut || shortcut().isEmpty())
|
|
|
|
|
setToolTip(m_toolTip);
|
|
|
|
|
else
|
|
|
|
|
setToolTip(stringWithAppendedShortcut(m_toolTip, shortcut()));
|
2011-05-27 14:34:48 +02:00
|
|
|
m_block = false;
|
2011-01-12 09:45:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QString ProxyAction::stringWithAppendedShortcut(const QString &str, const QKeySequence &shortcut)
|
|
|
|
|
{
|
2012-01-04 17:34:08 +01:00
|
|
|
return QString::fromLatin1("%1 <span style=\"color: gray; font-size: small\">%2</span>").
|
|
|
|
|
arg(str, shortcut.toString(QKeySequence::NativeText));
|
2011-01-12 09:45:19 +01:00
|
|
|
}
|