mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-24 14:20:44 -04:00
added new Toasters
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1222 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
5a5ad509aa
commit
99828dfa41
14 changed files with 822 additions and 0 deletions
67
retroshare-gui/src/gui/toaster/GroupChatToaster.cpp
Normal file
67
retroshare-gui/src/gui/toaster/GroupChatToaster.cpp
Normal file
|
@ -0,0 +1,67 @@
|
|||
/*
|
||||
* 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 "GroupChatToaster.h"
|
||||
|
||||
#include "ui_GroupChatToaster.h"
|
||||
|
||||
#include "QtToaster.h"
|
||||
|
||||
#include <QtGui/QtGui>
|
||||
|
||||
GroupChatToaster::GroupChatToaster()
|
||||
: QObject(NULL) {
|
||||
|
||||
_GroupChatToasterWidget = new QWidget(NULL);
|
||||
|
||||
_ui = new Ui::GroupChatToaster();
|
||||
_ui->setupUi(_GroupChatToasterWidget);
|
||||
|
||||
connect(_ui->messageButton, SIGNAL(clicked()), SLOT(chatButtonSlot()));
|
||||
|
||||
connect(_ui->closeButton, SIGNAL(clicked()), SLOT(close()));
|
||||
|
||||
_toaster = new QtToaster(_GroupChatToasterWidget, _ui->windowFrame);
|
||||
_toaster->setTimeOnTop(5000);
|
||||
}
|
||||
|
||||
GroupChatToaster::~GroupChatToaster() {
|
||||
delete _ui;
|
||||
}
|
||||
|
||||
void GroupChatToaster::setMessage(const QString & message) {
|
||||
_ui->messageLabel->setText(message);
|
||||
}
|
||||
|
||||
void GroupChatToaster::setPixmap(const QPixmap & pixmap) {
|
||||
_ui->pixmaplabel->setPixmap(pixmap);
|
||||
}
|
||||
|
||||
void GroupChatToaster::show() {
|
||||
_toaster->show();
|
||||
}
|
||||
|
||||
void GroupChatToaster::close() {
|
||||
_toaster->close();
|
||||
}
|
||||
|
||||
void GroupChatToaster::chatButtonSlot() {
|
||||
chatButtonClicked();
|
||||
close();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue