2008-04-08 08:20:33 -04:00
|
|
|
/*
|
|
|
|
* RetroShare
|
|
|
|
* Copyright (C) 2006,2007 crypton
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
2009-01-30 20:46:49 -05:00
|
|
|
|
2008-04-08 08:20:33 -04:00
|
|
|
#include "OnlineToaster.h"
|
|
|
|
|
|
|
|
#include "ui_OnlineToaster.h"
|
|
|
|
|
|
|
|
#include "QtToaster.h"
|
2010-05-11 16:02:52 -04:00
|
|
|
#include "gui/settings/rsharesettings.h"
|
2008-04-08 08:20:33 -04:00
|
|
|
|
|
|
|
#include <QtGui/QtGui>
|
2009-01-30 20:46:49 -05:00
|
|
|
|
2008-04-08 08:20:33 -04:00
|
|
|
OnlineToaster::OnlineToaster()
|
|
|
|
: QObject(NULL) {
|
|
|
|
|
|
|
|
_onlineToasterWidget = new QWidget(NULL);
|
2009-01-30 20:46:49 -05:00
|
|
|
|
|
|
|
_ui = new Ui::OnlineToaster();
|
|
|
|
_ui->setupUi(_onlineToasterWidget);
|
|
|
|
|
2008-04-08 08:20:33 -04:00
|
|
|
connect(_ui->messageButton, SIGNAL(clicked()), SLOT(chatButtonSlot()));
|
|
|
|
|
|
|
|
connect(_ui->closeButton, SIGNAL(clicked()), SLOT(close()));
|
|
|
|
|
2010-05-05 18:03:43 -04:00
|
|
|
_toaster = new QtToaster(this, _onlineToasterWidget, _ui->windowFrame);
|
2009-01-30 20:46:49 -05:00
|
|
|
_toaster->setTimeOnTop(5000);
|
|
|
|
}
|
2008-04-08 08:20:33 -04:00
|
|
|
|
|
|
|
OnlineToaster::~OnlineToaster() {
|
|
|
|
delete _ui;
|
|
|
|
}
|
2009-01-30 20:46:49 -05:00
|
|
|
|
|
|
|
void OnlineToaster::setMessage(const QString & message) {
|
|
|
|
_ui->messageLabel->setText(message);
|
|
|
|
}
|
2008-04-08 08:20:33 -04:00
|
|
|
|
|
|
|
void OnlineToaster::setPixmap(const QPixmap & pixmap) {
|
|
|
|
_ui->pixmaplabel->setPixmap(pixmap);
|
|
|
|
}
|
|
|
|
|
|
|
|
void OnlineToaster::show() {
|
|
|
|
_toaster->show();
|
|
|
|
}
|
2009-01-30 20:46:49 -05:00
|
|
|
|
|
|
|
void OnlineToaster::close() {
|
|
|
|
_toaster->close();
|
|
|
|
}
|
|
|
|
|
|
|
|
void OnlineToaster::chatButtonSlot() {
|
|
|
|
chatButtonClicked();
|
|
|
|
close();
|
|
|
|
}
|
2010-05-05 07:47:29 -04:00
|
|
|
|
|
|
|
void OnlineToaster::play(){
|
2010-05-11 16:02:52 -04:00
|
|
|
RshareSettings settings;
|
|
|
|
settings.beginGroup("Sound");
|
|
|
|
settings.beginGroup("SoundFilePath");
|
|
|
|
QString OnlineSound= settings.value("User_go_Online","").toString();
|
|
|
|
settings.endGroup();
|
|
|
|
settings.beginGroup("Enable");
|
|
|
|
bool flag= settings.value("User_go_Online",false).toBool();
|
|
|
|
settings.endGroup();
|
|
|
|
settings.endGroup();
|
2010-05-05 07:47:29 -04:00
|
|
|
if(!OnlineSound.isEmpty()&&flag)
|
|
|
|
if(QSound::isAvailable())
|
|
|
|
QSound::play(OnlineSound);
|
|
|
|
}
|