diff --git a/CMakeLists.txt b/CMakeLists.txt index b47723c97..48d6f9873 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -296,9 +296,6 @@ file( GLOB APP_SOURCES_GL "src/services/owncloud/*.cpp" "src/services/owncloud/network/*.cpp" "src/services/owncloud/gui/*.cpp" - "src/services/wallabag/*.cpp" - "src/services/wallabag/network/*.cpp" - "src/services/wallabag/gui/*.cpp" "src/network-web/*.cpp" "src/*.cpp") @@ -330,9 +327,6 @@ file( GLOB APP_HEADERS "src/services/owncloud/*.h" "src/services/owncloud/network/*.h" "src/services/owncloud/gui/*.h" - "src/services/wallabag/*.h" - "src/services/wallabag/network/*.h" - "src/services/wallabag/gui/*.h" "src/network-web/*.h") # APP forms. @@ -342,7 +336,6 @@ file( GLOB APP_FORMS "src/services/standard/gui/*.ui" "src/services/tt-rss/gui/*.ui" "src/services/owncloud/gui/*.ui" - "src/services/wallabag/gui/*.ui" "src/network-web/*.ui") # APP translations. diff --git a/resources/graphics/icons/mini-kfaenza/application-wallabag.png b/resources/graphics/icons/mini-kfaenza/application-wallabag.png deleted file mode 100644 index 3959f64c8..000000000 Binary files a/resources/graphics/icons/mini-kfaenza/application-wallabag.png and /dev/null differ diff --git a/resources/graphics/icons/numix/application-wallabag.png b/resources/graphics/icons/numix/application-wallabag.png deleted file mode 100644 index 45949eb0d..000000000 Binary files a/resources/graphics/icons/numix/application-wallabag.png and /dev/null differ diff --git a/resources/graphics/icons/papirus-dark/application-wallabag.png b/resources/graphics/icons/papirus-dark/application-wallabag.png deleted file mode 100644 index c3988b203..000000000 Binary files a/resources/graphics/icons/papirus-dark/application-wallabag.png and /dev/null differ diff --git a/resources/graphics/icons/papirus/application-wallabag.png b/resources/graphics/icons/papirus/application-wallabag.png deleted file mode 100644 index 7643f100d..000000000 Binary files a/resources/graphics/icons/papirus/application-wallabag.png and /dev/null differ diff --git a/src/services/wallabag/definitions.h b/src/services/wallabag/definitions.h deleted file mode 100644 index 7536e6c12..000000000 --- a/src/services/wallabag/definitions.h +++ /dev/null @@ -1,30 +0,0 @@ -// This file is part of RSS Guard. -// -// Copyright (C) 2011-2016 by Martin Rotter -// -// RSS Guard 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 3 of the License, or -// (at your option) any later version. -// -// RSS Guard 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 RSS Guard. If not, see . - -#ifndef WALLABAG_DEFINITIONS_H -#define WALLABAG_DEFINITIONS_H - -// TODO: todo - -// -// http://v2.wallabag.org -// http://v2.wallabag.org/api/doc -// http://v2.wallabag.org/developer -// - -#endif // WALLABAG_DEFINITIONS_H - diff --git a/src/services/wallabag/wallabagserviceentrypoint.cpp b/src/services/wallabag/wallabagserviceentrypoint.cpp deleted file mode 100644 index 033f0d2b5..000000000 --- a/src/services/wallabag/wallabagserviceentrypoint.cpp +++ /dev/null @@ -1,68 +0,0 @@ -// This file is part of RSS Guard. -// -// Copyright (C) 2011-2016 by Martin Rotter -// -// RSS Guard 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 3 of the License, or -// (at your option) any later version. -// -// RSS Guard 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 RSS Guard. If not, see . - -#include "services/wallabag/wallabagserviceentrypoint.h" - -#include "miscellaneous/application.h" -#include "miscellaneous/iconfactory.h" -#include "gui/messagebox.h" -#include "gui/dialogs/formmain.h" - - -WallabagServiceEntryPoint::WallabagServiceEntryPoint() { -} - -WallabagServiceEntryPoint::~WallabagServiceEntryPoint() { -} - -ServiceRoot *WallabagServiceEntryPoint::createNewRoot() const { - MessageBox::show(qApp->mainForm(), QMessageBox::Warning, QObject::tr("Not yet supported"), - QObject::tr("This plugin is not yet ready for usage. It will be added in future versions.")); - return NULL; -} - -QList WallabagServiceEntryPoint::initializeSubtree() const { - return QList(); -} - -bool WallabagServiceEntryPoint::isSingleInstanceService() const { - return false; -} - -QString WallabagServiceEntryPoint::name() const { - return QSL("wallabag"); -} - -QString WallabagServiceEntryPoint::code() const { - return SERVICE_CODE_WALLABAG; -} - -QString WallabagServiceEntryPoint::description() const { - return QObject::tr("This plugin allows you to view and manager your wallabag articles."); -} - -QString WallabagServiceEntryPoint::version() const { - return APP_VERSION; -} - -QString WallabagServiceEntryPoint::author() const { - return APP_AUTHOR; -} - -QIcon WallabagServiceEntryPoint::icon() const { - return qApp->icons()->fromTheme(QSL("application-wallabag")); -} diff --git a/src/services/wallabag/wallabagserviceentrypoint.h b/src/services/wallabag/wallabagserviceentrypoint.h deleted file mode 100644 index 110f2044d..000000000 --- a/src/services/wallabag/wallabagserviceentrypoint.h +++ /dev/null @@ -1,41 +0,0 @@ -// This file is part of RSS Guard. -// -// Copyright (C) 2011-2016 by Martin Rotter -// -// RSS Guard 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 3 of the License, or -// (at your option) any later version. -// -// RSS Guard 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 RSS Guard. If not, see . - -#ifndef WALLABAGSERVICEENTRYPOINT_H -#define WALLABAGSERVICEENTRYPOINT_H - -#include "services/abstract/serviceentrypoint.h" - - -class WallabagServiceEntryPoint : public ServiceEntryPoint { - public: - explicit WallabagServiceEntryPoint(); - virtual ~WallabagServiceEntryPoint(); - - ServiceRoot *createNewRoot() const; - QList initializeSubtree() const; - - bool isSingleInstanceService() const; - QString name() const; - QString code() const; - QString description() const; - QString version() const; - QString author() const; - QIcon icon() const; -}; - -#endif // WALLABAGSERVICEENTRYPOINT_H