mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 12:32:40 +03:00
4a116608d4
Rename structure mc_skin_color_t -> tty_color_pair_t and move to lib/tty/color.h. Rename members. Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
33 lines
1.2 KiB
C
33 lines
1.2 KiB
C
#ifndef MC__SKIN_INTERNAL_H
|
|
#define MC__SKIN_INTERNAL_H
|
|
|
|
#include "lib/global.h"
|
|
#include "lib/skin.h"
|
|
|
|
/*** typedefs(not structures) and defined constants **********************************************/
|
|
|
|
/*** enums ***************************************************************************************/
|
|
|
|
/*** structures declarations (and typedefs of structures)*****************************************/
|
|
|
|
/*** global variables defined in .c file *********************************************************/
|
|
|
|
/*** declarations of public functions ************************************************************/
|
|
|
|
gboolean mc_skin_ini_file_load (mc_skin_t * mc_skin);
|
|
gboolean mc_skin_ini_file_parse (mc_skin_t * mc_skin);
|
|
void mc_skin_set_hardcoded_skin (mc_skin_t * mc_skin);
|
|
|
|
gboolean mc_skin_ini_file_parse_colors (mc_skin_t * mc_skin);
|
|
gboolean mc_skin_color_parse_ini_file (mc_skin_t * mc_skin);
|
|
|
|
void mc_skin_hardcoded_ugly_lines (mc_skin_t * mc_skin);
|
|
void mc_skin_hardcoded_space_lines (mc_skin_t * mc_skin);
|
|
void mc_skin_hardcoded_blackwhite_colors (mc_skin_t * mc_skin);
|
|
|
|
void mc_skin_colors_old_configure (mc_skin_t * mc_skin);
|
|
|
|
/*** inline functions ****************************************************************************/
|
|
|
|
#endif /* MC__SKIN_INTERNAL_H */
|