summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Smith <git@kismith.co.uk>2010-06-11 20:28:29 (GMT)
committerKevin Smith <git@kismith.co.uk>2010-06-11 20:28:29 (GMT)
commitaa42a3adb3c5e36a77e24eb879ae6ecc8932b035 (patch)
tree466f19119225b428c1008de9bdbf507b8a27f7cb
parent28584fcbc82974c51b8d9c3571238819085f266f (diff)
downloadswift-aa42a3adb3c5e36a77e24eb879ae6ecc8932b035.zip
swift-aa42a3adb3c5e36a77e24eb879ae6ecc8932b035.tar.bz2
Show the time of Notices in the tooltip.
Resolves: #396
-rw-r--r--Swift/QtUI/EventViewer/QtEvent.cpp4
-rw-r--r--Swiften/Events/StanzaEvent.h8
2 files changed, 9 insertions, 3 deletions
diff --git a/Swift/QtUI/EventViewer/QtEvent.cpp b/Swift/QtUI/EventViewer/QtEvent.cpp
index 844a7f7..5305db2 100644
--- a/Swift/QtUI/EventViewer/QtEvent.cpp
+++ b/Swift/QtUI/EventViewer/QtEvent.cpp
@@ -6,6 +6,8 @@
#include "Swift/QtUI/EventViewer/QtEvent.h"
+#include <QDateTime>
+
#include "Swiften/Events/MessageEvent.h"
#include "Swiften/Events/ErrorEvent.h"
#include "Swiften/Events/SubscriptionRequestEvent.h"
@@ -20,7 +22,7 @@ QtEvent::QtEvent(boost::shared_ptr<StanzaEvent> event, bool active) : event_(eve
QVariant QtEvent::data(int role) {
switch (role) {
- case Qt::ToolTipRole:
+ case Qt::ToolTipRole: return QVariant(text()).toString() + "\n" + B2QDATE(event_->getTime()).toString();
case Qt::DisplayRole: return QVariant(text());
case Qt::TextColorRole: return active_ ? Qt::black : Qt::darkGray;
case Qt::BackgroundColorRole: return active_ ? Qt::white : Qt::lightGray;
diff --git a/Swiften/Events/StanzaEvent.h b/Swiften/Events/StanzaEvent.h
index 69fbe27..78dd4dc 100644
--- a/Swiften/Events/StanzaEvent.h
+++ b/Swiften/Events/StanzaEvent.h
@@ -6,19 +6,23 @@
#pragma once
-#include "Swiften/Base/boost_bsignals.h"
#include <boost/shared_ptr.hpp>
+#include <boost/date_time/posix_time/posix_time.hpp>
+
+#include "Swiften/Base/boost_bsignals.h"
namespace Swift {
class StanzaEvent {
public:
- StanzaEvent(){concluded_ = false;};
+ StanzaEvent() : time_(boost::posix_time::microsec_clock::universal_time()) {concluded_ = false;};
virtual ~StanzaEvent() {};
void conclude() {concluded_ = true; onConclusion();};
/** Do not call this directly from outside the class */
boost::signal<void()> onConclusion;
bool getConcluded() {return concluded_;};
+ boost::posix_time::ptime getTime() {return time_;}
private:
bool concluded_;
+ boost::posix_time::ptime time_;
};
}