mirror of
https://github.com/weechat/weechat.git
synced 2026-07-07 02:03:13 +02:00
5c8a23e08a
Add buflist-theme.{c,h} with the buflist plugin contribution to the
built-in "light" theme: 5 overrides on buflist.format.* options
(buffer_current, hotlist_low, hotlist_message, lag, number) tuned for
a light-background terminal. Each target is a "string|themable" option
holding an evaluated format expression with embedded ${color:...}
references.
Follows the same pattern as the irc and fset contributions: a
NULL-terminated 2D string table consumed by a tiny local register
helper that builds a hashtable and calls weechat_theme_register;
buflist_theme_init() is called once from weechat_plugin_init after
buflist_config_init / buflist_config_read.
Default option values are NOT changed.
94 lines
2.5 KiB
C
94 lines
2.5 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2026 Sébastien Helleu <flashcode@flashtux.org>
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* This file is part of WeeChat, the extensible chat client.
|
|
*
|
|
* WeeChat is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* WeeChat is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with WeeChat. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/* buflist contribution to built-in themes. */
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <stddef.h>
|
|
|
|
#include "../weechat-plugin.h"
|
|
#include "buflist.h"
|
|
#include "buflist-theme.h"
|
|
|
|
|
|
/*
|
|
* buflist contribution to the "light" theme: format strings tuned for
|
|
* a light-background terminal. Each row is { option_full_name, value };
|
|
* the table is NULL-terminated.
|
|
*/
|
|
|
|
const char *buflist_theme_light[][2] =
|
|
{
|
|
{ "buflist.format.buffer_current",
|
|
"${color:,117}${format_buffer}" },
|
|
{ "buflist.format.hotlist_low",
|
|
"${color:default}" },
|
|
{ "buflist.format.hotlist_message",
|
|
"${color:94}" },
|
|
{ "buflist.format.lag",
|
|
" ${color:green}[${color:94}${lag}${color:green}]" },
|
|
{ "buflist.format.number",
|
|
"${color:28}${number}${if:${number_displayed}?.: }" },
|
|
{ NULL, NULL },
|
|
};
|
|
|
|
/*
|
|
* Registers buflist's contribution to one theme from a NULL-terminated
|
|
* table of {option, value} rows.
|
|
*/
|
|
|
|
void
|
|
buflist_theme_register (const char *name, const char *entries[][2])
|
|
{
|
|
struct t_hashtable *overrides;
|
|
int i;
|
|
|
|
if (!name || !entries)
|
|
return;
|
|
|
|
overrides = weechat_hashtable_new (32,
|
|
WEECHAT_HASHTABLE_STRING,
|
|
WEECHAT_HASHTABLE_STRING,
|
|
NULL, NULL);
|
|
if (!overrides)
|
|
return;
|
|
|
|
for (i = 0; entries[i][0]; i++)
|
|
weechat_hashtable_set (overrides, entries[i][0], entries[i][1]);
|
|
|
|
weechat_theme_register (name, overrides);
|
|
|
|
weechat_hashtable_free (overrides);
|
|
}
|
|
|
|
/*
|
|
* Registers all built-in theme contributions from buflist.
|
|
*/
|
|
|
|
void
|
|
buflist_theme_init (void)
|
|
{
|
|
buflist_theme_register ("light", buflist_theme_light);
|
|
}
|