]> ruin.nu Git - moosique.git/commitdiff
----------------------------------------------------------------------
authorRoland Andersson <rolaande@itstud.chalmers.se>
Thu, 15 May 2003 11:54:06 +0000 (11:54 +0000)
committerRoland Andersson <rolaande@itstud.chalmers.se>
Thu, 15 May 2003 11:54:06 +0000 (11:54 +0000)
MooViewCounter.java CVS:
----------------------------------------------------------------------

MooViewCounter.java

index 3c766014c1f203971e9513883c5139654f80f141..9e3829e37428fbccb1e0dc364af6f10f272fd4cf 100644 (file)
@@ -15,6 +15,7 @@ public class MooViewCounter extends JPanel {
        /** 
         * Creates 
         */
+
        public MooViewCounter (int ts1, int ts2) {
                timeSig1 = ts1;
                timeSig2 = ts2;
@@ -44,16 +45,19 @@ public class MooViewCounter extends JPanel {
                }
                
        }
-
        public void paintComponent(Graphics g) {
                super.paintComponent(g);
+               setBackground(Color.black);
+
                if (!(g instanceof Graphics2D)) return;
                Graphics2D g2 = (Graphics2D)g;
+
+               setPreferredSize(new Dimension(50,200*10));
                g2.setColor(Color.white);
                for (int c = 0; c < 200; c++) {
-                       g2.drawLine(0,c*10,5,c*10);                                                     // 1/16
+                       g2.drawLine(0,c*10,5,c*10);                                     // 1/16
                        g2.drawLine(0,c*10*halfBeat,10,c*10*halfBeat);                  // 1/8
-                       g2.drawLine(0,c*10*beat,15,c*10*beat);                                  // 1/4
+                       g2.drawLine(0,c*10*beat,15,c*10*beat);                          // 1/4
                        g2.drawLine(0,c*10*halfNote,20,c*10*halfNote);                  // 1/2
                        g2.drawLine(0,c*10*measure,30,c*10*measure);                    // 1/1