mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
9c40fb878f
- cleaned source code - added auto refresh - added todo button - removed some debug output Updated english translation git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6517 b45a01b8-16f6-495d-af2f-9b41ad6348cc
41 lines
1001 B
C++
41 lines
1001 B
C++
#include "RsGxsUpdateBroadcastWidget.h"
|
|
#include "RsGxsUpdateBroadcastBase.h"
|
|
|
|
RsGxsUpdateBroadcastWidget::RsGxsUpdateBroadcastWidget(RsGxsIfaceHelper *ifaceImpl, QWidget *parent, Qt::WindowFlags flags)
|
|
: QWidget(parent, flags)
|
|
{
|
|
mBase = new RsGxsUpdateBroadcastBase(ifaceImpl, this);
|
|
connect(mBase, SIGNAL(fillDisplay(bool)), this, SLOT(fillDisplay(bool)));
|
|
}
|
|
|
|
RsGxsUpdateBroadcastWidget::~RsGxsUpdateBroadcastWidget()
|
|
{
|
|
}
|
|
|
|
void RsGxsUpdateBroadcastWidget::setUpdateWhenInvisible(bool update)
|
|
{
|
|
mBase->setUpdateWhenInvisible(update);
|
|
}
|
|
|
|
std::list<RsGxsGroupId> &RsGxsUpdateBroadcastWidget::getGrpIds()
|
|
{
|
|
return mBase->getGrpIds();
|
|
}
|
|
|
|
std::map<RsGxsGroupId, std::vector<RsGxsMessageId> > &RsGxsUpdateBroadcastWidget::getMsgIds()
|
|
{
|
|
return mBase->getMsgIds();
|
|
}
|
|
|
|
void RsGxsUpdateBroadcastWidget::fillDisplay(bool complete)
|
|
{
|
|
updateDisplay(complete);
|
|
update(); // Qt flush
|
|
}
|
|
|
|
void RsGxsUpdateBroadcastWidget::showEvent(QShowEvent *event)
|
|
{
|
|
mBase->showEvent(event);
|
|
QWidget::showEvent(event);
|
|
}
|