From c8e239ec16b6ffaef92575cf416c1df7b004c0a3 Mon Sep 17 00:00:00 2001 From: Roland Andersson Date: Wed, 7 May 2003 07:52:44 +0000 Subject: [PATCH] =?utf8?q?det=20g=E5r=20att=20kompilera=20nu!?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- MooTrackView.java | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/MooTrackView.java b/MooTrackView.java index d9fe942..62381b9 100644 --- a/MooTrackView.java +++ b/MooTrackView.java @@ -19,8 +19,7 @@ import java.awt.*; public class MooTrackView extends JPanel{ private MooTrackTitle title; - private JScrollPane table; - + private JPanel notes; /** * Creates */ @@ -29,7 +28,7 @@ public class MooTrackView extends JPanel{ setLayout(new BorderLayout()); this.setBorder(BorderFactory.createLineBorder(Color.black)); add(trackTitle(), BorderLayout.NORTH); - add(noteView(), BorderLayout.SOUTH); + add(noteView(), BorderLayout.CENTER); } MouseMotionListener doScrollRectToVisible = new MouseMotionAdapter() { @@ -46,17 +45,15 @@ public class MooTrackView extends JPanel{ return title; } - private JScrollPane noteView() { - JScrollPane scrollPane = new JScrollPane(table); - table.setPreferredScrollableViewportSize(new Dimension(500, 70)); - return scrollPane; + private JPanel noteView() { + notes = new JPanel(); + notes.setLayout(new GridLayout()); + notes.setBackground(Color.white); + return notes; } - } - private static final int PANEL_WIDTH = 65; private static final int TITLE_HEIGHT = 20; private static final int NOTEVIEW_HEIGHT = 200; - private static final int BOX_WIDTH = 20; - private static final int BOX_HEIGHT = 20; + } -- 2.39.2