-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcMain.h
More file actions
45 lines (26 loc) · 627 Bytes
/
cMain.h
File metadata and controls
45 lines (26 loc) · 627 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
44
#pragma once
#include "wx/wx.h"
// External panels
#include "controlPanel.h"
#include "connectionPanel.h"
#include "carPanel.h"
#include "dataPanel.h"
#include "COM_Communication.h"
// -------------------------
class cMain : public wxFrame
{
public:
cMain();
~cMain();
// ------- Sizers ------- //
wxBoxSizer* s_sideSizer = nullptr;
wxBoxSizer* s_dataSizer = nullptr;
wxBoxSizer* s_fullSizer = nullptr;
private:
controlPanel* ctrlPanel;
connectionPanel* connPanel;
carPanel* carstatPanel;
dataPanel* rawPanel;
COM_Communication* comHandle = nullptr;
wxStaticText* t_RawBytes = nullptr;
};