Pimcommon

customtoolsviewinterface.h
1/*
2 SPDX-FileCopyrightText: 2015-2024 Laurent Montel <montel@kde.org>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6
7#pragma once
8
9#include "pimcommon_export.h"
10
11#include <QWidget>
12class KToggleAction;
13namespace PimCommon
14{
15/**
16 * @brief The CustomToolsViewInterface class
17 * @author Laurent Montel <montel@kde.org>
18 */
19class PIMCOMMON_EXPORT CustomToolsViewInterface : public QWidget
20{
21 Q_OBJECT
22public:
23 explicit CustomToolsViewInterface(QWidget *parent = nullptr);
25
26 virtual void setText(const QString &text);
27 [[nodiscard]] virtual KToggleAction *action() const;
28
29Q_SIGNALS:
30 void insertText(const QString &text);
31 void toolsWasClosed();
32 void activateView(QWidget *);
33 void configure(QWidget *parent);
34};
35}
The CustomToolsViewInterface class.
folderdialogacltab.h
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:17:23 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.