Pimcommon

customtoolsviewinterface.h
1 /*
2  SPDX-FileCopyrightText: 2015-2023 Laurent Montel <[email protected]>
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>
12 class KToggleAction;
13 namespace PimCommon
14 {
15 /**
16  * @brief The CustomToolsViewInterface class
17  * @author Laurent Montel <[email protected]>
18  */
19 class PIMCOMMON_EXPORT CustomToolsViewInterface : public QWidget
20 {
21  Q_OBJECT
22 public:
23  explicit CustomToolsViewInterface(QWidget *parent = nullptr);
24  ~CustomToolsViewInterface() override;
25 
26  virtual void setText(const QString &text);
27  virtual KToggleAction *action() const;
28 
29 Q_SIGNALS:
30  void insertText(const QString &text);
31  void toolsWasClosed();
32  void activateView(QWidget *);
33  void configure(QWidget *parent);
34 };
35 }
folderdialogacltab.h
The CustomToolsViewInterface class.
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Thu Sep 28 2023 04:00:31 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.