File indexing completed on 2024-05-19 05:55:46

0001 /*
0002 
0003     This file is part of the KDE project.
0004     SPDX-FileCopyrightText: 2003-2005 George Staikos <staikos@kde.org>
0005 
0006     SPDX-License-Identifier: LGPL-2.0-only
0007 */
0008 
0009 #ifndef KBETTERTHANKDIALOGBASE_H
0010 #define KBETTERTHANKDIALOGBASE_H
0011 
0012 #include "ui_kbetterthankdialogbase.h"
0013 
0014 class KBetterThanKDialogBase : public QDialog, private Ui_KBetterThanKDialogBase
0015 {
0016     Q_OBJECT
0017 
0018 public:
0019     explicit KBetterThanKDialogBase(QWidget *parent = nullptr);
0020 
0021 public Q_SLOTS:
0022     virtual void setLabel(const QString &label);
0023     void accept() override;
0024     void reject() override;
0025 
0026 private Q_SLOTS:
0027     virtual void clicked();
0028 };
0029 
0030 #endif