summaryrefslogtreecommitdiff
path: root/include/netsurf/browser_window.h
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2020-02-22 15:10:51 +0000
committerDaniel Silverstone <dsilvers@digital-scurf.org>2020-02-22 15:10:51 +0000
commit0fa5f81a52a62a04f4564d84e391543995cf9418 (patch)
treefb78494544c63efe122f904e586a14906371f02f /include/netsurf/browser_window.h
parent5c377cd285536f4bec2a6cfb6352a45cfe6cb39e (diff)
downloadnetsurf-0fa5f81a52a62a04f4564d84e391543995cf9418.tar.gz
netsurf-0fa5f81a52a62a04f4564d84e391543995cf9418.tar.bz2
Browser: Support requesting location focus
In the creation of a browser window it may be valuable to request that the GUI focus the location input box. This can be used when the user requests a new tab/window to allow the entry box to be focussed properly immediately. Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
Diffstat (limited to 'include/netsurf/browser_window.h')
-rw-r--r--include/netsurf/browser_window.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/netsurf/browser_window.h b/include/netsurf/browser_window.h
index 75977ace4..f8b86d07a 100644
--- a/include/netsurf/browser_window.h
+++ b/include/netsurf/browser_window.h
@@ -112,6 +112,9 @@ enum browser_window_create_flags {
/** Request foreground opening. */
BW_CREATE_FOREGROUND = (1 << 4),
+
+ /** Request location bar focus. */
+ BW_CREATE_FOCUS_LOCATION = (1 << 5),
};
/** flags to browser_window_navigate */