products/Sources/formale Sprachen/VDM/VDMPP/SmokingPP/java/src/gui image not shown  

Quellcode-Bibliothek

© Kompilation durch diese Firma

[Weder Korrektheit noch Funktionsfähigkeit der Software werden zugesichert.]

Datei: Controller.java   Sprache: JAVA

Original von: VDM©

package gui;

import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.WindowConstants;

public class Controller extends JFrame  {
    /**
 * 
 */

 private static final long serialVersionUID = 1L;
 JPanel buttonPanel = new JPanel();
    JButton addTobaccoButton;
    JButton addMatchButton;
    JButton addPaperButton;

    Model model;
    View view;
    public static SmokingControl smoke; 

    public Controller() {
     // Allow Overture to do a controlled shutdown 
     setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
     this.model = new Model();
     
     //add buttons
     addTobaccoButton = new JButton("Add Tobacco");
     addPaperButton = new JButton("Add Paper");
     addMatchButton = new JButton("Add Match");
     
     setSize(350,150);  
        init();
        setVisible(true);  
    }

    public void init() {
        try {
            view = new View(model);
        } catch (IOException ex) {
            Logger.getLogger(Controller.class.getName()).log(Level.SEVERE, null, ex);
        }
        
      attachListenersToComponents();
      layOutComponents();
      // Connect model and view
      model.addObserver(view);
   }

    private void attachListenersToComponents() {

     addTobaccoButton.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
             smoke.AddTobacco();
            }
        });
      
     addPaperButton.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
             
             smoke.AddPaper();
            }
        }); 
     
     addMatchButton.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
             
             smoke.AddMatch();
            }
        }); 
    }
    
    private void layOutComponents() {
        setLayout(new BorderLayout());
        this.add(BorderLayout.SOUTH, buttonPanel);
        buttonPanel.add(addTobaccoButton);
        buttonPanel.add(addPaperButton);
        buttonPanel.add(addMatchButton);
     this.add(BorderLayout.CENTER, view);
     
  this.setVisible(true);
    }

    
    public void DisableButtons()
    {  
     addTobaccoButton.setEnabled(false);
     addPaperButton.setEnabled(false);
     addMatchButton.setEnabled(false);
    }
    
    public void EnableButtons()
    {
     addTobaccoButton.setEnabled(true);
     addPaperButton.setEnabled(true);
     addMatchButton.setEnabled(true);
    }

    /**
     * @return the model
     */

    public Model getModel() {
        return model;
    }
    
    /**
     * Notify the smoke controller that the JFrame is going down
     */

    @Override
    public void dispose()
    {
     smoke.finish();
    }
}

¤ Dauer der Verarbeitung: 0.14 Sekunden  (vorverarbeitet)  ¤





Download des
Quellennavigators
Download des
sprechenden Kalenders

in der Quellcodebibliothek suchen




Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.


Bemerkung:

Die farbliche Syntaxdarstellung ist noch experimentell.


Bot Zugriff