diff options
author | Catalin Badea <catalin.badea392@gmail.com> | 2012-06-26 09:51:15 (GMT) |
---|---|---|
committer | Catalin Badea <catalin.badea392@gmail.com> | 2012-06-26 09:51:15 (GMT) |
commit | ad7d00c25b74d212457fa599861c5583e79e7c13 (patch) | |
tree | 16dd3991eadc5798ecdc32de655b776b6356922e /Swift/Controllers/Chat | |
parent | 88ef15d265a9ff9ab40ac5d90d14af08b0f8c4dd (diff) | |
download | swift-contrib-ad7d00c25b74d212457fa599861c5583e79e7c13.zip swift-contrib-ad7d00c25b74d212457fa599861c5583e79e7c13.tar.bz2 |
Added SqliteManager to build. not working
Diffstat (limited to 'Swift/Controllers/Chat')
-rw-r--r-- | Swift/Controllers/Chat/ChatControllerBase.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Swift/Controllers/Chat/ChatControllerBase.cpp b/Swift/Controllers/Chat/ChatControllerBase.cpp index 75c6c71..bf39216 100644 --- a/Swift/Controllers/Chat/ChatControllerBase.cpp +++ b/Swift/Controllers/Chat/ChatControllerBase.cpp @@ -131,8 +131,9 @@ void ChatControllerBase::handleSendMessageRequest(const std::string &body, bool } } preSendMessageRequest(message); + + boost::posix_time::ptime now = boost::posix_time::microsec_clock::universal_time(); if (useDelayForLatency_) { - boost::posix_time::ptime now = boost::posix_time::microsec_clock::universal_time(); message->addPayload(boost::make_shared<Delay>(now, selfJID_)); } if (isCorrectionMessage) { @@ -142,6 +143,9 @@ void ChatControllerBase::handleSendMessageRequest(const std::string &body, bool stanzaChannel_->sendMessage(message); postSendMessage(message->getBody(), boost::dynamic_pointer_cast<Stanza>(message)); onActivity(message->getBody()); + + // log message + historyController_->addMessage(getBaseJID(), selfJID_, toJID_, body, now); } void ChatControllerBase::handleSecurityLabelsCatalogResponse(boost::shared_ptr<SecurityLabelsCatalog> catalog, ErrorPayload::ref error) { @@ -248,6 +252,8 @@ void ChatControllerBase::handleIncomingMessage(boost::shared_ptr<MessageEvent> m } else { lastMessagesUIID_[from] = addMessage(body, senderDisplayNameFromMessage(from), isIncomingMessageFromMe(message), label, std::string(avatarManager_->getAvatarPath(from).string()), timeStamp); + // void HistoryController::addMessage(const JID& baseJID, const JID& fromJID, const JID& toJID, std::string messageBody, boost::posix_time::ptime timeStamp) { + historyController_->addMessage(getBaseJID(), from, message->getTo(), body, timeStamp); } } chatWindow_->show(); |