2020-10-25 18:58:02 +00:00
|
|
|
/*
|
|
|
|
Sailfin: a Jellyfin client written using Qt
|
2021-02-17 18:42:10 +00:00
|
|
|
Copyright (C) 2021 Chris Josten
|
2020-10-25 18:58:02 +00:00
|
|
|
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU Lesser General Public
|
|
|
|
License as published by the Free Software Foundation; either
|
|
|
|
version 2.1 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
|
|
|
|
Lesser General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
|
|
License along with this library; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
#include "JellyfinQt/jellyfin.h"
|
2020-10-08 01:00:08 +00:00
|
|
|
namespace Jellyfin {
|
|
|
|
|
2021-02-14 17:40:46 +00:00
|
|
|
void registerTypes(const char *uri) {
|
2020-10-08 01:00:08 +00:00
|
|
|
// Singletons are perhaps bad, but they are convenient :)
|
2021-02-14 17:40:46 +00:00
|
|
|
qmlRegisterSingletonType<Jellyfin::ApiClient>(uri, 1, 0, "ApiClient", [](QQmlEngine *eng, QJSEngine *js) {
|
2020-10-08 01:00:08 +00:00
|
|
|
Q_UNUSED(eng)
|
|
|
|
Q_UNUSED(js)
|
|
|
|
return dynamic_cast<QObject*>(new Jellyfin::ApiClient());
|
|
|
|
});
|
2021-02-14 17:40:46 +00:00
|
|
|
qmlRegisterType<Jellyfin::ServerDiscoveryModel>(uri, 1, 0, "ServerDiscoveryModel");
|
|
|
|
qmlRegisterType<Jellyfin::PlaybackManager>(uri, 1, 0, "PlaybackManager");
|
2020-10-08 01:00:08 +00:00
|
|
|
|
|
|
|
// API models
|
2021-02-14 17:40:46 +00:00
|
|
|
Jellyfin::registerModels(uri);
|
2021-02-17 18:42:10 +00:00
|
|
|
Jellyfin::DTO::registerTypes(uri);
|
2020-10-08 01:00:08 +00:00
|
|
|
}
|
|
|
|
}
|