* implement max lengths for input dialogs that are sent to the server * missed a double setMaxLength * implement max string lengths server side * add custom getText dialog with max length * fix deck storage tab and miscellaneous server side * add max size for deck uploads * final pass on client side limits
28 lines
644 B
C++
28 lines
644 B
C++
|
|
#ifndef CUSTOMLINEEDIT_H
|
|
#define CUSTOMLINEEDIT_H
|
|
|
|
#include <QLineEdit>
|
|
|
|
class QKeyEvent;
|
|
class QWidget;
|
|
class QString;
|
|
|
|
// Should be used when the there is a risk of conflict between line editor
|
|
// shortcuts and other shortcuts
|
|
class LineEditUnfocusable : public QLineEdit
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit LineEditUnfocusable(QWidget *parent = nullptr);
|
|
explicit LineEditUnfocusable(const QString &contents, QWidget *parent = nullptr);
|
|
|
|
private:
|
|
static bool isUnfocusShortcut(QKeyEvent *key);
|
|
|
|
protected:
|
|
void keyPressEvent(QKeyEvent *event) override;
|
|
bool eventFilter(QObject *watched, QEvent *event) override;
|
|
};
|
|
|
|
#endif
|