MailTransport

transportlistview.h
1/*
2 SPDX-FileCopyrightText: 2009 Constantin Berzan <exit3219@gmail.com>
3
4 SPDX-License-Identifier: LGPL-2.0-or-later
5*/
6
7#pragma once
8
9#include <QTreeWidget>
10
11namespace MailTransport
12{
13/**
14 @internal
15 A QTreeWidget for transports.
16*/
18{
20
21public:
22 explicit TransportListView(QWidget *parent = nullptr);
23
24 // overloaded from QTreeWidget
25 void editItem(QTreeWidgetItem *item, int column = 0);
26
27protected Q_SLOTS:
28 void commitData(QWidget *editor) override;
29
30private Q_SLOTS:
31 void fillTransportList();
32};
33} // namespace MailTransport
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:12:37 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.