This repository has been archived on 2024-06-03. You can view files and clone it, but cannot push or open issues or pull requests.
shared-libraries/ScStwStyling/sources/scstwapptheme.cpp

24 lines
544 B
C++

#include "headers/scstwapptheme.h"
ScStwAppTheme::ScStwAppTheme(QVariantMap colors, QVariantMap icons, QVariantMap fonts, QVariantMap images, QObject *parent) : QObject(parent)
{
this->colors = colors;
this->icons = icons;
this->fonts = fonts;
this->images = images;
}
QVariant ScStwAppTheme::getColors() {
return this->colors;
}
QVariant ScStwAppTheme::getIcons() {
return this->icons;
}
QVariant ScStwAppTheme::getFonts() {
return this->fonts;
}
QVariant ScStwAppTheme::getImages() {
return this->images;
}