Pimcommon

completionordereditor.h
1/* -*- c++ -*-
2 * completionordereditor.h
3 *
4 * SPDX-FileCopyrightText: 2004 David Faure <faure@kde.org>
5 *
6 * SPDX-License-Identifier: GPL-2.0-or-later
7 */
8
9#pragma once
10
11#include "pimcommonakonadi_export.h"
12#include <QDialog>
13
14namespace KLDAPWidgets
15{
16class LdapClientSearch;
17}
18
19namespace PimCommon
20{
21class CompletionOrderEditorPrivate;
22/**
23 * @brief The CompletionOrderEditor class
24 */
25class PIMCOMMONAKONADI_EXPORT CompletionOrderEditor : public QDialog
26{
27 Q_OBJECT
28
29public:
30 explicit CompletionOrderEditor(KLDAPWidgets::LdapClientSearch *ldapSearch, QWidget *parent = nullptr);
31 ~CompletionOrderEditor() override;
32
33private:
34 PIMCOMMONAKONADI_NO_EXPORT void slotOk();
35 PIMCOMMONAKONADI_NO_EXPORT void readConfig();
36 PIMCOMMONAKONADI_NO_EXPORT void writeConfig();
37 std::unique_ptr<CompletionOrderEditorPrivate> const d;
38};
39} // namespace
The CompletionOrderEditor class.
folderdialogacltab.h
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:17:23 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.