Counter: Swing and thread : Swing Thread « Threads « Java






Counter: Swing and thread

Counter: Swing and thread
  
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Font;
import java.awt.Graphics;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.text.DecimalFormat;

import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;

public class SecondCounterDemo extends JPanel {
  private SecondCounterRunnable sc = new SecondCounterRunnable();

  private JButton startB = new JButton("Start");

  private JButton stopB = new JButton("Stop");

  public SecondCounterDemo() {
    stopB.setEnabled(false); // begin with this disabled

    startB.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        startB.setEnabled(false);

        Thread counterThread = new Thread(sc, "Counter");
        counterThread.start();

        stopB.setEnabled(true);
        stopB.requestFocus();
      }
    });

    stopB.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        stopB.setEnabled(false);
        sc.stopClock();
        startB.setEnabled(true);
        startB.requestFocus();
      }
    });

    JPanel innerButtonP = new JPanel();
    innerButtonP.setLayout(new GridLayout(0, 1, 0, 3));
    innerButtonP.add(startB);
    innerButtonP.add(stopB);

    JPanel buttonP = new JPanel();
    buttonP.setLayout(new BorderLayout());
    buttonP.add(innerButtonP, BorderLayout.NORTH);

    this.setLayout(new BorderLayout(10, 10));
    this.setBorder(new EmptyBorder(20, 20, 20, 20));
    this.add(buttonP, BorderLayout.WEST);
    this.add(sc, BorderLayout.CENTER);
  }

  public static void main(String[] args) {
    SecondCounterDemo scm = new SecondCounterDemo();

    JFrame f = new JFrame();
    f.setContentPane(scm);
    f.setSize(320, 200);
    f.setVisible(true);
    f.addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent e) {
        System.exit(0);
      }
    });
  }

  class SecondCounterRunnable extends JComponent implements Runnable {
    private volatile boolean keepRunning;

    private Font paintFont = new Font("SansSerif", Font.BOLD, 14);

    private volatile String timeMsg = "never started";

    private volatile int arcLen = 0;

    public SecondCounterRunnable() {
    }

    public void run() {
      runClock();
    }

    public void runClock() {
      DecimalFormat fmt = new DecimalFormat("0.000");
      long normalSleepTime = 100;

      int counter = 0;
      keepRunning = true;

      while (keepRunning) {
        try {
          Thread.sleep(normalSleepTime);
        } catch (InterruptedException x) {
          // ignore
        }
        counter++;
        double counterSecs = counter / 10.0;
        timeMsg = fmt.format(counterSecs);
        arcLen = (((int) counterSecs) % 60) * 360 / 60;
        repaint();
      }
    }

    public void stopClock() {
      keepRunning = false;
    }

    public void paint(Graphics g) {
      g.setColor(Color.black);
      g.setFont(paintFont);
      g.drawString(timeMsg, 0, 15);

      g.fillOval(0, 20, 100, 100);

      g.setColor(Color.white);
      g.fillOval(3, 23, 94, 94);

      g.setColor(Color.red);
      g.fillArc(2, 22, 96, 96, 90, -arcLen);
    }
  }

}

           
         
    
  








Related examples in the same category

1.Is Event Dispatcher ThreadIs Event Dispatcher Thread
2.GUI clock
3.Race Conditions using Swing ComponentsRace Conditions using Swing Components
4.Eliminating race Conditions using Swing ComponentsEliminating race Conditions using Swing Components
5.Using the Runnable interfaceUsing the Runnable interface
6.Write your Beans this way so they can run in a multithreaded environmentWrite your Beans this way so they can run in a multithreaded environment
7.User interface responsiveness
8.InvokeExample: Swing and threadInvokeExample: Swing and thread
9.Thread accuracy: Swing and threadsThread accuracy: Swing and threads
10.Swing and thread: invoke and waitSwing and thread: invoke and wait
11.Swing and threads: invoke laterSwing and threads: invoke later
12.Swing and threads: slideSwing and threads: slide
13.Swing and threads: scroll textSwing and threads: scroll text
14.Animation: Swing and threadAnimation: Swing and thread
15.Swing and Thread for length operationSwing and Thread for length operation
16.Swing and Thread: cancel a lengthy operationSwing and Thread: cancel a lengthy operation
17.Swing and Thread: repaintSwing and Thread: repaint
18.Thread and Swing 1Thread and Swing 1
19.Thread and Swing 2Thread and Swing 2
20.Thread and Swing 3Thread and Swing 3
21.Swing Type Tester 10Swing Type Tester 10
22.Swing and Threading
23.SwingUtilities.invokeLater and swing thread
24.An abstract class to perform lengthy GUI-interacting tasks in a dedicated thread.
25.This program demonstrates that a thread that runs in parallel with the event dispatch thread can cause errors in Swing components