]> ruin.nu Git - moosique.git/blobdiff - MooToolbar.java
no message
[moosique.git] / MooToolbar.java
index 772a963179d34f41e44d44b492823cf46143e492..84f0c5377238292b3102e61fb5fa70c687e5e52c 100644 (file)
@@ -1,6 +1,8 @@
 import javax.swing.*;
+import java.awt.event.*;
+import java.awt.*;
 
-public class MooToolbar extends JToolBar       {
+public class MooToolbar extends JToolBar implements ActionListener     {
 
        public MooToolbar()     {
        
@@ -16,16 +18,64 @@ public class MooToolbar extends JToolBar    {
                fastforward = createButton("images/forward.gif", "fast forward");
                add(fastforward);
                
+               meas = createProjIndLabel("Mrs");
+               beat = createProjIndLabel("Beat");
+               tick = createProjIndLabel("Tick");
+               
+               measvalue = createProjIndLabel("1");
+               beatvalue = createProjIndLabel("1");
+               ticksvalue = createProjIndLabel("1");
+               
+               JPanel measbeattick = new JPanel();
+               measbeattick.setMaximumSize(new Dimension(80,40));
+               measbeattick.setLayout(new GridLayout(2,3));
+               measbeattick.add(meas);
+               measbeattick.add(beat);
+               measbeattick.add(tick);         
+               measbeattick.add(measvalue);
+               measbeattick.add(beatvalue);
+               measbeattick.add(ticksvalue);
+               
+               add(measbeattick);
                }
                
                private JButton createButton(String imageLocation, String toolTip) {
                        JButton button = new JButton (new ImageIcon(imageLocation));
                        button.setToolTipText(toolTip);
+                       button.addActionListener(this);
                        return button;
                }
                
+               
+               private JLabel createProjIndLabel(String title){
+                       JLabel titelvalue = new JLabel(title, JLabel.CENTER);
+                       titelvalue.setFont(new Font("Times New Roman", Font.PLAIN ,8));
+                       titelvalue.setHorizontalTextPosition(JLabel.CENTER);
+                       return titelvalue;
+               }
+               
+                       
+               public void actionPerformed(ActionEvent e) {}
+                                       
+                       /*if () {
+                       
+                       } else if () {
+                               
+                       
+                       } else if () {
+                       
+                       } else if () {
+                       
+                       }*/
                private JButton rewind;
                private JButton playpause;
                private JButton stop;
                private JButton fastforward;
+               private JLabel meas;
+               private JLabel beat;
+               private JLabel tick;
+               private JLabel measvalue;
+               private JLabel beatvalue;
+               private JLabel ticksvalue;
+               
 }