Pimcommon

checknewversionwidget.h
1/*
2 SPDX-FileCopyrightText: 2025 Laurent Montel <montel@kde.org>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#pragma once
8
9#include <QUrl>
10#include <QWidget>
11class QLabel;
12namespace PimCommon
13{
14class CheckNewVersionWidget : public QWidget
15{
17public:
18 explicit CheckNewVersionWidget(QWidget *parent = nullptr);
19 ~CheckNewVersionWidget() override;
20
21 void checkNewVersion();
22
23 void setUrl(const QUrl &url);
24
25private:
26 void slotFoundNewVersion(bool found);
27 QLabel *const mCheckVersionResultLabel;
28 QUrl mUrl;
29};
30}
folderdialogacltab.h
Q_OBJECTQ_OBJECT
QObject * parent() const const
QWidget(QWidget *parent, Qt::WindowFlags f)
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Jan 24 2025 11:47:24 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.