X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Feventmanager.h;h=31cc42e0a59c887d94b3ee832c0900b7e0520295;hb=e30092afc1803d753914a7ab9fa88bba818de559;hp=b346756c68a9d7c4bfcae0e17e8ef3a67a22f3ab;hpb=602f1cafaa8744d4e54f2dd53906f399b80b6719;p=quassel.git diff --git a/src/common/eventmanager.h b/src/common/eventmanager.h index b346756c..31cc42e0 100644 --- a/src/common/eventmanager.h +++ b/src/common/eventmanager.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2012 by the Quassel Project * + * Copyright (C) 2005-2015 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -101,6 +101,7 @@ public : IrcEventPrivmsg, IrcEventQuit, IrcEventTopic, + IrcEventError, /// ERROR message from server IrcEventWallops, IrcEventRawPrivmsg, ///< Undecoded privmsg (still needs CTCP parsing) IrcEventRawNotice, ///< Undecoded notice (still needs CTCP parsing) @@ -112,7 +113,9 @@ public : MessageEvent = 0x00040000, ///< Stringified event suitable for converting to Message CtcpEvent = 0x00050000, - CtcpEventFlush + CtcpEventFlush, + + KeyEvent = 0x00060000 }; EventManager(QObject *parent = 0);