okular/core/chooseenginedialog.h
Pino Toscano cbeaf3298b Port the ChooseEngineDialog to KDialog and Qt4.
Fix a compilation error introduced by my previous commit.

svn path=/branches/work/kde4/playground/graphics/okular/; revision=524596
2006-03-30 18:06:18 +00:00

31 lines
1 KiB
C++

/***************************************************************************
* 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 <qstringlist.h>
#include <kdialog.h>
class Ui_ChooseEngineWidget;
class ChooseEngineDialog : public KDialog
{
public:
ChooseEngineDialog( const QStringList &generators, const QString &mime, QWidget * parent = 0 );
int selectedGenerator() const;
protected:
Ui_ChooseEngineWidget * m_widget;
};
#endif