~strugee/homebank/improve-appstream

« back to all changes in this revision

Viewing changes to src/gtk-chart-colors.h

  • Committer: Maxime Doyen
  • Date: 2021-08-11 19:28:39 UTC
  • Revision ID: homebank@free.fr-20210811192839-j45fly2q2td54wd8
5.5.3 release

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
        THTEXT
65
65
};
66
66
 
 
67
 
67
68
enum colmap
68
69
{
69
70
        CHART_COLMAP_HOMEBANK,
74
75
        CHART_COLMAP_OFFICE2013,
75
76
        CHART_COLMAP_ANALYTICS,
76
77
        CHART_COLMAP_YNAB,
 
78
        CHART_COLMAP_QUICKEN2017,
 
79
        CHART_COLMAP_MINT,
 
80
        CHART_COLMAP_MATERIAL,
 
81
        CHART_COLMAP_NORD,
77
82
};
78
83
 
 
84
 
79
85
enum {
80
86
        CHART_FONT_SIZE_TITLE,
81
87
        CHART_FONT_SIZE_SUBTITLE,
95
101
extern struct rgbcol sap_colors[];
96
102
extern struct rgbcol homebank_colors[];
97
103
extern struct rgbcol ynab_colors[];
 
104
extern struct rgbcol quicken2017_colors[];
 
105
extern struct rgbcol mint_colors[];
 
106
extern struct rgbcol material_colors[];
 
107
extern struct rgbcol nord_colors[];
98
108
 
99
109
extern int money_nbcolors;
100
110
extern int quicken_nbcolors;
104
114
extern int sap_nbcolors;
105
115
extern int homebank_nbcolors;
106
116
extern int ynab_nbcolors;
 
117
extern int quicken2017_nbcolors;
 
118
extern int mint_nbcolors;
 
119
extern int material_nbcolors;
 
120
extern int nord_nbcolors;
107
121
 
108
122
void chart_color_global_default(void);
109
123