KUserFeedback

auditlogbrowserdialog.h
1/*
2 SPDX-FileCopyrightText: 2017 Volker Krause <vkrause@kde.org>
3
4 SPDX-License-Identifier: MIT
5*/
6
7#ifndef KUSERFEEDBACK_AUDITLOGBROWSERDIALOG_H
8#define KUSERFEEDBACK_AUDITLOGBROWSERDIALOG_H
9
10#include <QDialog>
11
12#include <memory>
13
14namespace KUserFeedback {
15
16namespace Ui
17{
18class AuditLogBrowserDialog;
19}
20class AuditLogUiController;
21
22/** Dialog to browse audit log entries. */
24{
26public:
28 ~AuditLogBrowserDialog() override;
29
30 void setUiController(AuditLogUiController *controller);
31
32private Q_SLOTS:
33 void logEntrySelected();
34
35private:
36 std::unique_ptr<Ui::AuditLogBrowserDialog> ui;
37 AuditLogUiController *m_controller;
38};
39
40}
41
42#endif // KUSERFEEDBACK_AUDITLOGBROWSERDIALOG_H
Dialog to browse audit log entries.
Widget/QtQuick-independent logic and data for the audit log browser UI.
Classes for integrating telemetry collection, survey targeting, and contribution encouragenemt and co...
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 Tue Mar 26 2024 11:20:56 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.