From 861505d90c9f3d526f41b645873584f520eff7b1 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 3 Dec 2012 23:02:52 +0300 Subject: Add option to protect chat focus. Enabled by default. --- src/gui/chatwindow.cpp | 29 +++++++++++++++++++++++++---- 1 file changed, 25 insertions(+), 4 deletions(-) (limited to 'src/gui/chatwindow.cpp') diff --git a/src/gui/chatwindow.cpp b/src/gui/chatwindow.cpp index 7919fff24..11f399537 100644 --- a/src/gui/chatwindow.cpp +++ b/src/gui/chatwindow.cpp @@ -79,7 +79,8 @@ class ChatInput final : public TextField, public gcn::FocusListener TextField(window, "", false), gcn::FocusListener(), mWindow(window), - mChatTabs(tabs) + mChatTabs(tabs), + mFocusGaining(false) { setVisible(false); addFocusListener(this); @@ -93,9 +94,17 @@ class ChatInput final : public TextField, public gcn::FocusListener */ void focusLost(const gcn::Event &event A_UNUSED) { - processVisible(false); - if (chatWindow) - chatWindow->updateVisibility(); + if (mFocusGaining || !config.getBoolValue("protectChatFocus")) + { + processVisible(false); + if (chatWindow) + chatWindow->updateVisibility(); + mFocusGaining = false; + return; + } + mFocusGaining = true; + requestFocus(); + mFocusGaining = false; } void processVisible(const bool n) @@ -103,14 +112,25 @@ class ChatInput final : public TextField, public gcn::FocusListener if (!mWindow || isVisible() == n) return; + if (!n) + mFocusGaining = true; setVisible(n); if (config.getBoolValue("hideChatInput")) mWindow->adjustTabSize(); } + void unprotectFocus() + { mFocusGaining = true; } + + void setVisible(bool visible) + { + TextField::setVisible(visible); + } + private: ChatWindow *mWindow; TabbedArea *mChatTabs; + bool mFocusGaining; }; const char *COLOR_NAME[14] = @@ -503,6 +523,7 @@ void ChatWindow::action(const gcn::ActionEvent &event) if (message.empty() || !mReturnToggles) { // Remove focus and hide input + mChatInput->unprotectFocus(); if (mFocusHandler) mFocusHandler->focusNone(); -- cgit v1.2.3-60-g2f50