blob: 0072391fab635e0a6b1c842b2dd0c204f6386bb7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef KINPUTDIALOG_H
#define KINPUTDIALOG_H
#include <qstring.h>
#include <qstringlist.h>
class KInputDialog
{
public:
static QString getItem( const QString &caption, const QString &label,
const QStringList &items, int current,
bool editable );
};
#endif
|