Chat-O-Matic/application/windows/RosterEditWindow.cpp
Jaidyn Ann 373dcb4a58 Protocol message tweaks, bump API version
Some chat protocol messages' names have been changed to more fitting or
consistent names― e.g., "IM_AVATAR_SET" to "IM_USER_AVATAR_SET", or
"IM_CONTACT_LIST_*" to "IM_ROSTER_*" (to agree with Cardie's usage of
the word).

The API version has been bumped― for the forseeable future (at least
several months, I promise!) no compatibility-breaking changes will be
introduced. Until then, any new feautures or message slots will be
additive and optional.
2021-08-08 21:01:42 -05:00

242 lines
6.0 KiB
C++

/*
* Copyright 2009-2011, Andrea Anzani. All rights reserved.
* Copyright 2009-2011, Pier Luigi Fiorini. All rights reserved.
* Copyright 2021, Jaidyn Levesque. All rights reserved.
* Distributed under the terms of the MIT License.
*
* Authors:
* Andrea Anzani, andrea.anzani@gmail.com
* Pier Luigi Fiorini, pierluigi.fiorini@gmail.com
* Jaidyn Levesque, jadedctrl@teknik.io
*/
#include "RosterEditWindow.h"
#include <Button.h>
#include <Catalog.h>
#include <LayoutBuilder.h>
#include <MenuField.h>
#include <Notification.h>
#include <ScrollView.h>
#include <SeparatorView.h>
#include "AccountsMenu.h"
#include "AppMessages.h"
#include "AppPreferences.h"
#include "ChatProtocolMessages.h"
#include "RosterItem.h"
#include "RosterListView.h"
#include "RosterView.h"
#include "TemplateWindow.h"
#undef B_TRANSLATION_CONTEXT
#define B_TRANSLATION_CONTEXT "RosterEditWindow"
const uint32 kSendMessage = 'RWSM';
const uint32 kAddMember = 'RWAM';
const uint32 kRemoveMember = 'RWRM';
const uint32 kEditMember = 'RWEM';
const uint32 kSelAccount = 'RWSA';
const uint32 kSelNoAccount = 'RWNA';
const char* kAddTitle = B_TRANSLATE("Adding contact");
const char* kEditTitle = B_TRANSLATE("Editing contact");
RosterEditWindow* RosterEditWindow::fInstance = NULL;
RosterEditWindow::RosterEditWindow(Server* server)
:
BWindow(BRect(0, 0, 300, 400), B_TRANSLATE("Roster"), B_FLOATING_WINDOW,
B_AUTO_UPDATE_SIZE_LIMITS),
fServer(server),
fEditingWindow(NULL)
{
fRosterView = new RosterView("buddyView", server);
fRosterView->SetInvocationMessage(new BMessage(kEditMember));
fRosterView->SetManualString(BString("Add %user% as contact"
B_UTF8_ELLIPSIS));
fAccountField = new BMenuField("accountMenuField", NULL,
new AccountsMenu("accountMenu", BMessage(kSelAccount),
new BMessage(kSelNoAccount)));
font_height fontHeight;
fRosterView->GetFontHeight(&fontHeight);
int16 buttonHeight = int16(fontHeight.ascent + fontHeight.descent + 12);
BSize charButtonSize(buttonHeight, buttonHeight);
BButton* fAddButton = new BButton("+", new BMessage(kAddMember));
BButton* fRemoveButton = new BButton("-", new BMessage(kRemoveMember));
fAddButton->SetExplicitSize(charButtonSize);
fRemoveButton->SetExplicitSize(charButtonSize);
BLayoutBuilder::Group<>(this, B_VERTICAL, 0.0f)
.SetInsets(B_USE_DEFAULT_SPACING)
.Add(fRosterView)
.AddGroup(B_HORIZONTAL, 0, 0.0)
.Add(fAccountField)
.AddGlue()
.Add(new BSeparatorView(B_VERTICAL))
.AddGroup(B_VERTICAL, 0, 0.0)
.Add(new BSeparatorView(B_HORIZONTAL))
.AddGroup(B_HORIZONTAL, 1, 0.0)
.SetInsets(1)
.Add(fRemoveButton)
.Add(fAddButton)
.End()
.Add(new BSeparatorView(B_HORIZONTAL))
.End()
.Add(new BSeparatorView(B_VERTICAL))
.End()
.End();
CenterOnScreen();
}
RosterEditWindow::~RosterEditWindow()
{
fInstance = NULL;
}
RosterEditWindow*
RosterEditWindow::Get(Server* server)
{
if (fInstance == NULL) {
fInstance = new RosterEditWindow(server);
}
return fInstance;
}
bool
RosterEditWindow::Check()
{
return (fInstance != NULL);
}
void
RosterEditWindow::MessageReceived(BMessage* message)
{
switch (message->what) {
case kEditMember:
{
if (fEditingWindow != NULL && fEditingWindow->Lock()) {
fEditingWindow->Quit();
fEditingUser.SetTo("");
}
int index = message->FindInt32("index");
RosterItem* ritem = fRosterView->ListView()->RosterItemAt(index);
const char* search = fRosterView->SearchBox()->Text();
User* user;
BString user_id;
int64 instance;
if (ritem != NULL) {
user = ritem->GetContact();
user_id = user->GetId();
instance = user->GetProtocolLooper()->GetInstance();
}
else if (search != NULL) {
user_id = search;
instance = fRosterView->GetAccount();
}
else
break;
fEditingUser.SetTo(user_id.String());
// The response IM_EXTENDED_CONTACT_INFO is used to populate the
// TemplateWindow― if we're editing a pre-existing contact
if (ritem != NULL) {
user = ritem->GetContact();
BMessage* request = new BMessage(IM_MESSAGE);
request->AddInt32("im_what", IM_GET_EXTENDED_CONTACT_INFO);
request->AddString("user_id", user_id);
user->GetProtocolLooper()->PostMessage(request);
}
BMessage* edit = new BMessage(IM_MESSAGE);
edit->AddInt32("im_what", IM_ROSTER_EDIT_CONTACT);
const char* title;
if (ritem == NULL)
title = kAddTitle;
else
title = kEditTitle;
fEditingWindow =
new TemplateWindow(title, "roster",
edit, fServer, instance);
fEditingWindow->Show();
if (ritem == NULL) {
BMessage* idMsg = new BMessage(IM_MESSAGE);
idMsg->AddString("user_id", user_id);
fEditingWindow->PostMessage(idMsg);
}
break;
}
case kAddMember:
{
BMessage* add = new BMessage(IM_MESSAGE);
add->AddInt32("im_what", IM_ROSTER_ADD_CONTACT);
TemplateWindow* win =
new TemplateWindow(B_TRANSLATE(kAddTitle), "roster",
add, fServer);
win->Show();
break;
}
case kRemoveMember:
{
int index = message->FindInt32("index");
RosterItem* ritem = fRosterView->ListView()->RosterItemAt(index);
if (ritem == NULL)
return;
User* user = ritem->GetContact();
BMessage* rem = new BMessage(IM_MESSAGE);
rem->AddInt32("im_what", IM_ROSTER_REMOVE_CONTACT);
rem->AddString("user_id", user->GetId());
user->GetProtocolLooper()->PostMessage(rem);
break;
}
case IM_MESSAGE: {
if (message->GetInt32("im_what", 0) == IM_EXTENDED_CONTACT_INFO)
if (message->GetString("user_id", "") == fEditingUser)
fEditingWindow->PostMessage(message);
fRosterView->MessageReceived(message);
break;
}
case kSelAccount:
{
AccountInstances accounts = fServer->GetActiveAccounts();
int index = message->FindInt32("index") - 1;
if (index < 0 || index > (accounts.CountItems() - 1))
return;
fRosterView->SetAccount(accounts.ValueAt(index));
break;
}
case kSelNoAccount:
fRosterView->SetAccount(-1);
break;
default:
BWindow::MessageReceived(message);
}
}
void
RosterEditWindow::UpdateListItem(RosterItem* item)
{
fRosterView->UpdateListItem(item);
}