Assignment7 | Computer Science homework help

Requirements to get full credits in Documentation

1.A description of each method is also needed.

2.Some additional comments inside of methods to explain code that are hard to follow should be written.

You can look at the Java programs in the text book to see how comments are added to programs.

Minimal Submitted Files

You are required, but not limited, to turn in the following source files:

Assignment7.java (No need to be changed) 

DrawingPane.java —   to be completed.

You may add more classes or more methods than the specified ones. (You might need them.)

Skills to be Applied:

JavaFX

Classes may be needed:  

Button, ComboBox, Color, Graphics, Line, ActionHandler, MouseHandler. You may use other classes.

Here is Assignment7.java:

 

import javafx.application.Application;
import javafx.stage.Stage;
import javafx.scene.Scene;
import javafx.scene.layout.StackPane;

public class Assignment7 extends Application
{
  public void start(Stage primaryStage)
  {
     //create a DrawPane object. See DrawPane.java for details.
     DrawingPane gui = new DrawingPane();
  
     //put gui on top of the rootPane
     StackPane rootPane = new StackPane();
     rootPane.getChildren().add(gui);
  
     // Create a scene and place rootPane in the stage
     Scene scene = new Scene(rootPane, 600, 400);
     primaryStage.setTitle("Line Drawing");
     primaryStage.setScene(scene); // Place the scene in the stage
     primaryStage.show(); // Display the stage
  }
  public static void main(String[] args)
  {
     Application.launch(args);
  }
}

Here is DrawingPane.java (This is a semi-finished product, you need to add):

//import any classes necessary here
//----
import javafx.scene.control.Button;
import javafx.scene.control.ComboBox;
import javafx.scene.layout.Pane;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.HBox;
import javafx.scene.shape.Line;
import javafx.scene.paint.Color;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.geometry.Orientation;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.scene.input.MouseEvent;

import java.util.ArrayList;

public class DrawingPane extends BorderPane
{
  private Button undoButton, eraseButton;
  private ComboBox<String> colorCombo, widthCombo;
  private ArrayList<Line> lineList;
  private Pane canvas;
  //declare any other necessary instance variables here
  //----
   
  //Constructor

  public DrawingPane()
  {
     //Step #1: initialize instance variable and set up layout
     undoButton = new Button("Undo");
     eraseButton = new Button("Erase");
     undoButton.setMinWidth(80.0);
     eraseButton.setMinWidth(80.0);

     //Create the color comboBox and width comboBox,
     //----
      
      
     //initialize lineList, it is a data structure we used
     //to track the lines we created
     //----
      
     //topPane should contain two combo boxes and two buttons
     HBox topPane = new HBox();
     topPane.setSpacing(40);
     topPane.setPadding(new Insets(10, 10, 10, 10));
     topPane.setStyle("-fx-border-color: black");
      
      //canvas is a Pane where we will draw lines
     canvas = new Pane();
     canvas.setStyle("-fx-background-color: white;");
      

      
     //add the canvas at the center of the pane and top panel
     //should have two combo boxes and two buttons
     this.setCenter(canvas);
     this.setTop(topPane);

      
     //Step #3: Register the source nodes with its handler objects
     canvas.setOnMousePressed(new MouseHandler());
     //----
     //----
  }

   //Step #2(A) - MouseHandler
   private class MouseHandler implements EventHandler<MouseEvent>
   {
       public void handle(MouseEvent event)
       {
           //handle MouseEvent here
           //Note: you can use if(event.getEventType()== MouseEvent.MOUSE_PRESSED)
           //to check whether the mouse key is pressed, dragged or released
           //write your own codes here
           //----
           
           
           
           
           
       }//end handle()
   }//end MouseHandler

   //Step #2(B)- A handler class used to handle events from Undo & Erase buttons
   private class ButtonHandler implements EventHandler<ActionEvent>
   {
       public void handle(ActionEvent event)
       {
           //write your codes here
           //----
           
           
           
       }
   }//end ButtonHandler

  //Step #2(C)- A handler class used to handle colors
  private class ColorHandler implements EventHandler<ActionEvent>
  {
      public void handle(ActionEvent event)
      {
          //write your own codes here
          //----
          
          
          
      }
  }//end ColorHandler
   
   //Step #2(D)- A handler class used to handle widths of lines
   private class WidthHandler implements EventHandler<ActionEvent>
   {
       public void handle(ActionEvent event)
       {
           //write your own codes here
           //----
           
           
           
       }
   }//end WidthHandler
}//end class DrawingPane

The remail details is in the picture file.

Place your order
(550 words)

Approximate price: $22

Calculate the price of your order

550 words
We'll send you the first draft for approval by September 11, 2018 at 10:52 AM
Total price:
$26
The price is based on these factors:
Academic level
Number of pages
Urgency
Basic features
  • Free title page and bibliography
  • Unlimited revisions
  • Plagiarism-free guarantee
  • Money-back guarantee
  • 24/7 support
On-demand options
  • Writer’s samples
  • Part-by-part delivery
  • Overnight delivery
  • Copies of used sources
  • Expert Proofreading
Paper format
  • 275 words per page
  • 12 pt Arial/Times New Roman
  • Double line spacing
  • Any citation style (APA, MLA, Chicago/Turabian, Harvard)

Our guarantees

Delivering a high-quality product at a reasonable price is not enough anymore.
That’s why we have developed 5 beneficial guarantees that will make your experience with our service enjoyable, easy, and safe.

Money-back guarantee

You have to be 100% sure of the quality of your product to give a money-back guarantee. This describes us perfectly. Make sure that this guarantee is totally transparent.

Read more

Zero-plagiarism guarantee

Each paper is composed from scratch, according to your instructions. It is then checked by our plagiarism-detection software. There is no gap where plagiarism could squeeze in.

Read more

Free-revision policy

Thanks to our free revisions, there is no way for you to be unsatisfied. We will work on your paper until you are completely happy with the result.

Read more

Privacy policy

Your email is safe, as we store it according to international data protection rules. Your bank details are secure, as we use only reliable payment systems.

Read more

Fair-cooperation guarantee

By sending us your money, you buy the service we provide. Check out our terms and conditions if you prefer business talks to be laid out in official language.

Read more