From f6d69d45cf25180a8285b2dd5c146a0481fd09ce Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sun, 21 Sep 2014 18:30:01 -0500 Subject: Finish renaming knewstuff This relates to Bug 2093 --- knewstuff/knewstuff.cpp | 86 ------------------------------------------------- 1 file changed, 86 deletions(-) delete mode 100644 knewstuff/knewstuff.cpp (limited to 'knewstuff/knewstuff.cpp') diff --git a/knewstuff/knewstuff.cpp b/knewstuff/knewstuff.cpp deleted file mode 100644 index ad4f0fb98..000000000 --- a/knewstuff/knewstuff.cpp +++ /dev/null @@ -1,86 +0,0 @@ -/* - This file is part of KOrganizer. - Copyright (c) 2002 Cornelius Schumacher - - 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 "engine.h" - -#include "knewstuff.h" - -using namespace KNS; - -TDEAction* KNS::standardAction(const TQString& what, - const TQObject *recvr, - const char *slot, TDEActionCollection* parent, - const char *name) -{ - return new TDEAction(i18n("Download New %1").arg(what), "knewstuff", - 0, recvr, slot, parent, name); -} - -TDENewStuff::TDENewStuff( const TQString &type, TQWidget *parentWidget ) -{ - mEngine = new Engine( this, type, parentWidget ); -} - -TDENewStuff::TDENewStuff( const TQString &type, const TQString &providerList, TQWidget *parentWidget ) -{ - mEngine = new Engine( this, type, providerList, parentWidget ); -} - -TQString TDENewStuff::type() const -{ - return mEngine->type(); -} - -TQWidget *TDENewStuff::parentWidget() const -{ - return mEngine->parentWidget(); -} - -TDENewStuff::~TDENewStuff() -{ - delete mEngine; -} - -void TDENewStuff::download() -{ - mEngine->download(); -} - -TQString TDENewStuff::downloadDestination( Entry * ) -{ - return TDEGlobal::dirs()->saveLocation( "tmp" ) + - TDEApplication::randomString( 10 ); -} - -void TDENewStuff::upload() -{ - mEngine->upload(); -} - -void TDENewStuff::upload( const TQString &fileName, const TQString previewName ) -{ - mEngine->upload(fileName, previewName); -} -- cgit v1.2.1