You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
585 B
31 lines
585 B
/* |
|
SPDX-FileCopyrightText: 2006 Pino Toscano <toscano.pino@tiscali.it> |
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later |
|
*/ |
|
|
|
#ifndef _CHOOSEENGINEDIALOG_H |
|
#define _CHOOSEENGINEDIALOG_H |
|
|
|
#include <QStringList> |
|
|
|
#include <QDialog> |
|
#include <QMimeType> |
|
|
|
class Ui_ChooseEngineWidget; |
|
|
|
class ChooseEngineDialog : public QDialog |
|
{ |
|
Q_OBJECT |
|
|
|
public: |
|
ChooseEngineDialog(const QStringList &generators, const QMimeType &mime, QWidget *parent = nullptr); |
|
~ChooseEngineDialog() override; |
|
|
|
int selectedGenerator() const; |
|
|
|
protected: |
|
Ui_ChooseEngineWidget *m_widget; |
|
}; |
|
|
|
#endif
|
|
|