summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/window.cpp9
-rw-r--r--src/window_func.h1
2 files changed, 10 insertions, 0 deletions
diff --git a/src/window.cpp b/src/window.cpp
index c25751fbb..c6a221af0 100644
--- a/src/window.cpp
+++ b/src/window.cpp
@@ -467,6 +467,15 @@ bool EditBoxInGlobalFocus()
}
/**
+ * Check if a console is focused.
+ * @return returns true if the focused window is a console, else false
+ */
+bool FocusedWindowIsConsole()
+{
+ return _focused_window && _focused_window->window_class == WC_CONSOLE;
+}
+
+/**
* Makes no widget on this window have focus. The function however doesn't change which window has focus.
*/
void Window::UnfocusFocusedWidget()
diff --git a/src/window_func.h b/src/window_func.h
index 45e2d71ec..7fca0d9c1 100644
--- a/src/window_func.h
+++ b/src/window_func.h
@@ -55,6 +55,7 @@ void DeleteWindowById(WindowClass cls, WindowNumber number, bool force = true);
void DeleteWindowByClass(WindowClass cls);
bool EditBoxInGlobalFocus();
+bool FocusedWindowIsConsole();
Point GetCaretPosition();
#endif /* WINDOW_FUNC_H */