File indexing completed on 2024-11-24 04:43:05
0001 /* 0002 SPDX-FileCopyrightText: 2015-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: GPL-2.0-or-later 0005 */ 0006 0007 #pragma once 0008 0009 #include "kaddressbookmergelib_export.h" 0010 #include <KMessageWidget> 0011 namespace KABMergeContacts 0012 { 0013 class KADDRESSBOOKMERGELIB_EXPORT MergeContactLoseInformationWarning : public KMessageWidget 0014 { 0015 Q_OBJECT 0016 public: 0017 explicit MergeContactLoseInformationWarning(QWidget *parent = nullptr); 0018 ~MergeContactLoseInformationWarning() override; 0019 0020 Q_SIGNALS: 0021 void continueMerging(); 0022 void customizeMergingContacts(); 0023 0024 private: 0025 void slotCustomizeMerge(); 0026 void slotAutomaticMerging(); 0027 }; 0028 }