From bd9e6617827818fd043452c08c606f07b78014a0 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- cervisia/editwithmenu.cpp | 78 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 cervisia/editwithmenu.cpp (limited to 'cervisia/editwithmenu.cpp') diff --git a/cervisia/editwithmenu.cpp b/cervisia/editwithmenu.cpp new file mode 100644 index 00000000..9ca0f14b --- /dev/null +++ b/cervisia/editwithmenu.cpp @@ -0,0 +1,78 @@ +/* + * Copyright (c) 2004 Christian Loose + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program 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 General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +#include "editwithmenu.h" +using namespace Cervisia; + +#include +#include +#include +#include +#include +#include + + +EditWithMenu::EditWithMenu(const KURL& url, QWidget* parent) + : QObject(parent) + , m_menu(0) + , m_url(url) +{ + KMimeType::Ptr type = KMimeType::findByURL(url, 0, true); + if( type->name() == KMimeType::defaultMimeType() ) + { + kdDebug() << "Couldn't find mime type!" << endl; + return; + } + + m_offers = KTrader::self()->query(type->name(), "Type == 'Application'"); + + if( !m_offers.isEmpty() ) + { + m_menu = new QPopupMenu(); + + KTrader::OfferList::ConstIterator it = m_offers.begin(); + for( int i = 0 ; it != m_offers.end(); ++it, ++i ) + { + int id = m_menu->insertItem(SmallIcon((*it)->icon()), + (*it)->name(), + this, SLOT(itemActivated(int))); + m_menu->setItemParameter(id, i); + } + } +} + + +QPopupMenu* EditWithMenu::menu() +{ + return m_menu; +} + + +void EditWithMenu::itemActivated(int item) +{ + KService::Ptr service = m_offers[item]; + + KURL::List list; + list.append(m_url); + + KRun::run(*service, list); +} + + +#include "editwithmenu.moc" + -- cgit v1.2.1