X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Finputwidget.cpp;h=b0272b225513a22e7b51264b9200538a2e8c5af7;hp=8d84233d471c83d37e8477aaf621a5e159647ada;hb=a65f42197839da536975b3e2858eedcef420035f;hpb=b7447afe8e836376776dac26704e227a678d2913 diff --git a/src/qtui/inputwidget.cpp b/src/qtui/inputwidget.cpp index 8d84233d..b0272b22 100644 --- a/src/qtui/inputwidget.cpp +++ b/src/qtui/inputwidget.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2018 by the Quassel Project * + * Copyright (C) 2005-2019 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -118,11 +118,6 @@ InputWidget::InputWidget(QWidget *parent) UiSettings s("InputWidget"); -#ifdef HAVE_KDE4 - s.notify("EnableSpellCheck", this, SLOT(setEnableSpellCheck(QVariant))); - setEnableSpellCheck(s.value("EnableSpellCheck", false)); -#endif - s.notify("EnableEmacsMode", this, SLOT(setEnableEmacsMode(QVariant))); setEnableEmacsMode(s.value("EnableEmacsMode", false)); @@ -189,12 +184,6 @@ void InputWidget::setCustomFont(const QVariant &v) } -void InputWidget::setEnableSpellCheck(const QVariant &v) -{ - ui.inputEdit->setSpellCheckEnabled(v.toBool()); -} - - void InputWidget::setEnableEmacsMode(const QVariant &v) { ui.inputEdit->setEmacsMode(v.toBool()); @@ -554,16 +543,16 @@ void InputWidget::changeNick(const QString &newNick) const void InputWidget::onTextEntered(const QString &text) { Client::userInput(currentBufferInfo(), text); - ui.boldButton->setChecked(false); - ui.underlineButton->setChecked(false); - ui.italicButton->setChecked(false); + // Remove formatting from entered text + // TODO: Offer a way to convert pasted text to mIRC formatting codes setFormatClear(true); } void InputWidget::setFormatClear(const bool global) { + // Apply formatting QTextCharFormat fmt; fmt.setFontWeight(QFont::Normal); fmt.setFontUnderline(false); @@ -575,30 +564,44 @@ void InputWidget::setFormatClear(const bool global) } else { setFormatOnSelection(fmt); } + + // Make sure UI state follows + ui.boldButton->setChecked(false); + ui.italicButton->setChecked(false); + ui.underlineButton->setChecked(false); } void InputWidget::setFormatBold(const bool bold) { + // Apply formatting QTextCharFormat fmt; fmt.setFontWeight(bold ? QFont::Bold : QFont::Normal); mergeFormatOnSelection(fmt); + // Make sure UI state follows + ui.boldButton->setChecked(bold); } void InputWidget::setFormatItalic(const bool italic) { + // Apply formatting QTextCharFormat fmt; fmt.setFontItalic(italic); mergeFormatOnSelection(fmt); + // Make sure UI state follows + ui.italicButton->setChecked(italic); } void InputWidget::setFormatUnderline(const bool underline) { + // Apply formatting QTextCharFormat fmt; fmt.setFontUnderline(underline); mergeFormatOnSelection(fmt); + // Make sure UI state follows + ui.underlineButton->setChecked(underline); }