digiKam
Loading...
Searching...
No Matches
wsselectuserdlg.h
Go to the documentation of this file.
1/* ============================================================
2 *
3 * This file is a part of digiKam project
4 * https://www.digikam.org
5 *
6 * Date : 2015-16-05
7 * Description : a dialog to select user for Web Service tools
8 *
9 * SPDX-FileCopyrightText: 2015 by Shourya Singh Gupta <shouryasgupta at gmail dot com>
10 * SPDX-FileCopyrightText: 2016-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
11 *
12 * SPDX-License-Identifier: GPL-2.0-or-later
13 *
14 * ============================================================ */
15
16#pragma once
17
18// Qt includes
19
20#include <QString>
21#include <QDialog>
22
23// Local includes
24
25#include "digikam_export.h"
26
27namespace Digikam
28{
29
30class DIGIKAM_EXPORT WSSelectUserDlg : public QDialog
31{
32 Q_OBJECT
33
34public:
35
36 explicit WSSelectUserDlg(QWidget* const parent, const QString& serviceName);
37 ~WSSelectUserDlg() override;
38
39 void reactivate();
40 QString getUserName() const;
41
42protected Q_SLOTS:
43
44 void slotOkClicked();
45 void slotNewAccountClicked();
46
47private:
48
49 class Private;
50 Private* const d = nullptr;
51};
52
53} // namespace Digikam
Definition wsselectuserdlg.h:31
Definition datefolderview.cpp:34