mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
ed2872074e
This is the easiest way to transition to Qt5.
62 lines
1.6 KiB
C++
62 lines
1.6 KiB
C++
//
|
|
// Copyright (C) 1998-2005 Matthias Hoelzer
|
|
// email: hoelzer@physik.uni-wuerzburg.de
|
|
//
|
|
// 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.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the7 implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program; if not, write to the Free Software
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
//
|
|
#include "klistboxdialog.h"
|
|
#include "klistboxdialog.moc"
|
|
|
|
#include <QLabel>
|
|
#include <kvbox.h>
|
|
|
|
#include "klocale.h"
|
|
|
|
KListBoxDialog::KListBoxDialog(const QString &text, QWidget *parent)
|
|
: KDialog( parent )
|
|
{
|
|
setModal(true);
|
|
setButtons( Ok | Cancel );
|
|
|
|
KVBox *page = new KVBox(this);
|
|
setMainWidget(page);
|
|
|
|
label = new QLabel(text, page);
|
|
label->setAlignment(Qt::AlignCenter);
|
|
|
|
table = new QListWidget(page);
|
|
table->setFocus();
|
|
}
|
|
|
|
void KListBoxDialog::insertItem(const QString& item)
|
|
{
|
|
table->addItem(item);
|
|
table->setCurrentItem(0);
|
|
}
|
|
|
|
void KListBoxDialog::setCurrentItem(const QString& item)
|
|
{
|
|
for ( int i=0; i < (int) table->count(); i++ ) {
|
|
if ( table->item(i)->text() == item ) {
|
|
table->setCurrentItem(table->item(i));
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
int KListBoxDialog::currentItem() const
|
|
{
|
|
return table->currentRow();
|
|
}
|