2011-12-14 17:36:27 -06:00
|
|
|
/*
|
2012-09-25 16:45:29 -05:00
|
|
|
* Copyright 2011-2012, Dario Casalinuovo. All rights reserved.
|
2011-12-14 17:36:27 -06:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Dario Casalinuovo
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <Application.h>
|
|
|
|
#include <AppFileInfo.h>
|
|
|
|
#include <Bitmap.h>
|
2012-03-03 20:27:16 -06:00
|
|
|
#include <Deskbar.h>
|
2011-12-14 17:36:27 -06:00
|
|
|
#include <IconUtils.h>
|
|
|
|
#include <Message.h>
|
|
|
|
#include <MenuField.h>
|
|
|
|
#include <MenuItem.h>
|
|
|
|
#include <PopUpMenu.h>
|
|
|
|
#include <Roster.h>
|
|
|
|
#include <Window.h>
|
|
|
|
|
|
|
|
#include <libinterface/BitmapMenuItem.h>
|
|
|
|
#include <libinterface/BitmapUtils.h>
|
|
|
|
|
|
|
|
#include "AccountManager.h"
|
|
|
|
#include "BitmapView.h"
|
|
|
|
#include "Caya.h"
|
|
|
|
#include "CayaMessages.h"
|
2012-03-03 20:27:16 -06:00
|
|
|
#include "CayaPreferences.h"
|
2011-12-14 17:36:27 -06:00
|
|
|
#include "CayaProtocolMessages.h"
|
|
|
|
#include "CayaUtils.h"
|
|
|
|
#include "NicknameTextControl.h"
|
|
|
|
#include "ReplicantStatusView.h"
|
|
|
|
#include "ReplicantMenuItem.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
extern "C" _EXPORT BView *instantiate_deskbar_item(void);
|
|
|
|
|
|
|
|
|
|
|
|
// The following handler is added to the Deskbar's looper
|
|
|
|
// to receive notifications from Caya
|
|
|
|
class ReplicantHandler : public BHandler {
|
|
|
|
public:
|
|
|
|
ReplicantHandler(const char* name, ReplicantStatusView* target)
|
2012-09-25 16:45:29 -05:00
|
|
|
:
|
|
|
|
BHandler(name)
|
2011-12-14 17:36:27 -06:00
|
|
|
{
|
|
|
|
fTarget = target;
|
|
|
|
}
|
|
|
|
|
|
|
|
~ReplicantHandler() {}
|
|
|
|
|
|
|
|
virtual void MessageReceived(BMessage* message)
|
|
|
|
{
|
|
|
|
switch (message->what) {
|
|
|
|
case IM_OWN_STATUS_SET:
|
|
|
|
{
|
|
|
|
int32 status;
|
|
|
|
|
|
|
|
if (message->FindInt32("status", &status) != B_OK)
|
|
|
|
return;
|
|
|
|
fTarget->SetStatus((CayaStatus)status);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
BHandler::MessageReceived(message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
ReplicantStatusView* fTarget;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
ReplicantStatusView::ReplicantStatusView()
|
|
|
|
:
|
|
|
|
BView(BRect(0, 0, 15, 15), "ReplicantStatusView",
|
|
|
|
B_FOLLOW_LEFT | B_FOLLOW_TOP, B_WILL_DRAW)
|
|
|
|
{
|
|
|
|
_Init();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ReplicantStatusView::ReplicantStatusView(BMessage* archive)
|
|
|
|
:
|
|
|
|
BView(archive)
|
|
|
|
{
|
|
|
|
_Init();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ReplicantStatusView::~ReplicantStatusView()
|
|
|
|
{
|
|
|
|
delete fResources;
|
|
|
|
delete fCayaMsg;
|
|
|
|
delete fReplicantHandler;
|
2012-05-15 12:31:31 -05:00
|
|
|
delete fReplicantMenu;
|
2011-12-14 17:36:27 -06:00
|
|
|
|
|
|
|
// TODO: Use a list for that
|
|
|
|
// maybe our List wrapper to std::list
|
|
|
|
delete fConnectingIcon;
|
|
|
|
delete fCayaIcon;
|
|
|
|
delete fOfflineIcon;
|
|
|
|
delete fBusyIcon;
|
|
|
|
delete fAwayIcon;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
ReplicantStatusView::MessageReceived(BMessage* msg)
|
|
|
|
{
|
|
|
|
switch (msg->what) {
|
|
|
|
case CAYA_REPLICANT_STATUS_SET:
|
|
|
|
{
|
|
|
|
int32 status;
|
|
|
|
|
|
|
|
if (msg->FindInt32("status", &status) != B_OK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
SetStatus((CayaStatus)status);
|
|
|
|
fCayaMsg->SendMessage(msg);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case CAYA_REPLICANT_EXIT:
|
|
|
|
case CAYA_SHOW_SETTINGS:
|
|
|
|
case CAYA_REPLICANT_SHOW_WINDOW:
|
|
|
|
case CAYA_REPLICANT_MESSENGER:
|
|
|
|
fCayaMsg->SendMessage(msg);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
BView::MessageReceived(msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
ReplicantStatusView::SetStatus(CayaStatus status)
|
|
|
|
{
|
|
|
|
for (int32 i = 0; i < fReplicantMenu->CountItems(); i++) {
|
|
|
|
ReplicantMenuItem* item
|
|
|
|
= dynamic_cast<ReplicantMenuItem*>(fReplicantMenu->ItemAt(i));
|
|
|
|
if (item == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (item->IsMarked())
|
|
|
|
item->SetMarked(false);
|
|
|
|
|
|
|
|
if (item && item->Status() == status && !item->IsCustom())
|
|
|
|
item->SetMarked(true);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (status) {
|
|
|
|
case CAYA_AWAY:
|
|
|
|
fIcon = fAwayIcon;
|
|
|
|
break;
|
|
|
|
case CAYA_DO_NOT_DISTURB:
|
|
|
|
fIcon = fBusyIcon;
|
|
|
|
break;
|
2012-05-15 12:20:11 -05:00
|
|
|
case CAYA_CUSTOM_STATUS:
|
|
|
|
fIcon = fCayaIcon;
|
|
|
|
break;
|
|
|
|
case CAYA_INVISIBLE:
|
2011-12-14 17:36:27 -06:00
|
|
|
case CAYA_OFFLINE:
|
|
|
|
fIcon = fOfflineIcon;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
fIcon = fCayaIcon;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
Invalidate();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Draw our deskbar icon.
|
|
|
|
void
|
|
|
|
ReplicantStatusView::Draw(BRect rect)
|
|
|
|
{
|
|
|
|
SetDrawingMode(B_OP_ALPHA);
|
|
|
|
DrawBitmap(fIcon);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ReplicantStatusView*
|
|
|
|
ReplicantStatusView::Instantiate(BMessage* archive)
|
|
|
|
{
|
|
|
|
if (!validate_instantiation(archive, "ReplicantStatusView"))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return new ReplicantStatusView(archive);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
status_t
|
|
|
|
ReplicantStatusView::Archive(BMessage* archive, bool deep) const
|
|
|
|
{
|
|
|
|
status_t status = BView::Archive(archive, deep);
|
|
|
|
|
|
|
|
if (status == B_OK)
|
|
|
|
status = archive->AddString("add_on", CAYA_SIGNATURE);
|
|
|
|
|
|
|
|
if (status == B_OK)
|
|
|
|
status = archive->AddString("class", "ReplicantStatusView");
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
ReplicantStatusView::AttachedToWindow()
|
|
|
|
{
|
|
|
|
BView::AttachedToWindow();
|
|
|
|
if (Parent())
|
|
|
|
SetViewColor(Parent()->ViewColor());
|
|
|
|
else
|
|
|
|
SetViewColor(ui_color(B_PANEL_BACKGROUND_COLOR));
|
|
|
|
|
|
|
|
SetLowColor(ViewColor());
|
|
|
|
|
|
|
|
fReplicantHandler = new ReplicantHandler("CayaReplicantHandler", this);
|
|
|
|
if (Window()->Lock()) {
|
|
|
|
Window()->AddHandler(fReplicantHandler);
|
|
|
|
Window()->Unlock();
|
|
|
|
}
|
|
|
|
|
|
|
|
BMessage msg(CAYA_REPLICANT_MESSENGER);
|
|
|
|
BMessenger messenger(fReplicantHandler);
|
|
|
|
if (!messenger.IsValid())
|
|
|
|
return;
|
|
|
|
msg.AddMessenger("messenger", messenger);
|
|
|
|
fCayaMsg->SendMessage(&msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
ReplicantStatusView::DetachedFromWindow()
|
|
|
|
{
|
|
|
|
if (Window()->Lock()) {
|
|
|
|
Window()->RemoveHandler(fReplicantHandler);
|
|
|
|
Window()->Unlock();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
ReplicantStatusView::MouseDown(BPoint point)
|
|
|
|
{
|
|
|
|
|
2017-01-30 00:19:59 -06:00
|
|
|
uint32 buttons;
|
2011-12-14 17:36:27 -06:00
|
|
|
if (LockLooper()) {
|
|
|
|
GetMouse(&point, &buttons, false);
|
|
|
|
UnlockLooper();
|
|
|
|
}
|
|
|
|
if (buttons & B_PRIMARY_MOUSE_BUTTON) {
|
|
|
|
// Show / Hide Window command
|
|
|
|
BMessage msg(CAYA_REPLICANT_SHOW_WINDOW);
|
|
|
|
fCayaMsg->SendMessage(&msg);
|
|
|
|
} else if(buttons & B_SECONDARY_MOUSE_BUTTON) {
|
|
|
|
// Build replicant menu
|
|
|
|
_ShowMenu(point);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
ReplicantStatusView::_Init()
|
|
|
|
{
|
|
|
|
SetViewColor(ui_color(B_PANEL_BACKGROUND_COLOR));
|
|
|
|
|
|
|
|
// Creating the Send messenger and sending
|
|
|
|
// a messenger targeting this to Caya.
|
|
|
|
// This will allow the Replicant to communicate
|
|
|
|
// whith Caya.
|
|
|
|
fCayaMsg = new BMessenger(CAYA_SIGNATURE);
|
|
|
|
|
|
|
|
fResources = CayaResources();
|
|
|
|
|
|
|
|
//Get icons from resources
|
2012-05-15 11:48:53 -05:00
|
|
|
fConnectingIcon = _GetIcon(kOnlineReplicant);
|
2011-12-14 17:36:27 -06:00
|
|
|
fCayaIcon = _GetIcon(kCayaIconReplicant);
|
|
|
|
fOfflineIcon = _GetIcon(kOfflineReplicant);
|
|
|
|
fIcon = fOfflineIcon;
|
|
|
|
fBusyIcon = _GetIcon(kBusyReplicant);
|
|
|
|
fAwayIcon = _GetIcon(kAwayReplicant);
|
|
|
|
fExitMenuIcon = _GetIcon(kExitMenuReplicant);
|
2012-03-11 20:41:46 -05:00
|
|
|
fPreferencesIcon = _GetIcon(kToolIcon);
|
2011-12-14 17:36:27 -06:00
|
|
|
|
|
|
|
// Build the replicant menu
|
|
|
|
_BuildMenu();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
BBitmap*
|
|
|
|
ReplicantStatusView::_GetIcon(const uint32 id)
|
|
|
|
{
|
|
|
|
BBitmap* icon = IconFromResources(fResources, id, B_MINI_ICON);
|
|
|
|
return icon;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
ReplicantStatusView::_BuildMenu()
|
|
|
|
{
|
|
|
|
// Status menu
|
2012-05-15 11:48:53 -05:00
|
|
|
|
2011-12-14 17:36:27 -06:00
|
|
|
fReplicantMenu = new BPopUpMenu(" - ", false, false);
|
|
|
|
// Add status menu items
|
|
|
|
int32 s = CAYA_ONLINE;
|
|
|
|
while (s >= CAYA_ONLINE && s < CAYA_STATUSES) {
|
|
|
|
BMessage* msg = new BMessage(CAYA_REPLICANT_STATUS_SET);
|
|
|
|
msg->AddInt32("status", s);
|
|
|
|
|
|
|
|
ReplicantMenuItem* item = new ReplicantMenuItem(
|
|
|
|
CayaStatusToString((CayaStatus)s), (CayaStatus)s);
|
|
|
|
fReplicantMenu->AddItem(item);
|
|
|
|
|
|
|
|
// Mark offline status by default
|
|
|
|
if (s == CAYA_OFFLINE)
|
|
|
|
item->SetMarked(true);
|
|
|
|
s++;
|
|
|
|
}
|
|
|
|
|
|
|
|
fReplicantMenu->AddItem(new BSeparatorItem());
|
|
|
|
|
|
|
|
fReplicantMenu->AddItem(new BitmapMenuItem("Preferences ",
|
2012-03-11 20:41:46 -05:00
|
|
|
new BMessage(CAYA_SHOW_SETTINGS), fPreferencesIcon));
|
2011-12-14 17:36:27 -06:00
|
|
|
|
|
|
|
fReplicantMenu->AddItem(new BitmapMenuItem("Exit",
|
|
|
|
new BMessage(CAYA_REPLICANT_EXIT), fExitMenuIcon));
|
|
|
|
|
|
|
|
fReplicantMenu->SetTargetForItems(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
ReplicantStatusView::_ShowMenu(BPoint point)
|
|
|
|
{
|
|
|
|
fReplicantMenu->SetTargetForItems(this);
|
|
|
|
ConvertToScreen(&point);
|
|
|
|
fReplicantMenu->Go(point, true, true, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
extern "C" _EXPORT BView *
|
|
|
|
instantiate_deskbar_item(void)
|
|
|
|
{
|
|
|
|
return new ReplicantStatusView();
|
|
|
|
}
|
2012-03-03 20:27:16 -06:00
|
|
|
|
|
|
|
|
|
|
|
// The following methods install
|
|
|
|
// and remove the Caya's replicant
|
|
|
|
// from Deskbar.
|
|
|
|
status_t
|
|
|
|
ReplicantStatusView::InstallReplicant()
|
|
|
|
{
|
|
|
|
if (CayaPreferences::Item()->DisableReplicant == true)
|
|
|
|
return B_OK;
|
|
|
|
|
|
|
|
BDeskbar deskbar;
|
|
|
|
if (deskbar.HasItem("ReplicantStatusView")) {
|
|
|
|
ReplicantStatusView::RemoveReplicant();
|
|
|
|
}
|
|
|
|
ReplicantStatusView* view = new ReplicantStatusView();
|
|
|
|
return deskbar.AddItem(view);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
status_t
|
|
|
|
ReplicantStatusView::RemoveReplicant()
|
|
|
|
{
|
|
|
|
BDeskbar deskbar;
|
|
|
|
return deskbar.RemoveItem("ReplicantStatusView");
|
|
|
|
}
|