X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Feventmanager.h;h=16b83bc4e5ac0afbf85ccdd3ad4695e22f6801ab;hp=57d7aff2ff3830dbd93ce10859704620edd72dd0;hb=0cdc3bdc397e5d9b45fecb682f0de73d47f9e228;hpb=5b686746c880e5cda6d5de3e08180ea4332ff222 diff --git a/src/common/eventmanager.h b/src/common/eventmanager.h index 57d7aff2..16b83bc4 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 * @@ -88,6 +88,8 @@ public : IrcEvent = 0x00030000, IrcEventAuthenticate, + IrcEventAccount, + IrcEventAway, IrcEventCap, IrcEventInvite, IrcEventJoin, @@ -101,6 +103,7 @@ public : IrcEventPrivmsg, IrcEventQuit, IrcEventTopic, + IrcEventWallops, IrcEventRawPrivmsg, ///< Undecoded privmsg (still needs CTCP parsing) IrcEventRawNotice, ///< Undecoded notice (still needs CTCP parsing) IrcEventUnknown, ///< Unknown non-numeric cmd @@ -111,7 +114,9 @@ public : MessageEvent = 0x00040000, ///< Stringified event suitable for converting to Message CtcpEvent = 0x00050000, - CtcpEventFlush + CtcpEventFlush, + + KeyEvent = 0x00060000 }; EventManager(QObject *parent = 0);