File indexing completed on 2024-04-21 04:39:57

0001 /*
0002     SPDX-FileCopyrightText: 2010 Sebastian Trueg <trueg@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #ifndef TAGWIDGETTEST_H
0008 #define TAGWIDGETTEST_H
0009 
0010 #include "tagwidget.h"
0011 #include <QWidget>
0012 
0013 class TagWidgetTest : public QWidget
0014 {
0015     Q_OBJECT
0016 
0017 public:
0018     TagWidgetTest();
0019     ~TagWidgetTest() override;
0020 
0021 private Q_SLOTS:
0022     void slotTagClicked(const QString &);
0023     void slotSelectionChanged(const QStringList &tags);
0024 
0025     void alignRight(bool enable);
0026 
0027 private:
0028     Baloo::TagWidget *m_tagWidget;
0029 };
0030 
0031 #endif