/* This file is part of Akregator. Copyright (C) 2004 Sashmit Bhaduri 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. As a special exception, permission is given to link this program with any edition of TQt, and distribute the resulting executable, without including the source code for TQt in the source distribution. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "akregator_plugin.h" namespace Akregator { typedef KGenericFactory PluginFactory; K_EXPORT_COMPONENT_FACTORY( libkontact_akregator, PluginFactory( "kontact_akregator" ) ) AkregatorPlugin::AkregatorPlugin( Kontact::Core *core, const char *, const TQStringList& ) : Kontact::Plugin( core, core, "akregator" ), m_stub(0) { setInstance( PluginFactory::instance() ); insertNewAction( new TDEAction( i18n( "New Feed..." ), "bookmark_add", CTRL+SHIFT+Key_F, this, TQ_SLOT( addFeed() ), actionCollection(), "feed_new" ) ); m_uniqueAppWatcher = new Kontact::UniqueAppWatcher( new Kontact::UniqueAppHandlerFactory(), this ); } AkregatorPlugin::~AkregatorPlugin() { } bool AkregatorPlugin::isRunningStandalone() { return m_uniqueAppWatcher->isRunningStandalone(); } TQStringList AkregatorPlugin::invisibleToolbarActions() const { return TQStringList( "file_new_contact" ); } Akregator::AkregatorPartIface_stub *AkregatorPlugin::interface() { if ( !m_stub ) { part(); } Q_ASSERT( m_stub ); return m_stub; } MyBasePart* AkregatorPlugin::createPart() { MyBasePart* p = loadPart(); connect(p, TQ_SIGNAL(showPart()), this, TQ_SLOT(showPart())); m_stub = new Akregator::AkregatorPartIface_stub( dcopClient(), "akregator", "AkregatorIface" ); m_stub->openStandardFeedList(); return p; } void AkregatorPlugin::showPart() { core()->selectPlugin(this); } void AkregatorPlugin::addFeed() { interface()->addFeed(); } TQStringList AkregatorPlugin::configModules() const { TQStringList modules; modules << "PIM/akregator.desktop"; return modules; } void AkregatorPlugin::readProperties( TDEConfig *config ) { if ( part() ) { Akregator::Part *myPart = static_cast( part() ); myPart->readProperties( config ); } } void AkregatorPlugin::saveProperties( TDEConfig *config ) { if ( part() ) { Akregator::Part *myPart = static_cast( part() ); myPart->saveProperties( config ); } } void UniqueAppHandler::loadCommandLineOptions() { TDECmdLineArgs::addCmdLineOptions( akregator_options ); } int UniqueAppHandler::newInstance() { kdDebug(5602) << k_funcinfo << endl; // Ensure part is loaded (void)plugin()->part(); DCOPRef akr( "akregator", "AkregatorIface" ); // DCOPReply reply = kAB.call( "handleCommandLine" ); // if ( reply.isValid() ) { // bool handled = reply; // kdDebug(5602) << k_funcinfo << "handled=" << handled << endl; // if ( !handled ) // no args -> simply bring kaddressbook plugin to front return Kontact::UniqueAppHandler::newInstance(); // } // return 0; } } // namespace Akregator #include "akregator_plugin.moc"