]> ruin.nu Git - moosique.git/blobdiff - MooToolbar.java
no message
[moosique.git] / MooToolbar.java
index 22cde75db5c1bf8bee0e10601478fa0d2368118e..84f0c5377238292b3102e61fb5fa70c687e5e52c 100644 (file)
@@ -18,22 +18,45 @@ public class MooToolbar extends JToolBar implements ActionListener  {
                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);
-                       //JOptionPane.showMessageDialog(rewind.getActionEvent());
                        return button;
                }
                
-               public void actionPerformed(ActionEvent e) {
-                       
-                       
-               System.out.println(e.getSource());
+               
+               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 () {
@@ -44,9 +67,15 @@ public class MooToolbar extends JToolBar implements ActionListener   {
                        } 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;
+               
 }