okular/core/chooseenginedialog_p.h

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

35 lines
1.1 KiB
C
Raw Normal View History

/***************************************************************************
* Copyright (C) 2006 by Pino Toscano <toscano.pino@tiscali.it> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#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