summaryrefslogtreecommitdiff
path: root/indra/newview/llimfloatercontainer.cpp
AgeCommit message (Collapse)Author
2012-11-09CHUI-337 FIXED: To avoid confusion with a classes "...conversation..." and ↵AlexanderP ProductEngine
in accordance with the naming convention in the project, some classes and corresponding files should be renamed: LLIMConversation -> LLFloaterIMSessionTab LLIMFloater -> LLFloaterIMSession LLNearbyChat -> LLFloaterIMNearbyChat LLIMFloaterContainer -> LLFloaterIMContainer LLNearbyChatBarListener -> LLFloaterIMNearbyChatListener LLNearbyChatHandler -> LLFloaterIMNearbyChatHandler
2012-11-08Pull merge from richard/viewer-chui.Merov Linden
2012-11-08Pull merge from viewer-chuiMerov Linden
2012-11-08merging into latest changesMaximB ProductEngine
2012-11-07Pull from viewer-chui, had to resolve conflicts on llimfloatercontainer.cppMerov Linden
2012-11-07CHUI-468 : WIP : Clean up LLAvatarList and all sorting code left over in ↵Merov Linden
LLParticipantList
2012-11-07CHUI-473, CHUI-482 FIXED (Clicking on nearby chat toast to open Conversation ↵AlexanderP ProductEngine
floater does not show Nearby Chat conversation selected in list; Nearby chat conversation is not selected in list by default when it is the only conversation ): implement. new logic in LLIMFloaterContainer for the syncronous select the conv. list's item and corresponding convers. floater; removed floater selecting from conv. items; fixed bug with item select
2012-11-06CHUI-468 : WIP : More cleanup and fix of the participants sorting in ↵Merov Linden
LLIMConversation
2012-11-06CHUI-462 (Torn-off Nearby Chat can't be closed)MaximB ProductEngine
2012-11-06CHUI-448 FIXED p2p IM chat conversations show a participant list with a caratmaksymsproductengine
2012-11-05CHUI-468 : WIP : Taking LLAvatarList and related out of LLParticipantListMerov Linden
2012-11-06CHUI-460 FIXED Reselect current conversation on clicking expand/collapse buttonmaxim_productengine
2012-11-03Pull merge from richard/viewer-chuiMerov Linden
2012-11-01CHUI-445 FIXED Select the next conversation in the list when current ↵maxim_productengine
conversation is deleted
2012-10-31CHUI-374 ADD. FIX, CHUI-442 FIXED (Nearby chat is torn off and cannot be ↵AlexanderP ProductEngine
docked if nearby chat is received while conversation floater is closed) - implement. lazy creating of container
2012-10-30CHUI-471: Adjusted conversationview so that indentation of the avatar icon ↵Gilbert Gonzales
is dependent upon getIndentation() instead of modifying avatar icon's left value.
2012-10-30CHUI-459: Creating a fetchAvatarName() method for the ↵William Todd Stinson
LLConversationItemParticipant class to allow the class to query for the avatar display name directly. Also, added a field to store the avatar name cache callback connection so that we can disconnect properly on object destruction to avoid a crash with the callback attempting to access recently freed memory.
2012-10-30merging into latest changesMaximB ProductEngine
2012-10-30CHUI-437 (Conversation floater shows as transparent after being minimized ↵MaximB ProductEngine
and unminimized)
2012-10-29Pull merge from richard/viewer-chuiMerov Linden
2012-10-29CHUI-469 : Fixed. Add the widget to its map, init the widget map ↵Merov Linden
consistently and correctly.
2012-10-26CHUI-469 : WIP : Add participants to the nearby chat torn off panelMerov Linden
2012-10-26CHUI-465 : Add event handling for LLIMConversation participant listMerov Linden
2012-10-26CHUI-383: Realized that prior changes for this bug caused a regress. The ↵Gilbert Gonzales
regress was using the people panel or a notecard to start a im/call with a user. When doing this the conversation line item would not be focused. Resolution: Changed all calls to LLIMFloater::show() to LLIMFloaterContainer::showConversation(), which will first select the conversation line item and then show the corresponding conversation floater.
2012-10-26merging in latest changesGilbert Gonzales
2012-10-26CHUI-383: Now a new conversation will not take focus. Instead a toast will ↵Gilbert Gonzales
appear. Problem: Each time a conversation was added, code would execute to add the conversation floater AND select the conversation. Resolution: This is no longer the expected behavior so adjusted LLIMFloater::addToHost() to only add a floater and not select/show the floater. If selection and/or showing is needed it seems to make sense that this is done outside LLIMFloater:addToHost().
2012-10-26CHUI-457 FIXED Check that selected participant is not self before performing ↵maxim_productengine
actions.
2012-10-25CHUI-441 : WIP : Fix crashes when spawning torn off floaters, added widgets ↵Merov Linden
creation in the torn off floater for participants.
2012-10-25CHUI-449: Post code review with Merov, adjusted setConvItemSelect() fuction ↵Gilbert Gonzales
to be called selectConversation().
2012-10-25CHUI-449: Got rid of a function called setItemSelect(), I wrote this code ↵Gilbert Gonzales
and it doesn't have a purpose anymore since I can use setConvItemSelect() instead. Also now torn off, minimized conversations are selected when clicking a toast for that conversation. Resolution: Adjusted setConvItemSelect() to be less strict when trying to select an item, now as long as the function is called it will attempt to select the conversation line item.
2012-10-24CHUI-441 : WIP : Fix the initial attach code so to allow creation of the ↵Merov Linden
conversation item before the dialog
2012-10-24CHUI-441 : WIP : More map clean up and better use of get_ptr_in_map()Merov Linden
2012-10-24CHUI-441 : WIP : Fixed the creation of empty model records in the list modelMerov Linden
2012-10-24CHUI-449: Problem: When a toast was clicked, the conversation floater was ↵Gilbert Gonzales
displayed without selecting the conversation line item. Resolution: Added a function that will show the conversation floater container and then trigger selecting the conversation line item. When the conversation line item is selecting this implicitly will cause the correct conversation floater to be displayed.
2012-10-24CHUI-441 : WIP : Initial refactor part 2. Works but the list doesn't update ↵Merov Linden
in the torn off dialog.
2012-10-24CHUI-430 FIXED Open Nearby chat if is is the only conversation in the list.maxim_productengine
2012-10-22CHUI-441 : WIP : Initial changes to LLIMFloater to use the same model as ↵Merov Linden
LLIMFloaterContainer
2012-10-22CHUI-428 (Scroll conversation list to the newly created conversation)MaximB ProductEngine
fixed
2012-10-19CHUI-416 FIXED Check if conversationItem is not NULL before calling getType().maxim_productengine
2012-10-18merging in latest changesGilbert Gonzales
2012-10-18CHUI-329: Post code review commit, instead of hard coded the parenthesis, ↵Gilbert Gonzales
created a custom string in string.xml. The reasoning for this is because some languages may not use the parenthesis or perhaps even use brackets if needed...basically allows for flexibility.
2012-10-18CHUI-329: The text is now gray due to CHUI 410. The only change in this ↵Gilbert Gonzales
commit is that parenthesis surround the nearby chat text (Nearby chat).
2012-10-18CHUI-412 (User restricted in resizing conversation floater width)MaximB ProductEngine
fixed
2012-10-17CHUI-394 FIXED Group moderation tools missing in right click menusmaksymsproductengine
2012-10-15CHUI-380: Merge fix, the addConverationListItem API was changedso that it ↵Gilbert Gonzales
does not by default select the new conversation item. Adjusted sessionAdded and sessionVoiceOrImStarted functions to specify that the first item should be selected when calling addConversationListItem().
2012-10-15merging in latest changesGilbert Gonzales
2012-10-15CHUI-380: Final commit for this issue. After code review changed some method ↵Gilbert Gonzales
names to be more accurate. Also using dynamic_cast instead of static_cast for safety.
2012-10-15CHUI-400 FIXED Disable "Activate Group" menu item if selected group is the ↵maxim_productengine
active group
2012-10-12CHUI-380: (In progress) Refactoring needed to fix focusing issues when ↵Gilbert Gonzales
selecting an existing conversation item. This commit resolves re-introducing bug CHUI-289. Will code review and cleanup code in next commit.
2012-10-12CHUI-385 FIXED All user's do not receive ad hoc messages after adding a user ↵maksymsproductengine
to a conversation