/* This file is part of the KDE libraries Copyright (C) 1999 Reginald Stadlbauer (C) 1999 Simon Hausmann (C) 2000 Nicolas Hadacek (C) 2000 Kurt Granroth (C) 2000 Michael Koch (C) 2001 Holger Freyther (C) 2002 Ellis Whitehead (C) 2002 Joseph Wenninger (C) 2003 Andras Mantia (C) 2005-2006 Hamish Rodda This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License version 2 as published by the Free Software Foundation. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "kactionmenu.h" #include #include #include #include #include class KActionMenuPrivate { public: KActionMenuPrivate() { m_delayed = true; m_stickyMenu = true; } ~KActionMenuPrivate() { } bool m_delayed; bool m_stickyMenu; }; KActionMenu::KActionMenu(QObject *parent) : KAction(parent) , d(new KActionMenuPrivate) { setShortcutConfigurable( false ); } KActionMenu::KActionMenu(const QString &text, QObject *parent) : KAction(parent) , d(new KActionMenuPrivate) { setShortcutConfigurable( false ); setText(text); } KActionMenu::KActionMenu(const KIcon & icon, const QString & text, QObject *parent) : KAction(icon, text, parent) , d(new KActionMenuPrivate) { setShortcutConfigurable( false ); } KActionMenu::~KActionMenu() { delete d; delete menu(); } QWidget * KActionMenu::createWidget( QWidget * _parent ) { QToolBar *parent = qobject_cast(_parent); if (!parent) return KAction::createWidget(_parent); QToolButton* button = new QToolButton(parent); button->setAutoRaise(true); button->setFocusPolicy(Qt::NoFocus); button->setIconSize(parent->iconSize()); button->setToolButtonStyle(parent->toolButtonStyle()); QObject::connect(parent, SIGNAL(iconSizeChanged(QSize)), button, SLOT(setIconSize(QSize))); QObject::connect(parent, SIGNAL(toolButtonStyleChanged(Qt::ToolButtonStyle)), button, SLOT(setToolButtonStyle(Qt::ToolButtonStyle))); button->setDefaultAction(this); QObject::connect(button, SIGNAL(triggered(QAction*)), parent, SIGNAL(actionTriggered(QAction*))); if (delayed()) button->setPopupMode(QToolButton::DelayedPopup); else if (stickyMenu()) button->setPopupMode(QToolButton::InstantPopup); else button->setPopupMode(QToolButton::MenuButtonPopup); return button; } void KActionMenu::addAction( QAction * action ) { menu()->addAction(action); } QAction* KActionMenu::addSeparator() { QAction* separator = new QAction(this); separator->setSeparator(true); addAction(separator); return separator; } QAction* KActionMenu::insertSeparator(QAction* before) { QAction* separator = new QAction(this); separator->setSeparator(true); insertAction(before, separator); return separator; } void KActionMenu::insertAction( QAction * before, QAction * action ) { menu()->insertAction(before, action); } void KActionMenu::removeAction( QAction * action ) { menu()->removeAction(action); } bool KActionMenu::delayed() const { return d->m_delayed; } void KActionMenu::setDelayed(bool _delayed) { d->m_delayed = _delayed; } bool KActionMenu::stickyMenu() const { return d->m_stickyMenu; } void KActionMenu::setStickyMenu(bool sticky) { d->m_stickyMenu = sticky; } KMenu* KActionMenu::menu() { if (!KAction::menu()) setMenu(new KMenu()); return qobject_cast(KAction::menu()); } void KActionMenu::setMenu(KMenu *menu) { KAction::setMenu( menu ); } /* vim: et sw=2 ts=2 */ #include "moc_kactionmenu.cpp"