mirror of https://github.com/procxx/kepka.git
Allow multiline no-newline input fields.
Fixes poll option limit warning.
This commit is contained in:
parent
4293a4857f
commit
d26924dd6b
|
@ -184,6 +184,7 @@ Options::Option Options::Option::Create(
|
||||||
object_ptr<Ui::InputField>(
|
object_ptr<Ui::InputField>(
|
||||||
container,
|
container,
|
||||||
st::createPollOptionField,
|
st::createPollOptionField,
|
||||||
|
Ui::InputField::Mode::NoNewlines,
|
||||||
langFactory(lng_polls_create_option_add))));
|
langFactory(lng_polls_create_option_add))));
|
||||||
InitField(outer, field->entity());
|
InitField(outer, field->entity());
|
||||||
field->entity()->setMaxLength(kOptionLimit + kErrorLimit);
|
field->entity()->setMaxLength(kOptionLimit + kErrorLimit);
|
||||||
|
|
|
@ -2014,8 +2014,8 @@ void InputField::processFormatting(int insertPosition, int insertEnd) {
|
||||||
|
|
||||||
auto *ch = textStart + qMax(changedPositionInFragment, 0);
|
auto *ch = textStart + qMax(changedPositionInFragment, 0);
|
||||||
for (; ch < textEnd; ++ch) {
|
for (; ch < textEnd; ++ch) {
|
||||||
const auto removeNewline = (_mode == Mode::SingleLine)
|
const auto removeNewline = (_mode != Mode::MultiLine)
|
||||||
&& (IsNewline(*ch));
|
&& IsNewline(*ch);
|
||||||
if (removeNewline) {
|
if (removeNewline) {
|
||||||
if (action.type == ActionType::Invalid) {
|
if (action.type == ActionType::Invalid) {
|
||||||
action.type = ActionType::RemoveNewline;
|
action.type = ActionType::RemoveNewline;
|
||||||
|
@ -2077,7 +2077,7 @@ void InputField::processFormatting(int insertPosition, int insertEnd) {
|
||||||
}
|
}
|
||||||
if (action.type != ActionType::Invalid) {
|
if (action.type != ActionType::Invalid) {
|
||||||
break;
|
break;
|
||||||
} else if (_mode == Mode::SingleLine
|
} else if (_mode != Mode::MultiLine
|
||||||
&& block.next() != document->end()) {
|
&& block.next() != document->end()) {
|
||||||
action.type = ActionType::RemoveNewline;
|
action.type = ActionType::RemoveNewline;
|
||||||
action.intervalStart = block.next().position() - 1;
|
action.intervalStart = block.next().position() - 1;
|
||||||
|
@ -2582,7 +2582,7 @@ void InputField::keyPressEventInner(QKeyEvent *e) {
|
||||||
bool shift = e->modifiers().testFlag(Qt::ShiftModifier), alt = e->modifiers().testFlag(Qt::AltModifier);
|
bool shift = e->modifiers().testFlag(Qt::ShiftModifier), alt = e->modifiers().testFlag(Qt::AltModifier);
|
||||||
bool macmeta = (cPlatform() == dbipMac || cPlatform() == dbipMacOld) && e->modifiers().testFlag(Qt::ControlModifier) && !e->modifiers().testFlag(Qt::MetaModifier) && !e->modifiers().testFlag(Qt::AltModifier);
|
bool macmeta = (cPlatform() == dbipMac || cPlatform() == dbipMacOld) && e->modifiers().testFlag(Qt::ControlModifier) && !e->modifiers().testFlag(Qt::MetaModifier) && !e->modifiers().testFlag(Qt::AltModifier);
|
||||||
bool ctrl = e->modifiers().testFlag(Qt::ControlModifier) || e->modifiers().testFlag(Qt::MetaModifier);
|
bool ctrl = e->modifiers().testFlag(Qt::ControlModifier) || e->modifiers().testFlag(Qt::MetaModifier);
|
||||||
bool enterSubmit = (_mode == Mode::SingleLine)
|
bool enterSubmit = (_mode != Mode::MultiLine)
|
||||||
|| ShouldSubmit(_submitSettings, e->modifiers());
|
|| ShouldSubmit(_submitSettings, e->modifiers());
|
||||||
bool enter = (e->key() == Qt::Key_Enter || e->key() == Qt::Key_Return);
|
bool enter = (e->key() == Qt::Key_Enter || e->key() == Qt::Key_Return);
|
||||||
if (e->key() == Qt::Key_Left
|
if (e->key() == Qt::Key_Left
|
||||||
|
|
|
@ -131,6 +131,7 @@ class InputField : public RpWidget, private base::Subscriber {
|
||||||
public:
|
public:
|
||||||
enum class Mode {
|
enum class Mode {
|
||||||
SingleLine,
|
SingleLine,
|
||||||
|
NoNewlines,
|
||||||
MultiLine,
|
MultiLine,
|
||||||
};
|
};
|
||||||
using TagList = TextWithTags::Tags;
|
using TagList = TextWithTags::Tags;
|
||||||
|
|
Loading…
Reference in New Issue