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.

Calculate the price of your order

Choose an academic level, add pages, and the paper type you want.
To reduce the cost of our essay writing services, select the lengthier deadline.
We can't believe we just said that to you.

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

Why is Purdue Papers the Most Helpful Essay Writing Service for You?

  1. Custom-written and plagiarism-free papers: Our authors create their work from scratch. Before presenting them to clients, we routinely verify them for signs of plagiarism. Our quality assurance group also double-checks and fixes any grammatical errors, assuring that all of our authors adhere to the same standards of writing.
  2. The significance of timely delivery cannot be overstated, and we consistently strive to meet or exceed our clients' deadlines. Regardless of the short time frame, you can count on our writers to get the job done. We always have a team of writers ready to go, even if the deadline is only six hours away.
  3. Customer Satisfaction: Our customer service representatives are the best in the business and have a wealth of knowledge in dealing with clients. All our customer service representatives are trained to listen and reply promptly until you are satisfied with their service. To ensure you're happy, our expert writers will strictly follow the criteria to generate a special report. Our customer service may be contacted by chat, email, or phone. In addition, we provide round-the-clock assistance to all of our clients.
  4. Confidentiality: Our systems are safe, and your information is always protected. We're constantly looking for new facts when it comes to finishing your work. We use a safe and secure payment channel. Since our ordering process is completely anonymous, you don't have to provide any credit card information to place a purchase with us.
  5. Highly Trained Authors: Our writers have received extensive training and are committed to delivering only the best papers. They are fluent in APA, MLA, HARVARD, IEEE, CHICAGO, and AMA referencing styles. To meet your expectations, our skilled writers always pay close attention to your instructions.
  6. Lowered prices: We have set prices that are already discounted. Our prices are the best and affordable for all our esteemed customers.

Let Professionals Take Care of your Academic Paper