1
0
Fork 0
mirror of https://github.com/HenkKalkwater/harbour-sailfin.git synced 2024-06-18 08:42:42 +00:00
harbour-sailfin/core/src/DTO/remoteimageinfo.cpp

117 lines
3.8 KiB
C++

/*
* Sailfin: a Jellyfin client written using Qt
* Copyright (C) 2021 Chris Josten and the Sailfin Contributors.
*
* 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
*/
/*
* WARNING: THIS IS AN AUTOMATICALLY GENERATED FILE! PLEASE DO NOT EDIT THIS, AS YOUR EDITS WILL GET
* OVERWRITTEN AT SOME POINT!
*
* If there is a bug in this file, please fix the code generator used to generate this file found in
* core/openapigenerator.d.
*
* This file is generated based on Jellyfin's OpenAPI description, "openapi.json". Please update that
* file with a newer file if needed instead of manually updating the files.
*/
#include <JellyfinQt/DTO/remoteimageinfo.h>
#include <JellyfinQt/DTO/imagetype.h>
#include <JellyfinQt/DTO/ratingtype.h>
namespace Jellyfin {
namespace DTO {
RemoteImageInfo::RemoteImageInfo(QObject *parent) : QObject(parent) {}
RemoteImageInfo *RemoteImageInfo::fromJSON(QJsonObject source, QObject *parent) {
RemoteImageInfo *instance = new RemoteImageInfo(parent);
instance->updateFromJSON(source);
return instance;
}
void RemoteImageInfo::updateFromJSON(QJsonObject source) {
Q_UNIMPLEMENTED();
}
QJsonObject RemoteImageInfo::toJSON() {
Q_UNIMPLEMENTED();
QJsonObject result;
return result;
}
QString RemoteImageInfo::providerName() const { return m_providerName; }
void RemoteImageInfo::setProviderName(QString newProviderName) {
m_providerName = newProviderName;
emit providerNameChanged(newProviderName);
}
QString RemoteImageInfo::url() const { return m_url; }
void RemoteImageInfo::setUrl(QString newUrl) {
m_url = newUrl;
emit urlChanged(newUrl);
}
QString RemoteImageInfo::thumbnailUrl() const { return m_thumbnailUrl; }
void RemoteImageInfo::setThumbnailUrl(QString newThumbnailUrl) {
m_thumbnailUrl = newThumbnailUrl;
emit thumbnailUrlChanged(newThumbnailUrl);
}
qint32 RemoteImageInfo::height() const { return m_height; }
void RemoteImageInfo::setHeight(qint32 newHeight) {
m_height = newHeight;
emit heightChanged(newHeight);
}
qint32 RemoteImageInfo::width() const { return m_width; }
void RemoteImageInfo::setWidth(qint32 newWidth) {
m_width = newWidth;
emit widthChanged(newWidth);
}
double RemoteImageInfo::communityRating() const { return m_communityRating; }
void RemoteImageInfo::setCommunityRating(double newCommunityRating) {
m_communityRating = newCommunityRating;
emit communityRatingChanged(newCommunityRating);
}
qint32 RemoteImageInfo::voteCount() const { return m_voteCount; }
void RemoteImageInfo::setVoteCount(qint32 newVoteCount) {
m_voteCount = newVoteCount;
emit voteCountChanged(newVoteCount);
}
QString RemoteImageInfo::language() const { return m_language; }
void RemoteImageInfo::setLanguage(QString newLanguage) {
m_language = newLanguage;
emit languageChanged(newLanguage);
}
ImageType RemoteImageInfo::type() const { return m_type; }
void RemoteImageInfo::setType(ImageType newType) {
m_type = newType;
emit typeChanged(newType);
}
RatingType RemoteImageInfo::ratingType() const { return m_ratingType; }
void RemoteImageInfo::setRatingType(RatingType newRatingType) {
m_ratingType = newRatingType;
emit ratingTypeChanged(newRatingType);
}
} // NS Jellyfin
} // NS DTO