Pimcommon

customtoolsviewinterface.h
1/*
2 SPDX-FileCopyrightText: 2015-2025 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{
22public:
23 explicit CustomToolsViewInterface(QWidget *parent = nullptr);
24 ~CustomToolsViewInterface() override;
25
26 virtual void setText(const QString &text);
27 [[nodiscard]] virtual KToggleAction *action() const;
28
30 void insertText(const QString &text);
31 void toolsWasClosed();
32 void activateView(QWidget *);
33 void configure(QWidget *parent);
34};
35}
folderdialogacltab.h
Q_OBJECTQ_OBJECT
Q_SIGNALSQ_SIGNALS
QObject * parent() const const
QWidget(QWidget *parent, Qt::WindowFlags f)
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Feb 28 2025 11:49:51 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.