-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMainWindow.h
More file actions
43 lines (34 loc) · 973 Bytes
/
MainWindow.h
File metadata and controls
43 lines (34 loc) · 973 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#ifndef _MAIN_WINDOW_H_
#define _MAIN_WINDOW_H_
#include <gtkmm.h>
#include <vector>
#include "Subject.h"
#include "Observer.h"
class Main_Window : public Gtk::Window, public Subject
{
public:
// constructor
Main_Window();
// destructor
~Main_Window();
// set_buttons responsible for showing the correct buttons based on state
void set_buttons(std::vector<Gtk::Button*>& btns);
// attach detach and notify_observers overridden from Subject
void attach(Observer& o) override;
void detach(Observer& o) override;
void notify_observers(int s) override;
protected:
// methods for signal handlers for buttons
void on_start_clicked();
void on_stop_clicked();
void on_settings_clicked();
private:
// observers vector
std::vector<Observer*> observers;
// widget components for thw window
Gtk::Box layout;
Gtk::Button start_btn;
Gtk::Button stop_btn;
Gtk::Button settings_btn;
};
#endif