mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-13 08:29:32 -05:00
Enable/disable the send button for quick message in the ChatMsgItem with textChanged signal of the QTextBrowser and not with updateItem.
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3460 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
2fa6afd36d
commit
cb1bee3318
@ -60,7 +60,6 @@ ChatMsgItem::ChatMsgItem(FeedHolder *parent, uint32_t feedId, std::string peerId
|
|||||||
connect( quickmsgButton, SIGNAL( clicked( ) ), this, SLOT( togglequickmessage() ) );
|
connect( quickmsgButton, SIGNAL( clicked( ) ), this, SLOT( togglequickmessage() ) );
|
||||||
connect( sendButton, SIGNAL( clicked( ) ), this, SLOT( sendMessage() ) );
|
connect( sendButton, SIGNAL( clicked( ) ), this, SLOT( sendMessage() ) );
|
||||||
|
|
||||||
|
|
||||||
connect(NotifyQt::getInstance(), SIGNAL(peerHasNewAvatar(const QString&)), this, SLOT(updateAvatar(const QString&)));
|
connect(NotifyQt::getInstance(), SIGNAL(peerHasNewAvatar(const QString&)), this, SLOT(updateAvatar(const QString&)));
|
||||||
|
|
||||||
updateItemStatic();
|
updateItemStatic();
|
||||||
@ -129,15 +128,6 @@ void ChatMsgItem::updateItem()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*if (quickmsgText->toPlainText().isEmpty())
|
|
||||||
{
|
|
||||||
sendButton->setEnabled(false);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
sendButton->setEnabled(true);
|
|
||||||
}*/
|
|
||||||
|
|
||||||
/* slow Tick */
|
/* slow Tick */
|
||||||
int msec_rate = 10129;
|
int msec_rate = 10129;
|
||||||
|
|
||||||
@ -284,4 +274,16 @@ void ChatMsgItem::sendMessage()
|
|||||||
quickmsgText->clear();
|
quickmsgText->clear();
|
||||||
messageframe->setVisible(false);
|
messageframe->setVisible(false);
|
||||||
sendButton->hide();
|
sendButton->hide();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void ChatMsgItem::on_quickmsgText_textChanged()
|
||||||
|
{
|
||||||
|
if (quickmsgText->toPlainText().isEmpty())
|
||||||
|
{
|
||||||
|
sendButton->setEnabled(false);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
sendButton->setEnabled(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -43,22 +43,24 @@ public:
|
|||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
/* default stuff */
|
/* default stuff */
|
||||||
void gotoHome();
|
void gotoHome();
|
||||||
void removeItem();
|
void removeItem();
|
||||||
|
|
||||||
void sendMsg();
|
void sendMsg();
|
||||||
void openChat();
|
void openChat();
|
||||||
|
|
||||||
void updateItem();
|
void updateItem();
|
||||||
void updateAvatar(const QString &peer_id);
|
void updateAvatar(const QString &peer_id);
|
||||||
|
|
||||||
void togglequickmessage();
|
void togglequickmessage();
|
||||||
void sendMessage();
|
void sendMessage();
|
||||||
|
|
||||||
private:
|
void on_quickmsgText_textChanged();
|
||||||
void insertChat(std::string &message);
|
|
||||||
|
|
||||||
FeedHolder *mParent;
|
private:
|
||||||
|
void insertChat(std::string &message);
|
||||||
|
|
||||||
|
FeedHolder *mParent;
|
||||||
uint32_t mFeedId;
|
uint32_t mFeedId;
|
||||||
|
|
||||||
std::string mPeerId;
|
std::string mPeerId;
|
||||||
@ -66,7 +68,5 @@ private:
|
|||||||
bool mIsHome;
|
bool mIsHome;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user