]> ruin.nu Git - moosique.git/commitdiff
bara!
authorRoland Andersson <rolaande@itstud.chalmers.se>
Wed, 14 May 2003 16:26:39 +0000 (16:26 +0000)
committerRoland Andersson <rolaande@itstud.chalmers.se>
Wed, 14 May 2003 16:26:39 +0000 (16:26 +0000)
MooViewCounter.java

index 2775027b2e0d1f64702ebad376c6a29ee3c4756b..bea36880e2d5d6ced81c8ad673021afc16ff840a 100644 (file)
@@ -10,23 +10,41 @@ import java.awt.*;
  
 public class MooViewCounter extends JPanel {
 
+       //public static final int LINE_LENGTH;
+       //private int linelenght;
+       //private String check; 
+       //private Line[];
+
        /** 
         * Creates 
         */
-       public MooViewCounter (int beatsPerMeasure1, int beatsPerMeasure2) {
-       
-       }
+//     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;
-               
-               for (int i = 0; i < 10; i++) {
-                       for (int j = 0; j < 10; j++) {
-                               // g2.drawLine(0,i*20, 
-                       }
+               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