KWallet

kbetterthankdialog.h
1/*
2 This file is part of the KDE libraries
3 SPDX-FileCopyrightText: 2004 George Staikos <staikos@kde.org>
4
5 SPDX-License-Identifier: LGPL-2.1-or-later
6*/
7
8#ifndef KBETTERTHANKDIALOG_H
9#define KBETTERTHANKDIALOG_H
10
11#include <QDialog>
12
13#include "ui_kbetterthankdialogbase.h"
14
15class KBetterThanKDialog : public QDialog, private Ui_KBetterThanKDialogBase
16{
18
19public:
20 explicit KBetterThanKDialog(QWidget *parent = nullptr);
21
22 void init();
23 void setLabel(const QString &label);
24
25protected Q_SLOTS:
26 void accept() override;
27 void reject() override;
28
29private Q_SLOTS:
30 void allowOnceClicked();
31 void allowAlwaysClicked();
32 void denyClicked();
33 void denyForeverClicked();
34};
35
36#endif
Q_OBJECTQ_OBJECT
Q_SLOTSQ_SLOTS
QObject * parent() const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri May 10 2024 11:47:59 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.