]> ruin.nu Git - moosique.git/commitdiff
det går att kompilera nu!
authorRoland Andersson <rolaande@itstud.chalmers.se>
Wed, 7 May 2003 07:52:44 +0000 (07:52 +0000)
committerRoland Andersson <rolaande@itstud.chalmers.se>
Wed, 7 May 2003 07:52:44 +0000 (07:52 +0000)
MooTrackView.java

index d9fe9428973ede107a629b8ffd3583cb8ad5b4df..62381b9718f64df401000d701dcd455cf47ece85 100644 (file)
@@ -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;
+
 }