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
175 lines
4.0 KiB
C++
175 lines
4.0 KiB
C++
/*
|
|
* Copyright 2021, Jaidyn Levesque <jadedctrl@teknik.io>
|
|
* All rights reserved. Distributed under the terms of the MIT license.
|
|
*/
|
|
|
|
#include "UserListView.h"
|
|
|
|
#include <Catalog.h>
|
|
#include <PopUpMenu.h>
|
|
#include <MenuItem.h>
|
|
#include <Window.h>
|
|
|
|
#include "AppMessages.h"
|
|
#include "ChatProtocolMessages.h"
|
|
#include "Conversation.h"
|
|
#include "MainWindow.h"
|
|
#include "ProtocolLooper.h"
|
|
#include "Role.h"
|
|
#include "Server.h"
|
|
#include "TheApp.h"
|
|
#include "User.h"
|
|
#include "UserInfoWindow.h"
|
|
#include "UserItem.h"
|
|
|
|
|
|
#undef B_TRANSLATION_CONTEXT
|
|
#define B_TRANSLATION_CONTEXT "UserListView"
|
|
|
|
|
|
static int
|
|
compare_by_name(const void* _item1, const void* _item2)
|
|
{
|
|
UserItem* item1 = *(UserItem**)_item1;
|
|
UserItem* item2 = *(UserItem**)_item2;
|
|
|
|
return item1->GetUser()->GetName().ICompare(item2->GetUser()->GetName());
|
|
}
|
|
|
|
|
|
UserListView::UserListView(const char* name)
|
|
: BListView(name),
|
|
fChat(NULL)
|
|
{
|
|
}
|
|
|
|
|
|
void
|
|
UserListView::MouseDown(BPoint where)
|
|
{
|
|
BListView::MouseDown(where);
|
|
|
|
uint32 buttons = 0;
|
|
Window()->CurrentMessage()->FindInt32("buttons", (int32*)&buttons);
|
|
|
|
if (!(buttons & B_SECONDARY_MOUSE_BUTTON))
|
|
return;
|
|
|
|
if (CurrentSelection() >= 0)
|
|
_UserPopUp()->Go(ConvertToScreen(where), true, false);
|
|
else
|
|
_BlankPopUp()->Go(ConvertToScreen(where), true, false);
|
|
}
|
|
|
|
|
|
void
|
|
UserListView::Sort()
|
|
{
|
|
SortItems(compare_by_name);
|
|
}
|
|
|
|
|
|
bool
|
|
UserListView::HasUser(User* user)
|
|
{
|
|
for (int i = 0; i < CountItems(); i++)
|
|
if (user == ((UserItem*)ItemAt(i))->GetUser())
|
|
return true;
|
|
return false;
|
|
}
|
|
|
|
|
|
void
|
|
UserListView::AddUser(User* user)
|
|
{
|
|
AddItem(new UserItem(user));
|
|
}
|
|
|
|
|
|
void
|
|
UserListView::RemoveUser(User* user)
|
|
{
|
|
for (int i = 0; i < CountItems(); i++)
|
|
if (user == ((UserItem*)ItemAt(i))->GetUser())
|
|
RemoveItem(i);
|
|
}
|
|
|
|
|
|
BPopUpMenu*
|
|
UserListView::_UserPopUp()
|
|
{
|
|
BPopUpMenu* menu = new BPopUpMenu("userPopUp");
|
|
UserItem* item = (UserItem*)ItemAt(CurrentSelection());
|
|
User* selected_user;
|
|
if (item == NULL || (selected_user = item->GetUser()) == NULL)
|
|
return _BlankPopUp();
|
|
|
|
Role* own_role = fChat->GetRole(fChat->GetOwnContact()->GetId());
|
|
|
|
Role* selected_role = fChat->GetRole(selected_user->GetId());
|
|
|
|
Server* server = ((TheApp*)be_app)->GetMainWindow()->GetServer();
|
|
BObjectList<BMessage> items = server->UserPopUpItems();
|
|
BObjectList<BMessage> protoItems = fChat->GetProtocolLooper()->Protocol()->UserPopUpItems();
|
|
items.AddList(&protoItems);
|
|
|
|
for (int i = 0; i < items.CountItems(); i++) {
|
|
BMessage* itemMsg = items.ItemAt(i);
|
|
_ProcessItem(itemMsg, menu, own_role, selected_role, selected_user->GetId());
|
|
}
|
|
return menu;
|
|
}
|
|
|
|
|
|
BPopUpMenu*
|
|
UserListView::_BlankPopUp()
|
|
{
|
|
BPopUpMenu* menu = new BPopUpMenu("blankPopUp");
|
|
|
|
BMenuItem* invite = new BMenuItem(B_TRANSLATE("Invite user"
|
|
B_UTF8_ELLIPSIS), new BMessage(APP_SEND_INVITE), 'I', B_COMMAND_KEY);
|
|
if (fChat == NULL)
|
|
invite->SetEnabled(false);
|
|
|
|
menu->AddItem(invite);
|
|
menu->SetTargetForItems(Window());
|
|
|
|
return menu;
|
|
}
|
|
|
|
|
|
void
|
|
UserListView::_ProcessItem(BMessage* itemMsg, BPopUpMenu* menu, Role* user,
|
|
Role* target, BString target_id)
|
|
{
|
|
BMessage* msg = new BMessage(*itemMsg);
|
|
bool priority = msg->GetBool("x_priority", false);
|
|
int32 perms = msg->GetInt32("x_perms", 0);
|
|
int32 target_perms = msg->GetInt32("x_target_perms", 0);
|
|
int32 target_antiperms = msg->GetInt32("x_target_antiperms", 0);
|
|
|
|
BMessage toSend;
|
|
msg->FindMessage("_msg", &toSend);
|
|
toSend.AddString("user_id", target_id);
|
|
toSend.AddString("chat_id", fChat->GetId());
|
|
toSend.AddInt64("instance", fChat->GetProtocolLooper()->GetInstance());
|
|
msg->ReplaceMessage("_msg", &toSend);
|
|
|
|
if ((perms == 0 || ((user != NULL) && (user->fPerms & perms)))
|
|
&& ((target == NULL) ||
|
|
((target_perms == 0 || (target->fPerms & target_perms))
|
|
&& (target_antiperms == 0 || (!(target->fPerms & target_antiperms)))
|
|
&& ((priority == false) || (user->fPriority > target->fPriority)))))
|
|
{
|
|
BMenuItem* item = new BMenuItem(msg);
|
|
if (msg->GetBool("x_to_protocol", true) == true)
|
|
item->SetTarget(fChat->GetProtocolLooper());
|
|
else
|
|
item->SetTarget(Window());
|
|
|
|
menu->AddItem(item);
|
|
}
|
|
}
|
|
|
|
|