X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=MooTrackView.java;h=62381b9718f64df401000d701dcd455cf47ece85;hb=c8e239ec16b6ffaef92575cf416c1df7b004c0a3;hp=d9fe9428973ede107a629b8ffd3583cb8ad5b4df;hpb=738337b5b3f928ae27e687dfdebea96ef6a325c5;p=moosique.git 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; + }