thunder2 c3d92dc472 Source code maintenance
Memory leaks:
- NotifyQt::UpdateGUI -> popup messages (toaster) stay hidden in memory
- p3disc::handleIncoming -> item was not deleted when RsDiscHeartbeat (memory leak every tick)

git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2852 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-05-05 22:03:43 +00:00

68 lines
1.7 KiB
C++

/*
* 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
*/
#include "ForumsToaster.h"
#include "ui_ForumsToaster.h"
#include "QtToaster.h"
#include <QtGui/QtGui>
ForumsToaster::ForumsToaster()
: QObject(NULL) {
_ForumsToasterWidget = new QWidget(NULL);
_ui = new Ui::ForumsToaster();
_ui->setupUi(_ForumsToasterWidget);
connect(_ui->messageButton, SIGNAL(clicked()), SLOT(chatButtonSlot()));
connect(_ui->closeButton, SIGNAL(clicked()), SLOT(close()));
_toaster = new QtToaster(this, _ForumsToasterWidget, _ui->windowFrame);
_toaster->setTimeOnTop(5000);
}
ForumsToaster::~ForumsToaster() {
delete _ui;
}
void ForumsToaster::setMessage(const QString & message) {
_ui->messageLabel->setText(message);
}
void ForumsToaster::setPixmap(const QPixmap & pixmap) {
_ui->pixmaplabel->setPixmap(pixmap);
}
void ForumsToaster::show() {
_toaster->show();
}
void ForumsToaster::close() {
_toaster->close();
}
void ForumsToaster::chatButtonSlot() {
chatButtonClicked();
close();
}