Blame view

GUI/SW1/SRC/BUNDLEBLDR.h 7.69 KB
886c558b   Steve Greedy   SACAMOS Public Re...
1
2
3
4
5
6
/////////////////////////////////////////////////////////////////////////////////
//
// This file is part of SACAMOS, cable models for EMI simulations in SPICE.
// It was developed by the University of Nottingham and the Netherlands Aerospace
// Centre (NLR) for ESA under contract number 4000112765/14/NL/HK.
//
3d24aeb1   Steve Greedy   Modification to s...
7
// Copyright (C) 2015 - 2018 University of Nottingham
886c558b   Steve Greedy   SACAMOS Public Re...
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
45
46
47
48
49
50
//
// SACAMOS is free software: you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the Free Software
// Foundation, either version 3 of the License, or (at your option) any later
// version.
//
// SACAMOS is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
// or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
// for more details.
//
// A copy of the GNU General Public License version 3 can be found in the
// file GNU_GPL_v3 in the root or at <http://www.gnu.org/licenses/>.
//
// wxWidgets is currently licenced under the "wxWindows Library Licence".
// A copy of the wxWindows Library Licence, Version 3.1 can be found in the file
// wxWindows_Library_Licence_v3-1 in the root or at:
// <https://www.wxwidgets.org/about/licence/>
//
// The University of Nottingham can be contacted at: ggiemr@nottingham.ac.uk
//
// File Contents:
//
// NAME
//     BUNDLEBLDR.h
//
// DESCRIPTION
//     Cable bundle builder application
//
// AUTHOR(S)
//     Steve Greedy
//
/////////////////////////////////////////////////////////////////////////////////
#ifndef BUNDLEBLDR_H
#define BUNDLEBLDR_H

//(*Headers(BUNDLEBLDR)
#include <wx/notebook.h>
#include <wx/sizer.h>
#include <wx/stattext.h>
#include <wx/textctrl.h>
#include <wx/checkbox.h>
#include <wx/listbox.h>
d475f4d6   Steve Greedy   SW1 Update to v1.0.1
51
#include <wx/radiobut.h>
886c558b   Steve Greedy   SACAMOS Public Re...
52
53
54
#include <wx/panel.h>
#include <wx/button.h>
#include <wx/dialog.h>
55800c8b   Steve Greedy   Update to SW1
55
#include <wx/spinbutt.h>
886c558b   Steve Greedy   SACAMOS Public Re...
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#include <wx/combobox.h>
//*)

// Additional wxWidgets Includes
#include <wx/dirctrl.h>
#include <wx/treectrl.h>

// Application Includes
#include "FileSelectorCtrl.h"
#include "UTILITIES.h"
#include "MESH_LAPLACE.h"
#include "MESH_PARAM.h"
#include "RUN_STATUS.h"

// Standard Library Header Files
#include <iostream>
#include <string>



class BundleDrawPane : public wxPanel
{

public:
    BundleDrawPane(wxFrame* parent);

    void paintEvent(wxPaintEvent & evt);
    void paintNow();

    void render(wxDC& dc);

    // some useful events
    /*
     void mouseMoved(wxMouseEvent& event);
     void mouseDown(wxMouseEvent& event);
     void mouseWheelMoved(wxMouseEvent& event);
     void mouseReleased(wxMouseEvent& event);
     void rightClick(wxMouseEvent& event);
     void mouseLeftWindow(wxMouseEvent& event);
     void keyPressed(wxKeyEvent& event);
     void keyReleased(wxKeyEvent& event);
     */

    DECLARE_EVENT_TABLE()
};


class BUNDLEBLDR: public wxDialog
{
	public:

		BUNDLEBLDR(wxWindow* parent,wxWindowID id=wxID_ANY,const wxPoint& pos=wxDefaultPosition,const wxSize& size=wxDefaultSize);
		void OnTreeSelectionChanged(wxTreeEvent& evt);
		void SetPathForDir(wxString, wxString );
		virtual ~BUNDLEBLDR();

        void paintNow();
        void render(wxDC&  dc);
55800c8b   Steve Greedy   Update to SW1
114
        void FormatPanel(double);
dd86ff43   Steve Greedy   Updates to SW1
115
        void DrawBundleCable(wxString, wxString, wxString, wxString);
886c558b   Steve Greedy   SACAMOS Public Re...
116
117

        void ConstructBundleCsection(wxString, wxString, wxString);
2e55c776   Steve Greedy   SW1_GUI Updates
118
        void DrawPanel();
886c558b   Steve Greedy   SACAMOS Public Re...
119
120
        void DrawBundleCsection();

dd86ff43   Steve Greedy   Updates to SW1
121
122
        void WriteBundleFile(wxString);

886c558b   Steve Greedy   SACAMOS Public Re...
123
124
125
126
127
128
        void OnListboxRDown(wxMouseEvent& event);
        void removeElement(int);
        void PopulateListControl(void);


        //wxGenericDirCtrl *tree;
00c8775f   Steve Greedy   Update SW1
129
        wxSpecificDirCtrl *tree2 = NULL; //NULL used to remain consistent with wxWidgets use of the standard NULL macro
886c558b   Steve Greedy   SACAMOS Public Re...
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150

		wxString PathToMOD;
		wxString MODname;

        struct Bundle
        {
            wxString x_offset;
            wxString y_offset;
            wxString rot_theta;
            wxString CableType;
            Bundle *next;
        };

        Bundle *bundle_root;
        Bundle *bundle_list;

        BundleDrawPane *drawPane;

        wxString MESH_PARAM1;
        wxString MESH_PARAM2;

dd86ff43   Steve Greedy   Updates to SW1
151
152
        int MeshSelected;

886c558b   Steve Greedy   SACAMOS Public Re...
153
154

		//(*Declarations(BUNDLEBLDR)
d475f4d6   Steve Greedy   SW1 Update to v1.0.1
155
156
		wxStaticText* StaticText10;
		wxStaticText* StaticText9;
886c558b   Steve Greedy   SACAMOS Public Re...
157
		wxTextCtrl* TextCtrl4;
d475f4d6   Steve Greedy   SW1 Update to v1.0.1
158
		wxRadioButton* RadioButton1;
886c558b   Steve Greedy   SACAMOS Public Re...
159
160
		wxPanel* Panel5;
		wxNotebook* Notebook1;
dd86ff43   Steve Greedy   Updates to SW1
161
		wxStaticText* StaticText13;
886c558b   Steve Greedy   SACAMOS Public Re...
162
163
		wxStaticText* StaticText2;
		wxPanel* Panel4;
dd86ff43   Steve Greedy   Updates to SW1
164
		wxStaticText* StaticText14;
d475f4d6   Steve Greedy   SW1 Update to v1.0.1
165
		wxRadioButton* RadioButton2;
886c558b   Steve Greedy   SACAMOS Public Re...
166
167
		wxButton* Button1;
		wxStaticText* StaticText6;
d475f4d6   Steve Greedy   SW1 Update to v1.0.1
168
		wxTextCtrl* TextCtrl6;
886c558b   Steve Greedy   SACAMOS Public Re...
169
		wxStaticText* StaticText8;
d475f4d6   Steve Greedy   SW1 Update to v1.0.1
170
		wxStaticText* StaticText11;
886c558b   Steve Greedy   SACAMOS Public Re...
171
172
173
174
		wxCheckBox* CheckBox3;
		wxCheckBox* CheckBox2;
		wxPanel* Panel1;
		wxStaticText* StaticText1;
d475f4d6   Steve Greedy   SW1 Update to v1.0.1
175
		wxStaticText* StaticText3;
886c558b   Steve Greedy   SACAMOS Public Re...
176
		wxButton* Button2;
d475f4d6   Steve Greedy   SW1 Update to v1.0.1
177
		wxPanel* Panel6;
886c558b   Steve Greedy   SACAMOS Public Re...
178
179
		wxCheckBox* CheckBox1;
		wxPanel* Panel3;
55800c8b   Steve Greedy   Update to SW1
180
		wxSpinButton* SpinButton1;
886c558b   Steve Greedy   SACAMOS Public Re...
181
		wxButton* Button3;
d475f4d6   Steve Greedy   SW1 Update to v1.0.1
182
		wxStaticText* StaticText5;
886c558b   Steve Greedy   SACAMOS Public Re...
183
		wxStaticText* StaticText7;
55800c8b   Steve Greedy   Update to SW1
184
		wxTextCtrl* TextCtrl8;
d475f4d6   Steve Greedy   SW1 Update to v1.0.1
185
186
		wxTextCtrl* TextCtrl2;
		wxCheckBox* CheckBox4;
886c558b   Steve Greedy   SACAMOS Public Re...
187
		wxComboBox* ComboBox1;
d475f4d6   Steve Greedy   SW1 Update to v1.0.1
188
		wxTextCtrl* TextCtrl7;
886c558b   Steve Greedy   SACAMOS Public Re...
189
		wxTextCtrl* TextCtrl1;
55800c8b   Steve Greedy   Update to SW1
190
		wxStaticText* StaticText12;
dd86ff43   Steve Greedy   Updates to SW1
191
		wxTextCtrl* TextCtrl9;
886c558b   Steve Greedy   SACAMOS Public Re...
192
193
		wxPanel* Panel2;
		wxTextCtrl* TextCtrl5;
d475f4d6   Steve Greedy   SW1 Update to v1.0.1
194
195
		wxStaticText* StaticText4;
		wxTextCtrl* TextCtrl3;
dd86ff43   Steve Greedy   Updates to SW1
196
		wxTextCtrl* TextCtrl10;
886c558b   Steve Greedy   SACAMOS Public Re...
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
		wxListBox* ListBox1;
		//*)

	protected:

		//(*Identifiers(BUNDLEBLDR)
		static const long ID_STATICTEXT1;
		static const long ID_TEXTCTRL1;
		static const long ID_PANEL2;
		static const long ID_LISTBOX1;
		static const long ID_PANEL3;
		static const long ID_CHECKBOX1;
		static const long ID_STATICTEXT2;
		static const long ID_PANEL4;
		static const long ID_CHECKBOX2;
		static const long ID_COMBOBOX1;
		static const long ID_CHECKBOX3;
		static const long ID_STATICTEXT6;
		static const long ID_STATICTEXT7;
		static const long ID_TEXTCTRL4;
		static const long ID_STATICTEXT8;
		static const long ID_TEXTCTRL5;
dd86ff43   Steve Greedy   Updates to SW1
219
220
221
222
		static const long ID_STATICTEXT13;
		static const long ID_TEXTCTRL9;
		static const long ID_STATICTEXT14;
		static const long ID_TEXTCTRL10;
886c558b   Steve Greedy   SACAMOS Public Re...
223
		static const long ID_PANEL5;
d475f4d6   Steve Greedy   SW1 Update to v1.0.1
224
225
226
227
228
229
230
231
232
233
234
235
236
237
		static const long ID_STATICTEXT11;
		static const long ID_CHECKBOX4;
		static const long ID_STATICTEXT3;
		static const long ID_TEXTCTRL2;
		static const long ID_STATICTEXT4;
		static const long ID_RADIOBUTTON1;
		static const long ID_RADIOBUTTON2;
		static const long ID_STATICTEXT5;
		static const long ID_TEXTCTRL3;
		static const long ID_STATICTEXT9;
		static const long ID_TEXTCTRL6;
		static const long ID_STATICTEXT10;
		static const long ID_TEXTCTRL7;
		static const long ID_PANEL6;
886c558b   Steve Greedy   SACAMOS Public Re...
238
239
240
241
242
		static const long ID_NOTEBOOK1;
		static const long ID_BUTTON1;
		static const long ID_BUTTON2;
		static const long ID_BUTTON3;
		static const long ID_PANEL1;
55800c8b   Steve Greedy   Update to SW1
243
244
245
		static const long ID_STATICTEXT12;
		static const long ID_TEXTCTRL8;
		static const long ID_SPINBUTTON1;
886c558b   Steve Greedy   SACAMOS Public Re...
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
		//*)

	private:
		//(*Handlers(BUNDLEBLDR)
		void OnButton2Click(wxCommandEvent& event);
		void OnButton3Click(wxCommandEvent& event);
		void OnPanel2Paint(wxPaintEvent& event);
		void OnCheckListBox1Toggled(wxCommandEvent& event);
		void OnPanel1Paint(wxPaintEvent& event);
		void OnButton1Click(wxCommandEvent& event);
		void OnButton2Click1(wxCommandEvent& event);
		void OnCheckBox1Click(wxCommandEvent& event);
		void OnCheckBox3Click(wxCommandEvent& event);
		void OnComboBox1Selected(wxCommandEvent& event);
		void OnTextCtrl4Text(wxCommandEvent& event);
		void OnInit(wxInitDialogEvent& event);
		void OnTextCtrl5Text(wxCommandEvent& event);
55800c8b   Steve Greedy   Update to SW1
263
264
265
266
267
		void OnSpinButton1Change(wxSpinEvent& event);
		void OnTextCtrl8Text(wxCommandEvent& event);
		void OnTextCtrl8TextEnter(wxCommandEvent& event);
		void OnSpinButton1ChangeUp(wxSpinEvent& event);
		void OnSpinButton1ChangeDown(wxSpinEvent& event);
2f8cca9d   Steve Greedy   Fix MOD display i...
268
		void OnCheckBox2Click(wxCommandEvent& event);
886c558b   Steve Greedy   SACAMOS Public Re...
269
270
271
272
273
274
275
276
		//*)

		void PopulateTheDirectoryTree ( wxString);

		DECLARE_EVENT_TABLE()
};

#endif