Akonadi

tagmanagementdialog.h
1/*
2 This file is part of Akonadi
3
4 SPDX-FileCopyrightText: 2014 Christian Mollekopf <mollekopf@kolabsys.com>
5
6 SPDX-License-Identifier: LGPL-2.0-or-later
7*/
8
9#pragma once
10
11#include "akonadiwidgets_export.h"
12// AkonadiCore
13#include "akonadi/tag.h"
14
15#include <QDialog>
16
17#include <memory>
18
20namespace Akonadi
21{
22class TagManagementDialogPrivate;
23
24/**
25 * A dialog to manage tags.
26 *
27 * @since 4.13
28 */
29class AKONADIWIDGETS_EXPORT TagManagementDialog : public QDialog
30{
31 Q_OBJECT
32public:
33 explicit TagManagementDialog(QWidget *parent = nullptr);
34 ~TagManagementDialog() override;
35
36 [[nodiscard]] QDialogButtonBox *buttons() const;
37
38private:
39 std::unique_ptr<TagManagementDialogPrivate> const d;
40};
41
42}
A dialog to manage tags.
Helper integration between Akonadi and Qt.
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri May 3 2024 11:44:22 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.