File indexing completed on 2023-05-30 10:45:25
0001 /* 0002 SPDX-FileCopyrightText: 2010 Peter Hedlund <peter.hedlund@kdemail.net> 0003 SPDX-License-Identifier: GPL-2.0-or-later 0004 */ 0005 0006 #ifndef KWQCLEARDIALOG_H 0007 #define KWQCLEARDIALOG_H 0008 0009 #include <QDialog> 0010 0011 #include "ui_cleardialogbase.h" 0012 0013 class KWQClearDialog : public QDialog, private Ui::ClearDialogBase { 0014 Q_OBJECT 0015 public: 0016 explicit KWQClearDialog(QWidget *parent = nullptr); 0017 0018 public Q_SLOTS: 0019 void accept() override; 0020 0021 private Q_SLOTS: 0022 void buttonGroupChanged(int ); 0023 0024 private: 0025 void updateCheckBoxes(); 0026 0027 }; 0028 0029 #endif // KWQCLEARDIALOG_H