2 # Copyright (C) 2008-2014 Sebastien Helleu <flashcode@flashtux.org>
3 # Copyright (C) 2011-2013 Nils G <weechatter@arcor.de>
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
19 # Display sidebar with list of buffers.
23 # 2014-01-01, Sebastien Helleu <flashcode@flashtux.org>:
24 # v4.5: add option "mouse_move_buffer"
25 # 2013-12-11, Sebastien Helleu <flashcode@flashtux.org>:
26 # v4.4: fix buffer number on drag to the end of list when option
27 # weechat.look.buffer_auto_renumber is off
28 # 2013-12-10, nils_2@freenode.#weechat:
29 # v4.3: add options "prefix_bufname" and "suffix_bufname (idea by silverd)
30 # : fix hook_timer() for show_lag wasn't disabled
31 # : improved signal handling (less updating of buffers list)
32 # 2013-11-07, Sebastien Helleu <flashcode@flashtux.org>:
33 # v4.2: use default filling "columns_vertical" when bar position is top/bottom
34 # 2013-10-31, nils_2@freenode.#weechat:
35 # v4.1: add option "detach_buffer_immediately" (idea by farn)
36 # 2013-10-20, nils_2@freenode.#weechat:
37 # v4.0: add options "detach_displayed_buffers", "detach_display_window_number"
38 # 2013-09-27, nils_2@freenode.#weechat:
39 # v3.9: add option "toggle_bar" and option "show_prefix_query" (idea by IvarB)
40 # : fix problem with linefeed at end of list of buffers (reported by grawity)
41 # 2012-10-18, nils_2@freenode.#weechat:
42 # v3.8: add option "mark_inactive", to mark buffers you are not in (idea by xrdodrx)
43 # : add wildcard "*" for immune_detach_buffers (idea by StarWeaver)
44 # : add new options "detach_query" and "detach_free_content" (idea by StarWeaver)
45 # 2012-10-06, Nei <anti.teamidiot.de>:
46 # v3.7: call menu on right mouse if menu script is loaded.
47 # 2012-10-06, nils_2 <weechatter@arcor.de>:
48 # v3.6: add new option "hotlist_counter" (idea by torque).
49 # 2012-06-02, nils_2 <weechatter@arcor.de>:
50 # v3.5: add values "server|channel|private|all|keepserver|none" to option "hide_merged_buffers" (suggested by dominikh).
51 # 2012-05-25, nils_2 <weechatter@arcor.de>:
52 # v3.4: add new option "show_lag".
53 # 2012-04-07, Sebastien Helleu <flashcode@flashtux.org>:
54 # v3.3: fix truncation of wide chars in buffer name (option name_size_max) (bug #36034)
55 # 2012-03-15, nils_2 <weechatter@arcor.de>:
56 # v3.2: add new option "detach"(weechat >= 0.3.8)
57 # add new option "immune_detach_buffers" (requested by Mkaysi)
58 # add new function buffers_whitelist add|del|reset (suggested by FiXato)
59 # add new function buffers_detach add|del|reset
60 # 2012-03-09, Sebastien Helleu <flashcode@flashtux.org>:
61 # v3.1: fix reload of config file
62 # 2012-01-29, nils_2 <weechatter@arcor.de>:
63 # v3.0: fix: buffers did not update directly during window_switch (reported by FiXato)
64 # 2012-01-29, nils_2 <weechatter@arcor.de>:
65 # v2.9: add options "name_size_max" and "name_crop_suffix"
66 # 2012-01-08, nils_2 <weechatter@arcor.de>:
67 # v2.8: fix indenting for option "show_number off"
68 # fix unset of buffer activity in hotlist when buffer was moved with mouse
69 # add buffer with free content and core buffer sorted first (suggested by nyuszika7h)
70 # add options queries_default_fg/bg and queries_message_fg/bg (suggested by FiXato)
71 # add clicking with left button on current buffer will do a jump_previously_visited_buffer (suggested by FiXato)
72 # add clicking with right button on current buffer will do a jump_next_visited_buffer
73 # add additional informations in help texts
74 # add default_fg and default_bg for whitelist channels
75 # internal changes (script is now 3Kb smaller)
76 # 2012-01-04, Sebastien Helleu <flashcode@flashtux.org>:
77 # v2.7: fix regex lookup in whitelist buffers list
78 # 2011-12-04, nils_2 <weechatter@arcor.de>:
79 # v2.6: add own config file (buffers.conf)
80 # add new behavior for indenting (under_name)
81 # add new option to set different color for server buffers and buffers with free content
82 # 2011-10-30, nils_2 <weechatter@arcor.de>:
83 # v2.5: add new options "show_number_char" and "color_number_char",
84 # add help-description for options
85 # 2011-08-24, Sebastien Helleu <flashcode@flashtux.org>:
86 # v2.4: add mouse support
87 # 2011-06-06, nils_2 <weechatter@arcor.de>:
88 # v2.3: added: missed option "color_whitelist_default"
89 # 2011-03-23, Sebastien Helleu <flashcode@flashtux.org>:
90 # v2.2: fix color of nick prefix with WeeChat >= 0.3.5
91 # 2011-02-13, nils_2 <weechatter@arcor.de>:
92 # v2.1: add options "color_whitelist_*"
93 # 2010-10-05, Sebastien Helleu <flashcode@flashtux.org>:
94 # v2.0: add options "sort" and "show_number"
95 # 2010-04-12, Sebastien Helleu <flashcode@flashtux.org>:
96 # v1.9: replace call to log() by length() to align buffer numbers
97 # 2010-04-02, Sebastien Helleu <flashcode@flashtux.org>:
98 # v1.8: fix bug with background color and option indenting_number
99 # 2010-04-02, Helios <helios@efemes.de>:
100 # v1.7: add indenting_number option
101 # 2010-02-25, m4v <lambdae2@gmail.com>:
102 # v1.6: add option to hide empty prefixes
103 # 2010-02-12, Sebastien Helleu <flashcode@flashtux.org>:
104 # v1.5: add optional nick prefix for buffers like IRC channels
105 # 2009-09-30, Sebastien Helleu <flashcode@flashtux.org>:
106 # v1.4: remove spaces for indenting when bar position is top/bottom
107 # 2009-06-14, Sebastien Helleu <flashcode@flashtux.org>:
108 # v1.3: add option "hide_merged_buffers"
109 # 2009-06-14, Sebastien Helleu <flashcode@flashtux.org>:
110 # v1.2: improve display with merged buffers
111 # 2009-05-02, Sebastien Helleu <flashcode@flashtux.org>:
112 # v1.1: sync with last API changes
113 # 2009-02-21, Sebastien Helleu <flashcode@flashtux.org>:
114 # v1.0: remove timer used to update bar item first time (not needed any more)
115 # 2009-02-17, Sebastien Helleu <flashcode@flashtux.org>:
116 # v0.9: fix bug with indenting of private buffers
117 # 2009-01-04, Sebastien Helleu <flashcode@flashtux.org>:
118 # v0.8: update syntax for command /set (comments)
119 # 2008-10-20, Jiri Golembiovsky <golemj@gmail.com>:
120 # v0.7: add indenting option
121 # 2008-10-01, Sebastien Helleu <flashcode@flashtux.org>:
122 # v0.6: add default color for buffers, and color for current active buffer
123 # 2008-09-18, Sebastien Helleu <flashcode@flashtux.org>:
124 # v0.5: fix color for "low" level entry in hotlist
125 # 2008-09-18, Sebastien Helleu <flashcode@flashtux.org>:
126 # v0.4: rename option "show_category" to "short_names",
127 # remove option "color_slash"
128 # 2008-09-15, Sebastien Helleu <flashcode@flashtux.org>:
129 # v0.3: fix bug with priority in hotlist (var not defined)
130 # 2008-09-02, Sebastien Helleu <flashcode@flashtux.org>:
131 # v0.2: add color for buffers with activity and config options for
132 # colors, add config option to display/hide categories
133 # 2008-03-15, Sebastien Helleu <flashcode@flashtux.org>:
134 # v0.1: script creation
136 # Help about settings:
137 # display all settings for script (or use iset.pl script to change settings):
139 # show help text for option buffers.look.whitelist_buffers:
140 # /help buffers.look.whitelist_buffers
142 # Mouse-support (standard key bindings):
144 # - click on a buffer to switch to selected buffer
145 # - click on current buffer will do action jump_previously_visited_buffer
146 # - drag a buffer and drop it on another position will move the buffer to position
147 # right mouse-button:
148 # - click on current buffer will do action jump_next_visited_buffer
149 # - moving buffer to the left/right will close buffer.
153 use Encode
qw( decode encode );
154 # -------------------------------[ internal ]-------------------------------------
155 my $SCRIPT_NAME = "buffers";
156 my $SCRIPT_VERSION = "4.5";
158 my $BUFFERS_CONFIG_FILE_NAME = "buffers";
159 my $buffers_config_file;
160 my $cmd_buffers_whitelist= "buffers_whitelist";
161 my $cmd_buffers_detach = "buffers_detach";
163 my %mouse_keys = ("\@item(buffers):button1*" => "hsignal:buffers_mouse", # catch all left mouse button gestures
164 "\@item(buffers):button2*" => "hsignal:buffers_mouse"); # catch all right mouse button gestures
166 my %hotlist_level = (0 => "low", 1 => "message", 2 => "private", 3 => "highlight");
167 my @whitelist_buffers = ();
168 my @immune_detach_buffers= ();
169 my @detach_buffer_immediately= ();
170 my @buffers_focus = ();
171 my %buffers_timer = ();
174 # --------------------------------[ init ]--------------------------------------
175 weechat
::register
($SCRIPT_NAME, "Sebastien Helleu <flashcode\@flashtux.org>", $SCRIPT_VERSION,
176 "GPL3", "Sidebar with list of buffers", "shutdown_cb", "");
177 my $weechat_version = weechat
::info_get
("version_number", "") || 0;
179 buffers_config_init
();
180 buffers_config_read
();
182 weechat
::bar_item_new
($SCRIPT_NAME, "build_buffers", "");
183 weechat
::bar_new
($SCRIPT_NAME, "0", "0", "root", "", "left", "columns_vertical",
184 "vertical", "0", "0", "default", "default", "default", "1",
187 if ( check_bar_item
() == 0 )
189 weechat
::command
("","/bar show " . $SCRIPT_NAME) if ( weechat
::config_boolean
($options{"toggle_bar"}) eq 1 );
192 weechat
::hook_signal
("buffer_opened", "buffers_signal_buffer", "");
193 weechat
::hook_signal
("buffer_closed", "buffers_signal_buffer", "");
194 weechat
::hook_signal
("buffer_merged", "buffers_signal_buffer", "");
195 weechat
::hook_signal
("buffer_unmerged", "buffers_signal_buffer", "");
196 weechat
::hook_signal
("buffer_moved", "buffers_signal_buffer", "");
197 weechat
::hook_signal
("buffer_renamed", "buffers_signal_buffer", "");
198 weechat
::hook_signal
("buffer_switch", "buffers_signal_buffer", "");
200 weechat
::hook_signal
("window_switch", "buffers_signal_buffer", "");
201 weechat
::hook_signal
("hotlist_changed", "buffers_signal_hotlist", "");
202 #weechat::hook_command_run("/input switch_active_*", "buffers_signal_buffer", "");
203 weechat
::bar_item_update
($SCRIPT_NAME);
206 if ($weechat_version >= 0x00030600)
208 weechat
::hook_focus
($SCRIPT_NAME, "buffers_focus_buffers", "");
209 weechat
::hook_hsignal
("buffers_mouse", "buffers_hsignal_mouse", "");
210 weechat
::key_bind
("mouse", \
%mouse_keys);
213 weechat
::hook_command
( $cmd_buffers_whitelist,
214 "add/del current buffer to/from buffers whitelist",
215 "[add] || [del] || [reset]",
217 " add: add current buffer in configuration file\n".
218 " del: delete current buffer from configuration file\n".
219 "reset: reset all buffers from configuration file (no confirmation!)\n\n".
221 "/$cmd_buffers_whitelist add\n",
225 "buffers_cmd_whitelist", "");
226 weechat
::hook_command
( $cmd_buffers_detach,
227 "add/del current buffer to/from buffers detach",
228 "[add] || [del] || [reset]",
230 " add: add current buffer in configuration file\n".
231 " del: delete current buffer from configuration file\n".
232 "reset: reset all buffers from configuration file (no confirmation!)\n\n".
234 "/$cmd_buffers_detach add\n",
238 "buffers_cmd_detach", "");
240 if ($weechat_version >= 0x00030800)
242 weechat
::hook_config
("buffers.look.detach", "hook_timer_detach", "");
243 $Hooks{timer_detach
} = weechat
::hook_timer
( weechat
::config_integer
( $options{"detach"}) * 1000, 60, 0, "buffers_signal_hotlist", "") if ( weechat
::config_integer
( $options{"detach"}) > 0 );
246 weechat
::hook_config
("buffers.look.show_lag", "hook_timer_lag", "");
248 $Hooks{timer_lag
} = weechat
::hook_timer
( weechat
::config_integer
(weechat
::config_get
("irc.network.lag_refresh_interval")) * 1000, 0, 0, "buffers_signal_hotlist", "") if ( weechat
::config_boolean
($options{"show_lag"}) );
250 # -------------------------------- [ command ] --------------------------------
251 sub buffers_cmd_whitelist
253 my ( $data, $buffer, $args ) = @_;
255 my $buffers_whitelist = weechat
::config_string
( weechat
::config_get
("buffers.look.whitelist_buffers") );
256 return weechat
::WEECHAT_RC_OK
if ( $buffers_whitelist eq "" and $args eq "del" or $buffers_whitelist eq "" and $args eq "reset" );
257 my @buffers_list = split( /,/, $buffers_whitelist );
259 my $infolist = weechat
::infolist_get
("buffer", weechat
::current_buffer
(), "");
260 weechat
::infolist_next
($infolist);
261 my $buffers_name = weechat
::infolist_string
($infolist, "name");
262 weechat
::infolist_free
($infolist);
263 return weechat
::WEECHAT_RC_OK
if ( $buffers_name eq "" ); # should never happen
265 if ( $args eq "add" )
267 return weechat
::WEECHAT_RC_OK
if ( grep /^$buffers_name$/, @buffers_list ); # check if buffer already in list
268 push @buffers_list,( $buffers_name );
269 my $buffers_list = &create_whitelist
(\
@buffers_list);
270 weechat
::config_option_set
( weechat
::config_get
("buffers.look.whitelist_buffers"), $buffers_list,1 );
271 weechat
::print(weechat
::current_buffer
(), "buffer \"$buffers_name\" added to buffers whitelist");
273 elsif ( $args eq "del" )
275 return weechat
::WEECHAT_RC_OK
unless ( grep /^$buffers_name$/, @buffers_list ); # check if buffer is in list
276 @buffers_list = grep {$_ ne $buffers_name} @buffers_list; # delete entry
277 my $buffers_list = &create_whitelist
(\
@buffers_list);
278 weechat
::config_option_set
( weechat
::config_get
("buffers.look.whitelist_buffers"), $buffers_list,1 );
279 weechat
::print(weechat
::current_buffer
(), "buffer \"$buffers_name\" deleted from buffers whitelist");
281 elsif ( $args eq "reset" )
283 return weechat
::WEECHAT_RC_OK
if ( $buffers_whitelist eq "" );
284 weechat
::config_option_set
( weechat
::config_get
("buffers.look.whitelist_buffers"), "",1 );
285 weechat
::print(weechat
::current_buffer
(), "buffers whitelist is empty, now...");
287 return weechat
::WEECHAT_RC_OK
;
289 sub buffers_cmd_detach
291 my ( $data, $buffer, $args ) = @_;
293 my $immune_detach_buffers = weechat
::config_string
( weechat
::config_get
("buffers.look.immune_detach_buffers") );
294 return weechat
::WEECHAT_RC_OK
if ( $immune_detach_buffers eq "" and $args eq "del" or $immune_detach_buffers eq "" and $args eq "reset" );
296 my @buffers_list = split( /,/, $immune_detach_buffers );
298 my $infolist = weechat
::infolist_get
("buffer", weechat
::current_buffer
(), "");
299 weechat
::infolist_next
($infolist);
300 my $buffers_name = weechat
::infolist_string
($infolist, "name");
301 weechat
::infolist_free
($infolist);
302 return weechat
::WEECHAT_RC_OK
if ( $buffers_name eq "" ); # should never happen
304 if ( $args eq "add" )
306 return weechat
::WEECHAT_RC_OK
if ( grep /^$buffers_name$/, @buffers_list ); # check if buffer already in list
307 push @buffers_list,( $buffers_name );
308 my $buffers_list = &create_whitelist
(\
@buffers_list);
309 weechat
::config_option_set
( weechat
::config_get
("buffers.look.immune_detach_buffers"), $buffers_list,1 );
310 weechat
::print(weechat
::current_buffer
(), "buffer \"$buffers_name\" added to immune detach buffers");
312 elsif ( $args eq "del" )
314 return weechat
::WEECHAT_RC_OK
unless ( grep /^$buffers_name$/, @buffers_list ); # check if buffer is in list
315 @buffers_list = grep {$_ ne $buffers_name} @buffers_list; # delete entry
316 my $buffers_list = &create_whitelist
(\
@buffers_list);
317 weechat
::config_option_set
( weechat
::config_get
("buffers.look.immune_detach_buffers"), $buffers_list,1 );
318 weechat
::print(weechat
::current_buffer
(), "buffer \"$buffers_name\" deleted from immune detach buffers");
320 elsif ( $args eq "reset" )
322 return weechat
::WEECHAT_RC_OK
if ( $immune_detach_buffers eq "" );
323 weechat
::config_option_set
( weechat
::config_get
("buffers.look.immune_detach_buffers"), "",1 );
324 weechat
::print(weechat
::current_buffer
(), "immune detach buffers is empty, now...");
326 return weechat
::WEECHAT_RC_OK
;
331 my @buffers_list = @{$_[0]};
332 my $buffers_list = "";
333 foreach (@buffers_list)
335 $buffers_list .= $_ .",";
337 chop $buffers_list; # remove last ","
338 return $buffers_list;
341 # -------------------------------- [ config ] --------------------------------
342 sub hook_timer_detach
347 weechat
::unhook
($Hooks{timer_detach
}) if $Hooks{timer_detach
};
348 $Hooks{timer_detach
} = "";
352 weechat
::unhook
($Hooks{timer_detach
}) if $Hooks{timer_detach
};
353 $Hooks{timer_detach
} = weechat
::hook_timer
( weechat
::config_integer
( $options{"detach"}) * 1000, 60, 0, "buffers_signal_hotlist", "");
355 weechat
::bar_item_update
($SCRIPT_NAME);
356 return weechat
::WEECHAT_RC_OK
;
364 weechat
::unhook
($Hooks{timer_lag
}) if $Hooks{timer_lag
};
365 $Hooks{timer_lag
} = "";
369 weechat
::unhook
($Hooks{timer_lag
}) if $Hooks{timer_lag
};
370 $Hooks{timer_lag
} = weechat
::hook_timer
( weechat
::config_integer
(weechat
::config_get
("irc.network.lag_refresh_interval")) * 1000, 0, 0, "buffers_signal_hotlist", "");
372 weechat
::bar_item_update
($SCRIPT_NAME);
373 return weechat
::WEECHAT_RC_OK
;
376 sub buffers_config_read
378 return weechat
::config_read
($buffers_config_file) if ($buffers_config_file ne "");
380 sub buffers_config_write
382 return weechat
::config_write
($buffers_config_file) if ($buffers_config_file ne "");
384 sub buffers_config_reload_cb
386 my ($data,$config_file) = ($_[0], $_[1]);
387 return weechat
::config_reload
($config_file)
389 sub buffers_config_init
391 $buffers_config_file = weechat
::config_new
($BUFFERS_CONFIG_FILE_NAME,"buffers_config_reload_cb","");
392 return if ($buffers_config_file eq "");
394 my %default_options_color =
395 ("color_current_fg" => ["current_fg", "color", "foreground color for current buffer", "", 0, 0, "lightcyan", "lightcyan", 0, "", "", "buffers_signal_config", "", "", ""],
396 "color_current_bg" => ["current_bg", "color", "background color for current buffer", "", 0, 0, "red", "red", 0, "", "", "buffers_signal_config", "", "", ""],
397 "color_default_fg" => ["default_fg", "color", "default foreground color for buffer name", "", 0, 0, "default", "default", 0, "", "", "buffers_signal_config", "", "", ""],
398 "color_default_bg" => ["default_bg", "color", "default background color for buffer name", "", 0, 0, "default", "default", 0, "", "", "buffers_signal_config", "", "", ""],
399 "color_hotlist_highlight_fg" => ["hotlist_highlight_fg", "color", "change foreground color of buffer name if a highlight messaged received", "", 0, 0, "magenta", "magenta", 0, "", "", "buffers_signal_config", "", "", ""],
400 "color_hotlist_highlight_bg" => ["hotlist_highlight_bg", "color", "change background color of buffer name if a highlight messaged received", "", 0, 0, "default", "default", 0, "", "", "buffers_signal_config", "", "", ""],
401 "color_hotlist_low_fg" => ["hotlist_low_fg", "color", "change foreground color of buffer name if a low message received", "", 0, 0, "white", "white", 0, "", "", "buffers_signal_config", "", "", ""],
402 "color_hotlist_low_bg" => ["hotlist_low_bg", "color", "change background color of buffer name if a low message received", "", 0, 0,
403 "default", "default", 0, "", "", "buffers_signal_config", "", "", ""],
404 "color_hotlist_message_fg" => ["hotlist_message_fg", "color", "change foreground color of buffer name if a normal message received", "", 0, 0, "yellow", "yellow", 0, "", "", "buffers_signal_config", "", "", ""],
405 "color_hotlist_message_bg" => ["hotlist_message_bg", "color", "change background color of buffer name if a normal message received", "", 0, 0, "default", "default", 0, "", "", "buffers_signal_config", "", "", ""],
406 "color_hotlist_private_fg" => ["hotlist_private_fg", "color", "change foreground color of buffer name if a private message received", "", 0, 0, "lightgreen", "lightgreen", 0, "", "", "buffers_signal_config", "", "", ""],
407 "color_hotlist_private_bg" => ["hotlist_private_bg", "color", "change background color of buffer name if a private message received", "", 0, 0, "default", "default", 0, "", "", "buffers_signal_config", "", "", ""],
408 "color_number" => ["number", "color", "color for buffer number", "", 0, 0, "lightgreen", "lightgreen", 0, "", "", "buffers_signal_config", "", "", ""],
409 "color_number_char" => ["number_char", "color", "color for buffer number char", "", 0, 0, "lightgreen", "lightgreen", 0, "", "", "buffers_signal_config", "", "", ""],
410 "color_whitelist_default_fg" => ["whitelist_default_fg", "color", "default foreground color for whitelist buffer name", "", 0, 0, "", "", 0, "", "", "buffers_signal_config", "", "", ""],
411 "color_whitelist_default_bg" => ["whitelist_default_bg", "color", "default background color for whitelist buffer name", "", 0, 0, "", "", 0, "", "", "buffers_signal_config", "", "", ""],
412 "color_whitelist_low_fg" => ["whitelist_low_fg", "color", "low color of whitelist buffer name", "", 0, 0, "", "", 0, "", "", "buffers_signal_config", "", "", ""],
413 "color_whitelist_low_bg" => ["whitelist_low_bg", "color", "low color of whitelist buffer name", "", 0, 0, "", "", 0, "", "", "buffers_signal_config", "", "", ""],
414 "color_whitelist_message_fg" => ["whitelist_message_fg", "color", "message color of whitelist buffer name", "", 0, 0, "", "", 0, "", "", "buffers_signal_config", "", "", ""],
415 "color_whitelist_message_bg" => ["whitelist_message_bg", "color", "message color of whitelist buffer name", "", 0, 0, "", "", 0, "", "", "buffers_signal_config", "", "", ""],
416 "color_whitelist_private_fg" => ["whitelist_private_fg", "color", "private color of whitelist buffer name", "", 0, 0, "", "", 0, "", "", "buffers_signal_config", "", "", ""],
417 "color_whitelist_private_bg" => ["whitelist_private_bg", "color", "private color of whitelist buffer name", "", 0, 0, "", "", 0, "", "", "buffers_signal_config", "", "", ""],
418 "color_whitelist_highlight_fg" => ["whitelist_highlight_fg", "color", "highlight color of whitelist buffer name", "", 0, 0, "", "", 0, "", "", "buffers_signal_config", "", "", ""],
419 "color_whitelist_highlight_bg" => ["whitelist_highlight_bg", "color", "highlight color of whitelist buffer name", "", 0, 0, "", "", 0, "", "", "buffers_signal_config", "", "", ""],
420 "color_none_channel_fg" => ["none_channel_fg", "color", "foreground color for none channel buffer (e.g.: core/server/plugin buffer)", "", 0, 0, "default", "default", 0, "", "", "buffers_signal_config", "", "", ""],
421 "color_none_channel_bg" => ["none_channel_bg", "color", "background color for none channel buffer (e.g.: core/server/plugin buffer)", "", 0, 0, "default", "default", 0, "", "", "buffers_signal_config", "", "", ""],
422 "queries_default_fg" => ["queries_default_fg", "color", "foreground color for query buffer without message", "", 0, 0, "default", "default", 0, "", "", "buffers_signal_config", "", "", ""],
423 "queries_default_bg" => ["queries_default_bg", "color", "background color for query buffer without message", "", 0, 0, "default", "default", 0, "", "", "buffers_signal_config", "", "", ""],
424 "queries_message_fg" => ["queries_message_fg", "color", "foreground color for query buffer with unread message", "", 0, 0, "default", "default", 0, "", "", "buffers_signal_config", "", "", ""],
425 "queries_message_bg" => ["queries_message_bg", "color", "background color for query buffer with unread message", "", 0, 0, "default", "default", 0, "", "", "buffers_signal_config", "", "", ""],
426 "queries_highlight_fg" => ["queries_highlight_fg", "color", "foreground color for query buffer with unread highlight", "", 0, 0, "default", "default", 0, "", "", "buffers_signal_config", "", "", ""],
427 "queries_highlight_bg" => ["queries_highlight_bg", "color", "background color for query buffer with unread highlight", "", 0, 0, "default", "default", 0, "", "", "buffers_signal_config", "", "", ""],
428 "color_prefix_bufname" => ["prefix_bufname", "color", "color for prefix of buffer name", "", 0, 0, "default", "default", 0, "", "", "buffers_signal_config", "", "", ""],
429 "color_suffix_bufname" => ["suffix_bufname", "color", "color for suffix of buffer name", "", 0, 0, "default", "default", 0, "", "", "buffers_signal_config", "", "", ""],
432 my %default_options_look =
434 "hotlist_counter" => ["hotlist_counter", "boolean", "show number of message for the buffer (this option needs WeeChat >= 0.3.5). The relevant option for notification is \"weechat.look.buffer_notify_default\"", "", 0, 0, "off", "off", 0, "", "", "buffers_signal_config", "", "", ""],
435 "show_lag" => ["show_lag", "boolean", "show lag behind servername. This option is using \"irc.color.item_lag_finished\", \"irc.network.lag_min_show\" and \"irc.network.lag_refresh_interval\"", "", 0, 0, "off", "off", 0, "", "", "buffers_signal_config", "", "", ""],
436 "look_whitelist_buffers" => ["whitelist_buffers", "string", "comma separated list of buffers for using a differnt color scheme (for example: freenode.#weechat,freenode.#weechat-fr)", "", 0, 0, "", "", 0, "", "", "buffers_signal_config_whitelist", "", "", ""],
437 "hide_merged_buffers" => ["hide_merged_buffers", "integer", "hide merged buffers. The value determines which merged buffers should be hidden, keepserver meaning 'all except server buffers'. Other values correspondent to the buffer type.", "server|channel|private|keepserver|all|none", 0, 0, "none", "none", 0, "", "", "buffers_signal_config", "", "", ""],
438 "indenting" => ["indenting", "integer", "use indenting for channel and query buffers. This option only takes effect if bar is left/right positioned", "off|on|under_name", 0, 0, "off", "off", 0, "", "", "buffers_signal_config", "", "", ""],
439 "indenting_number" => ["indenting_number", "boolean", "use indenting for numbers. This option only takes effect if bar is left/right positioned", "", 0, 0, "on", "on", 0, "", "", "buffers_signal_config", "", "", ""],
440 "short_names" => ["short_names", "boolean", "display short names (remove text before first \".\" in buffer name)", "", 0, 0, "on", "on", 0, "", "", "buffers_signal_config", "", "", ""],
441 "show_number" => ["show_number", "boolean", "display channel number in front of buffername", "", 0, 0, "on", "on", 0, "", "", "buffers_signal_config", "", "", ""],
442 "show_number_char" => ["number_char", "string", "display a char behind channel number", "", 0, 0, ".", ".", 0, "", "", "buffers_signal_config", "", "", ""],
443 "show_prefix_bufname" => ["prefix_bufname", "string", "prefix displayed in front of buffername", "", 0, 0, "", "", 0, "", "", "buffers_signal_config", "", "", ""],
444 "show_suffix_bufname" => ["suffix_bufname", "string", "suffix displayed at end of buffername", "", 0, 0, "", "", 0, "", "", "buffers_signal_config", "", "", ""],
445 "show_prefix" => ["prefix", "boolean", "displays your prefix for channel in front of buffername", "", 0, 0, "off", "off", 0, "", "", "buffers_signal_config", "", "", ""],
446 "show_prefix_empty" => ["prefix_empty", "boolean", "use a placeholder for channels without prefix", "", 0, 0, "on", "on", 0, "", "", "buffers_signal_config", "", "", ""],
447 "show_prefix_query" => ["prefix_for_query", "string", "prefix displayed in front of query buffer", "", 0, 0, "", "", 0, "", "", "buffers_signal_config", "", "", ""],
448 "sort" => ["sort", "integer", "sort buffer-list by \"number\" or \"name\"", "number|name", 0, 0, "number", "number", 0, "", "", "buffers_signal_config", "", "", ""],
449 "core_to_front" => ["core_to_front", "boolean", "core buffer and buffers with free content will be listed first. Take only effect if buffer sort is by name", "", 0, 0, "off", "off", 0, "", "", "buffers_signal_config", "", "", ""],
450 "jump_prev_next_visited_buffer" => ["jump_prev_next_visited_buffer", "boolean", "jump to previously or next visited buffer if you click with left/right mouse button on currently visiting buffer", "", 0, 0, "off", "off", 0, "", "", "buffers_signal_config", "", "", ""],
451 "name_size_max" => ["name_size_max", "integer", "maximum size of buffer name. 0 means no limitation", "", 0, 256, 0, 0, 0, "", "", "buffers_signal_config", "", "", ""],
452 "name_crop_suffix" => ["name_crop_suffix", "string", "contains an optional char(s) that is appended when buffer name is shortened", "", 0, 0, "+", "+", 0, "", "", "buffers_signal_config", "", "", ""],
453 "detach" => ["detach", "integer", "detach channel from buffers list after a specific period of time (in seconds) without action (weechat ≥ 0.3.8 required) (0 means \"off\")", "", 0, 31536000, 0, "number", 0, "", "", "buffers_signal_config", "", "", ""],
454 "immune_detach_buffers" => ["immune_detach_buffers", "string", "comma separated list of buffers to NOT automatically detatch. Allows \"*\" wildcard. Ex: \"BitlBee,freenode.*\"", "", 0, 0, "", "", 0, "", "", "buffers_signal_config_immune_detach_buffers", "", "", ""],
455 "detach_query" => ["detach_query", "boolean", "query buffer will be detachted", "", 0, 0, "off", "off", 0, "", "", "buffers_signal_config", "", "", ""],
456 "detach_buffer_immediately" => ["detach_buffer_immediately", "string", "comma separated list of buffers to detach immediately. A query and highlight message will attach buffer again. Allows \"*\" wildcard. Ex: \"BitlBee,freenode.*\"", "", 0, 0, "", "", 0, "", "", "buffers_signal_config_detach_buffer_immediately", "", "", ""],
457 "detach_free_content" => ["detach_free_content", "boolean", "buffers with free content will be detached (Ex: iset, chanmon)", "", 0, 0, "off", "off", 0, "", "", "buffers_signal_config", "", "", ""],
458 "detach_displayed_buffers" => ["detach_displayed_buffers", "boolean", "buffers displayed in a (split) window will be detached", "", 0, 0, "on", "on", 0, "", "", "buffers_signal_config", "", "", ""],
459 "detach_display_window_number" => ["detach_display_window_number", "boolean", "window number will be add, behind buffer name (this option takes only effect with \"detach_displayed_buffers\" option)", "", 0, 0, "off", "off", 0, "", "", "buffers_signal_config", "", "", ""],
460 "mark_inactive" => ["mark_inactive", "boolean", "if option is \"on\", inactive buffers (those you are not in) will have parentesis around them. An inactive buffer will not be detached.", "", 0, 0, "off", "off", 0, "", "", "buffers_signal_config", "", "", ""],
461 "toggle_bar" => ["toogle_bar", "boolean", "if option is \"on\", buffers bar will hide/show when script is (un)loaded.", "", 0, 0, "on", "on", 0, "", "", "buffers_signal_config", "", "", ""],
462 "mouse_move_buffer" => ["mouse_move_buffer", "boolean", "if option is \"on\", mouse gestures (drag & drop) can move buffers in list.", "", 0, 0, "on", "on", 0, "", "", "buffers_signal_config", "", "", ""],
465 my $section_color = weechat
::config_new_section
($buffers_config_file,"color", 0, 0, "", "", "", "", "", "", "", "", "", "");
466 if ($section_color eq "")
468 weechat
::config_free
($buffers_config_file);
471 foreach my $option (keys %default_options_color)
473 $options{$option} = weechat
::config_new_option
($buffers_config_file, $section_color,
474 $default_options_color{$option}[0],$default_options_color{$option}[1],$default_options_color{$option}[2],
475 $default_options_color{$option}[3],$default_options_color{$option}[4],$default_options_color{$option}[5],
476 $default_options_color{$option}[6],$default_options_color{$option}[7],$default_options_color{$option}[8],
477 $default_options_color{$option}[9],$default_options_color{$option}[10],$default_options_color{$option}[11],
478 $default_options_color{$option}[12],$default_options_color{$option}[13],$default_options_color{$option}[14]);
482 my $section_look = weechat
::config_new_section
($buffers_config_file,"look", 0, 0, "", "", "", "", "", "", "", "", "", "");
483 if ($section_look eq "")
485 weechat
::config_free
($buffers_config_file);
488 foreach my $option (keys %default_options_look)
490 $options{$option} = weechat
::config_new_option
($buffers_config_file, $section_look,
491 $default_options_look{$option}[0],$default_options_look{$option}[1],$default_options_look{$option}[2],
492 $default_options_look{$option}[3],$default_options_look{$option}[4],$default_options_look{$option}[5],
493 $default_options_look{$option}[6],$default_options_look{$option}[7],$default_options_look{$option}[8],
494 $default_options_look{$option}[9],$default_options_look{$option}[10],$default_options_look{$option}[11],
495 $default_options_look{$option}[12],$default_options_look{$option}[13],$default_options_look{$option}[14],
496 $default_options_look{$option}[15]);
504 # get bar position (left/right/top/bottom)
505 my $position = "left";
506 my $option_position = weechat
::config_get
("weechat.bar.buffers.position");
507 if ($option_position ne "")
509 $position = weechat
::config_string
($option_position);
514 my $infolist = weechat
::infolist_get
("hotlist", "", "");
515 while (weechat
::infolist_next
($infolist))
517 $hotlist{weechat
::infolist_pointer
($infolist, "buffer_pointer")} =
518 weechat
::infolist_integer
($infolist, "priority");
519 if ( weechat
::config_boolean
( $options{"hotlist_counter"} ) eq 1 and $weechat_version >= 0x00030500)
521 $hotlist{weechat
::infolist_pointer
($infolist, "buffer_pointer")."_count_00"} =
522 weechat
::infolist_integer
($infolist, "count_00"); # low message
523 $hotlist{weechat
::infolist_pointer
($infolist, "buffer_pointer")."_count_01"} =
524 weechat
::infolist_integer
($infolist, "count_01"); # channel message
525 $hotlist{weechat
::infolist_pointer
($infolist, "buffer_pointer")."_count_02"} =
526 weechat
::infolist_integer
($infolist, "count_02"); # private message
527 $hotlist{weechat
::infolist_pointer
($infolist, "buffer_pointer")."_count_03"} =
528 weechat
::infolist_integer
($infolist, "count_03"); # highlight message
531 weechat
::infolist_free
($infolist);
540 my $max_number_digits = 0;
542 $infolist = weechat
::infolist_get
("buffer", "", "");
543 while (weechat
::infolist_next
($infolist))
546 my $number = weechat
::infolist_integer
($infolist, "number");
547 if ($number ne $old_number)
549 @buffers = (@buffers, @current2, @current1);
554 if ($number > $max_number)
556 $max_number = $number;
558 $old_number = $number;
559 my $active = weechat
::infolist_integer
($infolist, "active");
564 $buffer->{"pointer"} = weechat
::infolist_pointer
($infolist, "pointer");
565 $buffer->{"number"} = $number;
566 $buffer->{"active"} = $active;
567 $buffer->{"current_buffer"} = weechat
::infolist_integer
($infolist, "current_buffer");
568 $buffer->{"num_displayed"} = weechat
::infolist_integer
($infolist, "num_displayed");
569 $buffer->{"plugin_name"} = weechat
::infolist_string
($infolist, "plugin_name");
570 $buffer->{"name"} = weechat
::infolist_string
($infolist, "name");
571 $buffer->{"short_name"} = weechat
::infolist_string
($infolist, "short_name");
572 $buffer->{"full_name"} = $buffer->{"plugin_name"}.".".$buffer->{"name"};
573 $buffer->{"type"} = weechat
::buffer_get_string
($buffer->{"pointer"},"localvar_type");
574 # weechat::print("",$buffer->{"type"});
576 # check if buffer is active (or maybe a /part, /kick channel)
577 if ($buffer->{"type"} eq "channel" and weechat
::config_boolean
( $options{"mark_inactive"} ) eq 1)
579 my $server = weechat
::buffer_get_string
($buffer->{"pointer"},"localvar_server");
580 my $channel = weechat
::buffer_get_string
($buffer->{"pointer"},"localvar_channel");
581 my $infolist_channel = weechat
::infolist_get
("irc_channel","",$server.",".$channel);
582 if ($infolist_channel)
584 weechat
::infolist_next
($infolist_channel);
585 $buffer->{"nicks_count"} = weechat
::infolist_integer
($infolist_channel,"nicks_count");
588 $buffer->{"nicks_count"} = 0;
590 weechat
::infolist_free
($infolist_channel);
593 my $result = check_immune_detached_buffers
($buffer->{"name"}); # checking for wildcard
595 next if ( check_detach_buffer_immediately
($buffer->{"name"}) eq 1
596 and $buffer->{"current_buffer"} eq 0
597 and ( not exists $hotlist{$buffer->{"pointer"}} or $hotlist{$buffer->{"pointer"}} < 2) ); # checking for buffer to immediately detach
601 my $detach_time = weechat
::config_integer
( $options{"detach"});
602 my $current_time = time();
603 # set timer for buffers with no hotlist action
604 $buffers_timer{$buffer->{"pointer"}} = $current_time
605 if ( not exists $hotlist{$buffer->{"pointer"}}
606 and $buffer->{"type"} eq "channel"
607 and not exists $buffers_timer{$buffer->{"pointer"}}
608 and $detach_time > 0);
610 $buffers_timer{$buffer->{"pointer"}} = $current_time
611 if (weechat
::config_boolean
($options{"detach_query"}) eq 1
612 and not exists $hotlist{$buffer->{"pointer"}}
613 and $buffer->{"type"} eq "private"
614 and not exists $buffers_timer{$buffer->{"pointer"}}
615 and $detach_time > 0);
618 if (weechat
::config_boolean
($options{"detach_query"}) eq 0
619 and $buffer->{"type"} eq "private");
621 # free content buffer
622 $buffers_timer{$buffer->{"pointer"}} = $current_time
623 if (weechat
::config_boolean
($options{"detach_free_content"}) eq 1
624 and not exists $hotlist{$buffer->{"pointer"}}
625 and $buffer->{"type"} eq ""
626 and not exists $buffers_timer{$buffer->{"pointer"}}
627 and $detach_time > 0);
629 if (weechat
::config_boolean
($options{"detach_free_content"}) eq 0
630 and $buffer->{"type"} eq "");
632 $detach_time = 0 if (weechat
::config_boolean
($options{"mark_inactive"}) eq 1 and defined $buffer->{"nicks_count"} and $buffer->{"nicks_count"} == 0);
635 unless ( $buffer->{"current_buffer"} eq 0
636 and not exists $hotlist{$buffer->{"pointer"}}
637 # and $buffer->{"type"} eq "channel"
638 and exists $buffers_timer{$buffer->{"pointer"}}
640 and $weechat_version >= 0x00030800
641 and $current_time - $buffers_timer{$buffer->{"pointer"}} >= $detach_time)
645 push(@current2, $buffer);
649 push(@current1, $buffer);
652 elsif ( $buffer->{"current_buffer"} eq 0
653 and not exists $hotlist{$buffer->{"pointer"}}
654 # and $buffer->{"type"} eq "channel"
655 and exists $buffers_timer{$buffer->{"pointer"}}
657 and $weechat_version >= 0x00030800
658 and $current_time - $buffers_timer{$buffer->{"pointer"}} >= $detach_time)
659 { # check for option detach_displayed_buffers and if buffer is displayed in a split window
660 if ( $buffer->{"num_displayed"} eq 1
661 and weechat
::config_boolean
($options{"detach_displayed_buffers"}) eq 0 )
663 my $infolist_window = weechat
::infolist_get
("window","","");
664 while (weechat
::infolist_next
($infolist_window))
666 my $buffer_ptr = weechat
::infolist_pointer
($infolist_window, "buffer");
667 if ($buffer_ptr eq $buffer->{"pointer"})
669 $buffer->{"window"} = weechat
::infolist_integer
($infolist_window, "number");
672 weechat
::infolist_free
($infolist_window);
674 push(@current2, $buffer);
678 else # buffer in "immune_detach_buffers"
682 push(@current2, $buffer);
686 push(@current1, $buffer);
692 if ($max_number >= 1)
694 $max_number_digits = length(int($max_number));
696 @buffers = (@buffers, @current2, @current1);
697 weechat
::infolist_free
($infolist);
699 # sort buffers by number, name or shortname
704 for my $buffer (@buffers)
707 if (weechat
::config_integer
( $options{"sort"} ) eq 1) # number = 0; name = 1
709 my $name = $buffer->{"name"};
710 $name = $buffer->{"short_name"} if (weechat
::config_boolean
( $options{"short_names"} ) eq 1);
711 if (weechat
::config_integer
($options{"name_size_max"}) >= 1){
712 $name = encode
("UTF-8", substr(decode
("UTF-8", $name), 0, weechat
::config_integer
($options{"name_size_max"})));
714 if ( weechat
::config_boolean
($options{"core_to_front"}) eq 1)
716 if ( (weechat
::buffer_get_string
($buffer->{"pointer"}, "localvar_type") ne "channel" ) and ( weechat
::buffer_get_string
($buffer->{"pointer"}, "localvar_type") ne "private") )
718 my $type = weechat
::buffer_get_string
($buffer->{"pointer"}, "localvar_type");
719 if ( $type eq "" and $name ne "weechat")
728 $key = sprintf("%s%08d", lc($name), $buffer->{"number"});
732 $key = sprintf("%08d", $number);
734 $sorted_buffers{$key} = $buffer;
739 # build string with buffers
741 foreach my $key (sort keys %sorted_buffers)
743 my $buffer = $sorted_buffers{$key};
745 if ( weechat
::config_string
($options{"hide_merged_buffers"}) eq "server" )
747 # buffer type "server" or merged with core?
748 if ( ($buffer->{"type"} eq "server" or $buffer->{"plugin_name"} eq "core") && (! $buffer->{"active"}) )
753 if ( weechat
::config_string
($options{"hide_merged_buffers"}) eq "channel" )
755 # buffer type "channel" or merged with core?
756 if ( ($buffer->{"type"} eq "channel" or $buffer->{"plugin_name"} eq "core") && (! $buffer->{"active"}) )
761 if ( weechat
::config_string
($options{"hide_merged_buffers"}) eq "private" )
763 # buffer type "private" or merged with core?
764 if ( ($buffer->{"type"} eq "private" or $buffer->{"plugin_name"} eq "core") && (! $buffer->{"active"}) )
769 if ( weechat
::config_string
($options{"hide_merged_buffers"}) eq "keepserver" )
771 if ( ($buffer->{"type"} ne "server" or $buffer->{"plugin_name"} eq "core") && (! $buffer->{"active"}) )
776 if ( weechat
::config_string
($options{"hide_merged_buffers"}) eq "all" )
778 if ( ! $buffer->{"active"} )
784 push(@buffers_focus, $buffer); # buffer > buffers_focus, for mouse support
788 $color = weechat
::config_color
( $options{"color_default_fg"} );
789 $bg = weechat
::config_color
( $options{"color_default_bg"} );
791 if ( weechat
::buffer_get_string
($buffer->{"pointer"}, "localvar_type") eq "private" )
793 if ( (weechat
::config_color
($options{"queries_default_bg"})) ne "default" || (weechat
::config_color
($options{"queries_default_fg"})) ne "default" )
795 $bg = weechat
::config_color
( $options{"queries_default_bg"} );
796 $color = weechat
::config_color
( $options{"queries_default_fg"} );
799 # check for core and buffer with free content
800 if ( (weechat
::buffer_get_string
($buffer->{"pointer"}, "localvar_type") ne "channel" ) and ( weechat
::buffer_get_string
($buffer->{"pointer"}, "localvar_type") ne "private") )
802 $color = weechat
::config_color
( $options{"color_none_channel_fg"} );
803 $bg = weechat
::config_color
( $options{"color_none_channel_bg"} );
805 # default whitelist buffer?
806 if (grep {$_ eq $buffer->{"name"}} @whitelist_buffers)
808 $color = weechat
::config_color
( $options{"color_whitelist_default_fg"} );
809 $bg = weechat
::config_color
( $options{"color_whitelist_default_bg"} );
812 $color = "default" if ($color eq "");
814 # color for channel and query buffer
815 if (exists $hotlist{$buffer->{"pointer"}})
817 delete $buffers_timer{$buffer->{"pointer"}};
818 # check if buffer is in whitelist buffer
819 if (grep {$_ eq $buffer->{"name"}} @whitelist_buffers)
821 $bg = weechat
::config_color
( $options{"color_whitelist_".$hotlist_level{$hotlist{$buffer->{"pointer"}}}."_bg"} );
822 $color = weechat
::config_color
( $options{"color_whitelist_".$hotlist_level{$hotlist{$buffer->{"pointer"}}}."_fg"} );
824 elsif ( weechat
::buffer_get_string
($buffer->{"pointer"}, "localvar_type") eq "private" )
826 # queries_default_fg/bg and buffers.color.queries_message_fg/bg
827 if ( (weechat
::config_color
($options{"queries_highlight_fg"})) ne "default" ||
828 (weechat
::config_color
($options{"queries_highlight_bg"})) ne "default" ||
829 (weechat
::config_color
($options{"queries_message_fg"})) ne "default" ||
830 (weechat
::config_color
($options{"queries_message_bg"})) ne "default" )
832 if ( ($hotlist{$buffer->{"pointer"}}) == 2 )
834 $bg = weechat
::config_color
( $options{"queries_message_bg"} );
835 $color = weechat
::config_color
( $options{"queries_message_fg"} );
838 elsif ( ($hotlist{$buffer->{"pointer"}}) == 3 )
840 $bg = weechat
::config_color
( $options{"queries_highlight_bg"} );
841 $color = weechat
::config_color
( $options{"queries_highlight_fg"} );
845 $bg = weechat
::config_color
( $options{"color_hotlist_".$hotlist_level{$hotlist{$buffer->{"pointer"}}}."_bg"} );
846 $color = weechat
::config_color
( $options{"color_hotlist_".$hotlist_level{$hotlist{$buffer->{"pointer"}}}."_fg"} );
850 $bg = weechat
::config_color
( $options{"color_hotlist_".$hotlist_level{$hotlist{$buffer->{"pointer"}}}."_bg"} );
851 $color = weechat
::config_color
( $options{"color_hotlist_".$hotlist_level{$hotlist{$buffer->{"pointer"}}}."_fg"} );
855 if ($buffer->{"current_buffer"})
857 $color = weechat
::config_color
( $options{"color_current_fg"} );
858 $bg = weechat
::config_color
( $options{"color_current_bg"} );
861 $color_bg = weechat
::color
(",".$bg) if ($bg ne "");
863 # create channel number for output
864 if ( weechat
::config_string
( $options{"show_prefix_bufname"} ) ne "" )
867 weechat
::color
( weechat
::config_color
( $options{"color_prefix_bufname"} ) ).
868 weechat
::config_string
( $options{"show_prefix_bufname"} ).
869 weechat
::color
("default");
872 if ( weechat
::config_boolean
( $options{"show_number"} ) eq 1 ) # on
874 if (( weechat
::config_boolean
( $options{"indenting_number"} ) eq 1)
875 && (($position eq "left") || ($position eq "right")))
877 $str .= weechat
::color
("default").$color_bg
878 .(" " x
($max_number_digits - length(int($buffer->{"number"}))));
880 if ($old_number ne $buffer->{"number"})
882 $str .= weechat
::color
( weechat
::config_color
( $options{"color_number"} ) )
885 .weechat
::color
("default")
887 .weechat
::color
( weechat
::config_color
( $options{"color_number_char"} ) )
888 .weechat
::config_string
( $options{"show_number_char"} )
894 $indent = ((" " x
length($buffer->{"number"}))." ") if (($position eq "left") || ($position eq "right"));
895 $str .= weechat
::color
("default")
901 if (( weechat
::config_integer
( $options{"indenting"} ) ne 0 ) # indenting NOT off
902 && (($position eq "left") || ($position eq "right")))
904 my $type = weechat
::buffer_get_string
($buffer->{"pointer"}, "localvar_type");
905 if (($type eq "channel") || ($type eq "private"))
907 if ( weechat
::config_integer
( $options{"indenting"} ) eq 1 )
911 elsif ( (weechat
::config_integer
($options{"indenting"}) eq 2) and (weechat
::config_integer
($options{"indenting_number"}) eq 0) ) #under_name
913 if ( weechat
::config_boolean
( $options{"show_number"} ) eq 0 )
918 $str .= ( (" " x
( $max_number_digits - length($buffer->{"number"}) ))." " );
924 $str .= weechat
::config_string
( $options{"show_prefix_query"}) if (weechat
::config_string
( $options{"show_prefix_query"} ) ne "" and $buffer->{"type"} eq "private");
926 if (weechat
::config_boolean
( $options{"show_prefix"} ) eq 1)
928 my $nickname = weechat
::buffer_get_string
($buffer->{"pointer"}, "localvar_nick");
931 # with version >= 0.3.2, this infolist will return only nick
932 # with older versions, whole nicklist is returned for buffer, and this can be very slow
933 my $infolist_nick = weechat
::infolist_get
("nicklist", $buffer->{"pointer"}, "nick_".$nickname);
934 if ($infolist_nick ne "")
936 while (weechat
::infolist_next
($infolist_nick))
938 if ((weechat
::infolist_string
($infolist_nick, "type") eq "nick")
939 && (weechat
::infolist_string
($infolist_nick, "name") eq $nickname))
941 my $prefix = weechat
::infolist_string
($infolist_nick, "prefix");
942 if (($prefix ne " ") or (weechat
::config_boolean
( $options{"show_prefix_empty"} ) eq 1))
944 # with version >= 0.3.5, it is now a color name (for older versions: option name with color)
945 if (int($weechat_version) >= 0x00030500)
947 $str .= weechat
::color
(weechat
::infolist_string
($infolist_nick, "prefix_color"));
951 $str .= weechat
::color
(weechat
::config_color
(
953 weechat
::infolist_string
($infolist_nick, "prefix_color"))));
960 weechat
::infolist_free
($infolist_nick);
964 if ($buffer->{"type"} eq "channel" and weechat
::config_boolean
( $options{"mark_inactive"} ) eq 1 and $buffer->{"nicks_count"} == 0)
969 $str .= weechat
::color
($color) . weechat
::color
(",".$bg);
971 if (weechat
::config_boolean
( $options{"short_names"} ) eq 1)
973 if (weechat
::config_integer
($options{"name_size_max"}) >= 1) # check max_size of buffer name
975 $str .= encode
("UTF-8", substr(decode
("UTF-8", $buffer->{"short_name"}), 0, weechat
::config_integer
($options{"name_size_max"})));
976 $str .= weechat
::color
(weechat
::config_color
( $options{"color_number_char"})).weechat
::config_string
($options{"name_crop_suffix"}) if (length($buffer->{"short_name"}) > weechat
::config_integer
($options{"name_size_max"}));
977 $str .= add_inactive_parentless
($buffer->{"type"},$buffer->{"nicks_count"});
978 $str .= add_hotlist_count
($buffer->{"pointer"},%hotlist);
982 $str .= $buffer->{"short_name"};
983 $str .= add_inactive_parentless
($buffer->{"type"},$buffer->{"nicks_count"});
984 $str .= add_hotlist_count
($buffer->{"pointer"},%hotlist);
989 if (weechat
::config_integer
($options{"name_size_max"}) >= 1) # check max_size of buffer name
991 $str .= encode
("UTF-8", substr(decode
("UTF-8", $buffer->{"name"},), 0, weechat
::config_integer
($options{"name_size_max"})));
992 $str .= weechat
::color
(weechat
::config_color
( $options{"color_number_char"})).weechat
::config_string
($options{"name_crop_suffix"}) if (length($buffer->{"name"}) > weechat
::config_integer
($options{"name_size_max"}));
993 $str .= add_inactive_parentless
($buffer->{"type"},$buffer->{"nicks_count"});
994 $str .= add_hotlist_count
($buffer->{"pointer"},%hotlist);
998 $str .= $buffer->{"name"};
999 $str .= add_inactive_parentless
($buffer->{"type"},$buffer->{"nicks_count"});
1000 $str .= add_hotlist_count
($buffer->{"pointer"},%hotlist);
1003 if ( weechat
::buffer_get_string
($buffer->{"pointer"}, "localvar_type") eq "server" and weechat
::config_boolean
($options{"show_lag"}) eq 1)
1005 my $color_lag = weechat
::config_color
(weechat
::config_get
("irc.color.item_lag_finished"));
1006 my $min_lag = weechat
::config_integer
(weechat
::config_get
("irc.network.lag_min_show"));
1007 my $infolist_server = weechat
::infolist_get
("irc_server","",$buffer->{"short_name"});
1008 weechat
::infolist_next
($infolist_server);
1009 my $lag = (weechat
::infolist_integer
($infolist_server, "lag"));
1010 weechat
::infolist_free
($infolist_server);
1011 if ( int($lag) > int($min_lag) )
1014 $str .= weechat
::color
("default") . " (" . weechat
::color
($color_lag) . $lag . weechat
::color
("default") . ")";
1017 if (weechat
::config_boolean
($options{"detach_displayed_buffers"}) eq 0
1018 and weechat
::config_boolean
($options{"detach_display_window_number"}) eq 1)
1020 if ($buffer->{"window"})
1022 $str .= weechat
::color
("default") . " (" . weechat
::color
(weechat
::config_color
( $options{"color_number"})) . $buffer->{"window"} . weechat
::color
("default") . ")";
1025 $str .= weechat
::color
("default");
1027 if ( weechat
::config_string
( $options{"show_suffix_bufname"} ) ne "" )
1029 $str .= weechat
::color
( weechat
::config_color
( $options{"color_suffix_bufname"} ) ).
1030 weechat
::config_string
( $options{"show_suffix_bufname"} ).
1031 weechat
::color
("default");
1035 $old_number = $buffer->{"number"};
1038 # remove spaces and/or linefeed at the end
1044 sub add_inactive_parentless
1046 my ($buf_type, $buf_nicks_count) = @_;
1048 if ($buf_type eq "channel" and weechat
::config_boolean
( $options{"mark_inactive"} ) eq 1 and $buf_nicks_count == 0)
1050 $str .= weechat
::color
(weechat
::config_color
( $options{"color_number_char"}));
1056 sub add_hotlist_count
1058 my ($bufpointer,%hotlist) = @_;
1060 return "" if ( weechat
::config_boolean
( $options{"hotlist_counter"} ) eq 0 or ($weechat_version < 0x00030500)); # off
1061 my $col_number_char = weechat
::color
(weechat
::config_color
( $options{"color_number_char"}) );
1062 my $str = " ".$col_number_char."(";
1065 if (defined $hotlist{$bufpointer."_count_00"})
1067 my $bg = weechat
::config_color
( $options{"color_hotlist_low_bg"} );
1068 my $color = weechat
::config_color
( $options{"color_hotlist_low_fg"} );
1069 $str .= weechat
::color
($bg).
1070 weechat
::color
($color).
1071 $hotlist{$bufpointer."_count_00"} if ($hotlist{$bufpointer."_count_00"} ne "0");
1075 if (defined $hotlist{$bufpointer."_count_01"})
1077 my $bg = weechat
::config_color
( $options{"color_hotlist_message_bg"} );
1078 my $color = weechat
::config_color
( $options{"color_hotlist_message_fg"} );
1079 if ($str =~ /[0-9]$/)
1082 weechat
::color
($bg).
1083 weechat
::color
($color).
1084 $hotlist{$bufpointer."_count_01"} if ($hotlist{$bufpointer."_count_01"} ne "0");
1087 $str .= weechat
::color
($bg).
1088 weechat
::color
($color).
1089 $hotlist{$bufpointer."_count_01"} if ($hotlist{$bufpointer."_count_01"} ne "0");
1093 if (defined $hotlist{$bufpointer."_count_02"})
1095 my $bg = weechat
::config_color
( $options{"color_hotlist_private_bg"} );
1096 my $color = weechat
::config_color
( $options{"color_hotlist_private_fg"} );
1097 if ($str =~ /[0-9]$/)
1100 weechat
::color
($bg).
1101 weechat
::color
($color).
1102 $hotlist{$bufpointer."_count_02"} if ($hotlist{$bufpointer."_count_02"} ne "0");
1105 $str .= weechat
::color
($bg).
1106 weechat
::color
($color).
1107 $hotlist{$bufpointer."_count_02"} if ($hotlist{$bufpointer."_count_02"} ne "0");
1111 if (defined $hotlist{$bufpointer."_count_03"})
1113 my $bg = weechat
::config_color
( $options{"color_hotlist_highlight_bg"} );
1114 my $color = weechat
::config_color
( $options{"color_hotlist_highlight_fg"} );
1115 if ($str =~ /[0-9]$/)
1118 weechat
::color
($bg).
1119 weechat
::color
($color).
1120 $hotlist{$bufpointer."_count_03"} if ($hotlist{$bufpointer."_count_03"} ne "0");
1123 $str .= weechat
::color
($bg).
1124 weechat
::color
($color).
1125 $hotlist{$bufpointer."_count_03"} if ($hotlist{$bufpointer."_count_03"} ne "0");
1128 $str .= $col_number_char. ")";
1130 $str = "" if (weechat
::string_remove_color
($str, "") eq " ()"); # remove color and check for buffer with no messages
1134 sub buffers_signal_buffer
1136 my ($data, $signal, $signal_data) = @_;
1138 # check for buffer_switch and set or remove detach time
1139 if ($weechat_version >= 0x00030800)
1141 if ($signal eq "buffer_switch")
1143 my $pointer = weechat
::hdata_get_list
(weechat
::hdata_get
("buffer"), "gui_buffer_last_displayed"); # get switched buffer
1144 my $current_time = time();
1145 if ( weechat
::buffer_get_string
($pointer, "localvar_type") eq "channel")
1147 $buffers_timer{$pointer} = $current_time;
1151 delete $buffers_timer{$pointer};
1154 if ($signal eq "buffer_opened")
1156 my $current_time = time();
1157 $buffers_timer{$signal_data} = $current_time;
1159 if ($signal eq "buffer_closing")
1161 delete $buffers_timer{$signal_data};
1164 weechat
::bar_item_update
($SCRIPT_NAME);
1165 return weechat
::WEECHAT_RC_OK
;
1168 sub buffers_signal_hotlist
1170 weechat
::bar_item_update
($SCRIPT_NAME);
1171 return weechat
::WEECHAT_RC_OK
;
1175 sub buffers_signal_config_whitelist
1177 @whitelist_buffers = ();
1178 @whitelist_buffers = split( /,/, weechat
::config_string
( $options{"look_whitelist_buffers"} ) );
1179 weechat
::bar_item_update
($SCRIPT_NAME);
1180 return weechat
::WEECHAT_RC_OK
;
1183 sub buffers_signal_config_immune_detach_buffers
1185 @immune_detach_buffers = ();
1186 @immune_detach_buffers = split( /,/, weechat
::config_string
( $options{"immune_detach_buffers"} ) );
1187 weechat
::bar_item_update
($SCRIPT_NAME);
1188 return weechat
::WEECHAT_RC_OK
;
1191 sub buffers_signal_config_detach_buffer_immediately
1193 @detach_buffer_immediately = ();
1194 @detach_buffer_immediately = split( /,/, weechat
::config_string
( $options{"detach_buffer_immediately"} ) );
1195 weechat
::bar_item_update
($SCRIPT_NAME);
1196 return weechat
::WEECHAT_RC_OK
;
1199 sub buffers_signal_config
1201 weechat
::bar_item_update
($SCRIPT_NAME);
1202 return weechat
::WEECHAT_RC_OK
;
1205 # called when mouse click occured in buffers item: this callback returns buffer
1206 # hash according to line of item where click occured
1207 sub buffers_focus_buffers
1209 my %info = %{$_[1]};
1210 my $item_line = int($info{"_bar_item_line"});
1212 if (($info{"_bar_item_name"} eq $SCRIPT_NAME) && ($item_line >= 0) && ($item_line <= $#buffers_focus))
1214 $hash = $buffers_focus[$item_line];
1219 my $hash_focus = $buffers_focus[0];
1220 foreach my $key (keys %$hash_focus)
1222 $hash->{$key} = "?";
1228 # called when a mouse action is done on buffers item, to execute action
1229 # possible actions: jump to a buffer or move buffer in list (drag & drop of buffer)
1230 sub buffers_hsignal_mouse
1232 my ($data, $signal, %hash) = ($_[0], $_[1], %{$_[2]});
1233 my $current_buffer = weechat
::buffer_get_integer
(weechat
::current_buffer
(), "number"); # get current buffer number
1235 if ( $hash{"_key"} eq "button1" ) # left mouse button
1237 if ($hash{"number"} eq $hash{"number2"})
1239 if ( weechat
::config_integer
($options{"jump_prev_next_visited_buffer"}) eq 1 )
1241 if ( $current_buffer eq $hash{"number"} )
1243 weechat
::command
("","/input jump_previously_visited_buffer");
1247 weechat
::command
("", "/buffer ".$hash{"full_name"});
1252 weechat
::command
("", "/buffer ".$hash{"full_name"});
1257 move_buffer
(%hash) if (weechat
::config_boolean
($options{"mouse_move_buffer"}));
1260 elsif ( ($hash{"_key"} eq "button2") && (weechat
::config_integer
($options{"jump_prev_next_visited_buffer"}) eq 1) )# right mouse button
1262 if ( $current_buffer eq $hash{"number2"} )
1264 weechat
::command
("","/input jump_next_visited_buffer");
1269 my $infolist = weechat
::infolist_get
("hook", "", "command,menu");
1270 my $has_menu_command = weechat
::infolist_next
($infolist);
1271 weechat
::infolist_free
($infolist);
1273 if ( $has_menu_command && $hash{"_key"} =~ /button2/ )
1275 if ($hash{"number"} eq $hash{"number2"})
1277 weechat
::command
($hash{"pointer"}, "/menu buffer1 $hash{short_name} $hash{number}");
1281 weechat
::command
($hash{"pointer"}, "/menu buffer2 $hash{short_name}/$hash{short_name2} $hash{number} $hash{number2}")
1286 move_buffer
(%hash) if (weechat
::config_boolean
($options{"mouse_move_buffer"}));
1294 my $number2 = $hash{"number2"};
1295 if ($number2 eq "?")
1297 # if number 2 is not known (end of gesture outside buffers list), then set it
1298 # according to mouse gesture
1300 if (($hash{"_key"} =~ /gesture-right/) || ($hash{"_key"} =~ /gesture-down/))
1302 $number2 = "999999";
1303 if ($weechat_version >= 0x00030600)
1305 my $hdata_buffer = weechat
::hdata_get
("buffer");
1306 my $last_gui_buffer = weechat
::hdata_get_list
($hdata_buffer, "last_gui_buffer");
1307 if ($last_gui_buffer)
1309 $number2 = weechat
::hdata_integer
($hdata_buffer, $last_gui_buffer, "number") + 1;
1314 my $ptrbuf = weechat
::current_buffer
();
1315 weechat
::command
($hash{"pointer"}, "/buffer move ".$number2);
1318 sub check_immune_detached_buffers
1320 my ($buffername) = @_;
1321 foreach ( @immune_detach_buffers ){
1322 my $immune_buffer = weechat
::string_mask_to_regex
($_);
1323 if ($buffername =~ /^$immune_buffer$/i)
1331 sub check_detach_buffer_immediately
1333 my ($buffername) = @_;
1334 foreach ( @detach_buffer_immediately ){
1335 my $detach_buffer = weechat
::string_mask_to_regex
($_);
1336 if ($buffername =~ /^$detach_buffer$/i)
1346 weechat
::command
("","/bar hide " . $SCRIPT_NAME) if ( weechat
::config_boolean
($options{"toggle_bar"}) eq 1 );
1347 return weechat
::WEECHAT_RC_OK
1353 my $infolist = weechat
::infolist_get
("bar", "", "");
1354 while (weechat
::infolist_next
($infolist))
1356 my $bar_items = weechat
::infolist_string
($infolist, "items");
1357 if (index($bar_items,$SCRIPT_NAME) != -1)
1359 my $name = weechat
::infolist_string
($infolist, "name");
1360 if ($name ne $SCRIPT_NAME)
1367 weechat
::infolist_free
($infolist);