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
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
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 Archive
Alchemy Viewer
Commits
93620a1d
Commit
93620a1d
authored
14 years ago
by
Oz Linden
Browse files
Options
Downloads
Plain Diff
merge changes for storm-1078
parents
f619dd95
6faa6236
No related branches found
No related tags found
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
indra/newview/llchathistory.cpp
+33
-10
33 additions, 10 deletions
indra/newview/llchathistory.cpp
indra/newview/llchathistory.h
+1
-1
1 addition, 1 deletion
indra/newview/llchathistory.h
indra/newview/llviewermessage.cpp
+6908
-6909
6908 additions, 6909 deletions
indra/newview/llviewermessage.cpp
with
6942 additions
and
6920 deletions
indra/newview/llchathistory.cpp
+
33
−
10
View file @
93620a1d
...
@@ -138,10 +138,7 @@ public:
...
@@ -138,10 +138,7 @@ public:
if
(
level
==
"profile"
)
if
(
level
==
"profile"
)
{
{
LLSD
params
;
LLFloaterReg
::
showInstance
(
"inspect_remote_object"
,
mObjectData
);
params
[
"object_id"
]
=
getAvatarId
();
LLFloaterReg
::
showInstance
(
"inspect_object"
,
params
);
}
}
else
if
(
level
==
"block"
)
else
if
(
level
==
"block"
)
{
{
...
@@ -229,7 +226,7 @@ public:
...
@@ -229,7 +226,7 @@ public:
if
(
mSourceType
==
CHAT_SOURCE_OBJECT
)
if
(
mSourceType
==
CHAT_SOURCE_OBJECT
)
{
{
LLFloaterReg
::
showInstance
(
"inspect_object"
,
LLSD
().
with
(
"object_id"
,
mAvatarID
)
);
LLFloaterReg
::
showInstance
(
"inspect_
remote_
object"
,
mObjectData
);
}
}
else
if
(
mSourceType
==
CHAT_SOURCE_AGENT
)
else
if
(
mSourceType
==
CHAT_SOURCE_AGENT
)
{
{
...
@@ -251,7 +248,7 @@ public:
...
@@ -251,7 +248,7 @@ public:
const
LLUUID
&
getAvatarId
()
const
{
return
mAvatarID
;}
const
LLUUID
&
getAvatarId
()
const
{
return
mAvatarID
;}
void
setup
(
const
LLChat
&
chat
,
const
LLStyle
::
Params
&
style_params
)
void
setup
(
const
LLChat
&
chat
,
const
LLStyle
::
Params
&
style_params
,
const
LLSD
&
args
)
{
{
mAvatarID
=
chat
.
mFromID
;
mAvatarID
=
chat
.
mFromID
;
mSessionID
=
chat
.
mSessionID
;
mSessionID
=
chat
.
mSessionID
;
...
@@ -332,7 +329,8 @@ public:
...
@@ -332,7 +329,8 @@ public:
setTimeField
(
chat
);
setTimeField
(
chat
);
// Set up the icon.
LLAvatarIconCtrl
*
icon
=
getChild
<
LLAvatarIconCtrl
>
(
"avatar_icon"
);
LLAvatarIconCtrl
*
icon
=
getChild
<
LLAvatarIconCtrl
>
(
"avatar_icon"
);
if
(
mSourceType
!=
CHAT_SOURCE_AGENT
||
mAvatarID
.
isNull
())
if
(
mSourceType
!=
CHAT_SOURCE_AGENT
||
mAvatarID
.
isNull
())
...
@@ -352,6 +350,30 @@ public:
...
@@ -352,6 +350,30 @@ public:
case
CHAT_SOURCE_UNKNOWN
:
case
CHAT_SOURCE_UNKNOWN
:
icon
->
setValue
(
LLSD
(
"Unknown_Icon"
));
icon
->
setValue
(
LLSD
(
"Unknown_Icon"
));
}
}
// In case the message came from an object, save the object info
// to be able properly show its profile.
if
(
chat
.
mSourceType
==
CHAT_SOURCE_OBJECT
)
{
std
::
string
slurl
=
args
[
"slurl"
].
asString
();
if
(
slurl
.
empty
())
{
LLViewerRegion
*
region
=
LLWorld
::
getInstance
()
->
getRegionFromPosAgent
(
chat
.
mPosAgent
);
if
(
region
)
{
LLSLURL
region_slurl
(
region
->
getName
(),
chat
.
mPosAgent
);
slurl
=
region_slurl
.
getLocationString
();
}
}
LLSD
payload
;
payload
[
"object_id"
]
=
chat
.
mFromID
;
payload
[
"name"
]
=
chat
.
mFromName
;
payload
[
"owner_id"
]
=
chat
.
mOwnerID
;
payload
[
"slurl"
]
=
LLWeb
::
escapeURL
(
slurl
);
mObjectData
=
payload
;
}
}
}
/*virtual*/
void
draw
()
/*virtual*/
void
draw
()
...
@@ -540,6 +562,7 @@ protected:
...
@@ -540,6 +562,7 @@ protected:
static
LLUICtrl
*
sInfoCtrl
;
static
LLUICtrl
*
sInfoCtrl
;
LLUUID
mAvatarID
;
LLUUID
mAvatarID
;
LLSD
mObjectData
;
EChatSourceType
mSourceType
;
EChatSourceType
mSourceType
;
std
::
string
mFrom
;
std
::
string
mFrom
;
LLUUID
mSessionID
;
LLUUID
mSessionID
;
...
@@ -649,10 +672,10 @@ LLView* LLChatHistory::getSeparator()
...
@@ -649,10 +672,10 @@ LLView* LLChatHistory::getSeparator()
return
separator
;
return
separator
;
}
}
LLView
*
LLChatHistory
::
getHeader
(
const
LLChat
&
chat
,
const
LLStyle
::
Params
&
style_params
)
LLView
*
LLChatHistory
::
getHeader
(
const
LLChat
&
chat
,
const
LLStyle
::
Params
&
style_params
,
const
LLSD
&
args
)
{
{
LLChatHistoryHeader
*
header
=
LLChatHistoryHeader
::
createInstance
(
mMessageHeaderFilename
);
LLChatHistoryHeader
*
header
=
LLChatHistoryHeader
::
createInstance
(
mMessageHeaderFilename
);
header
->
setup
(
chat
,
style_params
);
header
->
setup
(
chat
,
style_params
,
args
);
return
header
;
return
header
;
}
}
...
@@ -834,7 +857,7 @@ void LLChatHistory::appendMessage(const LLChat& chat, const LLSD &args, const LL
...
@@ -834,7 +857,7 @@ void LLChatHistory::appendMessage(const LLChat& chat, const LLSD &args, const LL
}
}
else
else
{
{
view
=
getHeader
(
chat
,
style_params
);
view
=
getHeader
(
chat
,
style_params
,
args
);
if
(
mEditor
->
getText
().
size
()
==
0
)
if
(
mEditor
->
getText
().
size
()
==
0
)
p
.
top_pad
=
0
;
p
.
top_pad
=
0
;
else
else
...
...
This diff is collapsed.
Click to expand it.
indra/newview/llchathistory.h
+
1
−
1
View file @
93620a1d
...
@@ -94,7 +94,7 @@ class LLChatHistory : public LLUICtrl
...
@@ -94,7 +94,7 @@ class LLChatHistory : public LLUICtrl
* Builds a message header.
* Builds a message header.
* @return pointer to LLView header object.
* @return pointer to LLView header object.
*/
*/
LLView
*
getHeader
(
const
LLChat
&
chat
,
const
LLStyle
::
Params
&
style_params
);
LLView
*
getHeader
(
const
LLChat
&
chat
,
const
LLStyle
::
Params
&
style_params
,
const
LLSD
&
args
);
void
onClickMoreText
();
void
onClickMoreText
();
...
...
This diff is collapsed.
Click to expand it.
indra/newview/llviewermessage.cpp
+
6908
−
6909
View file @
93620a1d
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