diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2025-02-28 20:55:13 -0500 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2025-02-28 20:55:13 -0500 |
| commit | faf14d71cfbac1f21500f4b997441fa03731bf0e (patch) | |
| tree | 0512dbda2976bede3ce982303ad9a0411c1f83ed /ui.h | |
| parent | a7c99e7bed015db546969d5f9a87fc6ffd1f2ea8 (diff) | |
| download | volute-faf14d71cfbac1f21500f4b997441fa03731bf0e.zip | |
add volume flow rate to ui
Diffstat (limited to 'ui.h')
| -rw-r--r-- | ui.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -14,10 +14,15 @@ typedef struct { w_Field ve[MAX_POINTS]; Engine points[MAX_POINTS]; + + w_Select volume_flow_rate_unit; + w_Label volume_flow_rate[MAX_POINTS]; } UI; void init_ui(UI *ui); void set_displacement(UI *ui); void set_map(UI *ui, int idx); +void set_volume_flow_rate(UI *ui, int idx); +void set_all_volume_flow_rate(UI *ui); void insert_point(UI *ui, int idx); void remove_point(UI *ui, int idx); |