/* Copyright 2006 Hamish Rodda Copyright 2006 Simon Hausmann This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. 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 #include #include #include #include #include "kselectactiontest.h" #include #include int main( int argc, char **argv ) { KCmdLineArgs::init( argc, argv, "kselectactiontest", 0, ki18n("KSelectActionTest"), "1.0", ki18n("kselectaction test app")); KApplication app; SelectActionTest* test = new SelectActionTest; test->show(); return app.exec(); } SelectActionTest::SelectActionTest(QWidget *parent) : KXmlGuiWindow(parent) , m_comboSelect(new KSelectAction("Combo Selection", this)) , m_buttonSelect(new KSelectAction("Button Selection", this)) { actionCollection()->addAction("combo", m_comboSelect); actionCollection()->addAction("button", m_buttonSelect); for (int i = 0; i < 7; ++i) { QAction* action = m_comboSelect->addAction(QString ("Combo Action %1").arg(i)); connect(action, SIGNAL(triggered(bool)), SLOT(slotActionTriggered(bool))); action = m_buttonSelect->addAction(QString ("Action %1").arg(i)); connect(action, SIGNAL(triggered(bool)), SLOT(slotActionTriggered(bool))); } m_comboSelect->setToolBarMode(KSelectAction::ComboBoxMode); m_comboSelect->setWhatsThis("What's this?"); connect(m_comboSelect, SIGNAL(triggered(QAction*)), SLOT(triggered(QAction*))); connect(m_comboSelect, SIGNAL(triggered(int)), SLOT(triggered(int))); connect(m_comboSelect, SIGNAL(triggered(QString)), SLOT(triggered(QString))); m_buttonSelect->setToolBarMode(KSelectAction::MenuMode); m_buttonSelect->setWhatsThis("What's this?"); connect(m_buttonSelect, SIGNAL(triggered(QAction*)), SLOT(triggered(QAction*))); connect(m_buttonSelect, SIGNAL(triggered(int)), SLOT(triggered(int))); connect(m_buttonSelect, SIGNAL(triggered(QString)), SLOT(triggered(QString))); menuBar()->addAction(m_comboSelect); menuBar()->addAction(m_buttonSelect); menuBar()->addAction("Add an action", this, SLOT(addAction())); menuBar()->addAction("Remove an action", this, SLOT(removeAction())); QToolBar* toolBar = addToolBar("Test"); toolBar->addAction(m_comboSelect); toolBar->addAction(m_buttonSelect); } void SelectActionTest::triggered(QAction* action) { kDebug() << action; } void SelectActionTest::triggered(int index) { kDebug() << index; } void SelectActionTest::triggered(const QString& text) { kDebug() << '"' << text << '"'; } void SelectActionTest::addAction() { QAction* action = m_comboSelect->addAction(QString ("Combo Action %1").arg(m_comboSelect->actions().count())); connect(action, SIGNAL(triggered(bool)), SLOT(slotActionTriggered(bool))); action = m_buttonSelect->addAction(QString ("Action %1").arg(m_buttonSelect->actions().count())); connect(action, SIGNAL(triggered(bool)), SLOT(slotActionTriggered(bool))); } void SelectActionTest::removeAction() { if (!m_comboSelect->actions().isEmpty()) m_comboSelect->removeAction(m_comboSelect->actions().last()); if (!m_buttonSelect->actions().isEmpty()) m_buttonSelect->removeAction(m_buttonSelect->actions().last()); } void SelectActionTest::slotActionTriggered(bool state) { kDebug() << sender() << " state " << state; } #include "moc_kselectactiontest.cpp"