1
1
mc/src/skin/hc-skins.c

116 строки
4.6 KiB
C
Исходник Обычный вид История

/*
Skins engine.
Set of hardcoded skins
Copyright (C) 2009 The Free Software Foundation, Inc.
Written by:
Slava Zanko <slavazanko@gmail.com>, 2009.
This file is part of the Midnight Commander.
The Midnight Commander 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.
The Midnight Commander 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., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA.
*/
#include <config.h>
#include "../src/global.h"
#include "skin.h"
#include "internal.h"
/*** global variables ****************************************************************************/
/*** file scope macro definitions ****************************************************************/
#define set_lines(x,y) mc_config_set_string(mc_skin->config, "Lines", x, y)
/*** file scope type declarations ****************************************************************/
/*** file scope variables ************************************************************************/
/*** file scope functions ************************************************************************/
/* --------------------------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------------------------- */
/*** public functions ****************************************************************************/
/* --------------------------------------------------------------------------------------------- */
void
mc_skin_hardcoded_blackwhite_colors(mc_skin_t *mc_skin)
{
mc_config_set_string(mc_skin->config, "core", "_default_", "default;default");
mc_config_set_string(mc_skin->config, "core", "selected", "A_REVERSE");
mc_config_set_string(mc_skin->config, "core", "marked", "A_BOLD");
mc_config_set_string(mc_skin->config, "core", "markselect", "A_BOLD_REVERSE");
mc_config_set_string(mc_skin->config, "core", "reverse", "A_REVERSE");
mc_config_set_string(mc_skin->config, "dialog", "_default_", "A_REVERSE");
mc_config_set_string(mc_skin->config, "dialog", "focus", "A_BOLD");
mc_config_set_string(mc_skin->config, "menu", "entry", "A_REVERSE");
mc_config_set_string(mc_skin->config, "menu", "selected", "A_BOLD");
mc_config_set_string(mc_skin->config, "help", "_default_", "A_REVERSE");
mc_config_set_string(mc_skin->config, "help", "italic", "A_REVERSE");
mc_config_set_string(mc_skin->config, "help", "bold", "A_REVERSE");
mc_config_set_string(mc_skin->config, "help", "slink", "A_BOLD");
mc_config_set_string(mc_skin->config, "editor", "bold", "A_BOLD");
mc_config_set_string(mc_skin->config, "editor", "marked", "A_REVERSE");
mc_config_set_string(mc_skin->config, "viewer", "underline", "A_UNDERLINE");
mc_config_set_string(mc_skin->config, "error", "_default_", "A_BOLD");
}
/* --------------------------------------------------------------------------------------------- */
void
mc_skin_hardcoded_space_lines(mc_skin_t *mc_skin)
{
set_lines("lefttop", " ");
set_lines("righttop", " ");
set_lines("centertop", " ");
set_lines("centerbottom", " ");
set_lines("leftbottom", " ");
set_lines("rightbottom", " ");
set_lines("leftmiddle", " ");
set_lines("rightmiddle", " ");
set_lines("centermiddle", " ");
set_lines("horiz", " ");
set_lines("vert", " ");
set_lines("thinhoriz", " ");
set_lines("thinvert", " ");
}
/* --------------------------------------------------------------------------------------------- */
void
mc_skin_hardcoded_ugly_lines(mc_skin_t *mc_skin)
{
set_lines("lefttop", "+");
set_lines("righttop", "+");
set_lines("centertop", "-");
set_lines("centerbottom", "-");
set_lines("leftbottom", "+");
set_lines("rightbottom", "+");
set_lines("leftmiddle", "|");
set_lines("rightmiddle", "|");
set_lines("centermiddle", "+");
set_lines("horiz", "-");
set_lines("vert", "|");
set_lines("thinhoriz", "-");
set_lines("thinvert", "|");
}
/* --------------------------------------------------------------------------------------------- */