cf12defd28
Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent) Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
30 lines
642 B
C++
30 lines
642 B
C++
/*
|
|
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);
|
|
|
|
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();
|
|
}
|