File indexing completed on 2024-04-28 03:42:10

0001 /*
0002     This file is part of Kiten, a KDE Japanese Reference Tool...
0003     SPDX-FileCopyrightText: 2023 Joshua Goins <josh@redstrate.com>
0004 
0005     SPDX-License-Identifier: GPL-2.0-or-later
0006 */
0007 
0008 #ifndef SEARCHDIALOG_H
0009 #define SEARCHDIALOG_H
0010 
0011 #include "ui_searchdialog.h" //From the UI file
0012 
0013 #include <QWidget>
0014 
0015 class SearchDialog : public QDialog, public Ui::SearchDialog
0016 {
0017     Q_OBJECT
0018 
0019 public:
0020     explicit SearchDialog(QWidget *parent = nullptr);
0021 
0022 Q_SIGNALS:
0023     void search(const QString &query);
0024 };
0025 
0026 #endif