MailImporter

filterinfogui.cpp
1/*
2 SPDX-FileCopyrightText: 2012-2024 Laurent Montel <montel@kde.org>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#include "filterinfogui.h"
8
9using namespace MailImporter;
10
11FilterInfoGui::FilterInfoGui()
12{
13}
14
15FilterInfoGui::~FilterInfoGui()
16{
17}
18
19void FilterInfoGui::setStatusMessage(const QString &status)
20{
21 Q_UNUSED(status)
22}
23
24void FilterInfoGui::setFrom(const QString &from)
25{
26 Q_UNUSED(from)
27}
28
29void FilterInfoGui::setTo(const QString &to)
30{
31 Q_UNUSED(to)
32}
33
34void FilterInfoGui::setCurrent(const QString &current)
35{
36 Q_UNUSED(current)
37}
38
39void FilterInfoGui::setCurrent(int percent)
40{
41 Q_UNUSED(percent)
42}
43
44void FilterInfoGui::setOverall(int percent)
45{
46 Q_UNUSED(percent)
47}
48
49void FilterInfoGui::addErrorLogEntry(const QString &log)
50{
51 Q_UNUSED(log)
52}
53
54void FilterInfoGui::addInfoLogEntry(const QString &log)
55{
56 Q_UNUSED(log)
57}
58
59void FilterInfoGui::clear()
60{
61}
62
63void FilterInfoGui::alert(const QString &message)
64{
65 Q_UNUSED(message)
66}
67
68QWidget *FilterInfoGui::parent() const
69{
70 return nullptr;
71}
Q_SCRIPTABLE CaptureState status()
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:17:39 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.