Chat-O-Matic/application/TheApp.cpp

145 lines
2.9 KiB
C++
Raw Normal View History

/*
2011-12-03 16:38:03 -06:00
* Copyright 2009-2011, Andrea Anzani. All rights reserved.
* Copyright 2009-2011, Pier Luigi Fiorini. 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
*/
2021-05-19 16:12:19 -05:00
#include "TheApp.h"
#include <stdio.h>
#include <Alert.h>
#include <Path.h>
#include <Roster.h>
2021-05-19 16:12:19 -05:00
#include <librunview/Emoticor.h>
2010-05-12 13:57:19 -05:00
#include "AboutWindow.h"
#include "Caya.h"
2021-06-20 12:44:20 -05:00
#include "AppMessages.h"
#include "FilePanel.h"
#include "MainWindow.h"
#include "ProtocolManager.h"
#include "ReplicantStatusView.h"
#include "Server.h"
TheApp::TheApp()
2010-05-19 17:28:26 -05:00
:
2021-06-20 12:44:20 -05:00
BApplication(APP_SIGNATURE),
fMainWin(NULL)
{
}
void
TheApp::ReadyToRun()
{
app_info theInfo;
fMainWin = new MainWindow();
if (be_app->GetAppInfo(&theInfo) == B_OK) {
BPath appDir(&theInfo.ref);
appDir.GetParent(&appDir);
// Emoticons settings
BPath currentPath = appDir;
currentPath.Append("smileys");
currentPath.Append("settings.xml");
// Load emoticons
BEntry entry(currentPath.Path());
if (entry.Exists())
Emoticor::Get()->LoadConfig(currentPath.Path());
else {
BString msg("Can't find smileys settings in:\n\n");
msg << currentPath.Path();
BAlert* alert = new BAlert("", msg.String(), "Ouch!");
// alert->Go();
}
printf("Loaded Emoticons settings from: %s\n", currentPath.Path());
currentPath = appDir;
currentPath.Append("protocols");
if (BEntry(currentPath.Path()).Exists()) {
printf("Looking for protocols from: %s\n", currentPath.Path());
ProtocolManager::Get()->Init(BDirectory(currentPath.Path()),
fMainWin);
} else {
BString msg("Can't find protocols in:\n\n");
msg << currentPath.Path();
BAlert* alert = new BAlert("", msg.String(), "Ouch!");
alert->Go();
PostMessage(B_QUIT_REQUESTED);
return;
}
}
fMainWin->Start();
fMainWin->Show();
}
2010-05-12 13:57:19 -05:00
void
TheApp::AboutRequested()
{
const char* holders[] = {
"2009-2010 Andrea Anzani",
"2010-2015 Dario Casalinuovo",
2010-05-12 13:57:19 -05:00
"2009-2010 Pier Luigi Fiorini",
NULL
};
const char* authors[] = {
"Andrea Anzani",
"Dario Casalinuovo",
2010-05-12 13:57:19 -05:00
"Pier Luigi Fiorini",
2021-06-20 12:44:20 -05:00
"Jaidyn Levesque",
2010-05-12 13:57:19 -05:00
NULL
};
BString extraInfo;
extraInfo << "Caya is released under the GNU GPL License." << "\n";
extraInfo << "Some parts of Caya are available under MIT license." << "\n";
2010-05-12 13:57:19 -05:00
extraInfo << "Built: " << BUILD_DATE;
AboutWindow* about = new AboutWindow("Caya", holders,
authors, extraInfo.String());
about->Show();
delete about;
2010-05-12 13:57:19 -05:00
}
MainWindow*
TheApp::GetMainWindow() const
{
return fMainWin;
}
void
TheApp::MessageReceived(BMessage* message)
{
switch (message->what) {
2021-06-20 12:44:20 -05:00
case APP_REPLICANT_STATUS_SET:
case APP_REPLICANT_SHOW_WINDOW:
case APP_SHOW_SETTINGS:
case APP_REPLICANT_MESSENGER:
DetachCurrentMessage();
fMainWin->PostMessage(message);
break;
2021-06-20 12:44:20 -05:00
case APP_REPLICANT_EXIT:
// TODO BAlert here
PostMessage(B_QUIT_REQUESTED);
break;
default:
BLooper::MessageReceived(message);
}
}