From: Roland Andersson Date: Wed, 7 May 2003 07:52:44 +0000 (+0000) Subject: det går att kompilera nu! X-Git-Url: https://ruin.nu/git/?p=moosique.git;a=commitdiff_plain;h=c8e239ec16b6ffaef92575cf416c1df7b004c0a3 det går att kompilera nu! --- 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; + }