mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-14 06:22:15 -07:00
28 lines
977 B
C
28 lines
977 B
C
/**
|
|
* @file get_text_with_max.h
|
|
* @ingroup UI
|
|
* @brief Custom QInputDialog::getText implementation that allows configuration of the max length
|
|
*/
|
|
|
|
#ifndef GETTEXTWITHMAX_H
|
|
#define GETTEXTWITHMAX_H
|
|
|
|
#include "trice_limits.h"
|
|
|
|
#include <QInputDialog>
|
|
|
|
QString getTextWithMax(QWidget *parent,
|
|
const QString &title,
|
|
const QString &label,
|
|
QLineEdit::EchoMode echo = QLineEdit::Normal,
|
|
const QString &text = QString(),
|
|
bool *ok = nullptr,
|
|
int max = MAX_NAME_LENGTH,
|
|
Qt::WindowFlags flags = Qt::WindowFlags(),
|
|
Qt::InputMethodHints inputMethodHints = Qt::ImhNone);
|
|
static inline QString getTextWithMax(QWidget *parent, const QString &title, const QString &label, int max)
|
|
{
|
|
return getTextWithMax(parent, title, label, QLineEdit::Normal, QString(), nullptr, max);
|
|
}
|
|
|
|
#endif // GETTEXTWITHMAX_H
|