X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fcommon%2Feventmanager.h;h=d74e23626cae7a2d0981bfc87e7c6e9ad0d6a59b;hb=00e1a9c29e792ba4d65dba21b7ba04131bcb13bc;hp=3dbd72621209c04a11cb9dc3644a8740895ba63d;hpb=9fc57dc2c000e80fb8bd746a090e2e8210e1278e;p=quassel.git diff --git a/src/common/eventmanager.h b/src/common/eventmanager.h index 3dbd7262..d74e2362 100644 --- a/src/common/eventmanager.h +++ b/src/common/eventmanager.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2013 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -88,7 +88,10 @@ public : IrcEvent = 0x00030000, IrcEventAuthenticate, + IrcEventAccount, + IrcEventAway, IrcEventCap, + IrcEventChghost, IrcEventInvite, IrcEventJoin, IrcEventKick, @@ -101,6 +104,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 +116,9 @@ public : MessageEvent = 0x00040000, ///< Stringified event suitable for converting to Message CtcpEvent = 0x00050000, - CtcpEventFlush + CtcpEventFlush, + + KeyEvent = 0x00060000 }; EventManager(QObject *parent = 0); @@ -189,6 +195,6 @@ private: }; -Q_DECLARE_OPERATORS_FOR_FLAGS(EventManager::EventFlags); +Q_DECLARE_OPERATORS_FOR_FLAGS(EventManager::EventFlags) #endif