File indexing completed on 2024-05-19 05:21:23

0001 /*
0002    SPDX-FileCopyrightText: 2012-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "ksettingsdialog/kontactsettingsdialog.h"
0010 
0011 namespace Kontact
0012 {
0013 class KontactConfigureDialog : public KontactSettingsDialog
0014 {
0015     Q_OBJECT
0016 
0017 public:
0018     explicit KontactConfigureDialog(QWidget *parent = nullptr);
0019     ~KontactConfigureDialog() override;
0020 
0021 protected:
0022     QSize sizeHint() const override;
0023 
0024 protected Q_SLOTS:
0025     /** reimplemented */
0026     void slotApply();
0027 
0028     /** reimplemented */
0029     void slotOk();
0030     void emitConfigChanged();
0031 };
0032 }