summaryrefslogtreecommitdiff
path: root/desktop/browser.c
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/browser.c')
-rw-r--r--desktop/browser.c37
1 files changed, 36 insertions, 1 deletions
diff --git a/desktop/browser.c b/desktop/browser.c
index 21b6c8815..8df59eee7 100644
--- a/desktop/browser.c
+++ b/desktop/browser.c
@@ -106,7 +106,6 @@ static inline void browser_window_get_scrollbar_pos(struct browser_window *bw,
* \param horizontal Whether to get length of horizontal scrollbar
* \return the scrollbar's length
*/
-
static inline int browser_window_get_scrollbar_len(struct browser_window *bw,
bool horizontal)
{
@@ -116,6 +115,42 @@ static inline int browser_window_get_scrollbar_len(struct browser_window *bw,
return bw->height;
}
+
+/* exported interface, documented in browser.h */
+nserror
+browser_window_get_name(struct browser_window *bw, const char **out_name)
+{
+ assert(bw != NULL);
+
+ *out_name = bw->name;
+
+ return NSERROR_OK;
+}
+
+/* exported interface, documented in browser.h */
+nserror
+browser_window_set_name(struct browser_window *bw, const char *name)
+{
+ char *nname = NULL;
+
+ assert(bw != NULL);
+
+ if (name != NULL) {
+ nname = strdup(name);
+ if (nname == NULL) {
+ return NSERROR_NOMEM;
+ }
+ }
+
+ if (bw->name != NULL) {
+ free(bw->name);
+ }
+
+ bw->name = nname;
+
+ return NSERROR_OK;
+}
+
/* exported interface, documented in browser.h */
bool browser_window_redraw(struct browser_window *bw, int x, int y,
const struct rect *clip, const struct redraw_context *ctx)