mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-21 21:04:32 -04:00
gui: check for show "is typing" before time call
This commit is contained in:
parent
b950e12bcf
commit
77c3eae976
1 changed files with 11 additions and 10 deletions
|
@ -110,7 +110,7 @@ ChatWidget::ChatWidget(QWidget *parent) :
|
||||||
ui->searchButton->setIconSize(iconSize);
|
ui->searchButton->setIconSize(iconSize);
|
||||||
ui->sendButton->setFixedHeight(iconHeight);
|
ui->sendButton->setFixedHeight(iconHeight);
|
||||||
ui->sendButton->setIconSize(iconSize);
|
ui->sendButton->setIconSize(iconSize);
|
||||||
|
|
||||||
//Initialize search
|
//Initialize search
|
||||||
iCharToStartSearch=Settings->getChatSearchCharToStartSearch();
|
iCharToStartSearch=Settings->getChatSearchCharToStartSearch();
|
||||||
bFindCaseSensitively=Settings->getChatSearchCaseSensitively();
|
bFindCaseSensitively=Settings->getChatSearchCaseSensitively();
|
||||||
|
@ -177,7 +177,7 @@ ChatWidget::ChatWidget(QWidget *parent) :
|
||||||
|
|
||||||
ui->infoFrame->setVisible(false);
|
ui->infoFrame->setVisible(false);
|
||||||
ui->statusMessageLabel->hide();
|
ui->statusMessageLabel->hide();
|
||||||
|
|
||||||
setAcceptDrops(true);
|
setAcceptDrops(true);
|
||||||
ui->chatTextEdit->setAcceptDrops(false);
|
ui->chatTextEdit->setAcceptDrops(false);
|
||||||
ui->hashBox->setDropWidget(this);
|
ui->hashBox->setDropWidget(this);
|
||||||
|
@ -197,7 +197,7 @@ ChatWidget::ChatWidget(QWidget *parent) :
|
||||||
menu->addAction(ui->actionMessageHistory);
|
menu->addAction(ui->actionMessageHistory);
|
||||||
ui->pushtoolsButton->setMenu(menu);
|
ui->pushtoolsButton->setMenu(menu);
|
||||||
menu->addMenu(fontmenu);
|
menu->addMenu(fontmenu);
|
||||||
|
|
||||||
ui->actionSendAsPlainText->setChecked(Settings->getChatSendAsPlainTextByDef());
|
ui->actionSendAsPlainText->setChecked(Settings->getChatSendAsPlainTextByDef());
|
||||||
ui->chatTextEdit->setOnlyPlainText(ui->actionSendAsPlainText->isChecked());
|
ui->chatTextEdit->setOnlyPlainText(ui->actionSendAsPlainText->isChecked());
|
||||||
connect(ui->actionSendAsPlainText, SIGNAL(toggled(bool)), ui->chatTextEdit, SLOT(setOnlyPlainText(bool)) );
|
connect(ui->actionSendAsPlainText, SIGNAL(toggled(bool)), ui->chatTextEdit, SLOT(setOnlyPlainText(bool)) );
|
||||||
|
@ -357,12 +357,12 @@ void ChatWidget::init(const ChatId &chat_id, const QString &title)
|
||||||
ui->titleBarFrame->setVisible(false);
|
ui->titleBarFrame->setVisible(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (rsHistory->getEnable(hist_chat_type))
|
if (rsHistory->getEnable(hist_chat_type))
|
||||||
{
|
{
|
||||||
// get chat messages from history
|
// get chat messages from history
|
||||||
std::list<HistoryMsg> historyMsgs;
|
std::list<HistoryMsg> historyMsgs;
|
||||||
|
|
||||||
if (messageCount > 0)
|
if (messageCount > 0)
|
||||||
{
|
{
|
||||||
rsHistory->getMessages(chatId, historyMsgs, messageCount);
|
rsHistory->getMessages(chatId, historyMsgs, messageCount);
|
||||||
|
|
||||||
|
@ -376,7 +376,7 @@ void ChatWidget::init(const ChatId &chat_id, const QString &title)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
QString name;
|
QString name;
|
||||||
if (chatId.isLobbyId() || chatId.isDistantChatId())
|
if (chatId.isLobbyId() || chatId.isDistantChatId())
|
||||||
{
|
{
|
||||||
RsIdentityDetails details;
|
RsIdentityDetails details;
|
||||||
if (rsIdentity->getIdDetails(RsGxsId(historyIt->peerName), details))
|
if (rsIdentity->getIdDetails(RsGxsId(historyIt->peerName), details))
|
||||||
|
@ -962,7 +962,7 @@ void ChatWidget::addChatMsg(bool incoming, const QString &name, const RsGxsId gx
|
||||||
unsigned int formatFlag = 0;
|
unsigned int formatFlag = 0;
|
||||||
|
|
||||||
bool addDate = false;
|
bool addDate = false;
|
||||||
if (QDate::currentDate()>lastMsgDate)
|
if (QDate::currentDate()>lastMsgDate)
|
||||||
{
|
{
|
||||||
addDate=true;
|
addDate=true;
|
||||||
}
|
}
|
||||||
|
@ -1165,13 +1165,14 @@ void ChatWidget::resetStatusBar()
|
||||||
|
|
||||||
void ChatWidget::updateStatusTyping()
|
void ChatWidget::updateStatusTyping()
|
||||||
{
|
{
|
||||||
|
if(Settings->getChatDoNotSendIsTyping())
|
||||||
|
return;
|
||||||
if (time(NULL) - lastStatusSendTime > 5) // limit 'peer is typing' packets to at most every 10 sec
|
if (time(NULL) - lastStatusSendTime > 5) // limit 'peer is typing' packets to at most every 10 sec
|
||||||
{
|
{
|
||||||
#ifdef ONLY_FOR_LINGUIST
|
#ifdef ONLY_FOR_LINGUIST
|
||||||
tr("is typing...");
|
tr("is typing...");
|
||||||
#endif
|
#endif
|
||||||
if(!Settings->getChatDoNotSendIsTyping())
|
rsMsgs->sendStatusString(chatId, "is typing...");
|
||||||
rsMsgs->sendStatusString(chatId, "is typing...");
|
|
||||||
lastStatusSendTime = time(NULL) ;
|
lastStatusSendTime = time(NULL) ;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1677,7 +1678,7 @@ void ChatWidget::updateStatus(const QString &peer_id, int status)
|
||||||
vpid = chatId.toPeerId();
|
vpid = chatId.toPeerId();
|
||||||
|
|
||||||
/* set font size for status */
|
/* set font size for status */
|
||||||
if (peer_id.toStdString() == vpid.toStdString())
|
if (peer_id.toStdString() == vpid.toStdString())
|
||||||
{
|
{
|
||||||
// the peers status has changed
|
// the peers status has changed
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue