69 lines
2.3 KiB
C++
Executable File
69 lines
2.3 KiB
C++
Executable File
// This file is part of RSS Guard.
|
|
|
|
//
|
|
// Copyright (C) 2011-2017 by Martin Rotter <rotter.martinos@gmail.com>
|
|
//
|
|
// 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 <http://www.gnu.org/licenses/>.
|
|
|
|
#include "services/owncloud/owncloudserviceentrypoint.h"
|
|
|
|
#include "definitions/definitions.h"
|
|
#include "miscellaneous/application.h"
|
|
#include "miscellaneous/databasequeries.h"
|
|
#include "miscellaneous/iconfactory.h"
|
|
#include "services/owncloud/definitions.h"
|
|
#include "services/owncloud/gui/formeditowncloudaccount.h"
|
|
#include "services/owncloud/owncloudserviceroot.h"
|
|
|
|
OwnCloudServiceEntryPoint::OwnCloudServiceEntryPoint() {}
|
|
|
|
OwnCloudServiceEntryPoint::~OwnCloudServiceEntryPoint() {}
|
|
|
|
ServiceRoot* OwnCloudServiceEntryPoint::createNewRoot() const {
|
|
FormEditOwnCloudAccount form_acc(qApp->mainFormWidget());
|
|
|
|
return form_acc.execForCreate();
|
|
}
|
|
|
|
QList<ServiceRoot*> OwnCloudServiceEntryPoint::initializeSubtree() const {
|
|
QSqlDatabase database = qApp->database()->connection(QSL("OwnCloudServiceEntryPoint"), DatabaseFactory::FromSettings);
|
|
|
|
return DatabaseQueries::getOwnCloudAccounts(database);
|
|
}
|
|
|
|
bool OwnCloudServiceEntryPoint::isSingleInstanceService() const {
|
|
return false;
|
|
}
|
|
|
|
QString OwnCloudServiceEntryPoint::name() const {
|
|
return QSL("NextCloud News");
|
|
}
|
|
|
|
QString OwnCloudServiceEntryPoint::code() const {
|
|
return SERVICE_CODE_OWNCLOUD;
|
|
}
|
|
|
|
QString OwnCloudServiceEntryPoint::description() const {
|
|
return QObject::tr("The News app is an RSS/Atom feed aggregator. It is part of Nextcloud suite. This plugin implements %1 API.")
|
|
.arg(API_VERSION);
|
|
}
|
|
|
|
QString OwnCloudServiceEntryPoint::author() const {
|
|
return APP_AUTHOR;
|
|
}
|
|
|
|
QIcon OwnCloudServiceEntryPoint::icon() const {
|
|
return qApp->icons()->miscIcon(QSL("nextcloud"));
|
|
}
|