mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
..adding new files..
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@171 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
d01b094151
commit
c95034c6de
206 changed files with 31247 additions and 0 deletions
132
src/fe-common/core/fe-common-core.c
Normal file
132
src/fe-common/core/fe-common-core.c
Normal file
|
|
@ -0,0 +1,132 @@
|
|||
/*
|
||||
fe-common-core.c : irssi
|
||||
|
||||
Copyright (C) 1999-2000 Timo Sirainen
|
||||
|
||||
This program 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 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program 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 this program; if not, write to the Free Software
|
||||
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
#include "module.h"
|
||||
#include "levels.h"
|
||||
#include "settings.h"
|
||||
|
||||
#include "hilight-text.h"
|
||||
#include "command-history.h"
|
||||
#include "keyboard.h"
|
||||
#include "printtext.h"
|
||||
#include "themes.h"
|
||||
#include "translation.h"
|
||||
#include "windows.h"
|
||||
#include "window-items.h"
|
||||
|
||||
#include <sys/signal.h>
|
||||
|
||||
void autorun_init(void);
|
||||
void autorun_deinit(void);
|
||||
|
||||
void fe_core_log_init(void);
|
||||
void fe_core_log_deinit(void);
|
||||
|
||||
void fe_server_init(void);
|
||||
void fe_server_deinit(void);
|
||||
|
||||
void fe_settings_init(void);
|
||||
void fe_settings_deinit(void);
|
||||
|
||||
void nick_hilight_init(void);
|
||||
void nick_hilight_deinit(void);
|
||||
|
||||
void fe_core_commands_init(void);
|
||||
void fe_core_commands_deinit(void);
|
||||
|
||||
void fe_common_core_init(void)
|
||||
{
|
||||
settings_add_bool("lookandfeel", "toggle_show_menubar", TRUE);
|
||||
settings_add_bool("lookandfeel", "toggle_show_toolbar", FALSE);
|
||||
settings_add_bool("lookandfeel", "toggle_show_statusbar", TRUE);
|
||||
settings_add_bool("lookandfeel", "toggle_show_nicklist", TRUE);
|
||||
settings_add_bool("lookandfeel", "toggle_show_timestamps", FALSE);
|
||||
settings_add_bool("lookandfeel", "toggle_show_msgs_timestamps", FALSE);
|
||||
settings_add_bool("lookandfeel", "toggle_hide_text_style", FALSE);
|
||||
settings_add_bool("lookandfeel", "toggle_bell_beeps", FALSE);
|
||||
settings_add_bool("lookandfeel", "toggle_actlist_moves", FALSE);
|
||||
settings_add_bool("lookandfeel", "toggle_show_nickmode", TRUE);
|
||||
settings_add_bool("lookandfeel", "toggle_show_topicbar", TRUE);
|
||||
|
||||
settings_add_bool("lookandfeel", "toggle_use_status_window", FALSE);
|
||||
settings_add_bool("lookandfeel", "toggle_use_msgs_window", TRUE);
|
||||
settings_add_bool("lookandfeel", "toggle_autoraise_msgs_window", FALSE);
|
||||
settings_add_bool("lookandfeel", "toggle_autocreate_query", TRUE);
|
||||
settings_add_bool("lookandfeel", "toggle_notifylist_popups", FALSE);
|
||||
settings_add_bool("lookandfeel", "toggle_use_tabbed_windows", TRUE);
|
||||
settings_add_int("lookandfeel", "tab_orientation", 3);
|
||||
settings_add_str("lookandfeel", "current_theme", "default");
|
||||
|
||||
autorun_init();
|
||||
nick_hilight_init();
|
||||
hilight_text_init();
|
||||
command_history_init();
|
||||
keyboard_init();
|
||||
printtext_init();
|
||||
fe_log_init();
|
||||
fe_server_init();
|
||||
fe_settings_init();
|
||||
themes_init();
|
||||
translation_init();
|
||||
windows_init();
|
||||
window_items_init();
|
||||
fe_core_commands_init();
|
||||
}
|
||||
|
||||
void fe_common_core_deinit(void)
|
||||
{
|
||||
autorun_deinit();
|
||||
nick_hilight_deinit();
|
||||
hilight_text_deinit();
|
||||
command_history_deinit();
|
||||
keyboard_deinit();
|
||||
printtext_deinit();
|
||||
fe_log_deinit();
|
||||
fe_server_deinit();
|
||||
fe_settings_deinit();
|
||||
themes_deinit();
|
||||
translation_deinit();
|
||||
windows_deinit();
|
||||
window_items_deinit();
|
||||
fe_core_commands_deinit();
|
||||
}
|
||||
|
||||
void fe_common_core_finish_init(void)
|
||||
{
|
||||
WINDOW_REC *window;
|
||||
|
||||
signal(SIGPIPE, SIG_IGN);
|
||||
|
||||
if (settings_get_bool("toggle_use_status_window")) {
|
||||
window = window_create(NULL, TRUE);
|
||||
window_set_name(window, "(status)");
|
||||
window_set_level(window, MSGLEVEL_ALL ^ (settings_get_bool("toggle_use_msgs_window") ? (MSGLEVEL_MSGS|MSGLEVEL_ACTIONS) : 0));
|
||||
}
|
||||
|
||||
if (settings_get_bool("toggle_use_msgs_window")) {
|
||||
window = window_create(NULL, TRUE);
|
||||
window_set_name(window, "(msgs)");
|
||||
window_set_level(window, MSGLEVEL_MSGS|MSGLEVEL_ACTIONS);
|
||||
}
|
||||
|
||||
if (windows == NULL) {
|
||||
/* we have to have at least one window.. */
|
||||
window = window_create(NULL, TRUE);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue