11class GlobalPart::GlobalPartPrivate
14 GlobalPartPrivate() =
default;
16 QWidget *parentWidgetForGui =
nullptr;
17 bool guiEnabled =
true;
18 bool MDNRequested =
false;
19 bool requestDeleveryConfirmation =
false;
22GlobalPart::GlobalPart(
QObject *parent)
24 , d(new GlobalPartPrivate)
28GlobalPart::~GlobalPart() =
default;
30bool GlobalPart::isGuiEnabled()
const
35void GlobalPart::setGuiEnabled(
bool enabled)
37 d->guiEnabled = enabled;
40QWidget *GlobalPart::parentWidgetForGui()
const
42 return d->parentWidgetForGui;
45void GlobalPart::setParentWidgetForGui(
QWidget *widget)
47 d->parentWidgetForGui = widget;
50bool GlobalPart::MDNRequested()
const
52 return d->MDNRequested;
55void GlobalPart::setMDNRequested(
bool requestMDN)
57 d->MDNRequested = requestMDN;
60bool GlobalPart::requestDeleveryConfirmation()
const
62 return d->requestDeleveryConfirmation;
65void GlobalPart::setRequestDeleveryConfirmation(
bool value)
67 d->requestDeleveryConfirmation = value;
70#include "moc_globalpart.cpp"
Simple interface that both EncryptJob and SignEncryptJob implement so the composer can extract some e...
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Mon Nov 4 2024 16:33:25 by
doxygen 1.12.0 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.