Datasets:

ArXiv:
License:
File size: 1,371 Bytes
c574d3a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package view;

import model.DietLog;

import javax.swing.*;
import java.awt.*;

public class BarGraph extends JPanel {

    private DietLog dietLog;
    private int fat = 150;
    private int carbs = 50;
    private int protein = 100;
    private int[] inputData = {0, 50, 100};

    int WIDTH = 275;
    int HEIGHT = 725;

    public BarGraph(DietLog dietLog) {
        this.setPreferredSize(new Dimension(WIDTH, HEIGHT));

        this.dietLog = dietLog;


        update(dietLog);
    }


    public void update(DietLog dietLog) {
        fat = (int)dietLog.getFatPerc();
        carbs = (int)dietLog.getCarbPerc();
        protein = (int)dietLog.getProteinPerc();
        updateUI();
    }


    protected void paintComponent(Graphics g) {
        super.paintComponent(g);

        /*SPACE_BETWEEN_BARS = 10, SPACE_ON_TOP_BOTTOM = 25;*/

        g.setColor(Color.WHITE);
        g.fillRect(0, 0, WIDTH, HEIGHT);

        drawBar(g, Color.RED, fat, 0);
        drawBar(g, Color.GREEN, carbs, 1);
        drawBar(g, Color.BLUE, protein, 2 );

    }

    private void drawBar(Graphics g, Color color, int value, int index) {
        g.setColor(color);

        int barWidth = (WIDTH/3) - 10;
        int x = index * (WIDTH/3) + 5;
        int barHeight = HEIGHT * value/100;
        int y = HEIGHT - barHeight;
        g.fillRect(x, y, barWidth, barHeight);
    }




}