File indexing completed on 2025-02-09 06:59:04
0001 /*************************************************************************** 0002 * Copyright (C) 2020 by Friedrich W. H. Kossebau - kossebau@kde.org * 0003 * * 0004 * This program is free software; you can redistribute it and/or modify * 0005 * it under the terms of the GNU General Public License as published by * 0006 * the Free Software Foundation; either version 2 of the License, or * 0007 * (at your option) any later version. * 0008 ***************************************************************************/ 0009 0010 #ifndef INPUTDIALOG_H 0011 #define INPUTDIALOG_H 0012 0013 class QString; 0014 class QValidator; 0015 class QWidget; 0016 0017 namespace InputDialog 0018 { 0019 QString getText(const QString &windowTitle, const QString &labelText, const QString &value, bool *ok, QWidget *parent, QValidator *validator); 0020 0021 } 0022 0023 #endif