okular/core/chooseenginedialog_p.h

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
#include <QtCore/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 = 0 );
~ChooseEngineDialog();
int selectedGenerator() const;
protected:
Ui_ChooseEngineWidget * m_widget;
};
#endif