2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2020 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2020-07-28 01:04:15 +02:00
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include<QComboBox>
|
|
|
|
|
|
|
|
|
|
namespace ManualTest {
|
|
|
|
|
|
|
|
|
|
class ThemeSelector : public QComboBox {
|
|
|
|
|
public:
|
|
|
|
|
ThemeSelector(QWidget *parent = nullptr);
|
2021-05-19 17:51:45 +02:00
|
|
|
|
|
|
|
|
static void setTheme(const QString &themeFile);
|
2020-07-28 01:04:15 +02:00
|
|
|
};
|
|
|
|
|
|
2021-05-19 17:51:45 +02:00
|
|
|
} // namespace ManualTest
|