1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-26 21:06:38 +02:00
Files
weechat/src/plugins/fset/fset.c
T
2017-06-25 16:35:28 +02:00

152 lines
3.6 KiB
C

/*
* fset.c - Fast set of WeeChat and plugins options
*
* Copyright (C) 2003-2017 Sébastien Helleu <flashcode@flashtux.org>
*
* 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 <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include "../weechat-plugin.h"
#include "fset.h"
#include "fset-bar-item.h"
#include "fset-buffer.h"
#include "fset-command.h"
#include "fset-completion.h"
#include "fset-config.h"
#include "fset-info.h"
#include "fset-mouse.h"
#include "fset-option.h"
WEECHAT_PLUGIN_NAME(FSET_PLUGIN_NAME);
WEECHAT_PLUGIN_DESCRIPTION(N_("Fast set of WeeChat and plugins options"));
WEECHAT_PLUGIN_AUTHOR("Sébastien Helleu <flashcode@flashtux.org>");
WEECHAT_PLUGIN_VERSION(WEECHAT_VERSION);
WEECHAT_PLUGIN_LICENSE(WEECHAT_LICENSE);
WEECHAT_PLUGIN_PRIORITY(7500);
struct t_weechat_plugin *weechat_fset_plugin = NULL;
struct t_hdata *fset_hdata_config_file = NULL;
struct t_hdata *fset_hdata_config_section = NULL;
struct t_hdata *fset_hdata_config_option = NULL;
struct t_hdata *fset_hdata_fset_option = NULL;
/*
* Adds the fset bar.
*/
void
fset_add_bar ()
{
weechat_bar_new (
FSET_BAR_NAME, "off", "0", "window",
"${fset.look.show_help_bar} "
"&& ${buffer.full_name} == " FSET_PLUGIN_NAME "." FSET_BAR_NAME,
"top", "horizontal", "vertical", "3", "3",
"default", "cyan", "default", "on",
FSET_BAR_ITEM_NAME);
}
/*
* Initializes fset plugin.
*/
int
weechat_plugin_init (struct t_weechat_plugin *plugin, int argc, char *argv[])
{
const char *ptr_filter;
/* make C compiler happy */
(void) argc;
(void) argv;
weechat_plugin = plugin;
fset_hdata_config_file = weechat_hdata_get ("config_file");
fset_hdata_config_section = weechat_hdata_get ("config_section");
fset_hdata_config_option = weechat_hdata_get ("config_option");
fset_buffer_init ();
if (!fset_config_init ())
return WEECHAT_RC_ERROR;
fset_config_read ();
if (!fset_bar_item_init ())
return WEECHAT_RC_ERROR;
fset_option_init ();
fset_command_init ();
fset_completion_init ();
if (weechat_config_boolean (fset_config_look_show_help_bar))
fset_add_bar ();
fset_bar_item_update ();
fset_info_init ();
fset_hdata_fset_option = weechat_hdata_get ("fset_option");
weechat_hook_signal ("window_scrolled",
&fset_buffer_window_scrolled_cb, NULL, NULL);
fset_mouse_init ();
weechat_hook_config ("*", &fset_option_config_cb, NULL, NULL);
if (fset_buffer)
{
ptr_filter = weechat_buffer_get_string (fset_buffer, "localvar_filter");
fset_option_filter_options (ptr_filter);
}
return WEECHAT_RC_OK;
}
/*
* Ends fset plugin.
*/
int
weechat_plugin_end (struct t_weechat_plugin *plugin)
{
/* make C compiler happy */
(void) plugin;
fset_mouse_end ();
fset_bar_item_end ();
fset_buffer_end ();
fset_option_end ();
fset_config_write ();
fset_config_free ();
return WEECHAT_RC_OK;
}