mirror of
https://gitgud.io/wackyideas/aerothemeplasma.git
synced 2024-08-15 00:43:43 +00:00
40 lines
1.3 KiB
C++
40 lines
1.3 KiB
C++
//////////////////////////////////////////////////////////////////////////////
|
|
// breezeanimationconfigitem.h
|
|
// animation configuration item
|
|
// -------------------
|
|
//
|
|
// SPDX-FileCopyrightText: 2010 Hugo Pereira Da Costa <hugo.pereira@free.fr>
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include <QAbstractScrollArea>
|
|
#include <QApplication>
|
|
#include <QIcon>
|
|
|
|
#include <KCMultiDialog>
|
|
#include <KLocalizedString>
|
|
#include <KPluginMetaData>
|
|
|
|
//__________________________________________
|
|
int main(int argc, char *argv[])
|
|
{
|
|
KLocalizedString::setApplicationDomain("breeze_style_config");
|
|
|
|
QApplication app(argc, argv);
|
|
app.setApplicationName(i18n("Breeze Settings"));
|
|
app.setWindowIcon(QIcon::fromTheme(QStringLiteral("breeze-settings")));
|
|
|
|
KCMultiDialog dialog;
|
|
dialog.setWindowTitle(i18n("Breeze Settings"));
|
|
dialog.addModule(KPluginMetaData(QStringLiteral("plasma/kcms/systemsettings_qwidgets/breezestyleconfig")));
|
|
dialog.addModule(KPluginMetaData(QStringLiteral("plasma/kcms/breeze/kcm_breezedecoration")));
|
|
dialog.show();
|
|
|
|
foreach (auto child, dialog.findChildren<QAbstractScrollArea *>()) {
|
|
child->adjustSize();
|
|
child->viewport()->adjustSize();
|
|
}
|
|
|
|
return app.exec();
|
|
}
|