terminology/src/bin/colors.h

95 lines
1.7 KiB
C
Raw Normal View History

2020-09-06 13:40:28 -07:00
#ifndef _COLORS_H__
#define _COLORS_H__ 1
#include <Evas.h>
2014-03-17 14:32:25 -07:00
#include "config.h"
2020-09-09 12:32:46 -07:00
typedef struct _Color_Scheme Color_Scheme;
typedef struct _Color_Block Color_Block;
struct _Color_Block
{
Color def;
Color black;
Color red;
Color green;
Color yellow;
Color blue;
Color magenta;
Color cyan;
Color white;
Color inverse_fg;
Color inverse_bg;
uint32_t _padding;
};
2020-09-09 12:32:46 -07:00
struct _Color_Scheme
{
int version;
struct {
int version;
const char *name;
const char *author;
const char *website;
const char *license;
} md;
Color bg;
Color main;
Color hl;
Color end_sel;
Color tab_missed_1;
Color tab_missed_2;
Color tab_missed_3;
Color tab_missed_over_1;
Color tab_missed_over_2;
Color tab_missed_over_3;
Color tab_title_2;
Color_Block normal;
Color_Block bright;
Color_Block faint;
Color_Block brightfaint;
2020-09-09 12:32:46 -07:00
};
2020-08-19 10:23:00 -07:00
void
colors_term_init(Evas_Object *textgrid,
const Evas_Object *bg);
2020-08-19 10:23:00 -07:00
void
colors_standard_get(int set,
int col,
unsigned char *r,
unsigned char *g,
unsigned char *b,
unsigned char *a);
void
colors_256_get(int col,
unsigned char *r,
unsigned char *g,
unsigned char *b,
unsigned char *a);
void
color_scheme_apply_from_config(Evas_Object *edje,
const Config *config);
void
color_scheme_apply(Evas_Object *edje,
const Color_Scheme *cs);
Eina_List *
color_scheme_list(void);
2020-09-09 12:32:46 -07:00
void
colors_init(void);
void
colors_shutdown(void);
#endif