annotate gui/octave-gui/src/irc/IRCCodes.h @ 14240:a9992bc3c3f7 gui

GUI: Added qtermwidget snapshot as a subproject to build as a library that links with Octave GUI.
author Jacob Dawid <jacob.dawid@googlemail.com>
date Sat, 21 Jan 2012 11:26:36 +0100
parents gui/src/irc/IRCCodes.h@e272af3f252d
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
13588
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
1 /* OctaveGUI - A graphical user interface for Octave
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
2 * Copyright (C) 2011 Jacob Dawid
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
3 * jacob.dawid@googlemail.com
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
4 *
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
5 * This program is free software: you can redistribute it and/or modify
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
6 * it under the terms of the GNU General Public License as published by
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
7 * the Free Software Foundation, either version 3 of the License, or
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
8 * (at your option) any later version.
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
9 *
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
10 * This program is distributed in the hope that it will be useful,
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
13 * GNU General Public License for more details.
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
14 *
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
15 * You should have received a copy of the GNU General Public License
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
17 */
13501
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
18
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
19 #ifndef IRCCODES_H
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
20 #define IRCCODES_H
13588
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
21 #include <QString>
13501
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
22
13588
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
23 namespace IRCCommand
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
24 {
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
25 const QString Password = "PASS";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
26 const QString Nick = "NICK";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
27 const QString User = "USER";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
28 const QString Operation = "OPER";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
29 const QString Service = "SERVICE";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
30 const QString Quit = "QUIT";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
31 const QString ServerQuit = "SQUIT";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
32
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
33 const QString Join = "JOIN";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
34 const QString Part = "PART";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
35 const QString Mode = "MODE";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
36 const QString Topic = "TOPIC";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
37 const QString Names = "NAMES";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
38 const QString List = "LIST";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
39 const QString Invite = "INVITE";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
40 const QString Kick = "KICK";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
41
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
42 const QString PrivateMessage = "PRIVMSG";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
43 const QString Notice = "NOTICE";
13501
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
44
13588
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
45 const QString MessageOfTheDay = "MOTD";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
46 const QString ListUsers = "LUSERS";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
47 const QString Version = "VERSION";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
48 const QString Stats = "STATS";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
49 const QString Links = "LINKS";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
50 const QString Time = "TIME";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
51 const QString Command = "CONNECT";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
52 const QString Trace = "TRACE";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
53 const QString Admin = "ADMIN";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
54 const QString Info = "INFO";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
55
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
56 const QString ServerList = "SERVLIST";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
57 const QString ServerQuery = "SQUERY";
13501
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
58
13588
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
59 const QString Who = "WHO";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
60 const QString WhoIs = "WHOIS";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
61 const QString WhoWas = "WHOWAS";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
62
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
63 const QString Kill = "KILL";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
64 const QString Ping = "PING";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
65 const QString Pong = "PONG";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
66 const QString Error = "ERROR";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
67
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
68 const QString Away = "AWAY";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
69 const QString Rehash = "REHASH";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
70 const QString Die = "DIE";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
71 const QString Restart = "RESTART";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
72 const QString Summon = "SUMMON";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
73 const QString Users = "USERS";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
74 const QString OperatorWall = "OPERWALL";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
75 const QString UserHost = "USERHOST";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
76 const QString IsOn = "ISON";
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
77 };
13501
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
78
13588
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
79 namespace IRCReply
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
80 {
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
81 const int Welcome = 1;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
82 const int YourHost = 2;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
83 const int Created = 3;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
84 const int MyInfo = 4;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
85 const int ReplyBounce = 5;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
86 const int UserHost = 302;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
87 const int IsOn = 303;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
88 const int Away = 301;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
89 const int UnAway = 305;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
90 const int NoAway = 306;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
91 const int WhoIsUser = 311;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
92 const int WhoIsServer = 312;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
93 const int WhoIsOperator = 313;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
94 const int WhoIsIdle = 317;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
95 const int EndOfWhoIs = 318;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
96 const int WhoIsChannels = 319;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
97 const int WhoWasUser = 314;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
98 const int EndOfWhoWas = 369;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
99 const int ListStart = 321;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
100 const int List = 322;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
101 const int ListEnd = 323;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
102 const int UniqueOpIs = 325;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
103 const int ChannelModeIs = 324;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
104 const int NoTopic = 331;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
105 const int Topic = 332;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
106 const int Inviting = 341;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
107 const int Summoning = 342;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
108 const int InviteList = 346;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
109 const int EndOfInviteList = 347;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
110 const int ExceptList = 348;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
111 const int EndOfExceptList = 349;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
112 const int Version = 351;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
113 const int WhoReply = 352;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
114 const int EndOfWho = 315;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
115 const int NameReply = 353;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
116 const int EndOfNames = 366;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
117 const int Links = 364;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
118 const int EndOfLinks = 367;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
119 const int BanList = 368;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
120 const int Info = 371;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
121 const int EndOfInfo = 374;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
122 const int MessageOfTheDayStart = 375;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
123 const int MessageOfTheDay = 372;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
124 const int MessageOfTheDayEnd = 376;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
125 const int YouAreOperator = 381;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
126 const int Rehashing = 382;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
127 const int YouAreService = 383;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
128 const int Time = 391;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
129 const int UserStart = 392;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
130 const int Users = 393;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
131 const int EndOfUsers = 394;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
132 const int NoUsers = 395;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
133 const int TraceLink = 200;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
134 const int TraceConnecting = 201;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
135 const int TraceHandshake = 202;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
136 const int TraceUnknown = 203;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
137 const int TraceOperator = 204;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
138 const int TraceUser = 205;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
139 const int TraceServer = 206;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
140 const int TraceService = 207;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
141 const int TraceNewType = 208;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
142 const int TraceClass = 209;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
143 const int TraceConnect = 210;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
144 const int TraceLog = 261;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
145 const int TraceEnd = 262;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
146 const int StatsLinkInfo = 211;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
147 const int StatsCommands = 212;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
148 const int EndOfStats = 219;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
149 const int StatsUptime = 242;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
150 const int StatsOnline = 243;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
151 const int UModeIs = 221;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
152 const int ServerList = 234;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
153 const int ServerListEnd = 235;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
154 const int ListUserClient = 251;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
155 const int ListUserOperator = 252;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
156 const int ListUserUnknown = 253;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
157 const int ListUserChannels = 254;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
158 const int ListUserMe = 255;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
159 const int AdminMe = 256;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
160 const int AdminLoc1 = 257;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
161 const int AdminLoc2 = 258;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
162 const int AdminEmail = 259;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
163 const int TryAgain = 263;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
164 };
13501
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
165
13588
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
166 namespace IRCError
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
167 {
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
168 const int NoSuchNick = 401;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
169 const int NoSuchServer = 402;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
170 const int NoSuchChannel = 403;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
171 const int CannotSendToChannel = 404;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
172 const int TooManyChannels = 405;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
173 const int WasNoSuchNick = 406;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
174 const int TooManyTargets = 407;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
175 const int NoSuchService = 408;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
176 const int NoOrigin = 409;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
177 const int NoRecipient = 411;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
178 const int NoTextToSend = 412;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
179 const int NoTopLevel = 413;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
180 const int WildTopLevel = 414;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
181 const int BasMask = 415;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
182 const int UnknownCommand = 421;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
183 const int NoMessageOfTheDay = 422;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
184 const int NoAdminInfo = 423;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
185 const int FileError = 424;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
186 const int NoNickNameGiven = 431;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
187 const int ErroneusNick = 432;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
188 const int NicknameInUse = 433;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
189 const int NickCollision = 436;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
190 const int UnavailResource = 437;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
191 const int UserNotInChannel = 441;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
192 const int NotOnChannel = 442;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
193 const int UserOnChannel = 443;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
194 const int NoLogin = 444;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
195 const int SummonDisabled = 445;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
196 const int UsersDisabled = 446;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
197 const int NotRegistered = 451;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
198 const int NeedMoreParams = 461;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
199 const int AlreadyRegistered = 462;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
200 const int NoPermissionForHost = 463;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
201 const int PasswordMismatch = 464;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
202 const int YouAreBannedCreep = 465;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
203 const int YouWillBeBanned = 466;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
204 const int KeySet = 467;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
205 const int ChannelIsFull = 471;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
206 const int UnknownMode = 472;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
207 const int InviteOnlyChannel = 473;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
208 const int BannedFromChannel = 474;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
209 const int BadChannelKey = 475;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
210 const int BadChannelMask = 476;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
211 const int NoChannelModes = 477;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
212 const int BanListFull = 478;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
213 const int NoPrivileges = 481;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
214 const int ChannelOperatorPrivilegesNeeded = 482;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
215 const int CannotKillServer = 483;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
216 const int Restricted = 484;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
217 const int UniqueOperatorPrivilegesNeeded = 485;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
218 const int NoOperatorHost = 491;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
219 const int YourModeListUnknownFlag = 501;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
220 const int UsersDontMatch = 502;
52fd3b9ea848 Changed all #defines for IRC Codes to constants, as it should be. Assorted them in namespaces and gave them better readable names.
Jacob Dawid <jacob.dawid@googlemail.com>
parents: 13501
diff changeset
221 };
13501
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
222
86d6c3b90ad7 Added new gui files.
Jacob Dawid <jacob.dawid@googlemail.com>
parents:
diff changeset
223 #endif