From 4897f77587b579d4714ff8749134375e9f5ece77 Mon Sep 17 00:00:00 2001 From: Roland Andersson Date: Thu, 15 May 2003 11:54:06 +0000 Subject: [PATCH] ---------------------------------------------------------------------- MooViewCounter.java CVS: ---------------------------------------------------------------------- --- MooViewCounter.java | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/MooViewCounter.java b/MooViewCounter.java index 3c76601..9e3829e 100644 --- a/MooViewCounter.java +++ b/MooViewCounter.java @@ -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 -- 2.39.2