okular/core/chooseenginedialog_p.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
585 B
C
Raw Permalink Normal View History

2021-05-24 07:25:56 +00:00
/*
SPDX-FileCopyrightText: 2006 Pino Toscano <toscano.pino@tiscali.it>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef _CHOOSEENGINEDIALOG_H
#define _CHOOSEENGINEDIALOG_H
2018-08-31 09:23:45 +00:00
#include <QStringList>
2014-10-06 05:39:24 +00:00
#include <QDialog>
#include <QMimeType>
class Ui_ChooseEngineWidget;
2014-10-06 05:39:24 +00:00
class ChooseEngineDialog : public QDialog
{
2016-10-29 14:32:24 +00:00
Q_OBJECT
public:
ChooseEngineDialog(const QStringList &generators, const QMimeType &mime, QWidget *parent = nullptr);
~ChooseEngineDialog() override;
int selectedGenerator() const;
protected:
Ui_ChooseEngineWidget *m_widget;
};
#endif