dolphin/konqueror/sidebar/sidebar_part.cpp
Stephen Kelly ed2872074e Simplify some Qt module style includes.
This is the easiest way to transition to Qt5.
2012-04-10 00:20:22 +02:00

93 lines
3.1 KiB
C++

/***************************************************************************
konqsidebar.cpp
-------------------
begin : Sat June 2 16:25:27 CEST 2001
copyright : (C) 2001 Joseph Wenninger
email : jowenn@kde.org
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#include "sidebar_part.h"
#include <kaboutdata.h>
#include <kparts/part.h>
#include <konq_events.h>
#include <kdebug.h>
#include <QApplication>
#include <kacceleratormanager.h>
static KAboutData createAboutData()
{
KAboutData aboutData("konqsidebartng", 0, ki18n("Extended Sidebar"), "0.2");
aboutData.addAuthor(ki18n("Joseph Wenninger"), KLocalizedString(), "jowenn@bigfoot.com");
aboutData.addAuthor(ki18n("David Faure"), KLocalizedString(), "faure@kde.org");
return aboutData;
}
K_PLUGIN_FACTORY(KonqSidebarFactory,
registerPlugin<KonqSidebarPart>();
)
K_EXPORT_PLUGIN(KonqSidebarFactory(createAboutData()))
KonqSidebarPart::KonqSidebarPart(QWidget *parentWidget, QObject *parent, const QVariantList&)
: KParts::ReadOnlyPart(parent)
{
setComponentData(KonqSidebarFactory::componentData());
QString currentProfile = parentWidget->window()->property("currentProfile").toString();
if (currentProfile.isEmpty()) {
currentProfile = "default";
}
m_widget = new Sidebar_Widget(parentWidget, this, currentProfile);
m_extension = new KonqSidebarBrowserExtension(this, m_widget);
connect(m_widget, SIGNAL(started(KIO::Job*)),
this, SIGNAL(started(KIO::Job*)));
connect(m_widget, SIGNAL(completed()),
this, SIGNAL(completed()));
connect(m_extension, SIGNAL(addWebSideBar(KUrl,QString)),
m_widget, SLOT(addWebSideBar(KUrl,QString)));
KAcceleratorManager::setNoAccel(m_widget);
setWidget(m_widget);
}
KonqSidebarPart::~KonqSidebarPart()
{
}
bool KonqSidebarPart::openFile()
{
return true;
}
bool KonqSidebarPart::openUrl(const KUrl &url)
{
return m_widget->openUrl(url);
}
void KonqSidebarPart::customEvent(QEvent* ev)
{
if (KonqFileSelectionEvent::test(ev) ||
KonqFileMouseOverEvent::test(ev) ||
KonqConfigEvent::test(ev))
{
// Forward the event to the widget
QApplication::sendEvent( widget(), ev );
}
}
////
KonqSidebarBrowserExtension::KonqSidebarBrowserExtension(KonqSidebarPart *part, Sidebar_Widget *widget_)
: KParts::BrowserExtension(part), widget(widget_)
{
}
#include "sidebar_part.moc"