okular/core/chooseenginedialog.cpp
Pino Toscano 2599329b64 Port to the new KDialog / KPageDialog API
svn path=/branches/work/kde4/playground/graphics/okular/; revision=550945
2006-06-13 08:45:56 +00:00

39 lines
1.4 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. *
***************************************************************************/
#include <qcombobox.h>
#include <qlabel.h>
#include <klocale.h>
#include "ui_chooseenginewidget.h"
#include "chooseenginedialog.h"
ChooseEngineDialog::ChooseEngineDialog( const QStringList &generators, const QString &mime, QWidget * parent )
: KDialog( parent )
{
setCaption( i18n( "Generator Selection" ) );
setButtons( Ok | Cancel );
QWidget *main = new QWidget( this );
setMainWidget( main );
m_widget = new Ui_ChooseEngineWidget();
m_widget->setupUi( main );
m_widget->engineList->addItems(generators);
m_widget->description->setText(
i18n("More than one generator found for mimetype \"%1\", please select which one to use:", mime)
);
}
int ChooseEngineDialog::selectedGenerator() const
{
return m_widget->engineList->currentIndex();
}