You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
157 lines
4.2 KiB
157 lines
4.2 KiB
/*
|
|
This file is part of Akregator.
|
|
|
|
Copyright (C) 2004 Sashmit Bhaduri <smt@vfemail.net>
|
|
|
|
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 <tqwidget.h>
|
|
|
|
#include <dcopclient.h>
|
|
#include <dcopref.h>
|
|
#include <kaboutdata.h>
|
|
#include <tdeaction.h>
|
|
#include <kapplication.h>
|
|
#include <kcmdlineargs.h>
|
|
#include <kdebug.h>
|
|
#include <kgenericfactory.h>
|
|
#include <kiconloader.h>
|
|
#include <kmessagebox.h>
|
|
#include <tdeparts/componentfactory.h>
|
|
|
|
#include <core.h>
|
|
#include <plugin.h>
|
|
|
|
#include <akregator_options.h>
|
|
#include <akregator_part.h>
|
|
#include "akregator_plugin.h"
|
|
namespace Akregator {
|
|
|
|
typedef KGenericFactory<Akregator::Plugin, Kontact::Core > PluginFactory;
|
|
K_EXPORT_COMPONENT_FACTORY( libkontact_akregator,
|
|
PluginFactory( "kontact_akregator" ) )
|
|
|
|
Plugin::Plugin( Kontact::Core *core, const char *, const TQStringList& )
|
|
: Kontact::Plugin( core, TQT_TQOBJECT(core), "akregator" ), m_stub(0)
|
|
{
|
|
|
|
setInstance( PluginFactory::instance() );
|
|
|
|
insertNewAction( new TDEAction( i18n( "New Feed..." ), "bookmark_add", CTRL+SHIFT+Key_F, this, TQT_SLOT( addFeed() ), actionCollection(), "feed_new" ) );
|
|
|
|
m_uniqueAppWatcher = new Kontact::UniqueAppWatcher(
|
|
new Kontact::UniqueAppHandlerFactory<Akregator::UniqueAppHandler>(), this );
|
|
}
|
|
|
|
Plugin::~Plugin()
|
|
{
|
|
}
|
|
|
|
bool Plugin::isRunningStandalone()
|
|
{
|
|
return m_uniqueAppWatcher->isRunningStandalone();
|
|
}
|
|
|
|
TQStringList Plugin::invisibleToolbarActions() const
|
|
{
|
|
return TQStringList( "file_new_contact" );
|
|
}
|
|
|
|
|
|
Akregator::AkregatorPartIface_stub *Plugin::interface()
|
|
{
|
|
if ( !m_stub ) {
|
|
part();
|
|
}
|
|
|
|
Q_ASSERT( m_stub );
|
|
return m_stub;
|
|
}
|
|
|
|
|
|
MyBasePart* Plugin::createPart()
|
|
{
|
|
MyBasePart* p = loadPart();
|
|
|
|
connect(p, TQT_SIGNAL(showPart()), this, TQT_SLOT(showPart()));
|
|
m_stub = new Akregator::AkregatorPartIface_stub( dcopClient(), "akregator",
|
|
"AkregatorIface" );
|
|
m_stub->openStandardFeedList();
|
|
return p;
|
|
}
|
|
|
|
|
|
void Plugin::showPart()
|
|
{
|
|
core()->selectPlugin(this);
|
|
}
|
|
|
|
void Plugin::addFeed()
|
|
{
|
|
interface()->addFeed();
|
|
}
|
|
|
|
TQStringList Plugin::configModules() const
|
|
{
|
|
TQStringList modules;
|
|
modules << "PIM/akregator.desktop";
|
|
return modules;
|
|
}
|
|
|
|
void Plugin::readProperties( TDEConfig *config )
|
|
{
|
|
if ( part() ) {
|
|
Akregator::Part *myPart = static_cast<Akregator::Part*>( part() );
|
|
myPart->readProperties( config );
|
|
}
|
|
}
|
|
|
|
void Plugin::saveProperties( TDEConfig *config )
|
|
{
|
|
if ( part() ) {
|
|
Akregator::Part *myPart = static_cast<Akregator::Part*>( 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"
|