diff options
author | Callum Linden <callum@lindenlab.com> | 2021-09-28 15:24:42 -0700 |
---|---|---|
committer | Callum Linden <callum@lindenlab.com> | 2021-09-28 15:24:42 -0700 |
commit | 851fef680164e3472b0516e7237bbcc4a35bc5a3 (patch) | |
tree | 90e25cd4cdc3427e27638eb3032d06f723b3db87 /indra/llwindow/llwindow.h | |
parent | dc48e174c43edb770f3c2de0ac16adee5841d7ec (diff) |
SL-16102 Set window title to agent name (child of SL-15999 Support for low overhead, non interactive viewer sessions)
Diffstat (limited to 'indra/llwindow/llwindow.h')
-rw-r--r-- | indra/llwindow/llwindow.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/llwindow/llwindow.h b/indra/llwindow/llwindow.h index d4d5b76937..41eb1d7ee5 100644 --- a/indra/llwindow/llwindow.h +++ b/indra/llwindow/llwindow.h @@ -86,6 +86,13 @@ public: virtual void showCursorFromMouseMove() = 0; virtual void hideCursorUntilMouseMove() = 0; + // Provide a way to set the Viewer window title after the + // windows has been created. The initial use case for this + // is described in SL-16102 (update window title with agent + // name, location etc. for non-interactive viewer) but it + // may also be useful in other cases. + virtual void setTitle(const std::string title); + // These two functions create a way to make a busy cursor instead // of an arrow when someone's busy doing something. Draw an // arrow/hour if busycount > 0. |