X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fctcpevent.cpp;h=780cda5d7401a1bee7c22cc588d7923a9e17d353;hp=1c6546fb8eb343d505febcc51dc9abdf9ddeb940;hb=6f38b6fdeb73e726c24b26a97b98c9cfe0fc8a0e;hpb=5c6de1b6613a99791be660bb19df18e3da507cd7 diff --git a/src/common/ctcpevent.cpp b/src/common/ctcpevent.cpp index 1c6546fb..780cda5d 100644 --- a/src/common/ctcpevent.cpp +++ b/src/common/ctcpevent.cpp @@ -19,3 +19,33 @@ ***************************************************************************/ #include "ctcpevent.h" + +Event *CtcpEvent::create(EventManager::EventType type, QVariantMap &map, Network *network) { + if(type == EventManager::CtcpEvent || type == EventManager::CtcpEventFlush) + return new CtcpEvent(type, map, network); + + return 0; +} + + +CtcpEvent::CtcpEvent(EventManager::EventType type, QVariantMap &map, Network *network) + : IrcEvent(type, map, network) +{ + _ctcpType = static_cast(map.take("ctcpType").toInt()); + _ctcpCmd = map.take("ctcpCmd").toString(); + _target = map.take("target").toString(); + _param = map.take("param").toString(); + _reply = map.take("repy").toString(); + _uuid = map.take("uuid").toString(); +} + + +void CtcpEvent::toVariantMap(QVariantMap &map) const { + IrcEvent::toVariantMap(map); + map["ctcpType"] = ctcpType(); + map["ctcpCmd"] = ctcpCmd(); + map["target"] = target(); + map["param"] = param(); + map["reply"] = reply(); + map["uuid"] = uuid().toString(); +}