]> git.vpit.fr Git - perl/scripts/xchat.git/blobdiff - hl.pl
Factor the GUI commands into a new utility function
[perl/scripts/xchat.git] / hl.pl
diff --git a/hl.pl b/hl.pl
index 7e76ba2c6cfb0e654a0a4aff635c8fca84e9e6d3..0a9fa11984c0ea16ce1e882daef191c1b7463de0 100755 (executable)
--- a/hl.pl
+++ b/hl.pl
@@ -8,21 +8,16 @@ use Xchat qw<:all>;
 use lib get_info 'xchatdir';
 use Xchat::XPI;
 use Xchat::XPI::Events qw<filter>;
+use Xchat::XPI::Utils  qw<gui>;
 
 our $VERSION = '0.04';
 
 my $ph;
 
-sub guihl {
- command 'GUI FLASH';
- command 'GUI COLOR 3';
-}
-
-sub guiclear {
- command 'GUI COLOR 0';
-}
-
-hook_print 'Private Message to Dialog', sub { guihl; return EAT_NONE };
+hook_print 'Private Message to Dialog', sub {
+ gui 'highlight';
+ return EAT_NONE;
+};
 
 my %hl = (
  '#cpantesters' => [ qw<
@@ -59,7 +54,7 @@ for (keys %hl) {
 filter 'Channel Action' => sub {
  my $chan = lc get_info 'channel';
  if ($hl{$chan} and $_[1] =~ /$hl{$chan}/) {
-  guihl;
+  gui 'highlight';
   1;
  } else {
   0;
@@ -80,7 +75,7 @@ for (keys %skip) {
 filter 'Channel Action Hilight' => sub {
  my $chan = lc get_info 'channel';
  if ($skip{$chan} and $_[1] =~ /$skip{$chan}/) {
-  guiclear;
+  gui 'clear';
   1;
  } else {
   0;