bar chart
All checks were successful
pyrite-dev/milsko/pipeline/head This commit looks good

This commit is contained in:
Nishi 2026-09-14 01:09:57 +09:00
commit 120eb5baaf
14 changed files with 405 additions and 44 deletions

View file

@ -30,6 +30,8 @@ typedef struct _MwBox* MwBox;
typedef struct _MwSubWindow* MwSubWindow;
typedef struct _MwTab* MwTab;
typedef struct _MwTable* MwTable;
typedef struct _MwChartEntry MwChartEntry;
typedef struct _MwChart* MwChart;
typedef struct _MwMouse MwMouse;
typedef struct _MwTTFInfo* MwTTFInfo;
#ifdef _MILSKO
@ -247,6 +249,16 @@ struct _MwTab {
char** names;
};
struct _MwChartEntry {
char* name;
char* color;
double value;
};
struct _MwChart {
MwChartEntry* entries;
};
struct _MwMouse {
MwPoint point;
int button;