mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-07-22 14:10:54 -04:00
Fixed Status Label on Distant Chat
This commit is contained in:
parent
4006b08093
commit
3d6e9783f6
2 changed files with 10 additions and 7 deletions
|
@ -46,9 +46,12 @@ PopupDistantChatDialog::~PopupDistantChatDialog()
|
||||||
PopupDistantChatDialog::PopupDistantChatDialog(QWidget *parent, Qt::WindowFlags flags)
|
PopupDistantChatDialog::PopupDistantChatDialog(QWidget *parent, Qt::WindowFlags flags)
|
||||||
: PopupChatDialog(parent,flags)
|
: PopupChatDialog(parent,flags)
|
||||||
{
|
{
|
||||||
_status_label = new QLabel ;
|
_status_label = new QToolButton ;
|
||||||
_update_timer = new QTimer ;
|
_update_timer = new QTimer ;
|
||||||
|
|
||||||
|
_status_label->setAutoRaise(true);
|
||||||
|
_status_label->setIconSize(QSize(24,24));
|
||||||
|
|
||||||
_update_timer->setInterval(1000) ;
|
_update_timer->setInterval(1000) ;
|
||||||
QObject::connect(_update_timer,SIGNAL(timeout()),this,SLOT(updateDisplay())) ;
|
QObject::connect(_update_timer,SIGNAL(timeout()),this,SLOT(updateDisplay())) ;
|
||||||
|
|
||||||
|
@ -94,7 +97,7 @@ void PopupDistantChatDialog::updateDisplay()
|
||||||
switch(status)
|
switch(status)
|
||||||
{
|
{
|
||||||
case RS_DISTANT_CHAT_STATUS_UNKNOWN: //std::cerr << "Unknown hash. Error!" << std::endl;
|
case RS_DISTANT_CHAT_STATUS_UNKNOWN: //std::cerr << "Unknown hash. Error!" << std::endl;
|
||||||
_status_label->setPixmap(QPixmap(IMAGE_GRY_LED)) ;
|
_status_label->setIcon(QIcon(IMAGE_GRY_LED)) ;
|
||||||
msg = tr("Hash Error. No tunnel.");
|
msg = tr("Hash Error. No tunnel.");
|
||||||
_status_label->setToolTip(msg) ;
|
_status_label->setToolTip(msg) ;
|
||||||
getChatWidget()->updateStatusString("%1", msg, true);
|
getChatWidget()->updateStatusString("%1", msg, true);
|
||||||
|
@ -102,7 +105,7 @@ void PopupDistantChatDialog::updateDisplay()
|
||||||
setPeerStatus(RS_STATUS_OFFLINE) ;
|
setPeerStatus(RS_STATUS_OFFLINE) ;
|
||||||
break ;
|
break ;
|
||||||
case RS_DISTANT_CHAT_STATUS_REMOTELY_CLOSED: std::cerr << "Chat remotely closed. " << std::endl;
|
case RS_DISTANT_CHAT_STATUS_REMOTELY_CLOSED: std::cerr << "Chat remotely closed. " << std::endl;
|
||||||
_status_label->setPixmap(QPixmap(IMAGE_RED_LED)) ;
|
_status_label->setIcon(QIcon(IMAGE_RED_LED)) ;
|
||||||
_status_label->setToolTip(QObject::tr("Distant peer has closed the chat")) ;
|
_status_label->setToolTip(QObject::tr("Distant peer has closed the chat")) ;
|
||||||
|
|
||||||
getChatWidget()->updateStatusString("%1", tr("The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now."), true);
|
getChatWidget()->updateStatusString("%1", tr("The person you're talking to has deleted the secured chat tunnel. You may remove the chat window now."), true);
|
||||||
|
@ -111,7 +114,7 @@ void PopupDistantChatDialog::updateDisplay()
|
||||||
|
|
||||||
break ;
|
break ;
|
||||||
case RS_DISTANT_CHAT_STATUS_TUNNEL_DN: //std::cerr << "Tunnel asked. Waiting for reponse. " << std::endl;
|
case RS_DISTANT_CHAT_STATUS_TUNNEL_DN: //std::cerr << "Tunnel asked. Waiting for reponse. " << std::endl;
|
||||||
_status_label->setPixmap(QPixmap(IMAGE_RED_LED)) ;
|
_status_label->setIcon(QIcon(IMAGE_RED_LED)) ;
|
||||||
msg = QObject::tr("Tunnel is pending...");
|
msg = QObject::tr("Tunnel is pending...");
|
||||||
_status_label->setToolTip(msg) ;
|
_status_label->setToolTip(msg) ;
|
||||||
getChatWidget()->updateStatusString("%1", msg, true);
|
getChatWidget()->updateStatusString("%1", msg, true);
|
||||||
|
@ -119,7 +122,7 @@ void PopupDistantChatDialog::updateDisplay()
|
||||||
setPeerStatus(RS_STATUS_OFFLINE) ;
|
setPeerStatus(RS_STATUS_OFFLINE) ;
|
||||||
break ;
|
break ;
|
||||||
case RS_DISTANT_CHAT_STATUS_TUNNEL_OK: //std::cerr << "Tunnel is ok. " << std::endl;
|
case RS_DISTANT_CHAT_STATUS_TUNNEL_OK: //std::cerr << "Tunnel is ok. " << std::endl;
|
||||||
_status_label->setPixmap(QPixmap(IMAGE_YEL_LED)) ;
|
_status_label->setIcon(QIcon(IMAGE_YEL_LED)) ;
|
||||||
msg = QObject::tr("Secured tunnel established. Waiting for ACK...");
|
msg = QObject::tr("Secured tunnel established. Waiting for ACK...");
|
||||||
_status_label->setToolTip(msg) ;
|
_status_label->setToolTip(msg) ;
|
||||||
getChatWidget()->updateStatusString("%1", msg, true);
|
getChatWidget()->updateStatusString("%1", msg, true);
|
||||||
|
@ -127,7 +130,7 @@ void PopupDistantChatDialog::updateDisplay()
|
||||||
setPeerStatus(RS_STATUS_ONLINE) ;
|
setPeerStatus(RS_STATUS_ONLINE) ;
|
||||||
break ;
|
break ;
|
||||||
case RS_DISTANT_CHAT_STATUS_CAN_TALK: //std::cerr << "Tunnel is ok and data is transmitted." << std::endl;
|
case RS_DISTANT_CHAT_STATUS_CAN_TALK: //std::cerr << "Tunnel is ok and data is transmitted." << std::endl;
|
||||||
_status_label->setPixmap(QPixmap(IMAGE_GRN_LED)) ;
|
_status_label->setIcon(QIcon(IMAGE_GRN_LED)) ;
|
||||||
msg = QObject::tr("Secured tunnel is working. You can talk!");
|
msg = QObject::tr("Secured tunnel is working. You can talk!");
|
||||||
_status_label->setToolTip(msg) ;
|
_status_label->setToolTip(msg) ;
|
||||||
getChatWidget()->unblockSending();
|
getChatWidget()->unblockSending();
|
||||||
|
|
|
@ -49,7 +49,7 @@ class PopupDistantChatDialog: public PopupChatDialog
|
||||||
private:
|
private:
|
||||||
QTimer *_update_timer ;
|
QTimer *_update_timer ;
|
||||||
RsGxsId _pid ;
|
RsGxsId _pid ;
|
||||||
QLabel *_status_label ;
|
QToolButton *_status_label ;
|
||||||
|
|
||||||
friend class ChatDialog;
|
friend class ChatDialog;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue