X-Git-Url: https://irasnyder.com/gitweb/?a=blobdiff_plain;f=elevatorgui.hpp;h=6dd2206094622f0500da51a334e665faa66acaa3;hb=2172ce055533d5865d58538ee00bf609e59b0f99;hp=3a4b1f3c19696b8f7b69514333a21adf39fe4372;hpb=d4f5a2078027e614de4d1be76ed15550bb1b280c;p=cs356-p1-elevator.git diff --git a/elevatorgui.hpp b/elevatorgui.hpp index 3a4b1f3..6dd2206 100644 --- a/elevatorgui.hpp +++ b/elevatorgui.hpp @@ -38,7 +38,6 @@ class ElevatorGUI : public Gtk::Window void on_call_button_toggled (CallButton *button); void on_request_button_toggled (RequestButton *button); void on_playpause_button_clicked (); - void on_stop_button_clicked (); void on_quit_button_clicked (); /* Timer Function */ @@ -49,7 +48,7 @@ class ElevatorGUI : public Gtk::Window int number_of_floors_; int number_of_elevators_; - enum { STOPPED, RUNNING, PAUSED } simulation_status_; + enum { RUNNING, PAUSED } simulation_status_; ElevatorController ec_; @@ -65,8 +64,8 @@ class ElevatorGUI : public Gtk::Window // holds custom ElevatorDoor which knows it's elevator# and floor# ElevatorDoorVector elevator_doors_; - // Holds the Play / Pause button, Stop button, and Quit button - Gtk::Button button_playpause_, button_stop_, button_quit_; + // Holds the Play / Pause button and Quit button + Gtk::Button button_playpause_, button_quit_; // Holds the Table which holds everything Gtk::Table table_;