]> git.somenet.org - irc/pjirc-ng.git/blob - src/main/java/irc/gui/pixx/PixxTextProvider.java
Pjirc 2.2.1 as available on the net, reformatted and made it compile.
[irc/pjirc-ng.git] / src / main / java / irc / gui / pixx / PixxTextProvider.java
1 /*****************************************************/\r
2 /*          This java file is a part of the          */\r
3 /*                                                   */\r
4 /*           -  Plouf's Java IRC Client  -           */\r
5 /*                                                   */\r
6 /*   Copyright (C)  2002 - 2004 Philippe Detournay   */\r
7 /*                                                   */\r
8 /*         All contacts : theplouf@yahoo.com         */\r
9 /*                                                   */\r
10 /*  PJIRC is free software; you can redistribute     */\r
11 /*  it and/or modify it under the terms of the GNU   */\r
12 /*  General Public License as published by the       */\r
13 /*  Free Software Foundation; version 2 or later of  */\r
14 /*  the License.                                     */\r
15 /*                                                   */\r
16 /*  PJIRC is distributed in the hope that it will    */\r
17 /*  be useful, but WITHOUT ANY WARRANTY; without     */\r
18 /*  even the implied warranty of MERCHANTABILITY or  */\r
19 /*  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU   */\r
20 /*  General Public License for more details.         */\r
21 /*                                                   */\r
22 /*  You should have received a copy of the GNU       */\r
23 /*  General Public License along with PJIRC; if      */\r
24 /*  not, write to the Free Software Foundation,      */\r
25 /*  Inc., 59 Temple Place, Suite 330, Boston,        */\r
26 /*  MA  02111-1307  USA                              */\r
27 /*                                                   */\r
28 /*****************************************************/\r
29 \r
30 package irc.gui.pixx;\r
31 \r
32 import irc.TextProvider;\r
33 \r
34 /**\r
35  * PixxTextProvider.\r
36  */\r
37 public interface PixxTextProvider {\r
38         /**\r
39          * You've been kicked out of %1 by %2\r
40          */\r
41         public static final int SOURCE_YOU_KICKED = TextProvider.USER_BASE + 0x601;\r
42         /**\r
43          * Status\r
44          */\r
45         public static final int SOURCE_STATUS = TextProvider.USER_BASE + 0x602;\r
46         /**\r
47          * Channels for %1\r
48          */\r
49         public static final int SOURCE_CHANLIST = TextProvider.USER_BASE + 0x603;\r
50         /**\r
51          * Retrieving channels...\r
52          */\r
53         public static final int SOURCE_CHANLIST_RETREIVING = TextProvider.USER_BASE + 0x604;\r
54         /**\r
55          * %1 has joined %2\r
56          */\r
57         public static final int SOURCE_HAS_JOINED = TextProvider.USER_BASE + 0x605;\r
58         /**\r
59          * %1 has left %2\r
60          */\r
61         public static final int SOURCE_HAS_LEFT = TextProvider.USER_BASE + 0x606;\r
62         /**\r
63          * %1 has been kicked by %2\r
64          */\r
65         public static final int SOURCE_HAS_BEEN_KICKED_BY = TextProvider.USER_BASE + 0x607;\r
66         /**\r
67          * %1 has quit\r
68          */\r
69         public static final int SOURCE_HAS_QUIT = TextProvider.USER_BASE + 0x608;\r
70         /**\r
71          * Topic is %1\r
72          */\r
73         public static final int SOURCE_TOPIC_IS = TextProvider.USER_BASE + 0x609;\r
74         /**\r
75          * %1 changed topic to %2\r
76          */\r
77         public static final int SOURCE_CHANGED_TOPIC = TextProvider.USER_BASE + 0x60A;\r
78         /**\r
79          * %1 sets channel mode to %2\r
80          */\r
81         public static final int SOURCE_CHANNEL_MODE = TextProvider.USER_BASE + 0x60B;\r
82         /**\r
83          * Channel mode is %1\r
84          */\r
85         public static final int SOURCE_CHANNEL_MODE_IS = TextProvider.USER_BASE + 0x60C;\r
86         /**\r
87          * %1 sets mode %2 on %3\r
88          */\r
89         public static final int SOURCE_USER_MODE = TextProvider.USER_BASE + 0x60D;\r
90         /**\r
91          * %1 is now known as %2\r
92          */\r
93         public static final int SOURCE_KNOWN_AS = TextProvider.USER_BASE + 0x60E;\r
94         /**\r
95          * Mode changed to %1\r
96          */\r
97         public static final int SOURCE_YOUR_MODE = TextProvider.USER_BASE + 0x60F;\r
98         /**\r
99          * Your nick is now %1\r
100          */\r
101         public static final int SOURCE_YOUR_NICK = TextProvider.USER_BASE + 0x610;\r
102         /**\r
103          * Infos\r
104          */\r
105         public static final int SOURCE_INFO = TextProvider.USER_BASE + 0x611;\r
106         /**\r
107          * %1 is away\r
108          */\r
109         public static final int SOURCE_AWAY = TextProvider.USER_BASE + 0x612;\r
110         /**\r
111          * %1 invites you to join %2\r
112          */\r
113         public static final int SOURCE_YOU_INVITED = TextProvider.USER_BASE + 0x613;\r
114         /**\r
115          * You're talking in %1 as %2\r
116          */\r
117         public static final int SOURCE_YOU_JOINED_AS = TextProvider.USER_BASE + 0x614;\r
118 \r
119         /**\r
120          * Whois\r
121          */\r
122         public static final int GUI_WHOIS = TextProvider.USER_BASE + 0x701;\r
123         /**\r
124          * Query\r
125          */\r
126         public static final int GUI_QUERY = TextProvider.USER_BASE + 0x702;\r
127         /**\r
128          * Kick\r
129          */\r
130         public static final int GUI_KICK = TextProvider.USER_BASE + 0x703;\r
131         /**\r
132          * Ban\r
133          */\r
134         public static final int GUI_BAN = TextProvider.USER_BASE + 0x704;\r
135         /**\r
136          * Kick + Ban\r
137          */\r
138         public static final int GUI_KICKBAN = TextProvider.USER_BASE + 0x705;\r
139         /**\r
140          * Op\r
141          */\r
142         public static final int GUI_OP = TextProvider.USER_BASE + 0x706;\r
143         /**\r
144          * DeOp\r
145          */\r
146         public static final int GUI_DEOP = TextProvider.USER_BASE + 0x707;\r
147         /**\r
148          * Voice\r
149          */\r
150         public static final int GUI_VOICE = TextProvider.USER_BASE + 0x708;\r
151         /**\r
152          * DeVoice\r
153          */\r
154         public static final int GUI_DEVOICE = TextProvider.USER_BASE + 0x709;\r
155         /**\r
156          * Ping\r
157          */\r
158         public static final int GUI_PING = TextProvider.USER_BASE + 0x70A;\r
159         /**\r
160          * Version\r
161          */\r
162         public static final int GUI_VERSION = TextProvider.USER_BASE + 0x70B;\r
163         /**\r
164          * Time\r
165          */\r
166         public static final int GUI_TIME = TextProvider.USER_BASE + 0x70C;\r
167         /**\r
168          * Finger\r
169          */\r
170         public static final int GUI_FINGER = TextProvider.USER_BASE + 0x70D;\r
171         /**\r
172          * Receiving file (%1 bytes)\r
173          */\r
174         public static final int GUI_RETREIVING_FILE = TextProvider.USER_BASE + 0x70E;\r
175         /**\r
176          * Sending file (%1 bytes)\r
177          */\r
178         public static final int GUI_SENDING_FILE = TextProvider.USER_BASE + 0x70F;\r
179         /**\r
180          * %1 terminated\r
181          */\r
182         public static final int GUI_TERMINATED = TextProvider.USER_BASE + 0x710;\r
183         /**\r
184          * %1 failed\r
185          */\r
186         public static final int GUI_FAILED = TextProvider.USER_BASE + 0x711;\r
187         /**\r
188          * Close\r
189          */\r
190         public static final int GUI_CLOSE = TextProvider.USER_BASE + 0x712;\r
191         /**\r
192          * Disconnect\r
193          */\r
194         public static final int GUI_DISCONNECT = TextProvider.USER_BASE + 0x713;\r
195         /**\r
196          * Channels\r
197          */\r
198         public static final int GUI_CHANNELS = TextProvider.USER_BASE + 0x714;\r
199         /**\r
200          * Help\r
201          */\r
202         public static final int GUI_HELP = TextProvider.USER_BASE + 0x715;\r
203         /**\r
204          * private\r
205          */\r
206         public static final int GUI_PRIVATE = TextProvider.USER_BASE + 0x716;\r
207         /**\r
208          * public\r
209          */\r
210         public static final int GUI_PUBLIC = TextProvider.USER_BASE + 0x717;\r
211         /**\r
212          * Connect\r
213          */\r
214         public static final int GUI_CONNECT = TextProvider.USER_BASE + 0x718;\r
215         /**\r
216          * About\r
217          */\r
218         public static final int GUI_ABOUT = TextProvider.USER_BASE + 0x719;\r
219         /**\r
220          * Change nick to\r
221          */\r
222         public static final int GUI_CHANGE_NICK = TextProvider.USER_BASE + 0x71A;\r
223         /**\r
224          * Font\r
225          */\r
226         public static final int GUI_FONT = TextProvider.USER_BASE + 0x71C;\r
227         /**\r
228          * Select font\r
229          */\r
230         public static final int GUI_FONT_WINDOW = TextProvider.USER_BASE + 0x71D;\r
231         /**\r
232          * Ok\r
233          */\r
234         public static final int GUI_FONT_WINDOW_OK = TextProvider.USER_BASE + 0x71E;\r
235         /**\r
236          * Enter text here...\r
237          */\r
238         public static final int GUI_ENTER_TEXT_HERE = TextProvider.USER_BASE + 0x71F;\r
239 }\r