f0ce3e87c6
Seperate UserItems are now created for each list, too, rather than a single one being created per-user. This functionally works a lot nicer. But onto more important things… now setting the user's own nick should work quite well. Finally. =w= This has given me a good bit of trouble over the past couple of days― setting the user's nick *worked*, but it wouldn't propagate to its corresponding UserItem nor its UserInfoDialog. It would, however, work with the StatusView. These are all registered Observers of the User itself, so if one works, they *all* should, them all being registered to the same User. Now, if a given User isn't found in the ProtocolLooper's user-list, the Conversation class will take it upon itself to create a new one and add it to both of their respective lists. So the user's own contact would be set in the ProtocolLooper― but it *wouldn't* be added to the user-list. Hilarity ensues as two seperate objects for the user's own contact would be created. Since the StatusView is registered to the ProtocolLooper's "real" own contact slot, it would receive all updates… but since Conversations' user-lists and items would be registered to the Conversation-created "fake" user, they would be borked. Simple oversight, but wow it hecked with me. :P
91 lines
1.4 KiB
C++
91 lines
1.4 KiB
C++
/*
|
|
* Copyright 2021, Jaidyn Levesque <jadedctrl@teknik.io>
|
|
* All rights reserved. Distributed under the terms of the MIT license.
|
|
*/
|
|
|
|
#include "UserItem.h"
|
|
|
|
#include <InterfaceDefs.h>
|
|
#include <View.h>
|
|
|
|
#include "AppConstants.h"
|
|
#include "NotifyMessage.h"
|
|
#include "User.h"
|
|
#include "Utils.h"
|
|
|
|
|
|
UserItem::UserItem(User* user)
|
|
:
|
|
BStringItem(user->GetName()),
|
|
fUser(user),
|
|
fStatus(user->GetNotifyStatus())
|
|
{
|
|
user->RegisterObserver(this);
|
|
}
|
|
|
|
|
|
UserItem::~UserItem()
|
|
{
|
|
fUser->UnregisterObserver(this);
|
|
}
|
|
|
|
|
|
void
|
|
UserItem::DrawItem(BView* owner, BRect frame, bool complete)
|
|
{
|
|
rgb_color highColor = owner->HighColor();
|
|
owner->SetHighColor(_GetTextColor(highColor));
|
|
|
|
BStringItem::DrawItem(owner, frame, complete);
|
|
|
|
owner->SetHighColor(highColor);
|
|
}
|
|
|
|
|
|
void
|
|
UserItem::ObserveString(int32 what, BString str)
|
|
{
|
|
switch (what) {
|
|
case STR_CONTACT_NAME:
|
|
SetText(str);
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
void
|
|
UserItem::ObserveInteger(int32 what, int32 value)
|
|
{
|
|
switch (what) {
|
|
case INT_CONTACT_STATUS:
|
|
{
|
|
fStatus = value;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
User*
|
|
UserItem::GetUser()
|
|
{
|
|
return fUser;
|
|
}
|
|
|
|
|
|
rgb_color
|
|
UserItem::_GetTextColor(rgb_color highColor)
|
|
{
|
|
switch (fStatus)
|
|
{
|
|
case STATUS_AWAY:
|
|
return TintColor(ui_color(B_LIST_ITEM_TEXT_COLOR), 1);
|
|
case STATUS_INVISIBLE:
|
|
case STATUS_DO_NOT_DISTURB:
|
|
return TintColor(ui_color(B_LIST_ITEM_TEXT_COLOR), 2);
|
|
case STATUS_OFFLINE:
|
|
return TintColor(ui_color(B_LIST_ITEM_TEXT_COLOR), 3);
|
|
}
|
|
return highColor;
|
|
}
|