X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=MooViewCounter.java;h=bea36880e2d5d6ced81c8ad673021afc16ff840a;hb=01f557262e8b2a40846bfa6a642dd9abf4d08e6e;hp=237d52313f8e53afa96dd5a4ea33a81b2b34dd04;hpb=801fe3cc9a1dff6eb87cf7842e6801afd3a0a3a2;p=moosique.git diff --git a/MooViewCounter.java b/MooViewCounter.java index 237d523..bea3688 100644 --- a/MooViewCounter.java +++ b/MooViewCounter.java @@ -1,18 +1,50 @@ import javax.swing.*; +import java.awt.*; -/* +/** * * * @author Andersson, Andreen, Lanneskog, Pehrson * @version 1 */ -public class MooViewCounter { +public class MooViewCounter extends JPanel { - /* + //public static final int LINE_LENGTH; + //private int linelenght; + //private String check; + //private Line[]; + + /** * Creates */ - public MooViewCounter () { +// private int timeSig1, timeSig2; + + /*public MooViewCounter (int ts1, int ts2) { + timeSig1 = ts1; + timeSig2 = ts2; + + switch (timeSig2) { + case 1: = 0; break; + case 2: linelenght = 0; break; + case 4: linelenght = 10; break; + case 8: linelenght = 0; break; + case 16: linelenght = 0; break; + } + }*/ + public void paintComponent(Graphics g) { + super.paintComponent(g); + setBackground(Color.white); + if (!(g instanceof Graphics2D)) return; + Graphics2D g2 = (Graphics2D)g; + setPreferredSize(new Dimension(50,200*10)); + for (int c = 0; c < 200; c++) { + g2.drawLine(0,c*10,20,c*10); + g2.drawLine(0,c*5,10,c*5); + //for (int i = 0; i < (timeSig1-1); i++) { + // g2.drawLine(0,c*timesig1,linelenght,c*timesign1); + //} + } } -} +} \ No newline at end of file