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
1ece3891
Commit
1ece3891
authored
12 years ago
by
AlexanderP ProductEngine
Browse files
Options
Downloads
Patches
Plain Diff
CHUI-528, CHUI-536, CHUI-538, CHUI-540 Built single processor of different types of notifications
parent
3361c9b9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
indra/newview/llfloaterimsessiontab.cpp
+0
-8
0 additions, 8 deletions
indra/newview/llfloaterimsessiontab.cpp
indra/newview/llimview.cpp
+59
-51
59 additions, 51 deletions
indra/newview/llimview.cpp
with
59 additions
and
59 deletions
indra/newview/llfloaterimsessiontab.cpp
+
0
−
8
View file @
1ece3891
...
...
@@ -335,14 +335,6 @@ void LLFloaterIMSessionTab::appendMessage(const LLChat& chat, const LLSD &args)
if
(
im_box
)
{
im_box
->
setTimeNow
(
mSessionID
,
chat
.
mFromID
);
// TODO: Warning! The next two lines of code are included below only temporarily
// to demonstrate the correct format call the appropriate functions.
// They should be moved to the right places when working on CHUI-486. ~Alex ProductEngine.
// ---- start demo ----
// im_box->flashConversationItemWidget(mSessionID, true); // flashing of the conversation's item
// gToolBarView->flashCommand(LLCommandId("chat"), true); // flashing of the FUI button "Chat"
// ---- end demo -----
}
...
...
This diff is collapsed.
Click to expand it.
indra/newview/llimview.cpp
+
59
−
51
View file @
1ece3891
...
...
@@ -114,76 +114,84 @@ static void on_avatar_name_cache_toast(const LLUUID& agent_id,
LLNotificationsUtil
::
add
(
"IMToast"
,
args
,
LLSD
(),
boost
::
bind
(
&
LLFloaterIMContainer
::
showConversation
,
LLFloaterIMContainer
::
getInstance
(),
msg
[
"session_id"
].
asUUID
()));
}
void
toast_callback
(
const
LLSD
&
msg
)
{
// do not show toast in do not disturb mode or it goes from agent
if
(
gAgent
.
isDoNotDisturb
()
||
gAgent
.
getID
()
==
msg
[
"from_id"
])
{
return
;
}
void
on_new_message
(
const
LLSD
&
msg
)
{
std
::
string
action
;
LLUUID
participant_id
=
msg
[
"from_id"
].
asUUID
();
LLUUID
session_id
=
msg
[
"session_id"
]
;
LLIMModel
::
LLIMSession
*
session
=
LLIMModel
::
instance
().
findIMSession
(
session_id
);
// Skip toasting if we have open window of IM with this session id
LLFloaterIMSession
*
open_im_floater
=
LLFloaterIMSession
::
findInstance
(
msg
[
"session_id"
]);
if
(
open_im_floater
&&
open_im_floater
->
isInVisibleChain
()
&&
open_im_floater
->
hasFocus
()
&&
!
open_im_floater
->
isMinimized
()
&&
!
(
open_im_floater
->
getHost
()
&&
open_im_floater
->
getHost
()
->
isMinimized
())
)
// determine action for this session
if
(
session_id
.
isNull
())
{
return
;
action
=
gSavedSettings
.
getString
(
"NotificationNearbyChatOptions"
)
;
}
// Skip toasting for system messages
if
(
msg
[
"from_id"
].
asUUID
()
==
LLUUID
::
null
)
{
return
;
}
// *NOTE Skip toasting if the user disable it in preferences/debug settings ~Alexandrea
LLIMModel
::
LLIMSession
*
session
=
LLIMModel
::
instance
().
findIMSession
(
msg
[
"session_id"
]);
//Ignore P2P Friend/Non-Friend toasts
if
(
session
->
isP2PSessionType
())
else
if
(
session
->
isP2PSessionType
())
{
//Ignores non-friends
if
((
LLAvatarTracker
::
instance
().
getBuddyInfo
(
msg
[
"from_id"
])
==
NULL
)
&&
(
gSavedSettings
.
getString
(
"NotificationNonFriendIMOptions"
)
!=
"toast"
))
if
(
LLAvatarTracker
::
instance
().
isBuddy
(
msg
[
"from_id"
].
asUUID
()))
{
return
;
action
=
gSavedSettings
.
getString
(
"NotificationFriendIMOptions"
)
;
}
//Ignores friends
else
if
(
gSavedSettings
.
getString
(
"NotificationFriendIMOptions"
)
!=
"toast"
)
else
{
return
;
action
=
gSavedSettings
.
getString
(
"NotificationNonFriendIMOptions"
)
;
}
}
//Ignore Ad Hoc Toasts
else
if
(
session
->
isAdHocSessionType
()
&&
(
gSavedSettings
.
getString
(
"NotificationConferenceIMOptions"
)
!=
"toast"
))
else
if
(
session
->
isAdHocSessionType
())
{
return
;
action
=
gSavedSettings
.
getString
(
"NotificationConferenceIMOptions"
)
;
}
//Ignore Group Toasts
else
if
(
session
->
isGroupSessionType
()
&&
(
gSavedSettings
.
getString
(
"NotificationGroupChatOptions"
)
!=
"toast"
))
else
if
(
session
->
isGroupSessionType
())
{
return
;
action
=
gSavedSettings
.
getString
(
"NotificationGroupChatOptions"
)
;
}
//Show toast
LLAvatarNameCache
::
get
(
msg
[
"from_id"
].
asUUID
(),
boost
::
bind
(
&
on_avatar_name_cache_toast
,
_1
,
_2
,
msg
));
// do not show notification in "do not disturb" mode or it goes from agent
if
(
gAgent
.
isDoNotDisturb
()
||
gAgent
.
getID
()
==
participant_id
)
{
return
;
}
if
(
"toast"
==
action
)
{
// Skip toasting if we have open window of IM with this session id
LLFloaterIMSession
*
open_im_floater
=
LLFloaterIMSession
::
findInstance
(
msg
[
"session_id"
]);
if
(
open_im_floater
&&
open_im_floater
->
isInVisibleChain
()
&&
open_im_floater
->
hasFocus
()
&&
!
open_im_floater
->
isMinimized
()
&&
!
(
open_im_floater
->
getHost
()
&&
open_im_floater
->
getHost
()
->
isMinimized
())
)
{
return
;
}
// Skip toasting for system messages
if
(
participant_id
.
isNull
())
{
return
;
}
//Show toast
LLAvatarNameCache
::
get
(
participant_id
,
boost
::
bind
(
&
on_avatar_name_cache_toast
,
_1
,
_2
,
msg
));
}
else
if
(
"flash"
==
action
)
{
LLFloaterIMContainer
*
im_box
=
LLFloaterReg
::
getTypedInstance
<
LLFloaterIMContainer
>
(
"im_container"
);
if
(
im_box
)
{
im_box
->
flashConversationItemWidget
(
session_id
,
true
);
// flashing of the conversation's item
}
gToolBarView
->
flashCommand
(
LLCommandId
(
"chat"
),
true
);
// flashing of the FUI button "Chat"
}
}
LLIMModel
::
LLIMModel
()
{
addNewMsgCallback
(
boost
::
bind
(
&
LLFloaterIMSession
::
newIMCallback
,
_1
));
addNewMsgCallback
(
boost
::
bind
(
&
toast_callback
,
_1
));
addNewMsgCallback
(
boost
::
bind
(
&
on_new_message
,
_1
));
}
LLIMModel
::
LLIMSession
::
LLIMSession
(
const
LLUUID
&
session_id
,
const
std
::
string
&
name
,
const
EInstantMessage
&
type
,
const
LLUUID
&
other_participant_id
,
const
uuid_vec_t
&
ids
,
bool
voice
,
bool
has_offline_msg
)
...
...
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