]> ruin.nu Git - moosique.git/blobdiff - MooTrackView.java
försökt få in lyssnare i MooToolbar men det gick inte...och börjat med prog idikator
[moosique.git] / MooTrackView.java
index 62381b9718f64df401000d701dcd455cf47ece85..e337eb1e21ac292c4d201ff4267895ec15f5ea82 100644 (file)
@@ -19,7 +19,11 @@ import java.awt.*;
 public class MooTrackView extends JPanel{
 
        private MooTrackTitle title;
-       private JPanel notes;
+       private NoteArea notes;
+       private Rectangle box;
+       private Rectangle box2;
+       //private JPanel notes;
+       
        /** 
         * Creates 
         */
@@ -45,15 +49,31 @@ public class MooTrackView extends JPanel{
                return title;
        }
 
-       private JPanel noteView() {
-               notes = new JPanel();
-               notes.setLayout(new GridLayout());
-               notes.setBackground(Color.white);       
-               return notes;
+       private JPanel noteView () {
+               notes = new NoteArea(); 
+               notes.setBackground(Color.white);
+               notes.setBorder(BorderFactory.createLineBorder(Color.black));   
+               return notes;           
+       }
+       
+       class NoteArea extends JPanel {
+               public void RectanglePanel() {
+                       setPreferredSize(new Dimension(20, 20));
                }
-
+               
+               
+               public void paintComponent(Graphics g) {
+                       super.paintComponent(g);
+                       Graphics2D g2 = (Graphics2D)g;
+                       box = new Rectangle(0,0,20,20);
+                       g2.draw(box);
+                       box2 = new Rectangle(20,0,20,20);
+                       g2.draw(box2);
+               }
+       }
+       
        private static final int PANEL_WIDTH = 65;
-       private static final int TITLE_HEIGHT = 20;
+       private static final int TITLE_HEIGHT = 40;
        private static final int NOTEVIEW_HEIGHT = 200;
 
 }