2014-05-30 12:53:19 +04:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2014-12-01 13:47:38 +03:00
|
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
2014-05-30 12:53:19 +04:00
|
|
|
|
|
|
|
Telegram Desktop 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 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
It is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
2015-10-03 16:16:42 +03:00
|
|
|
In addition, as a special exception, the copyright holders give permission
|
|
|
|
to link the code of portions of this program with the OpenSSL library.
|
|
|
|
|
2014-05-30 12:53:19 +04:00
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2016-02-08 13:56:18 +03:00
|
|
|
Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org
|
2014-05-30 12:53:19 +04:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2016-11-15 14:56:49 +03:00
|
|
|
#include "styles/style_widgets.h"
|
|
|
|
|
|
|
|
class UserData;
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
|
|
|
|
static UserData * const LookingUpInlineBot = SharedMemoryLocation<UserData, 0>();
|
|
|
|
|
|
|
|
class FlatTextarea : public QTextEdit {
|
|
|
|
Q_OBJECT
|
|
|
|
T_WIDGET
|
|
|
|
|
|
|
|
public:
|
|
|
|
using TagList = TextWithTags::Tags;
|
|
|
|
|
|
|
|
static QByteArray serializeTagsList(const TagList &tags);
|
|
|
|
static TagList deserializeTagsList(QByteArray data, int textLength);
|
|
|
|
static QString tagsMimeType();
|
|
|
|
|
|
|
|
FlatTextarea(QWidget *parent, const style::FlatTextarea &st, const QString &ph = QString(), const QString &val = QString(), const TagList &tags = TagList());
|
|
|
|
|
|
|
|
void setMaxLength(int32 maxLength);
|
|
|
|
void setMinHeight(int32 minHeight);
|
|
|
|
void setMaxHeight(int32 maxHeight);
|
|
|
|
|
|
|
|
void setPlaceholder(const QString &ph, int32 afterSymbols = 0);
|
|
|
|
void updatePlaceholder();
|
|
|
|
void finishPlaceholder();
|
|
|
|
|
|
|
|
QRect getTextRect() const;
|
|
|
|
int32 fakeMargin() const;
|
|
|
|
|
|
|
|
void step_appearance(float64 ms, bool timer);
|
|
|
|
|
|
|
|
QSize sizeHint() const override;
|
|
|
|
QSize minimumSizeHint() const override;
|
|
|
|
|
|
|
|
EmojiPtr getSingleEmoji() const;
|
|
|
|
QString getMentionHashtagBotCommandPart(bool &start) const;
|
|
|
|
|
|
|
|
// Get the current inline bot and request string for it.
|
|
|
|
// The *outInlineBot can be filled by LookingUpInlineBot shared ptr.
|
|
|
|
// In that case the caller should lookup the bot by *outInlineBotUsername.
|
|
|
|
QString getInlineBotQuery(UserData **outInlineBot, QString *outInlineBotUsername) const;
|
|
|
|
|
|
|
|
void removeSingleEmoji();
|
|
|
|
bool hasText() const;
|
|
|
|
|
|
|
|
bool isUndoAvailable() const;
|
|
|
|
bool isRedoAvailable() const;
|
|
|
|
|
|
|
|
void parseLinks();
|
|
|
|
QStringList linksList() const;
|
|
|
|
|
|
|
|
void insertFromMimeData(const QMimeData *source) override;
|
|
|
|
|
|
|
|
QMimeData *createMimeDataFromSelection() const override;
|
|
|
|
|
|
|
|
enum class SubmitSettings {
|
|
|
|
None,
|
|
|
|
Enter,
|
|
|
|
CtrlEnter,
|
|
|
|
Both,
|
|
|
|
};
|
|
|
|
void setSubmitSettings(SubmitSettings settings);
|
|
|
|
|
|
|
|
const TextWithTags &getTextWithTags() const {
|
|
|
|
return _lastTextWithTags;
|
|
|
|
}
|
|
|
|
TextWithTags getTextWithTagsPart(int start, int end = -1);
|
|
|
|
void insertTag(const QString &text, QString tagId = QString());
|
|
|
|
|
|
|
|
bool isEmpty() const {
|
|
|
|
return _lastTextWithTags.text.isEmpty();
|
|
|
|
}
|
|
|
|
|
|
|
|
enum UndoHistoryAction {
|
|
|
|
AddToUndoHistory,
|
|
|
|
MergeWithUndoHistory,
|
|
|
|
ClearUndoHistory
|
|
|
|
};
|
|
|
|
void setTextWithTags(const TextWithTags &textWithTags, UndoHistoryAction undoHistoryAction = AddToUndoHistory);
|
|
|
|
|
|
|
|
// If you need to make some preparations of tags before putting them to QMimeData
|
|
|
|
// (and then to clipboard or to drag-n-drop object), here is a strategy for that.
|
|
|
|
class TagMimeProcessor {
|
|
|
|
public:
|
|
|
|
virtual QString mimeTagFromTag(const QString &tagId) = 0;
|
|
|
|
virtual QString tagFromMimeTag(const QString &mimeTag) = 0;
|
|
|
|
virtual ~TagMimeProcessor() {
|
|
|
|
}
|
|
|
|
};
|
|
|
|
void setTagMimeProcessor(std_::unique_ptr<TagMimeProcessor> &&processor);
|
|
|
|
|
2016-11-24 22:28:23 +03:00
|
|
|
public slots:
|
2016-11-15 14:56:49 +03:00
|
|
|
void onTouchTimer();
|
|
|
|
|
|
|
|
void onDocumentContentsChange(int position, int charsRemoved, int charsAdded);
|
|
|
|
void onDocumentContentsChanged();
|
|
|
|
|
|
|
|
void onUndoAvailable(bool avail);
|
|
|
|
void onRedoAvailable(bool avail);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void resized();
|
|
|
|
void changed();
|
|
|
|
void submitted(bool ctrlShiftEnter);
|
|
|
|
void cancelled();
|
|
|
|
void tabbed();
|
|
|
|
void spacedReturnedPasted();
|
|
|
|
void linksChanged();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void enterEventHook(QEvent *e) {
|
|
|
|
return QTextEdit::enterEvent(e);
|
|
|
|
}
|
|
|
|
void leaveEventHook(QEvent *e) {
|
|
|
|
return QTextEdit::leaveEvent(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool viewportEvent(QEvent *e) override;
|
|
|
|
void touchEvent(QTouchEvent *e);
|
|
|
|
void paintEvent(QPaintEvent *e) override;
|
|
|
|
void focusInEvent(QFocusEvent *e) override;
|
|
|
|
void focusOutEvent(QFocusEvent *e) override;
|
|
|
|
void keyPressEvent(QKeyEvent *e) override;
|
|
|
|
void resizeEvent(QResizeEvent *e) override;
|
|
|
|
void mousePressEvent(QMouseEvent *e) override;
|
|
|
|
void dropEvent(QDropEvent *e) override;
|
|
|
|
void contextMenuEvent(QContextMenuEvent *e) override;
|
|
|
|
|
|
|
|
virtual void correctValue(const QString &was, QString &now, TagList &nowTags) {
|
|
|
|
}
|
|
|
|
|
|
|
|
void insertEmoji(EmojiPtr emoji, QTextCursor c);
|
|
|
|
|
|
|
|
QVariant loadResource(int type, const QUrl &name) override;
|
|
|
|
|
|
|
|
void checkContentHeight();
|
|
|
|
|
|
|
|
private:
|
|
|
|
// "start" and "end" are in coordinates of text where emoji are replaced
|
|
|
|
// by ObjectReplacementCharacter. If "end" = -1 means get text till the end.
|
|
|
|
QString getTextPart(int start, int end, TagList *outTagsList, bool *outTagsChanged = nullptr) const;
|
|
|
|
|
|
|
|
void getSingleEmojiFragment(QString &text, QTextFragment &fragment) const;
|
|
|
|
|
|
|
|
// After any characters added we must postprocess them. This includes:
|
|
|
|
// 1. Replacing font family to semibold for ~ characters, if we used Open Sans 13px.
|
|
|
|
// 2. Replacing font family from semibold for all non-~ characters, if we used ...
|
|
|
|
// 3. Replacing emoji code sequences by ObjectReplacementCharacters with emoji pics.
|
|
|
|
// 4. Interrupting tags in which the text was inserted by any char except a letter.
|
|
|
|
// 5. Applying tags from "_insertedTags" in case we pasted text with tags, not just text.
|
|
|
|
// Rule 4 applies only if we inserted chars not in the middle of a tag (but at the end).
|
|
|
|
void processFormatting(int changedPosition, int changedEnd);
|
|
|
|
|
|
|
|
bool heightAutoupdated();
|
|
|
|
|
|
|
|
int placeholderSkipWidth() const;
|
|
|
|
|
|
|
|
int _minHeight = -1; // < 0 - no autosize
|
|
|
|
int _maxHeight = -1;
|
|
|
|
int _maxLength = -1;
|
|
|
|
SubmitSettings _submitSettings = SubmitSettings::Enter;
|
|
|
|
|
|
|
|
QString _ph, _phelided;
|
|
|
|
int _phAfter = 0;
|
|
|
|
bool _phVisible;
|
|
|
|
anim::ivalue a_phLeft;
|
|
|
|
anim::fvalue a_phAlpha;
|
|
|
|
anim::fvalue a_phColorFocused;
|
|
|
|
Animation _a_appearance;
|
|
|
|
|
|
|
|
TextWithTags _lastTextWithTags;
|
|
|
|
|
|
|
|
// Tags list which we should apply while setText() call or insert from mime data.
|
|
|
|
TagList _insertedTags;
|
|
|
|
bool _insertedTagsAreFromMime;
|
|
|
|
|
|
|
|
// Override insert position and charsAdded from complex text editing
|
|
|
|
// (like drag-n-drop in the same text edit field).
|
|
|
|
int _realInsertPosition = -1;
|
|
|
|
int _realCharsAdded = 0;
|
|
|
|
|
|
|
|
std_::unique_ptr<TagMimeProcessor> _tagMimeProcessor;
|
|
|
|
|
|
|
|
const style::FlatTextarea &_st;
|
|
|
|
|
|
|
|
bool _undoAvailable = false;
|
|
|
|
bool _redoAvailable = false;
|
|
|
|
bool _inDrop = false;
|
|
|
|
bool _inHeightCheck = false;
|
|
|
|
|
|
|
|
int _fakeMargin = 0;
|
|
|
|
|
|
|
|
QTimer _touchTimer;
|
|
|
|
bool _touchPress = false;
|
|
|
|
bool _touchRightButton = false;
|
|
|
|
bool _touchMove = false;
|
|
|
|
QPoint _touchStart;
|
|
|
|
|
|
|
|
bool _correcting = false;
|
|
|
|
|
|
|
|
struct LinkRange {
|
|
|
|
int start;
|
|
|
|
int length;
|
|
|
|
};
|
|
|
|
friend bool operator==(const LinkRange &a, const LinkRange &b);
|
|
|
|
friend bool operator!=(const LinkRange &a, const LinkRange &b);
|
|
|
|
using LinkRanges = QVector<LinkRange>;
|
|
|
|
LinkRanges _links;
|
|
|
|
};
|
|
|
|
|
|
|
|
inline bool operator==(const FlatTextarea::LinkRange &a, const FlatTextarea::LinkRange &b) {
|
|
|
|
return (a.start == b.start) && (a.length == b.length);
|
|
|
|
}
|
|
|
|
inline bool operator!=(const FlatTextarea::LinkRange &a, const FlatTextarea::LinkRange &b) {
|
|
|
|
return !(a == b);
|
|
|
|
}
|
2014-05-30 12:53:19 +04:00
|
|
|
|
2015-12-08 15:33:37 +03:00
|
|
|
class FlatInput : public QLineEdit {
|
2014-05-30 12:53:19 +04:00
|
|
|
Q_OBJECT
|
2015-09-16 16:04:08 +03:00
|
|
|
T_WIDGET
|
2014-05-30 12:53:19 +04:00
|
|
|
|
|
|
|
public:
|
2016-11-15 14:56:49 +03:00
|
|
|
FlatInput(QWidget *parent, const style::FlatInput &st, const QString &ph = QString(), const QString &val = QString());
|
2014-05-30 12:53:19 +04:00
|
|
|
|
|
|
|
void notaBene();
|
|
|
|
|
2015-07-21 16:55:23 +02:00
|
|
|
void setPlaceholder(const QString &ph);
|
|
|
|
void setPlaceholderFast(bool fast);
|
2014-05-30 12:53:19 +04:00
|
|
|
void updatePlaceholder();
|
2015-07-21 16:55:23 +02:00
|
|
|
const QString &placeholder() const;
|
|
|
|
QRect placeholderRect() const;
|
2014-05-30 12:53:19 +04:00
|
|
|
|
|
|
|
QRect getTextRect() const;
|
|
|
|
|
2015-12-08 15:33:37 +03:00
|
|
|
void step_appearance(float64 ms, bool timer);
|
2014-05-30 12:53:19 +04:00
|
|
|
|
2016-04-14 16:03:03 +03:00
|
|
|
QSize sizeHint() const override;
|
|
|
|
QSize minimumSizeHint() const override;
|
2014-05-30 12:53:19 +04:00
|
|
|
|
2014-06-20 11:06:21 +04:00
|
|
|
void customUpDown(bool isCustom);
|
2015-10-06 22:49:23 +03:00
|
|
|
const QString &getLastText() const {
|
|
|
|
return _oldtext;
|
2015-09-03 16:15:07 +03:00
|
|
|
}
|
2014-06-20 11:06:21 +04:00
|
|
|
|
2016-11-24 22:28:23 +03:00
|
|
|
public slots:
|
2014-05-30 12:53:19 +04:00
|
|
|
void onTextChange(const QString &text);
|
|
|
|
void onTextEdited();
|
|
|
|
|
|
|
|
void onTouchTimer();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void changed();
|
|
|
|
void cancelled();
|
2015-10-06 22:49:23 +03:00
|
|
|
void submitted(bool ctrlShiftEnter);
|
2014-05-30 12:53:19 +04:00
|
|
|
void focused();
|
|
|
|
void blurred();
|
|
|
|
|
|
|
|
protected:
|
2016-06-15 20:13:46 +03:00
|
|
|
void enterEventHook(QEvent *e) {
|
|
|
|
return QLineEdit::enterEvent(e);
|
|
|
|
}
|
|
|
|
void leaveEventHook(QEvent *e) {
|
|
|
|
return QLineEdit::leaveEvent(e);
|
|
|
|
}
|
2014-05-30 12:53:19 +04:00
|
|
|
|
2016-10-18 13:32:33 +03:00
|
|
|
bool event(QEvent *e) override;
|
|
|
|
void touchEvent(QTouchEvent *e);
|
|
|
|
void paintEvent(QPaintEvent *e) override;
|
|
|
|
void focusInEvent(QFocusEvent *e) override;
|
|
|
|
void focusOutEvent(QFocusEvent *e) override;
|
|
|
|
void keyPressEvent(QKeyEvent *e) override;
|
|
|
|
void resizeEvent(QResizeEvent *e) override;
|
|
|
|
void contextMenuEvent(QContextMenuEvent *e) override;
|
|
|
|
|
2015-10-06 22:49:23 +03:00
|
|
|
virtual void correctValue(const QString &was, QString &now);
|
2014-05-30 12:53:19 +04:00
|
|
|
|
2015-07-21 16:55:23 +02:00
|
|
|
style::font phFont() {
|
|
|
|
return _st.font;
|
|
|
|
}
|
|
|
|
|
|
|
|
void phPrepare(Painter &p);
|
|
|
|
|
2014-05-30 12:53:19 +04:00
|
|
|
private:
|
2016-10-18 13:32:33 +03:00
|
|
|
void updatePlaceholderText();
|
2014-05-30 12:53:19 +04:00
|
|
|
|
2015-10-06 22:49:23 +03:00
|
|
|
QString _oldtext, _ph, _fullph;
|
2015-07-21 16:55:23 +02:00
|
|
|
bool _fastph;
|
2014-05-30 12:53:19 +04:00
|
|
|
|
2014-06-20 11:06:21 +04:00
|
|
|
bool _customUpDown;
|
|
|
|
|
2014-05-30 12:53:19 +04:00
|
|
|
bool _phVisible;
|
|
|
|
anim::ivalue a_phLeft;
|
|
|
|
anim::fvalue a_phAlpha;
|
2016-11-07 14:24:19 +03:00
|
|
|
anim::fvalue a_phColorFocus;
|
|
|
|
anim::fvalue a_borderColorActive;
|
|
|
|
anim::fvalue a_borderColorError;
|
|
|
|
anim::fvalue a_bgColorActive;
|
2015-12-08 15:33:37 +03:00
|
|
|
Animation _a_appearance;
|
2014-05-30 12:53:19 +04:00
|
|
|
|
|
|
|
int _notingBene;
|
2016-11-15 14:56:49 +03:00
|
|
|
const style::FlatInput &_st;
|
2014-05-30 12:53:19 +04:00
|
|
|
|
|
|
|
QTimer _touchTimer;
|
|
|
|
bool _touchPress, _touchRightButton, _touchMove;
|
|
|
|
QPoint _touchStart;
|
|
|
|
};
|
2015-06-19 20:04:09 +03:00
|
|
|
|
2015-10-23 18:06:56 +02:00
|
|
|
enum CtrlEnterSubmit {
|
|
|
|
CtrlEnterSubmitEnter,
|
|
|
|
CtrlEnterSubmitCtrlEnter,
|
|
|
|
CtrlEnterSubmitBoth,
|
|
|
|
};
|
|
|
|
|
2015-10-06 22:49:23 +03:00
|
|
|
class InputArea : public TWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
InputArea(QWidget *parent, const style::InputArea &st, const QString &ph = QString(), const QString &val = QString());
|
|
|
|
|
|
|
|
void showError();
|
|
|
|
|
|
|
|
void setMaxLength(int32 maxLength) {
|
|
|
|
_maxLength = maxLength;
|
|
|
|
}
|
|
|
|
|
|
|
|
const QString &getLastText() const {
|
|
|
|
return _oldtext;
|
|
|
|
}
|
|
|
|
void updatePlaceholder();
|
|
|
|
|
2015-12-08 15:33:37 +03:00
|
|
|
void step_placeholderFg(float64 ms, bool timer);
|
|
|
|
void step_placeholderShift(float64 ms, bool timer);
|
|
|
|
void step_border(float64 ms, bool timer);
|
2015-10-06 22:49:23 +03:00
|
|
|
|
2016-10-22 17:35:37 +03:00
|
|
|
QSize sizeHint() const override;
|
|
|
|
QSize minimumSizeHint() const override;
|
2015-10-06 22:49:23 +03:00
|
|
|
|
|
|
|
QString getText(int32 start = 0, int32 end = -1) const;
|
|
|
|
bool hasText() const;
|
|
|
|
|
|
|
|
bool isUndoAvailable() const;
|
|
|
|
bool isRedoAvailable() const;
|
|
|
|
|
|
|
|
void customUpDown(bool isCustom);
|
2015-10-23 18:06:56 +02:00
|
|
|
void setCtrlEnterSubmit(CtrlEnterSubmit ctrlEnterSubmit);
|
2015-10-06 22:49:23 +03:00
|
|
|
|
|
|
|
void setTextCursor(const QTextCursor &cursor) {
|
|
|
|
return _inner.setTextCursor(cursor);
|
|
|
|
}
|
|
|
|
QTextCursor textCursor() const {
|
|
|
|
return _inner.textCursor();
|
|
|
|
}
|
|
|
|
void setText(const QString &text) {
|
|
|
|
_inner.setText(text);
|
|
|
|
updatePlaceholder();
|
|
|
|
}
|
|
|
|
void clear() {
|
|
|
|
_inner.clear();
|
|
|
|
updatePlaceholder();
|
|
|
|
}
|
|
|
|
bool hasFocus() const {
|
|
|
|
return _inner.hasFocus();
|
|
|
|
}
|
2016-06-24 19:43:46 +03:00
|
|
|
void setFocus() {
|
|
|
|
_inner.setFocus();
|
|
|
|
}
|
|
|
|
void clearFocus() {
|
|
|
|
_inner.clearFocus();
|
|
|
|
}
|
2015-10-06 22:49:23 +03:00
|
|
|
|
2016-11-24 22:28:23 +03:00
|
|
|
public slots:
|
2015-10-06 22:49:23 +03:00
|
|
|
void onTouchTimer();
|
|
|
|
|
|
|
|
void onDocumentContentsChange(int position, int charsRemoved, int charsAdded);
|
|
|
|
void onDocumentContentsChanged();
|
|
|
|
|
|
|
|
void onUndoAvailable(bool avail);
|
|
|
|
void onRedoAvailable(bool avail);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void changed();
|
|
|
|
void submitted(bool ctrlShiftEnter);
|
|
|
|
void cancelled();
|
|
|
|
void tabbed();
|
|
|
|
|
|
|
|
void focused();
|
|
|
|
void blurred();
|
|
|
|
void resized();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void insertEmoji(EmojiPtr emoji, QTextCursor c);
|
|
|
|
TWidget *tparent() {
|
|
|
|
return qobject_cast<TWidget*>(parentWidget());
|
|
|
|
}
|
|
|
|
const TWidget *tparent() const {
|
|
|
|
return qobject_cast<const TWidget*>(parentWidget());
|
|
|
|
}
|
|
|
|
|
2016-10-20 18:26:55 +03:00
|
|
|
void touchEvent(QTouchEvent *e);
|
|
|
|
void paintEvent(QPaintEvent *e) override;
|
|
|
|
void focusInEvent(QFocusEvent *e) override;
|
|
|
|
void mousePressEvent(QMouseEvent *e) override;
|
|
|
|
void contextMenuEvent(QContextMenuEvent *e) override;
|
|
|
|
void resizeEvent(QResizeEvent *e) override;
|
2015-10-06 22:49:23 +03:00
|
|
|
|
2016-10-20 18:26:55 +03:00
|
|
|
private:
|
2015-10-06 22:49:23 +03:00
|
|
|
int32 _maxLength;
|
|
|
|
bool heightAutoupdated();
|
|
|
|
void checkContentHeight();
|
|
|
|
|
2016-10-21 15:28:26 +03:00
|
|
|
class Inner : public QTextEdit {
|
2015-10-06 22:49:23 +03:00
|
|
|
public:
|
2016-10-21 15:28:26 +03:00
|
|
|
Inner(InputArea *parent);
|
2015-10-06 22:49:23 +03:00
|
|
|
|
2016-10-22 17:35:37 +03:00
|
|
|
QVariant loadResource(int type, const QUrl &name) override;
|
2015-10-06 22:49:23 +03:00
|
|
|
|
2016-10-20 18:26:55 +03:00
|
|
|
protected:
|
|
|
|
bool viewportEvent(QEvent *e) override;
|
|
|
|
void focusInEvent(QFocusEvent *e) override;
|
|
|
|
void focusOutEvent(QFocusEvent *e) override;
|
|
|
|
void keyPressEvent(QKeyEvent *e) override;
|
|
|
|
void paintEvent(QPaintEvent *e) override;
|
|
|
|
void contextMenuEvent(QContextMenuEvent *e) override;
|
2015-10-06 22:49:23 +03:00
|
|
|
|
2016-10-20 18:26:55 +03:00
|
|
|
QMimeData *createMimeDataFromSelection() const override;
|
2015-10-06 22:49:23 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
InputArea *f() const {
|
|
|
|
return static_cast<InputArea*>(parentWidget());
|
|
|
|
}
|
|
|
|
friend class InputArea;
|
2016-10-20 18:26:55 +03:00
|
|
|
|
2015-10-06 22:49:23 +03:00
|
|
|
};
|
2016-10-21 15:28:26 +03:00
|
|
|
friend class Inner;
|
2015-10-06 22:49:23 +03:00
|
|
|
|
|
|
|
void focusInInner();
|
|
|
|
void focusOutInner();
|
|
|
|
|
|
|
|
void processDocumentContentsChange(int position, int charsAdded);
|
|
|
|
|
|
|
|
void startBorderAnimation();
|
|
|
|
|
2016-10-21 15:28:26 +03:00
|
|
|
Inner _inner;
|
2015-10-06 22:49:23 +03:00
|
|
|
|
|
|
|
QString _oldtext;
|
|
|
|
|
2015-10-23 18:06:56 +02:00
|
|
|
CtrlEnterSubmit _ctrlEnterSubmit;
|
|
|
|
bool _undoAvailable, _redoAvailable, _inHeightCheck;
|
2015-10-06 22:49:23 +03:00
|
|
|
|
|
|
|
bool _customUpDown;
|
|
|
|
|
|
|
|
QString _placeholder, _placeholderFull;
|
|
|
|
bool _placeholderVisible;
|
|
|
|
anim::ivalue a_placeholderLeft;
|
|
|
|
anim::fvalue a_placeholderOpacity;
|
2016-11-07 14:24:19 +03:00
|
|
|
anim::fvalue a_placeholderFgActive;
|
2015-10-06 22:49:23 +03:00
|
|
|
Animation _a_placeholderFg, _a_placeholderShift;
|
|
|
|
|
|
|
|
anim::fvalue a_borderOpacityActive;
|
2016-11-07 14:24:19 +03:00
|
|
|
anim::fvalue a_borderFgActive;
|
|
|
|
anim::fvalue a_borderFgError;
|
2015-10-06 22:49:23 +03:00
|
|
|
Animation _a_border;
|
|
|
|
|
|
|
|
bool _focused, _error;
|
|
|
|
|
|
|
|
const style::InputArea &_st;
|
|
|
|
|
|
|
|
QTimer _touchTimer;
|
|
|
|
bool _touchPress, _touchRightButton, _touchMove;
|
|
|
|
QPoint _touchStart;
|
|
|
|
|
|
|
|
bool _correcting;
|
2016-10-20 18:26:55 +03:00
|
|
|
|
2015-10-06 22:49:23 +03:00
|
|
|
};
|
|
|
|
|
2015-08-18 22:37:57 +03:00
|
|
|
class InputField : public TWidget {
|
2015-06-19 20:04:09 +03:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
InputField(QWidget *parent, const style::InputField &st, const QString &ph = QString(), const QString &val = QString());
|
|
|
|
|
2015-10-11 10:37:24 +02:00
|
|
|
void setMaxLength(int32 maxLength) {
|
|
|
|
_maxLength = maxLength;
|
|
|
|
}
|
|
|
|
|
2015-10-06 22:49:23 +03:00
|
|
|
void showError();
|
2015-06-19 20:04:09 +03:00
|
|
|
|
2015-10-06 22:49:23 +03:00
|
|
|
const QString &getLastText() const {
|
|
|
|
return _oldtext;
|
|
|
|
}
|
|
|
|
void updatePlaceholder();
|
2016-10-20 18:26:55 +03:00
|
|
|
void setPlaceholderHidden(bool forcePlaceholderHidden);
|
2016-10-22 16:03:20 +03:00
|
|
|
void finishPlaceholderAnimation();
|
2015-06-19 20:04:09 +03:00
|
|
|
|
2015-12-08 15:33:37 +03:00
|
|
|
void step_placeholderFg(float64 ms, bool timer);
|
|
|
|
void step_placeholderShift(float64 ms, bool timer);
|
|
|
|
void step_border(float64 ms, bool timer);
|
2015-06-19 20:04:09 +03:00
|
|
|
|
2016-10-22 17:35:37 +03:00
|
|
|
QSize sizeHint() const override;
|
|
|
|
QSize minimumSizeHint() const override;
|
2015-06-19 20:04:09 +03:00
|
|
|
|
2015-08-18 19:10:01 +03:00
|
|
|
QString getText(int32 start = 0, int32 end = -1) const;
|
|
|
|
bool hasText() const;
|
2015-06-19 20:04:09 +03:00
|
|
|
|
2015-08-18 19:10:01 +03:00
|
|
|
bool isUndoAvailable() const;
|
|
|
|
bool isRedoAvailable() const;
|
2015-06-19 20:04:09 +03:00
|
|
|
|
2015-08-18 19:10:01 +03:00
|
|
|
void customUpDown(bool isCustom);
|
|
|
|
|
2015-08-18 22:37:57 +03:00
|
|
|
void setTextCursor(const QTextCursor &cursor) {
|
|
|
|
return _inner.setTextCursor(cursor);
|
|
|
|
}
|
|
|
|
QTextCursor textCursor() const {
|
|
|
|
return _inner.textCursor();
|
|
|
|
}
|
|
|
|
void setText(const QString &text) {
|
2015-10-06 22:49:23 +03:00
|
|
|
_inner.setText(text);
|
|
|
|
updatePlaceholder();
|
2015-08-18 22:37:57 +03:00
|
|
|
}
|
|
|
|
void clear() {
|
2015-10-06 22:49:23 +03:00
|
|
|
_inner.clear();
|
|
|
|
updatePlaceholder();
|
|
|
|
}
|
|
|
|
bool hasFocus() const {
|
|
|
|
return _inner.hasFocus();
|
|
|
|
}
|
|
|
|
void setFocus() {
|
|
|
|
_inner.setFocus();
|
|
|
|
QTextCursor c(_inner.textCursor());
|
|
|
|
c.movePosition(QTextCursor::End);
|
|
|
|
_inner.setTextCursor(c);
|
|
|
|
}
|
|
|
|
void clearFocus() {
|
|
|
|
_inner.clearFocus();
|
|
|
|
}
|
|
|
|
void setCursorPosition(int pos) {
|
|
|
|
QTextCursor c(_inner.textCursor());
|
|
|
|
c.setPosition(pos);
|
|
|
|
_inner.setTextCursor(c);
|
2015-08-18 22:37:57 +03:00
|
|
|
}
|
|
|
|
|
2016-11-24 22:28:23 +03:00
|
|
|
public slots:
|
2015-06-19 20:04:09 +03:00
|
|
|
void onTouchTimer();
|
|
|
|
|
2015-08-18 19:10:01 +03:00
|
|
|
void onDocumentContentsChange(int position, int charsRemoved, int charsAdded);
|
|
|
|
void onDocumentContentsChanged();
|
|
|
|
|
|
|
|
void onUndoAvailable(bool avail);
|
|
|
|
void onRedoAvailable(bool avail);
|
|
|
|
|
2015-10-11 10:37:24 +02:00
|
|
|
void selectAll();
|
|
|
|
|
2015-06-19 20:04:09 +03:00
|
|
|
signals:
|
|
|
|
void changed();
|
2015-08-18 19:10:01 +03:00
|
|
|
void submitted(bool ctrlShiftEnter);
|
2015-06-19 20:04:09 +03:00
|
|
|
void cancelled();
|
2015-08-18 19:10:01 +03:00
|
|
|
void tabbed();
|
|
|
|
|
2015-06-19 20:04:09 +03:00
|
|
|
void focused();
|
|
|
|
void blurred();
|
|
|
|
|
|
|
|
protected:
|
2015-08-18 19:10:01 +03:00
|
|
|
void insertEmoji(EmojiPtr emoji, QTextCursor c);
|
|
|
|
TWidget *tparent() {
|
|
|
|
return qobject_cast<TWidget*>(parentWidget());
|
|
|
|
}
|
|
|
|
const TWidget *tparent() const {
|
|
|
|
return qobject_cast<const TWidget*>(parentWidget());
|
|
|
|
}
|
2015-06-19 20:04:09 +03:00
|
|
|
|
2016-10-20 18:26:55 +03:00
|
|
|
void touchEvent(QTouchEvent *e);
|
|
|
|
void paintEvent(QPaintEvent *e) override;
|
|
|
|
void focusInEvent(QFocusEvent *e) override;
|
|
|
|
void mousePressEvent(QMouseEvent *e) override;
|
|
|
|
void contextMenuEvent(QContextMenuEvent *e) override;
|
|
|
|
void resizeEvent(QResizeEvent *e) override;
|
2015-06-19 20:04:09 +03:00
|
|
|
|
2016-10-20 18:26:55 +03:00
|
|
|
private:
|
2015-10-06 22:49:23 +03:00
|
|
|
int32 _maxLength;
|
2016-10-20 18:26:55 +03:00
|
|
|
bool _forcePlaceholderHidden = false;
|
2015-10-06 22:49:23 +03:00
|
|
|
|
2016-10-21 15:28:26 +03:00
|
|
|
class Inner : public QTextEdit {
|
2015-08-18 22:37:57 +03:00
|
|
|
public:
|
2016-10-21 15:28:26 +03:00
|
|
|
Inner(InputField *parent);
|
2015-08-18 22:37:57 +03:00
|
|
|
|
2016-10-22 17:35:37 +03:00
|
|
|
QVariant loadResource(int type, const QUrl &name) override;
|
2015-08-18 22:37:57 +03:00
|
|
|
|
2016-10-20 18:26:55 +03:00
|
|
|
protected:
|
|
|
|
bool viewportEvent(QEvent *e) override;
|
|
|
|
void focusInEvent(QFocusEvent *e) override;
|
|
|
|
void focusOutEvent(QFocusEvent *e) override;
|
|
|
|
void keyPressEvent(QKeyEvent *e) override;
|
|
|
|
void paintEvent(QPaintEvent *e) override;
|
|
|
|
void contextMenuEvent(QContextMenuEvent *e) override;
|
2015-08-18 22:37:57 +03:00
|
|
|
|
2016-10-22 17:35:37 +03:00
|
|
|
QMimeData *createMimeDataFromSelection() const override;
|
|
|
|
|
2016-10-20 18:26:55 +03:00
|
|
|
private:
|
2015-08-18 22:37:57 +03:00
|
|
|
InputField *f() const {
|
|
|
|
return static_cast<InputField*>(parentWidget());
|
|
|
|
}
|
|
|
|
friend class InputField;
|
2016-10-20 18:26:55 +03:00
|
|
|
|
2015-08-18 22:37:57 +03:00
|
|
|
};
|
2016-10-21 15:28:26 +03:00
|
|
|
friend class Inner;
|
2015-10-06 22:49:23 +03:00
|
|
|
|
2015-08-18 22:37:57 +03:00
|
|
|
void focusInInner();
|
|
|
|
void focusOutInner();
|
|
|
|
|
2015-08-18 19:10:01 +03:00
|
|
|
void processDocumentContentsChange(int position, int charsAdded);
|
|
|
|
|
2015-10-06 22:49:23 +03:00
|
|
|
void startBorderAnimation();
|
|
|
|
|
2016-10-21 15:28:26 +03:00
|
|
|
Inner _inner;
|
2015-08-18 19:10:01 +03:00
|
|
|
|
2015-10-06 22:49:23 +03:00
|
|
|
QString _oldtext;
|
2015-06-19 20:04:09 +03:00
|
|
|
|
2015-08-18 19:10:01 +03:00
|
|
|
bool _undoAvailable, _redoAvailable;
|
2015-06-19 20:04:09 +03:00
|
|
|
|
2015-08-18 19:10:01 +03:00
|
|
|
bool _customUpDown;
|
2016-04-29 15:00:48 +03:00
|
|
|
|
2015-06-19 20:04:09 +03:00
|
|
|
QString _placeholder, _placeholderFull;
|
|
|
|
bool _placeholderVisible;
|
|
|
|
anim::ivalue a_placeholderLeft;
|
|
|
|
anim::fvalue a_placeholderOpacity;
|
2016-11-07 14:24:19 +03:00
|
|
|
anim::fvalue a_placeholderFgActive;
|
2015-10-06 22:49:23 +03:00
|
|
|
Animation _a_placeholderFg, _a_placeholderShift;
|
2016-04-29 15:00:48 +03:00
|
|
|
|
2015-06-19 20:04:09 +03:00
|
|
|
anim::fvalue a_borderOpacityActive;
|
2016-11-07 14:24:19 +03:00
|
|
|
anim::fvalue a_borderFgActive;
|
|
|
|
anim::fvalue a_borderFgError;
|
2015-10-06 22:49:23 +03:00
|
|
|
Animation _a_border;
|
2016-04-29 15:00:48 +03:00
|
|
|
|
2015-06-19 20:04:09 +03:00
|
|
|
bool _focused, _error;
|
2016-04-29 15:00:48 +03:00
|
|
|
|
2015-10-06 22:49:23 +03:00
|
|
|
const style::InputField &_st;
|
|
|
|
|
|
|
|
QTimer _touchTimer;
|
|
|
|
bool _touchPress, _touchRightButton, _touchMove;
|
|
|
|
QPoint _touchStart;
|
|
|
|
|
|
|
|
bool _correcting;
|
|
|
|
};
|
|
|
|
|
|
|
|
class MaskedInputField : public QLineEdit {
|
|
|
|
Q_OBJECT
|
2016-11-24 22:28:23 +03:00
|
|
|
T_WIDGET
|
2015-10-06 22:49:23 +03:00
|
|
|
|
|
|
|
public:
|
|
|
|
MaskedInputField(QWidget *parent, const style::InputField &st, const QString &placeholder = QString(), const QString &val = QString());
|
|
|
|
|
|
|
|
void showError();
|
|
|
|
|
2015-10-11 10:37:24 +02:00
|
|
|
bool setPlaceholder(const QString &ph);
|
2015-10-06 22:49:23 +03:00
|
|
|
void setPlaceholderFast(bool fast);
|
|
|
|
void updatePlaceholder();
|
|
|
|
|
|
|
|
QRect getTextRect() const;
|
|
|
|
|
2015-12-08 15:33:37 +03:00
|
|
|
void step_placeholderFg(float64 ms, bool timer);
|
|
|
|
void step_placeholderShift(float64 ms, bool timer);
|
|
|
|
void step_border(float64 ms, bool timer);
|
2015-10-06 22:49:23 +03:00
|
|
|
|
2016-04-14 16:03:03 +03:00
|
|
|
QSize sizeHint() const override;
|
|
|
|
QSize minimumSizeHint() const override;
|
2015-10-06 22:49:23 +03:00
|
|
|
|
|
|
|
void customUpDown(bool isCustom);
|
|
|
|
const QString &getLastText() const {
|
|
|
|
return _oldtext;
|
|
|
|
}
|
|
|
|
void setText(const QString &text) {
|
|
|
|
QLineEdit::setText(text);
|
|
|
|
updatePlaceholder();
|
|
|
|
}
|
|
|
|
void clear() {
|
|
|
|
QLineEdit::clear();
|
|
|
|
updatePlaceholder();
|
|
|
|
}
|
|
|
|
|
2016-11-24 22:28:23 +03:00
|
|
|
public slots:
|
2015-10-06 22:49:23 +03:00
|
|
|
void onTextChange(const QString &text);
|
|
|
|
void onCursorPositionChanged(int oldPosition, int position);
|
|
|
|
|
|
|
|
void onTextEdited();
|
|
|
|
|
|
|
|
void onTouchTimer();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void changed();
|
|
|
|
void cancelled();
|
|
|
|
void submitted(bool ctrlShiftEnter);
|
|
|
|
void focused();
|
|
|
|
void blurred();
|
|
|
|
|
|
|
|
protected:
|
2016-11-24 22:28:23 +03:00
|
|
|
bool event(QEvent *e) override;
|
|
|
|
void touchEvent(QTouchEvent *e);
|
|
|
|
void paintEvent(QPaintEvent *e) override;
|
|
|
|
void focusInEvent(QFocusEvent *e) override;
|
|
|
|
void focusOutEvent(QFocusEvent *e) override;
|
|
|
|
void keyPressEvent(QKeyEvent *e) override;
|
|
|
|
void resizeEvent(QResizeEvent *e) override;
|
|
|
|
void contextMenuEvent(QContextMenuEvent *e) override;
|
|
|
|
|
2016-06-15 20:13:46 +03:00
|
|
|
void enterEventHook(QEvent *e) {
|
|
|
|
return QLineEdit::enterEvent(e);
|
|
|
|
}
|
|
|
|
void leaveEventHook(QEvent *e) {
|
|
|
|
return QLineEdit::leaveEvent(e);
|
|
|
|
}
|
2015-10-06 22:49:23 +03:00
|
|
|
|
2016-11-24 22:28:23 +03:00
|
|
|
virtual void correctValue(const QString &was, int32 wasCursor, QString &now, int32 &nowCursor) {
|
|
|
|
}
|
|
|
|
void setCorrectedText(QString &now, int &nowCursor, const QString &newText, int newPos);
|
|
|
|
|
2015-10-06 22:49:23 +03:00
|
|
|
virtual void paintPlaceholder(Painter &p);
|
|
|
|
|
|
|
|
style::font phFont() {
|
|
|
|
return _st.font;
|
|
|
|
}
|
|
|
|
|
|
|
|
void placeholderPreparePaint(Painter &p);
|
|
|
|
const QString &placeholder() const;
|
|
|
|
QRect placeholderRect() const;
|
|
|
|
|
|
|
|
void setTextMargins(const QMargins &mrg);
|
|
|
|
const style::InputField &_st;
|
|
|
|
|
|
|
|
private:
|
|
|
|
void startBorderAnimation();
|
2016-10-18 13:32:33 +03:00
|
|
|
void updatePlaceholderText();
|
2015-10-06 22:49:23 +03:00
|
|
|
|
|
|
|
int32 _maxLength;
|
|
|
|
|
|
|
|
QString _oldtext;
|
|
|
|
int32 _oldcursor;
|
|
|
|
|
|
|
|
bool _undoAvailable, _redoAvailable;
|
|
|
|
|
|
|
|
bool _customUpDown;
|
|
|
|
|
|
|
|
QString _placeholder, _placeholderFull;
|
|
|
|
bool _placeholderVisible, _placeholderFast;
|
|
|
|
anim::ivalue a_placeholderLeft;
|
|
|
|
anim::fvalue a_placeholderOpacity;
|
2016-11-07 14:24:19 +03:00
|
|
|
anim::fvalue a_placeholderFgActive;
|
2015-10-06 22:49:23 +03:00
|
|
|
Animation _a_placeholderFg, _a_placeholderShift;
|
|
|
|
|
|
|
|
anim::fvalue a_borderOpacityActive;
|
2016-11-07 14:24:19 +03:00
|
|
|
anim::fvalue a_borderFgActive;
|
|
|
|
anim::fvalue a_borderFgError;
|
2015-10-06 22:49:23 +03:00
|
|
|
Animation _a_border;
|
|
|
|
|
|
|
|
bool _focused, _error;
|
|
|
|
|
|
|
|
style::margins _textMargins;
|
2015-06-19 20:04:09 +03:00
|
|
|
|
|
|
|
QTimer _touchTimer;
|
|
|
|
bool _touchPress, _touchRightButton, _touchMove;
|
|
|
|
QPoint _touchStart;
|
2015-10-06 22:49:23 +03:00
|
|
|
};
|
|
|
|
|
2016-11-24 22:28:23 +03:00
|
|
|
class CountryCodeInput : public MaskedInputField {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
CountryCodeInput(QWidget *parent, const style::InputField &st);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void startErasing(QKeyEvent *e);
|
|
|
|
void codeSelected(const QString &code);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void codeChanged(const QString &code);
|
|
|
|
void addedToNumber(const QString &added);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void correctValue(const QString &was, int32 wasCursor, QString &now, int32 &nowCursor) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool _nosignal;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
class PhonePartInput : public MaskedInputField {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
PhonePartInput(QWidget *parent, const style::InputField &st);
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void addedToNumber(const QString &added);
|
|
|
|
void onChooseCode(const QString &code);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void voidBackspace(QKeyEvent *e);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void keyPressEvent(QKeyEvent *e) override;
|
|
|
|
|
|
|
|
void correctValue(const QString &was, int32 wasCursor, QString &now, int32 &nowCursor) override;
|
|
|
|
void paintPlaceholder(Painter &p) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
QVector<int> _pattern;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2016-11-15 14:56:49 +03:00
|
|
|
class PasswordInput : public MaskedInputField {
|
2015-10-11 10:37:24 +02:00
|
|
|
public:
|
2016-11-15 14:56:49 +03:00
|
|
|
PasswordInput(QWidget *parent, const style::InputField &st, const QString &ph = QString(), const QString &val = QString());
|
2015-10-11 10:37:24 +02:00
|
|
|
|
|
|
|
};
|
2015-10-06 22:49:23 +03:00
|
|
|
|
2015-10-11 10:37:24 +02:00
|
|
|
class PortInput : public MaskedInputField {
|
2015-10-06 22:49:23 +03:00
|
|
|
public:
|
|
|
|
PortInput(QWidget *parent, const style::InputField &st, const QString &ph, const QString &val);
|
|
|
|
|
|
|
|
protected:
|
2016-10-20 18:26:55 +03:00
|
|
|
void correctValue(const QString &was, int32 wasCursor, QString &now, int32 &nowCursor) override;
|
2015-10-06 22:49:23 +03:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
class UsernameInput : public MaskedInputField {
|
|
|
|
public:
|
|
|
|
UsernameInput(QWidget *parent, const style::InputField &st, const QString &ph, const QString &val, bool isLink);
|
|
|
|
|
|
|
|
protected:
|
2016-10-20 18:26:55 +03:00
|
|
|
void correctValue(const QString &was, int32 wasCursor, QString &now, int32 &nowCursor) override;
|
|
|
|
void paintPlaceholder(Painter &p) override;
|
2015-10-06 22:49:23 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
QString _linkPlaceholder;
|
2015-08-18 19:10:01 +03:00
|
|
|
|
2015-06-19 20:04:09 +03:00
|
|
|
};
|
2015-10-11 10:37:24 +02:00
|
|
|
|
|
|
|
class PhoneInput : public MaskedInputField {
|
|
|
|
public:
|
|
|
|
PhoneInput(QWidget *parent, const style::InputField &st, const QString &ph, const QString &val);
|
|
|
|
|
|
|
|
void clearText();
|
|
|
|
|
|
|
|
protected:
|
2016-10-20 18:26:55 +03:00
|
|
|
void focusInEvent(QFocusEvent *e) override;
|
2015-10-11 10:37:24 +02:00
|
|
|
|
2016-10-20 18:26:55 +03:00
|
|
|
void correctValue(const QString &was, int32 wasCursor, QString &now, int32 &nowCursor) override;
|
|
|
|
void paintPlaceholder(Painter &p) override;
|
2015-10-11 10:37:24 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
QString _defaultPlaceholder;
|
2016-10-20 18:26:55 +03:00
|
|
|
QVector<int> _pattern;
|
2015-10-11 10:37:24 +02:00
|
|
|
|
|
|
|
};
|
2016-11-15 14:56:49 +03:00
|
|
|
|
|
|
|
} // namespace Ui
|