summary refs log tree commit diff stats
path: root/plugins/perl/lib/Xchat.pod
blob: 7661865860609982216df2b12aa5b7c1bb761437 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
=head1 X-Chat 2 Perl Interface

=head2 Introduction

This is the new Perl interface for X-Chat 2.  However, due to changes in
xchat's plugin code you will need xchat 2.0.8 or above to load this.  Scripts
written using the old interface will continue to work. If there are any
problems, questions, comments or suggestions please email them to the address
on the bottom of this page.

=head2 Constants

=head3 Priorities

=over 3

=item *
C<Xchat::PRI_HIGHEST> 

=item *
C<Xchat::PRI_HIGH> 

=item *
C<Xchat::PRI_NORM> 

=item *
C<Xchat::PRI_LOW> 

=item *
C<Xchat::PRI_LOWEST> 

=back

=head3 Return values

=over 3

=item *
C<Xchat::EAT_NONE>     - pass the event along

=item *
C<Xchat::EAT_XCHAT>    - don't let xchat see this event

=item *
C<Xchat::EAT_PLUGIN>   - don't let other scripts and plugins see this event but xchat will still see it

=item *
C<Xchat::EAT_ALL>      - don't let anything else see this event

=back

=head4 Timer and fd hooks

=over 3

=item *
C<Xchat::KEEP>         - keep the timer going or hook watching the handle

=item *
C<Xchat::REMOVE>       - remove the timer or hook watching the handle

=back

=head3 hook_fd flags

=over 3

=item *
C<Xchat::FD_READ>			- invoke the callback when the handle is ready for reading

=item *
C<Xchat::FD_WRITE>		- invoke the callback when the handle is ready for writing

=item *
C<Xchat::FD_EXCEPTION>	- invoke the callback if an exception occurs

=item *
C<Xchat::FD_NOTSOCKET>	- indicate that the handle being hooked is not a socket

=back

=head2 Functions

=head3 C<Xchat::register( $name, $version, [$description,[$callback]] )> 

=over 3

=item *
C<$name>             -  The name of this script

=item *
C<$version>          -  This script's version

=item *
C<$description>   -  A description for this script

=item *
C<$callback>      -  This is a function that will be called when the is script
                     unloaded. This can be either a reference to a
                     function or an anonymous sub reference.

=back

This is the first thing to call in every script.

=head3 C<Xchat::hook_server( $message, $callback, [\%options] )> 

=head3 C<Xchat::hook_command( $command, $callback, [\%options] )> 

=head3 C<Xchat::hook_print( $event,$callback, [\%options] )> 

=head3 C<Xchat::hook_timer( $timeout,$callback, [\%options | $data] )> 

=head3 C<Xchat::hook_fd( $handle, $callback, [ \%options ] )>

These functions can be to intercept various events.
hook_server can be used to intercept any incoming message from the IRC server.
hook_command can be used to intercept any command, if the command doesn't currently exist then a new one is created.
hook_print can be used to intercept any of the events listed in Setttings-E<gt>Advanced-E<gt>Text Events
hook_timer can be used to create a new timer


=over 3

=item *
C<$message>       -  server message to hook such as PRIVMSG

=item *
C<$command>       -  command to intercept, without the leading /

=item *
C<$event>      -  one of the events listed in Settings-E<gt>Advanced-E<gt>Text Events

=item *
C<$timeout>       -  timeout in milliseconds

=item *
C<$handle>     - the I/O handle you want to monitor with hook_fd. This must be something that has a fileno. See perldoc -f fileno or L<fileno|http://perldoc.perl.org/functions/fileno.html>

=item *
C<$callback>   -  callback function, this is called whenever
                  the hooked event is trigged, the following are
                  the conditions that will trigger the different hooks.
                  This can be either a reference to a
                  function or an anonymous sub reference.

=item *
\%options   -  a hash reference containing addional options for the hooks

=back

Valid keys for \%options:

=begin html

<table border="1">

   <tr>
   <td>data</td>  <td>Additional data that is to be associated with the<br />
                  hook. For timer hooks this value can be provided either as<br />
                  <code>Xchat::hook_timer( $timeout, $cb,{data=&gt;$data})</code><br />
                  or <code>Xchat::hook_timer( $timeout, $cb, $data )</code>.<br />
                  However, this means that hook_timer cannot be provided<br />
                  with a hash reference containing data as a key.<br />

                  example:<br />
                  my $options = { data =&gt; [@arrayOfStuff] };<br />
                  Xchat::hook_timer( $timeout, $cb, $options );<br />
                  <br />
                  In this example, the timer's data will be<br />
                  [@arrayOfStuff] and not { data =&gt; [@arrayOfStuff] }<br />
                  <br />
                  This key is valid for all of the hook functions.<br />
                  <br />
                  Default is undef.<br />
                  </td>
   </tr>

   <tr>
      <td>priority</td> <td>Sets the priority for the hook.<br />
                        It can be set to one of the
                        <code>Xchat::PRI_*</code> constants.<br />
                        <br />
                        This key only applies to server, command
                        and print hooks.<br />
                        <br />
                        Default is <code>Xchat::PRI_NORM</code>.
                        </td>

   </tr>

   <tr>
      <td>help_text</td>   <td>Text displayed for /help $command.<br />
                           <br />
                           This key only applies to command hooks.<br />
                           <br />
                           Default is "".
                           </td>
   </tr>

   <tr>
      <td>flags</td>   <td>Specify the flags for a fd hook.<br />
                       <br />
                       See <a href="#hook_fd_flags">hook fd flags</a> section for valid values.<br />
                       <br />
                       On Windows if the handle is a pipe you specify<br />
                       Xchat::FD_NOTSOCKET in addition to any other flags you might be using.<br />
                       <br />
                       This key only applies to fd hooks.<br />
                       Default is Xchat::FD_READ
                           </td>
   </tr>

</table>

=end html

=head4 When callbacks are invoked

Each of the hooks will be triggered at different times depending on the type
of hook.

=begin html

<table border="1">

   <tr style="background-color: #dddddd">
      <td>Hook Type</td>   <td>When the callback will be invoked</td>
   </tr>

   <tr>
      <td>server hooks</td>   <td>a <code>$message</code> message is 
                              received from the server
                              </td>
   </tr>

   <tr>
      <td>command hooks</td>  <td>the <code>$command</code> command is
                              executed, either by the user or from a script
                              </td>
   </tr>

   <tr>
      <td>print hooks</td> <td>X-Chat is about to print the message for the
                           <code>$event</code> event
                           </td>
   </tr>

   <tr>
      <td>timer hooks</td> <td>called every <code>$timeout</code> milliseconds
                           (1000 millisecond is 1 second)<br />
                           the callback will be executed in the same context where
                           the hook_timer was called, if the context no longer exists
                           then it will execute in a random context
                           </td>
   </tr>

   <tr>
      <td>fd hooks</td> <td>depends on the flags that were passed to hook_fd<br />
                        See <a href="#hook_fd_flags">hook_fd flags</a> section.
                        </td>
   </tr>
</table>

=end html


The value return from these hook functions can be passed to C<Xchat::unhook> 
to remove the hook.

=head4 Callback Arguments

All callback functions will receive their arguments in C<@_> like every
other Perl subroutine.

=begin html

<p>
Server and command callbacks<br />
<br />
<code>$_[0]</code>   -  array reference containing the IRC message or command and
arguments broken into words<br />
example:<br />
/command arg1 arg2 arg3<br />
<code>$_[0][0]</code> -  command<br />
<code>$_[0][1]</code> -  arg1<br />
<code>$_[0][2]</code> -  arg2<br />
<code>$_[0][3]</code> -  arg3<br />
<br />
<code>$_[1]</code>   -  array reference containing the Nth word to the last word<br />
example:<br />
/command arg1 arg2 arg3<br />
<code>$_[1][0]</code>   -  command arg1 arg2 arg3<br />
<code>$_[1][1]</code>   -  arg1 arg2 arg3<br />
<code>$_[1][2]</code>   -  arg2 arg3<br />
<code>$_[1][3]</code>   -  arg3<br />
<br />
<code>$_[2]</code>   -  the data that was passed to the hook function<br />
<br />
Print callbacks<br />
<br />
<code>$_[0]</code>   -  array reference containing the values for the
                        text event see Settings-&gt;Advanced-&gt;Text Events<br />
<code>$_[1]</code>   -  the data that was passed to the hook function<br />
<br />
Timer callbacks<br />
<br />
<code>$_[0]</code>   -  the data that was passed to the hook function<br />
<br />

fd callbacks<br />
<br />
<code>$_[0]</code>   -  the handle that was passed to hook_fd<br />
<code>$_[1]</code>   -  flags indicating why the callback was called<br />
<code>$_[2]</code>   -  the data that was passed to the hook function<br />
</p>

=end html

=head4 Callback return values

All server, command and print  callbacks should return one of
the C<Xchat::EAT_*> constants.
Timer callbacks can return Xchat::REMOVE to remove
the timer or Xchat::KEEP to keep it going

=head4 Miscellaneous Hook Related Information

For server hooks, if C<$message> is "RAW LINE" then C<$cb> will be called for
every IRC message than X-Chat receives.

For command hooks if C<$command> is "" then C<$cb> will be called for
messages entered by the user that is not a command.

For print hooks besides those events listed in 
Settings-E<gt>Advanced-E<gt>Text Events, these additional events can be used.

=begin html

<table border="1">

   <tr style="background-color: #dddddd">
      <td>Event</td> <td>Description</td>
   </tr>

   <tr>
      <td>"Open Context"</td> <td>a new context is created</td>
   </tr>

   <tr>
      <td>"Close Context"</td>   <td>a context has been close</td>
   </tr>

   <tr>
      <td>"Focus Tab"</td> <td>when a tab is brought to the front</td>
   </tr>

   <tr>
      <td>"Focus Window"</td> <td>when a top level window is focused or the
                              main tab window is focused by the window manager
                              </td>
   </tr>

   <tr>
      <td>"DCC Chat Text"</td>   <td>when text from a DCC Chat arrives.
                                 <code>$_[0]</code> will have these values<br />
                                 <br />
                                 <code>$_[0][0]</code>   -  Address<br />
                                 <code>$_[0][1]</code>   -  Port<br />
                                 <code>$_[0][2]</code>   -  Nick<br />
                                 <code>$_[0][3]</code>   -  Message<br />
                                 </td>
   </tr>

   <tr>
      <td>"Key Press"</td> <td>used for intercepting key presses<br />
			$_[0][0] - key value<br />
			$_[0][1] - state bitfield, 1 - shift, 4 - control, 8 - alt<br />
			$_[0][2] - string version of the key which might be empty for unprintable keys<br />
			$_[0][3] - length of the string in $_[0][2]<br />
		</td>
   </tr>
</table>

=end html

=head3 C<Xchat::unhook( $hook )>

=over 3

=item *
C<$hook>    -  the hook that was previously returned by one of the C<Xchat::hook_*> functions

=back


This function is used to removed a hook previously added with one of
the C<Xchat::hook_*> functions

It returns the data that was passed to the C<Xchat::hook_*> function when
the hook was added


=head3 C<Xchat::print( $text | \@lines, [$channel,[$server]] )>

=over 3

=item *
C<$text>    -  the text to print

=item *
C<\@lines>  -  array reference containing lines of text to be printed
               all the elements will be joined together before printing

=item *
C<$channel> -  channel or tab with the given name where C<$text>
               will be printed

=item *
C<$server>  -  specifies that the text will be printed in a channel or tab
               that is associated with C<$server>

=back

The first argument can either be a string or an array reference of strings.
Either or both of C<$channel> and C<$server> can be undef.

If called as C<Xchat::print( $text )>, it will always return true.
If called with either the channel or the channel and the server
specified then it will return true if a context is found and
false otherwise. The text will not be printed if the context
is not found.  The meaning of setting C<$channel> or C<$server> to
undef is the same as
L<find_context|xchat_find_context>.


=head3 C<Xchat::printf( $format, LIST )>

=over 3

=item *
C<$format>  -  a format string, see "perldoc -f L<sprintf|http://perldoc.perl.org/functions/sprintf.html>" for further detail

=item *
LIST     -  list of values for the format fields

=back

=head3 C<Xchat::command( $command | \@commands, [$channel,[$server]] )>

=over 3

=item *
C<$command> -  the command to execute, without the leading /

=item *
C<\@commands>  -  array reference containing a list of commands to execute

=item *
C<$channel> -  channel or tab with the given name where C<$command> will be executed

=item *
C<$server>  -  specifies that the command will be executed in a channel or tab that is associated with C<$server>

=back

The first argument can either be a string or an array reference of strings.
Either or both of C<$channel> and C<$server> can be undef.

If called as C<Xchat::command( $command )>, it will always return true.
If called with either the channel or the channel and the server
specified then it will return true if a context is found and false
otherwise. The command will not be executed if the context is not found.
The meaning of setting C<$channel> or C<$server> to undef is the same
as find_context.


=head3 C<Xchat::commandf( $format, LIST )>

=over 3

=item *
C<$format> -  a format string, see "perldoc -f L<sprintf|http://perldoc.perl.org/functions/sprintf.html>" for further detail

=item *
LIST     -  list of values for the format fields

=back

=head3 C<Xchat::find_context( [$channel, [$server]] )>

=over 3

=item *
C<$channel> -  name of a channel

=item *
C<$server>  -  name of a server

=back

Either or both of C<$channel> and $server can be undef. Calling
C<Xchat::find_context()> is the same as calling
C<Xchat::find_context( undef, undef)> and
C<Xchat::find_context( $channel )> is
the same as C<Xchat::find_context( $channel, undef )>.

If C<$server> is undef, find any channel named $channel.
If C<$channel> is undef, find the front most window
or tab named C<$server>.If both $channel and
C<$server> are undef, find the currently focused tab or window.

Return the context found for one of the above situations or undef if such
a context cannot be found.


=head3 C<Xchat::get_context()> 

=over 3

=back

Returns the current context.

=head3 C<Xchat::set_context( $context | $channel,[$server] )>

=over 3

=item *
C<$context> -  context value as returned from L<get_context|xchat_get_context>,L<find_context|xchat_find_context> or one
               of the fields in the list of hashrefs returned by list_get

=item *
C<$channel> -  name of a channel you want to switch context to

=item *
C<$server>  -  name of a server you want to switch context to

=back

See L<find_context|xchat_find_context> for more details on C<$channel> and C<$server>.

Returns true on success, false on failure

=head3 C<Xchat::get_info( $id )>

=over 3

=item *
C<$id>   -  one of the following case sensitive values

=back

=begin html

<table border="1">

   <tr style="background-color: #dddddd">
      <td>ID</td>
      <td>Return value</td>
      <td>Associated Command(s)</td>
   </tr>

   <tr>
      <td>away</td>
      <td>away reason or undef if you are not away</td>
      <td>AWAY, BACK</td>
   </tr>

   <tr>
      <td>channel</td>
      <td>current channel name</td>
      <td>SETTAB</td>
   </tr>

   <tr>
      <td>charset</td>
      <td>character-set used in the current context</td>
      <td>CHARSET</td>
   </tr>

   <tr>
      <td>event_text &lt;Event Name&gt;</td> <td>text event format string for &lt;Event name&gt;<br />
      Example:
   <div class="example">
      my $channel_msg_format = Xchat::get_info( "event_text Channel Message" );
   </div>
   </td>
   <td></td>
</tr>
<tr>
   <td>host</td>
   <td>real hostname of the current server</td>
   <td></td>
</tr>

<tr>
   <td>id</td>
   <td>connection id</td>
   <td></td>
</tr>

<tr>
   <td>inputbox</td>
   <td>contents of the inputbox</td>
   <td>SETTEXT</td>
</tr>

<tr>
   <td>libdirfs</td>
   <td>the system wide directory where xchat will look for plugins.
   this string is in the same encoding as the local file system</td>
   <td></td>
</tr>

<tr>
   <td>modes</td>
   <td>the current channels modes or undef if not known</td>
   <td>MODE</td>
</tr>

<tr>
   <td>network</td>
   <td>current network name or undef, this value is taken from the Network List</td>
   <td></td>
</tr>

<tr>
   <td>nick</td>
   <td>current nick</td>
   <td>NICK</td>
</tr>

<tr>
   <td>nickserv</td>
   <td>nickserv password for this network or undef, this value is taken from the Network List</td>
   <td></td>
</tr>

<tr>
   <td>server</td>   <td>current server name <br />
                     (what the server claims to be) undef if not connected
                     </td>
   <td></td>
</tr>

<tr>
   <td>state_cursor</td>
   <td>current inputbox cursor position in characters</td>
   <td>SETCURSOR</td>
</tr>

<tr>
   <td>topic</td>
   <td>current channel topic</td>
   <td>TOPIC</td>
</tr>

<tr>
   <td>version</td>
   <td>xchat version number</td>
   <td></td>
</tr>

<tr>
   <td>win_status</td>
   <td>status of the xchat window, possible values are "active", "hidden"
   and "normal"</td>
   <td>GUI</td>
</tr>

<tr>
  <td>win_ptr</td> <td>native window pointer, GtkWindow * on Unix, HWND on Win32.<br />
  On Unix if you have the Glib module installed you can use my $window = Glib::Object->new_from_pointer( Xchat::get_info( "win_ptr" ) ); to get a Gtk2::Window object.<br />
  Additionally when you have detached tabs, each of the windows will return a different win_ptr for the different Gtk2::Window objects.<br />
  See <a href="http://xchat.cvs.sourceforge.net/viewvc/xchat/xchat2/plugins/perl/char_count.pl?view=markup">char_count.pl</a> for a longer example of a script that uses this to show how many characters you currently have in your input box.
  </td>
  <td></td>
</tr>
<tr>
  <td>gtkwin_ptr</td>
  <td>similar to win_ptr except it will always be a GtkWindow *</td>
  <td></td>
</tr>
<tr>
   <td>xchatdir</td> <td>xchat config directory encoded in UTF-8<br />
                     examples:<br />
                     /home/user/.xchat2<br />
                     C:\Documents and Settings\user\Application Data\X-Chat 2
                     </td>
   <td></td>
</tr>

<tr>
   <td>xchatdirfs</td>  <td>same as xchatdir except encoded in the locale file system encoding</td>
   <td></td>
</tr>
</table>

<p>This function is used to retrieve certain information about the current
context. If there is an associated command then that command can be used to change the value for a particular ID.</p>

=end html

=head3 C<Xchat::get_prefs( $name )>

=over 3

=item *
C<$name> -  name of a X-Chat setting (available through the /set command)

=back

This function provides a way to retrieve X-Chat's setting information.

Returns C<undef> if there is no setting called called C<$name>.


=head3 C<Xchat::emit_print( $event, LIST )>

=over 3

=item *
C<$event>   -  name from the Event column in Settings-E<gt>Advanced-E<gt>Text Events

=item *
LIST     -  this depends on the Description column on the bottom of Settings-E<gt>Advanced-E<gt>Text Events

=back

This functions is used to generate one of the events listed under
Settings-E<gt>Advanced-E<gt>Text Events

Note: when using this function you MUST return Xchat::EAT_ALL otherwise you will end up with duplicate events.
One is the original and the second is the one you emit.

Returns true on success, false on failure

=head3 C<Xchat::send_modes( $target | \@targets, $sign, $mode, [ $modes_per_line ] )>

=over 3

=item *
C<$target>  -  a single nick to set the mode on

=item *
C<\@targets>   -  an array reference of the nicks to set the mode on

=item *
C<$sign> - the mode sign, either '+' or '-'

=item *
C<$mode> - the mode character such as 'o' and 'v', this can only be one character long

=item *
C<$modes_per_line>   -  an optional argument maximum number of modes to send per at once, pass 0 use the current server's maximum (default)

=back

Send multiple mode changes for the current channel. It may send multiple MODE lines if the request doesn't fit on one.

Example:

=begin html
<div class="example">
<code>
use strict;
use warning;
use Xchat qw(:all);
   
hook_command( "MODES", sub {
   my (undef, $who, $sign, $mode) = @{$_[0]};
   
   my @targets = split /,/, $who;
   if( @targets > 1 ) {
      send_modes( \@targets, $sign, $mode, 1 );
   } else {
      send_modes( $who, $sign, $mode );
   }
   
   return EAT_XCHAT;
});

</code>
</div>

=end html

=head3 C<Xchat::nickcmp( $nick1, $nick2 )>

=over 3

=item *
C<$nick1, $nick2> -  the two nicks or channel names that are to be compared

=back

The comparsion is based on the current server. Either a RFC1459 compliant
string compare or plain ascii will be using depending on the server. The
comparison is case insensitive.

Returns a number less than, equal to or greater than zero if
C<$nick1> is 
found respectively, to be less than, to match, or be greater than
C<$nick2>.


=head3 C<Xchat::get_list( $name )>

=over 3

=item *
C<$name> -  name of the list, one of the following:
"channels", "dcc", "ignore", "notify", "users"

=back

This function will return a list of hash references.  The hash references
will have different keys depend on the list.  An empty list is returned
if there is no such list.

=begin html

<p>"channels"  -  list of channels, querys and their server</p>

<table border="1">

   <tr style="background-color: #dddddd">
      <td>Key</td>   <td>Description</td>
   </tr>

   <tr>
      <td>channel</td>  <td>tab name</td>
   </tr>

   <tr>
      <td>chantypes</td>
      <td>channel types supported by the server, typically "#&amp;"</td>
   </tr>

   <tr>
      <td>context</td>  <td>can be used with set_context</td>
   </tr>

   <tr>
      <td>flags</td> <td>Server Bits:<br />
                     0 - Connected<br />
                     1 - Connecting<br />
                     2 - Away<br />
                     3 - EndOfMotd(Login complete)<br />
                     4 - Has WHOX<br />
                     5 - Has IDMSG (FreeNode)<br />
                    <br />
                    <p>The following correspond to the /chanopt command</p>
                    6  - Hide Join/Part Message (text_hidejoinpart)<br />
                    7  - unused (was for color paste)<br />
                    8  - Beep on message (alert_beep)<br />
                    9  - Blink Tray (alert_tray)<br />
                    10 - Blink Task Bar (alert_taskbar)<br />
<p>Example of checking if the current context has Hide Join/Part messages set:</p>
<div class="example">
<code>
if( Xchat::context_info->{flags} &amp; (1 << 6) ) {
  Xchat::print( "Hide Join/Part messages is enabled" );
}
</code>
</div>

                     </td>
   </tr>

   <tr>
      <td>id</td> <td>Unique server ID </td>
   </tr>
   
   <tr>
      <td>lag</td>
      <td>lag in milliseconds</td>
   </tr>

   <tr>
      <td>maxmodes</td> <td>Maximum modes per line</td>
   </tr>

   <tr>
      <td>network</td>  <td>network name to which this channel belongs</td>
   </tr>

   <tr>
      <td>nickprefixes</td>   <td>Nickname prefixes e.g. "+@"</td>
   </tr>
   
   <tr>
      <td>nickmodes</td>   <td>Nickname mode chars e.g. "vo"</td>
   </tr>

   <tr>
      <td>queue</td>
      <td>number of bytes in the send queue</td>
   </tr>
   
   <tr>
      <td>server</td>   <td>server name to which this channel belongs</td>
   </tr>

   <tr>
      <td>type</td>  <td>the type of this context<br />
                     1 - server<br />
                     2 - channel<br />
                     3 - dialog<br />
                     4 - notices<br />
                     5 - server notices<br />
                     </td>
   </tr>

   <tr>
      <td>users</td> <td>Number of users in this channel</td>
   </tr>
</table>

<p>"dcc"       -  list of DCC file transfers</p>
<table border="1">

   <tr style="background-color: #dddddd">
      <td>Key</td>   <td>Value</td>
   </tr>

   <tr>
      <td>address32</td>   <td>address of the remote user(ipv4 address)</td>
   </tr>

   <tr>
      <td>cps</td>   <td>bytes per second(speed)</td>
   </tr>

   <tr>
      <td>destfile</td> <td>destination full pathname</td>
   </tr>

   <tr>
      <td>file</td>  <td>file name</td>
   </tr>

   <tr>
      <td>nick</td>
      <td>nick of the person this DCC connection is connected to</td>
   </tr>

   <tr>
      <td>port</td>  <td>TCP port number</td>
   </tr>

   <tr>
      <td>pos</td>   <td>bytes sent/received</td>
   </tr>

   <tr>
      <td>poshigh</td>   <td>bytes sent/received, high order 32 bits</td>
   </tr>

   <tr>
      <td>resume</td>   <td>point at which this file was resumed<br />
                        (zero if it was not resumed)
                        </td>
   </tr>

   <tr>
      <td>resumehigh</td>   <td>point at which this file was resumed, high order 32 bits<br />
                        </td>
   </tr>

   <tr>
      <td>size</td>  <td>file size in bytes low order 32 bits</td>
   </tr>

   <tr>
      <td>sizehigh</td>	<td>file size in bytes, high order 32 bits (when the files is > 4GB)</td>
	</tr>
	<tr>
      <td>status</td>   <td>DCC Status:<br />
                        0 - queued<br />
                        1 - active<br />
                        2 - failed<br />
                        3 - done<br />
                        4 - connecting<br />
                        5 - aborted
                        </td>
   </tr>

   <tr>
      <td>type</td>  <td>DCC Type:<br />
                     0 - send<br />
                     1 - receive<br />
                     2 - chatrecv<br />
                     3 - chatsend
                     </td>
   </tr>

</table>

<p>"ignore"    -  current ignore list</p>
<table border="1">

   <tr style="background-color: #dddddd">
      <td>Key</td> <td>Value</td>
   </tr>

   <tr>
      <td>mask</td>  <td>ignore mask. e.g: *!*@*.aol.com</td>
   </tr>

   <tr>
      <td>flags</td> <td>Bit field of flags.<br />
                     0 - private<br />
                     1 - notice<br />
                     2 - channel<br />
                     3 - ctcp<br />
                     4 - invite<br />
                     5 - unignore<br />
                     6 - nosave<br />
                     7 - dcc<br />
                     </td>
   </tr>

</table>

<p>"notify" - list of people on notify</p>
<table border="1">
   <tr style="background-color: #dddddd">
      <td>Key</td>   <td>Value</td>
   </tr>

   <tr>
      <td>networks</td>
      <td>comma separated list of networks where you will be notfified about this user's online/offline status or undef if you will be notificed on every network you are connected to</td>
   </tr>

   <tr>
      <td>nick</td>  <td>nickname</td>
   </tr>

   <tr>
      <td>flags</td> <td>0 = is online</td>
   </tr>

   <tr>
      <td>on</td> <td>time when user came online</td>
   </tr>

   <tr>
      <td>off</td>   <td>time when user went offline</td>
   </tr>

   <tr>
      <td>seen</td>  <td>time when user was last verified still online</td>
   </tr>
</table>

<p>the values indexed by on, off and seen can be passed to localtime
and gmtime, see perldoc -f <a href="http://perldoc.perl.org/functions/localtime.html">localtime</a> and perldoc -f <a href="http://perldoc.perl.org/functions/gmtime.html">gmtime</a> for more
detail</p>

<p>"users"     -  list of users in the current channel</p>
<table border="1">

   <tr style="background-color: #dddddd">
      <td>Key</td>   <td>Value</td>
   </tr>

   <tr>
      <td>away</td>  <td>away status(boolean)</td>
   </tr>

   <tr>
      <td>lasttalk</td>
      <td>last time a user was seen talking, this is the an epoch time(number of seconds since a certain date, that date depends on the OS)</td>
   </tr>

   <tr>
      <td>nick</td>  <td>nick name</td>
   </tr>

   <tr>
      <td>host</td>
      <td>host name in the form: user@host or undef if not known</td>
   </tr>

   <tr>
      <td>prefix</td>   <td>prefix character, .e.g: @ or +</td>
   </tr>

   <tr>
      <td>realname</td>
       <td>Real name or undef</td>
   </tr>

   <tr>
      <td>selected</td>
      <td>selected status in the user list, only works when retrieving the user list of the focused tab. You can use the /USELECT command to select the nicks</td>
   </tr>
</table>

<p>"networks"	-	list of networks and the associated settings from network list</p>
<table border="1">

   <tr style="background-color: #dddddd">
      <td>Key</td>   <td>Value</td>
   </tr>
	
	<tr>
	<td>autojoins</td> <td>An object with the following methods:<br />
		<table>
			<tr>
				<td>Method</td>
				<td>Description</td>
			</tr>

			<tr>
				<td>channels()</td>
				<td>returns a list of this networks' autojoin channels in list context, a count of the number autojoin channels in scalar context</td>
			</tr>

			<tr>
				<td>keys()</td>
				<td>returns a list of the keys to go with the channels, the order is the same as the channels, if a channel doesn't  have a key, '' will be returned in it's place</td>
			</tr>

			<tr>
				<td>pairs()</td>
				<td>a combination of channels() and keys(), returns a list of (channels, keys) pairs. This can be assigned to a hash for a mapping from channel to key.</td>
			</tr>

			<tr>
				<td>as_hash()</td>
				<td>return the pairs as a hash reference</td>
			</tr>

			<tr>
				<td>as_string()</td>
				<td>the original string that was used to construct this autojoin object, this can be used with the JOIN command to join all the channels in the autojoin list</td>
			</tr>

			<tr>
				<td>as_array()</td>
				<td>return an array reference of hash references consisting of the keys "channel" and "key"</td>
			</tr>

			<tr>
				<td>as_bool()</td>
				<td>returns true if the network has autojoins and false otherwise</td>
			</tr>
		</table>
	</td>
	</tr>
   
	<tr>
	<td>connect_commands</td> <td>An array reference containing the connect commands for a network. An empty array if there aren't any</td>
	</tr>

	<tr>
	<td>encoding</td> <td>the encoding for the network</td>
	</tr>


	<tr>
		<td>flags</td>
		<td>
			a hash reference corresponding to the checkboxes in the network edit window
			<table>
				<tr>
					<td>allow_invalid</td>
					<td>true if "Accept invalid SSL certificate" is checked</td>
				</tr>

				<tr>
					<td>autoconnect</td>
					<td>true if "Auto connect to this network at startup" is checked</td>
				</tr>

				<tr>
					<td>cycle</td>
					<td>true if "Connect to selected server only" is <strong>NOT</strong> checked</td>
				</tr>

				<tr>
					<td>use_global</td>
					<td>true if "Use global user information" is checked</td>
				</tr>

				<tr>
					<td>use_proxy</td>
					<td>true if "Bypass proxy server" is <strong>NOT</strong> checked</td>
				</tr>

				<tr>
					<td>use_ssl</td>
					<td>true if "Use SSL for all the servers on this network" is checked</td>
				</tr>
			</table>
		</td>
	</tr>


	<tr>
		<td>irc_nick1</td>
		<td>Corresponds with the "Nick name" field in the network edit window</td>
	</tr>

	<tr>
		<td>irc_nick2</td>
		<td>Corresponds with the "Second choice" field in the network edit window</td>
	</tr>

	<tr>
		<td>irc_real_name</td>
		<td>Corresponds with the "Real name" field in the network edit window</td>
	</tr>


	<tr>
		<td>irc_user_name</td>
		<td>Corresponds with the "User name" field in the network edit window</td>
	</tr>


	<tr>
		<td>network</td>
		<td>Name of the network</td>
	</tr>

	<tr>
		<td>nickserv_password</td>
		<td>Corresponds with the "Nickserv password" field in the network edit window</td>
	</tr>

	<tr>
		<td>selected</td>
		<td>Index into the list of servers in the "servers" key, this is used if the "cycle" flag is false</td>
	</tr>

	<tr>
		<td>server_password</td>
		<td>Corresponds with the "Server password" field in the network edit window</td>
	</tr>

	<tr>
		<td>servers</td>
		<td>An array reference of hash references with a "host" and "port" key. If a port is not specified then 6667 will be used.</td>
	</tr>
</table>

=end html

=head3 C<Xchat::user_info( [$nick] )>

=over 3

=item *
C<$nick> -  the nick to look for, if this is not given your own nick will be
            used as default

=back

This function is mainly intended to be used as a shortcut for when you need
to retrieve some information about only one user in a channel. Otherwise it
is better to use L<get_list|xchat_get_list>.
If C<$nick> is found a hash reference containing the same keys as those in the
"users" list of L<get_list|xchat_get_list> is returned otherwise undef is returned.
Since it relies on L<get_list|xchat_get_list> this function can only be used in a
channel context.

=head3 C<Xchat::context_info( [$context] )>

=over 3

=item *
C<$context> -  context returned from L<get_context|xchat_get_context>, L<find_context|xchat_find_context> and L<get_list|xchat_get_list>, this is the context that you want infomation about. If this is omitted, it will default to current context.

=back

This function will return the information normally retrieved with L<get_info|xchat_get_info>, except this is for the context that is passed in. The information will be returned in the form of a hash. The keys of the hash are the C<$id> you would normally supply to L<get_info|xchat_get_info> as well as all the keys that are valid for the items in the "channels" list from L<get_list|xchat_get_list>. Use of this function is more efficient than calling get_list( "channels" ) and searching through the result.

=begin html

<p>Example:</p>
<div class="example">
use strict;
use warnings;
use Xchat qw(:all); # imports all the functions documented on this page
   
register( "User Count", "0.1",
   "Print out the number of users on the current channel" );
   
hook_command( "UCOUNT", \&display_count );
   
sub display_count {
   prnt "There are " . context_info()->{users} . " users in this channel.";
   return EAT_XCHAT;
}
</div>

=end html

=head3 C<Xchat::strip_code( $string )>

=over 3

=item *
C<$string>  -  string to remove codes from

=back

This function will remove bold, color, beep, reset, reverse and underline codes from C<$string>. It will also remove ANSI escape codes which might get used by certain terminal based clients. If it is called in void context C<$string> will be modified otherwise a modified copy of C<$string> is returned.

=head2 Examples

=head3 Asynchronous DNS resolution with hook_fd

=begin html

<div class="example">
<code>
use strict;
use warnings;
use Xchat qw(:all);
use Net::DNS;
   
hook_command( "BGDNS", sub {
   my $host = $_[0][1];
   my $resolver = Net::DNS::Resolver->new;
   my $sock = $resolver->bgsend( $host );
   
   hook_fd( $sock, sub {
      my $ready_sock = $_[0];
      my $packet = $resolver->bgread( $ready_sock );
      
      if( $packet->authority && (my @answers = $packet->answer ) ) {
         
         if( @answers ) {
            prnt "$host:";
            my $padding = " " x (length( $host ) + 2);
            for my $answer ( @answers ) {
               prnt $padding . $answer->rdatastr . ' ' . $answer->type;
            }
         }
      } else {
         prnt "Unable to resolve $host";
      }
      
      return REMOVE;
   },
   {
      flags => FD_READ,
   });
   
   return EAT_XCHAT;
});
</code>
</div>

=end html

=head2 Contact Information

Contact Lian Wan Situ at E<lt>atmcmnky [at] yahoo.comE<gt> for questions, comments and
corrections about this page or the Perl plugin itself.  You can also find me
in #xchat on FreeNode under the nick Khisanth.