Pimcommon

whatsnewcomboboxwidget.h
1/*
2 SPDX-FileCopyrightText: 2023-2024 Laurent Montel <montel.org>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#pragma once
8
9#include "pimcommon_export.h"
10#include <QWidget>
11class QComboBox;
12namespace PimCommon
13{
14class PIMCOMMON_EXPORT WhatsNewComboBoxWidget : public QWidget
15{
16 Q_OBJECT
17public:
18 explicit WhatsNewComboBoxWidget(QWidget *parent = nullptr);
19 ~WhatsNewComboBoxWidget() override;
20
21 void addVersion(const QString &name, int identifier);
22
23 void initializeVersion(int type);
24
25Q_SIGNALS:
26 void versionChanged(int type);
27
28private:
29 PIMCOMMON_NO_EXPORT void slotCurrentIndexChanged(int index);
30 QComboBox *const mVersionComboBox;
31};
32}
folderdialogacltab.h
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri Oct 11 2024 12:08:32 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.