2010-05-19 13:05:30 -05:00
|
|
|
/*
|
|
|
|
* Copyright 2010, Oliver Ruiz Dorantes. All rights reserved.
|
2012-03-01 20:23:21 -06:00
|
|
|
* Copyright 2012, Dario Casalinuovo. All rights reserved.
|
2010-05-19 13:05:30 -05:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <Button.h>
|
|
|
|
#include <CheckBox.h>
|
|
|
|
#include <ControlLook.h>
|
2012-03-03 20:27:16 -06:00
|
|
|
#include <Deskbar.h>
|
2010-05-19 13:05:30 -05:00
|
|
|
#include <GroupLayout.h>
|
|
|
|
#include <GroupLayoutBuilder.h>
|
|
|
|
#include <ScrollView.h>
|
|
|
|
#include <StringView.h>
|
|
|
|
|
2012-03-03 20:27:16 -06:00
|
|
|
#include "AccountManager.h"
|
2010-05-19 13:05:30 -05:00
|
|
|
#include "CayaProtocol.h"
|
|
|
|
#include "PreferencesBehavior.h"
|
|
|
|
#include "CayaPreferences.h"
|
|
|
|
#include "ProtocolManager.h"
|
|
|
|
#include "ProtocolSettings.h"
|
|
|
|
#include "MainWindow.h"
|
2012-03-03 20:27:16 -06:00
|
|
|
#include "ReplicantStatusView.h"
|
2010-05-19 13:05:30 -05:00
|
|
|
#include "TheApp.h"
|
|
|
|
|
|
|
|
const uint32 kToCurrentWorkspace = 'CBcw';
|
|
|
|
const uint32 kActivateChatWindow = 'CBac';
|
2012-03-01 20:23:21 -06:00
|
|
|
const uint32 kDisableReplicant = 'DSrp';
|
|
|
|
const uint32 kPermanentReplicant ='PRpt';
|
2012-03-03 20:27:16 -06:00
|
|
|
const uint32 kHideCayaDeskbar = 'HCtk';
|
2010-05-20 13:37:01 -05:00
|
|
|
|
2010-05-19 13:05:30 -05:00
|
|
|
|
2010-05-19 15:37:26 -05:00
|
|
|
|
2010-05-19 13:05:30 -05:00
|
|
|
PreferencesBehavior::PreferencesBehavior()
|
|
|
|
: BView("Behavior", B_WILL_DRAW)
|
|
|
|
{
|
|
|
|
|
2010-05-30 17:02:50 -05:00
|
|
|
fOnIncoming = new BStringView("onIncoming", "On incoming message...");
|
2010-05-30 17:00:09 -05:00
|
|
|
fOnIncoming->SetExplicitAlignment(BAlignment(B_ALIGN_LEFT, B_ALIGN_MIDDLE));
|
|
|
|
fOnIncoming->SetFont(be_bold_font);
|
2010-05-19 13:05:30 -05:00
|
|
|
|
|
|
|
fToCurrentWorkspace = new BCheckBox("ToCurrentWorkspace",
|
|
|
|
"Move window to current workspace",
|
|
|
|
new BMessage(kToCurrentWorkspace));
|
|
|
|
|
|
|
|
fActivateChatWindow = new BCheckBox("ActivateChatWindow",
|
|
|
|
"Get focus ",
|
|
|
|
new BMessage(kActivateChatWindow));
|
|
|
|
|
|
|
|
fPlaySoundOnMessageReceived = new BCheckBox("PlaySoundOnMessageReceived",
|
|
|
|
"Play sound event", NULL);
|
|
|
|
fPlaySoundOnMessageReceived->SetEnabled(false); // not implemented
|
|
|
|
|
|
|
|
fMarkUnreadWindow = new BCheckBox("MarkUnreadWindow",
|
|
|
|
"Mark unread window chat", NULL);
|
2010-05-30 17:00:09 -05:00
|
|
|
fMarkUnreadWindow->SetEnabled(false);
|
2012-03-03 20:27:16 -06:00
|
|
|
|
|
|
|
fMarkUnreadReplicant = new BCheckBox("MarkUnreadReplicant",
|
|
|
|
"Mark unread the Deskbar Replicant", NULL);
|
|
|
|
fMarkUnreadReplicant->SetEnabled(false);
|
2010-05-30 17:00:09 -05:00
|
|
|
// not implemented
|
2010-05-19 13:05:30 -05:00
|
|
|
|
2012-03-03 20:27:16 -06:00
|
|
|
fReplicantString = new BStringView("ReplicantString", "Deskbar Replicant");
|
2012-03-01 20:23:21 -06:00
|
|
|
fReplicantString->SetExplicitAlignment(BAlignment(B_ALIGN_LEFT, B_ALIGN_MIDDLE));
|
|
|
|
fReplicantString->SetFont(be_bold_font);
|
|
|
|
|
2011-12-14 17:36:27 -06:00
|
|
|
fDisableReplicant = new BCheckBox("DisableReplicant",
|
2012-03-03 20:27:16 -06:00
|
|
|
"Disable Deskbar replicant", new BMessage(kDisableReplicant));
|
2011-12-14 17:36:27 -06:00
|
|
|
|
|
|
|
fPermanentReplicant = new BCheckBox("PermanentReplicant",
|
|
|
|
"Permanent Deskbar Replicant", NULL);
|
2012-03-01 20:23:21 -06:00
|
|
|
fPermanentReplicant->SetEnabled(false);
|
2011-12-14 17:36:27 -06:00
|
|
|
|
2012-03-01 20:23:21 -06:00
|
|
|
fHideCayaDeskbar = new BCheckBox("HideCayaDeskbar",
|
2012-03-03 20:27:16 -06:00
|
|
|
"Hide Caya field in Deskbar", new BMessage(kHideCayaDeskbar));
|
2011-12-14 17:36:27 -06:00
|
|
|
|
2010-05-19 13:05:30 -05:00
|
|
|
const float spacing = be_control_look->DefaultItemSpacing();
|
|
|
|
|
|
|
|
SetLayout(new BGroupLayout(B_HORIZONTAL, spacing));
|
|
|
|
AddChild(BGroupLayoutBuilder(B_VERTICAL)
|
2010-05-30 17:00:09 -05:00
|
|
|
.Add(fOnIncoming)
|
2010-05-19 13:05:30 -05:00
|
|
|
.AddGroup(B_VERTICAL, spacing)
|
|
|
|
.Add(fToCurrentWorkspace)
|
|
|
|
.Add(fActivateChatWindow)
|
|
|
|
.Add(fMarkUnreadWindow)
|
2012-03-03 20:27:16 -06:00
|
|
|
.Add(fMarkUnreadReplicant)
|
2010-05-19 13:05:30 -05:00
|
|
|
.Add(fPlaySoundOnMessageReceived)
|
2012-03-01 20:23:21 -06:00
|
|
|
.SetInsets(spacing * 2, spacing, spacing, spacing)
|
|
|
|
.End()
|
|
|
|
.Add(fReplicantString)
|
|
|
|
.AddGroup(B_VERTICAL, spacing)
|
2011-12-14 17:36:27 -06:00
|
|
|
.Add(fDisableReplicant)
|
|
|
|
.Add(fPermanentReplicant)
|
2012-03-01 20:23:21 -06:00
|
|
|
.Add(fHideCayaDeskbar)
|
|
|
|
.SetInsets(spacing * 2, spacing, spacing, spacing)
|
2010-05-19 13:05:30 -05:00
|
|
|
.End()
|
2010-05-19 17:06:25 -05:00
|
|
|
.AddGlue()
|
2010-05-19 13:05:30 -05:00
|
|
|
.SetInsets(spacing, spacing, spacing, spacing)
|
2010-10-24 01:27:09 -05:00
|
|
|
.TopView()
|
2010-05-19 13:05:30 -05:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
PreferencesBehavior::AttachedToWindow()
|
|
|
|
{
|
|
|
|
fToCurrentWorkspace->SetTarget(this);
|
|
|
|
fActivateChatWindow->SetTarget(this);
|
2012-03-03 20:27:16 -06:00
|
|
|
fHideCayaDeskbar->SetTarget(this);
|
|
|
|
fDisableReplicant->SetTarget(this);
|
2010-05-19 13:05:30 -05:00
|
|
|
|
2010-05-19 15:37:26 -05:00
|
|
|
fToCurrentWorkspace->SetValue(
|
|
|
|
CayaPreferences::Item()->MoveToCurrentWorkspace);
|
|
|
|
fActivateChatWindow->SetValue(
|
|
|
|
CayaPreferences::Item()->ActivateWindow);
|
2012-03-03 20:27:16 -06:00
|
|
|
fHideCayaDeskbar->SetValue(
|
|
|
|
CayaPreferences::Item()->HideCayaDeskbar);
|
|
|
|
fDisableReplicant->SetValue(
|
|
|
|
CayaPreferences::Item()->DisableReplicant);
|
2010-05-19 13:05:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
PreferencesBehavior::MessageReceived(BMessage* message)
|
|
|
|
{
|
|
|
|
switch (message->what) {
|
|
|
|
case kToCurrentWorkspace:
|
2010-05-19 15:37:26 -05:00
|
|
|
CayaPreferences::Item()->MoveToCurrentWorkspace
|
|
|
|
= fToCurrentWorkspace->Value();
|
2010-05-19 13:05:30 -05:00
|
|
|
break;
|
|
|
|
case kActivateChatWindow:
|
2010-05-19 15:37:26 -05:00
|
|
|
CayaPreferences::Item()->ActivateWindow
|
|
|
|
= fActivateChatWindow->Value();
|
2010-05-19 13:05:30 -05:00
|
|
|
break;
|
2012-03-03 20:27:16 -06:00
|
|
|
case kHideCayaDeskbar:
|
|
|
|
CayaPreferences::Item()->HideCayaDeskbar
|
|
|
|
= fHideCayaDeskbar->Value();
|
|
|
|
break;
|
|
|
|
case kDisableReplicant:
|
|
|
|
CayaPreferences::Item()->DisableReplicant
|
|
|
|
= fDisableReplicant->Value();
|
|
|
|
|
|
|
|
if (fDisableReplicant->Value() == true)
|
|
|
|
ReplicantStatusView::RemoveReplicant();
|
|
|
|
else
|
|
|
|
ReplicantStatusView::InstallReplicant();
|
|
|
|
|
|
|
|
break;
|
2010-05-19 13:05:30 -05:00
|
|
|
default:
|
|
|
|
BView::MessageReceived(message);
|
|
|
|
}
|
|
|
|
}
|