Messagelib

searchlinecommandwidget.h
1/*
2 SPDX-FileCopyrightText: 2024 Laurent Montel <montel@kde.org>
3
4 SPDX-License-Identifier: GPL-2.0-or-later
5*/
6#pragma once
7
8#include "messagelist_private_export.h"
9#include <QWidget>
10class QLabel;
11namespace MessageList
12{
13namespace Core
14{
15class SearchLineCommandButtonsWidget;
16class MESSAGELIST_TESTS_EXPORT SearchLineCommandWidget : public QWidget
17{
18 Q_OBJECT
19public:
20 explicit SearchLineCommandWidget(QWidget *parent = nullptr);
21 ~SearchLineCommandWidget() override;
22
23 void setLabel(const QString &str);
24Q_SIGNALS:
25 void insertCommand(const QString &commandStr);
26
27private:
28 SearchLineCommandButtonsWidget *const mSearchLineCommandButtonsWidget;
29 QLabel *const mLabel;
30};
31}
32}
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Mon Nov 4 2024 16:33:26 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.