Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
f3743b8e
Commit
f3743b8e
authored
3 years ago
by
Mnikolenko Productengine
Browse files
Options
Downloads
Patches
Plain Diff
SL-15999 use callback for updating window title
parent
8b935e9d
No related branches found
No related tags found
1 merge request
!83
Merge Linden 6.6.7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/newview/llteleporthistory.cpp
+15
-15
15 additions, 15 deletions
indra/newview/llteleporthistory.cpp
with
15 additions
and
15 deletions
indra/newview/llteleporthistory.cpp
+
15
−
15
View file @
f3743b8e
...
@@ -118,6 +118,20 @@ void LLTeleportHistory::handleLoginComplete()
...
@@ -118,6 +118,20 @@ void LLTeleportHistory::handleLoginComplete()
updateCurrentLocation
(
gAgent
.
getPositionGlobal
());
updateCurrentLocation
(
gAgent
.
getPositionGlobal
());
}
}
static
void
on_avatar_name_update_title
(
const
LLAvatarName
&
av_name
)
{
if
(
gAgent
.
getRegion
()
&&
gViewerWindow
&&
gViewerWindow
->
getWindow
())
{
std
::
string
region
=
gAgent
.
getRegion
()
->
getName
();
std
::
string
username
=
av_name
.
getUserName
();
// this first pass simply displays username and region name
// but could easily be extended to include other details like
// X/Y/Z location within a region etc.
std
::
string
new_title
=
STRINGIZE
(
username
<<
" @ "
<<
region
);
gViewerWindow
->
getWindow
()
->
setTitle
(
new_title
);
}
}
void
LLTeleportHistory
::
updateCurrentLocation
(
const
LLVector3d
&
new_pos
)
void
LLTeleportHistory
::
updateCurrentLocation
(
const
LLVector3d
&
new_pos
)
{
{
...
@@ -184,21 +198,7 @@ void LLTeleportHistory::updateCurrentLocation(const LLVector3d& new_pos)
...
@@ -184,21 +198,7 @@ void LLTeleportHistory::updateCurrentLocation(const LLVector3d& new_pos)
// setting to allow it is enabled (may be useful in other situations)
// setting to allow it is enabled (may be useful in other situations)
if
(
gNonInteractive
||
gSavedSettings
.
getBOOL
(
"UpdateAppWindowTitleBar"
))
if
(
gNonInteractive
||
gSavedSettings
.
getBOOL
(
"UpdateAppWindowTitleBar"
))
{
{
LLAvatarName
av_name
;
LLAvatarNameCache
::
get
(
gAgent
.
getID
(),
boost
::
bind
(
&
on_avatar_name_update_title
,
_2
));
if
(
LLAvatarNameCache
::
get
(
gAgent
.
getID
(),
&
av_name
))
{
if
(
gAgent
.
getRegion
()
&&
gViewerWindow
&&
gViewerWindow
->
getWindow
())
{
std
::
string
region
=
gAgent
.
getRegion
()
->
getName
();
std
::
string
username
=
av_name
.
getUserName
();
// this first pass simply displays username and region name
// but could easily be extended to include other details like
// X/Y/Z location within a region etc.
std
::
string
new_title
=
STRINGIZE
(
username
<<
" @ "
<<
region
);
gViewerWindow
->
getWindow
()
->
setTitle
(
new_title
);
}
}
}
}
// Signal the interesting party that we've changed.
// Signal the interesting party that we've changed.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment