diff --git a/Telegram/SourceFiles/platform/mac/main_window_mac.h b/Telegram/SourceFiles/platform/mac/main_window_mac.h index 0d8bcbbc2..5aae1bd2d 100644 --- a/Telegram/SourceFiles/platform/mac/main_window_mac.h +++ b/Telegram/SourceFiles/platform/mac/main_window_mac.h @@ -114,6 +114,13 @@ private: QAction *psNewChannel = nullptr; QAction *psShowTelegram = nullptr; + QAction *psBold = nullptr; + QAction *psItalic = nullptr; + QAction *psUnderline = nullptr; + QAction *psStrikeOut = nullptr; + QAction *psMonospace = nullptr; + QAction *psClearFormat = nullptr; + int _customTitleHeight = 0; }; diff --git a/Telegram/SourceFiles/platform/mac/main_window_mac.mm b/Telegram/SourceFiles/platform/mac/main_window_mac.mm index a92fa7551..3a444b36d 100644 --- a/Telegram/SourceFiles/platform/mac/main_window_mac.mm +++ b/Telegram/SourceFiles/platform/mac/main_window_mac.mm @@ -638,6 +638,23 @@ void MainWindow::psFirstShow() { createGlobalMenu(); } +namespace { + void _sendKeySequence(Qt::Key key, Qt::KeyboardModifiers modifiers = Qt::NoModifier) { + QWidget *focused = QApplication::focusWidget(); + if (qobject_cast(focused) || qobject_cast(focused) || qobject_cast(focused)) { + QApplication::postEvent(focused, new QKeyEvent(QEvent::KeyPress, key, modifiers)); + QApplication::postEvent(focused, new QKeyEvent(QEvent::KeyRelease, key, modifiers)); + } + } + void _forceDisabled(QAction *action, bool disabled) { + if (action->isEnabled()) { + if (disabled) action->setDisabled(true); + } else if (!disabled) { + action->setDisabled(false); + } + } +} + void MainWindow::createGlobalMenu() { auto main = psMainMenu.addMenu(qsl("Telegram")); auto about = main->addAction(tr::lng_mac_menu_about_telegram(tr::now, lt_telegram, qsl("Telegram"))); @@ -662,6 +679,51 @@ void MainWindow::createGlobalMenu() { psCopy = edit->addAction(tr::lng_mac_menu_copy(tr::now), this, SLOT(psMacCopy()), QKeySequence::Copy); psPaste = edit->addAction(tr::lng_mac_menu_paste(tr::now), this, SLOT(psMacPaste()), QKeySequence::Paste); psDelete = edit->addAction(tr::lng_mac_menu_delete(tr::now), this, SLOT(psMacDelete()), QKeySequence(Qt::ControlModifier | Qt::Key_Backspace)); + + edit->addSeparator(); + psBold = edit->addAction( + tr::lng_menu_formatting_bold(tr::now), + this, + [=] { + _sendKeySequence(Qt::Key_B, Qt::ControlModifier); + }, + QKeySequence::Bold); + psItalic = edit->addAction( + tr::lng_menu_formatting_italic(tr::now), + this, + [=] { + _sendKeySequence(Qt::Key_I, Qt::ControlModifier); + }, + QKeySequence::Italic); + psUnderline = edit->addAction( + tr::lng_menu_formatting_underline(tr::now), + this, + [=] { + _sendKeySequence(Qt::Key_U, Qt::ControlModifier); + }, + QKeySequence::Underline); + psStrikeOut = edit->addAction( + tr::lng_menu_formatting_strike_out(tr::now), + this, + [=] { + _sendKeySequence(Qt::Key_X, Qt::ControlModifier | Qt::ShiftModifier); + }, + Ui::kStrikeOutSequence); + psMonospace = edit->addAction( + tr::lng_menu_formatting_monospace(tr::now), + this, + [=] { + _sendKeySequence(Qt::Key_M, Qt::ControlModifier | Qt::ShiftModifier); + }, + Ui::kMonospaceSequence); + psClearFormat = edit->addAction( + tr::lng_menu_formatting_clear(tr::now), + this, + [=] { + _sendKeySequence(Qt::Key_N, Qt::ControlModifier | Qt::ShiftModifier); + }, + Ui::kClearFormatSequence); + edit->addSeparator(); psSelectAll = edit->addAction(tr::lng_mac_menu_select_all(tr::now), this, SLOT(psMacSelectAll()), QKeySequence::SelectAll); @@ -689,23 +751,6 @@ void MainWindow::createGlobalMenu() { updateGlobalMenu(); } -namespace { - void _sendKeySequence(Qt::Key key, Qt::KeyboardModifiers modifiers = Qt::NoModifier) { - QWidget *focused = QApplication::focusWidget(); - if (qobject_cast(focused) || qobject_cast(focused) || qobject_cast(focused)) { - QApplication::postEvent(focused, new QKeyEvent(QEvent::KeyPress, key, modifiers)); - QApplication::postEvent(focused, new QKeyEvent(QEvent::KeyRelease, key, modifiers)); - } - } - void _forceDisabled(QAction *action, bool disabled) { - if (action->isEnabled()) { - if (disabled) action->setDisabled(true); - } else if (!disabled) { - action->setDisabled(false); - } - } -} - void MainWindow::psMacUndo() { _sendKeySequence(Qt::Key_Z, Qt::ControlModifier); } @@ -789,6 +834,13 @@ void MainWindow::updateGlobalMenuHook() { _forceDisabled(psNewGroup, inactive || support); _forceDisabled(psNewChannel, inactive || support); _forceDisabled(psShowTelegram, App::wnd()->isActive()); + + _forceDisabled(psBold, !showTouchBarItem); + _forceDisabled(psItalic, !showTouchBarItem); + _forceDisabled(psUnderline, !showTouchBarItem); + _forceDisabled(psStrikeOut, !showTouchBarItem); + _forceDisabled(psMonospace, !showTouchBarItem); + _forceDisabled(psClearFormat, !showTouchBarItem); } bool MainWindow::psFilterNativeEvent(void *event) { diff --git a/Telegram/SourceFiles/ui/widgets/input_fields.cpp b/Telegram/SourceFiles/ui/widgets/input_fields.cpp index a9b8fbd60..c35a1309f 100644 --- a/Telegram/SourceFiles/ui/widgets/input_fields.cpp +++ b/Telegram/SourceFiles/ui/widgets/input_fields.cpp @@ -47,10 +47,6 @@ const auto kNewlineChars = QString("\r\n") + QChar(0xfdd1) // QTextEndOfFrame + QChar(QChar::ParagraphSeparator) + QChar(QChar::LineSeparator); -const auto kClearFormatSequence = QKeySequence("ctrl+shift+n"); -const auto kStrikeOutSequence = QKeySequence("ctrl+shift+x"); -const auto kMonospaceSequence = QKeySequence("ctrl+shift+m"); -const auto kEditLinkSequence = QKeySequence("ctrl+k"); class InputDocument : public QTextDocument { public: diff --git a/Telegram/SourceFiles/ui/widgets/input_fields.h b/Telegram/SourceFiles/ui/widgets/input_fields.h index bd9b9a2ba..82f6910e3 100644 --- a/Telegram/SourceFiles/ui/widgets/input_fields.h +++ b/Telegram/SourceFiles/ui/widgets/input_fields.h @@ -15,6 +15,11 @@ class UserData; namespace Ui { +const auto kClearFormatSequence = QKeySequence("ctrl+shift+n"); +const auto kStrikeOutSequence = QKeySequence("ctrl+shift+x"); +const auto kMonospaceSequence = QKeySequence("ctrl+shift+m"); +const auto kEditLinkSequence = QKeySequence("ctrl+k"); + class PopupMenu; void InsertEmojiAtCursor(QTextCursor cursor, EmojiPtr emoji);