1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
/*
This file is part of the KDE Libraries
SPDX-FileCopyrightText: 2013 Kevin Ottens <ervin+bluesystems@kde.org>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include <QApplication>
#include <QVBoxLayout>
#include <kratingwidget.h>
int main(int argc, char **argv)
{
QApplication app(argc, argv);
app.setAttribute(Qt::AA_UseHighDpiPixmaps, true);
QWidget window;
auto *layout = new QVBoxLayout(&window);
KRatingWidget *enabled = new KRatingWidget(&window);
layout->addWidget(enabled);
KRatingWidget *disabled = new KRatingWidget(&window);
disabled->setEnabled(false);
layout->addWidget(disabled);
window.show();
return app.exec();
}
|