Blame view

GUI/SW1/SRC/SW1_GUIMain.cpp 21.4 KB
886c558b   Steve Greedy   SACAMOS Public Re...
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
45
46
/////////////////////////////////////////////////////////////////////////////////
//
// 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.
//
// Copyright (C) 2015 - 2017 University of Nottingham
//
// 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
//     SW1_GUIMain.cpp
//
// DESCRIPTION
//     Main application GUI for SACAMOS
//
// AUTHOR(S)
//     Steve Greedy
//
/////////////////////////////////////////////////////////////////////////////////


#include "SW1_GUIMain.h"


//(*InternalHeaders(SW1_GUIFrame)
886c558b   Steve Greedy   SACAMOS Public Re...
47
48
#include <wx/settings.h>
#include <wx/intl.h>
886c558b   Steve Greedy   SACAMOS Public Re...
49
50
51
52
53
54
55
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
114
115
116
117
118
119
120
121
122
123
#include <wx/string.h>
//*)

#define debug 0

//helper functions
enum wxbuildinfoformat
{
    short_f, long_f
};

wxString wxbuildinfo(wxbuildinfoformat format)
{
    wxString wxbuild(wxVERSION_STRING);

    if (format == long_f )
    {
#if defined(__WXMSW__)
        wxbuild << _T("-Windows");
#elif defined(__UNIX__)
        wxbuild << _T("-Linux");
#endif

#if wxUSE_UNICODE
        wxbuild << _T("-Unicode build");
#else
        wxbuild << _T("-ANSI build");
#endif // wxUSE_UNICODE
    }

    return wxbuild;
}

//(*IdInit(SW1_GUIFrame)
const long SW1_GUIFrame::ID_PANEL1 = wxNewId();
const long SW1_GUIFrame::ID_STATICBITMAP1 = wxNewId();
const long SW1_GUIFrame::ID_PANEL2 = wxNewId();
const long SW1_GUIFrame::ID_CREATEMOD = wxNewId();
const long SW1_GUIFrame::ID_SELECTMOD = wxNewId();
const long SW1_GUIFrame::ID_MENUITEM1 = wxNewId();
const long SW1_GUIFrame::ID_CYLINDRICAL = wxNewId();
const long SW1_GUIFrame::ID_COAX = wxNewId();
const long SW1_GUIFrame::ID_TWINAX = wxNewId();
const long SW1_GUIFrame::ID_UTP = wxNewId();
const long SW1_GUIFrame::ID_TP = wxNewId();
const long SW1_GUIFrame::ID_SPACEWIRE = wxNewId();
const long SW1_GUIFrame::ID_FLEX = wxNewId();
const long SW1_GUIFrame::ID_DSUB = wxNewId();
const long SW1_GUIFrame::ID_OVERSHIELD = wxNewId();
const long SW1_GUIFrame::ID_NEWBUNDLE = wxNewId();
const long SW1_GUIFrame::ID_EDITBUNDLE = wxNewId();
const long SW1_GUIFrame::ID_NEWSPICE = wxNewId();
const long SW1_GUIFrame::ID_MENUITEM2 = wxNewId();
const long SW1_GUIFrame::idMenuAbout = wxNewId();
const long SW1_GUIFrame::ID_STATUSBAR1 = wxNewId();
//*)

BEGIN_EVENT_TABLE(SW1_GUIFrame,wxFrame)
    //(*EventTable(SW1_GUIFrame)
    //*)
END_EVENT_TABLE()

SW1_GUIFrame::SW1_GUIFrame(wxWindow* parent,wxWindowID id)
{
    //(*Initialize(SW1_GUIFrame)
    wxStaticBoxSizer* StaticBoxSizer2;
    wxMenuItem* MenuItem2;
    wxMenuItem* MenuItem1;
    wxMenu* Menu1;
    wxMenuBar* MenuBar1;
    wxStaticBoxSizer* StaticBoxSizer1;
    wxFlexGridSizer* FlexGridSizer1;
    wxMenu* Menu2;

    Create(parent, wxID_ANY, _("SACAMOS"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_FRAME_STYLE, _T("wxID_ANY"));
886c558b   Steve Greedy   SACAMOS Public Re...
124
125
126
127
128
129
130
131
    FlexGridSizer1 = new wxFlexGridSizer(1, 2, 0, 5);
    FlexGridSizer1->AddGrowableCol(1);
    FlexGridSizer1->AddGrowableRow(0);
    StaticBoxSizer1 = new wxStaticBoxSizer(wxVERTICAL, this, _("MOD Browser"));
    Panel1 = new wxPanel(this, ID_PANEL1, wxDefaultPosition, wxSize(300,300), wxSIMPLE_BORDER|wxTAB_TRAVERSAL, _T("ID_PANEL1"));
    StaticBoxSizer1->Add(Panel1, 1, wxALL|wxEXPAND, 5);
    FlexGridSizer1->Add(StaticBoxSizer1, 0, wxALL|wxEXPAND, 5);
    StaticBoxSizer2 = new wxStaticBoxSizer(wxHORIZONTAL, this, wxEmptyString);
2a0d305e   Steve Greedy   Modifications to ...
132
    Panel2 = new wxPanel(this, ID_PANEL2, wxDefaultPosition, wxSize(600,600), wxSIMPLE_BORDER|wxTAB_TRAVERSAL|wxFULL_REPAINT_ON_RESIZE, _T("ID_PANEL2"));
886c558b   Steve Greedy   SACAMOS Public Re...
133
134
    Panel2->SetForegroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_ACTIVECAPTION));
    Panel2->SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
2a0d305e   Steve Greedy   Modifications to ...
135
    StaticBitmap1 = new wxStaticBitmap(Panel2, ID_STATICBITMAP1, wxNullBitmap, wxDefaultPosition, wxDefaultSize, wxNO_BORDER|wxFULL_REPAINT_ON_RESIZE, _T("ID_STATICBITMAP1"));
886c558b   Steve Greedy   SACAMOS Public Re...
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
    StaticBoxSizer2->Add(Panel2, 1, wxALL|wxEXPAND, 5);
    FlexGridSizer1->Add(StaticBoxSizer2, 2, wxALL|wxEXPAND, 5);
    SetSizer(FlexGridSizer1);
    MenuBar1 = new wxMenuBar();
    Menu1 = new wxMenu();
    Menu6 = new wxMenuItem(Menu1, ID_CREATEMOD, _("Create MOD"), wxEmptyString, wxITEM_NORMAL);
    Menu1->Append(Menu6);
    MenuItem3 = new wxMenuItem(Menu1, ID_SELECTMOD, _("Select MOD"), _("Browse to MOD root folder"), wxITEM_NORMAL);
    Menu1->Append(MenuItem3);
    Menu1->AppendSeparator();
    MenuItem1 = new wxMenuItem(Menu1, ID_MENUITEM1, _("&Quit\tAlt-F4"), _("Quit the application"), wxITEM_NORMAL);
    Menu1->Append(MenuItem1);
    MenuBar1->Append(Menu1, _("&File"));
    Menu3 = new wxMenu();
    MenuItem5 = new wxMenuItem(Menu3, ID_CYLINDRICAL, _("Cylindrical Cable"), wxEmptyString, wxITEM_NORMAL);
    Menu3->Append(MenuItem5);
    MenuItem4 = new wxMenuItem(Menu3, ID_COAX, _("Coaxial Cable"), wxEmptyString, wxITEM_NORMAL);
    Menu3->Append(MenuItem4);
    MenuItem6 = new wxMenuItem(Menu3, ID_TWINAX, _("Twinax Cable"), wxEmptyString, wxITEM_NORMAL);
    Menu3->Append(MenuItem6);
    MenuItem7 = new wxMenuItem(Menu3, ID_UTP, _("Twisted Pair Cable"), wxEmptyString, wxITEM_NORMAL);
    Menu3->Append(MenuItem7);
    MenuItem8 = new wxMenuItem(Menu3, ID_TP, _("Shielded Twisted Pair Cable"), wxEmptyString, wxITEM_NORMAL);
    Menu3->Append(MenuItem8);
    MenuItem9 = new wxMenuItem(Menu3, ID_SPACEWIRE, _("Spacewire"), wxEmptyString, wxITEM_NORMAL);
    Menu3->Append(MenuItem9);
    MenuItem11 = new wxMenuItem(Menu3, ID_FLEX, _("Flex Cable"), wxEmptyString, wxITEM_NORMAL);
    Menu3->Append(MenuItem11);
    MenuItem14 = new wxMenuItem(Menu3, ID_DSUB, _("D Sub Connector"), wxEmptyString, wxITEM_NORMAL);
    Menu3->Append(MenuItem14);
    MenuItem10 = new wxMenuItem(Menu3, ID_OVERSHIELD, _("Overshield"), wxEmptyString, wxITEM_NORMAL);
    Menu3->Append(MenuItem10);
    MenuBar1->Append(Menu3, _("Cable Model"));
    Menu4 = new wxMenu();
    MenuItem12 = new wxMenuItem(Menu4, ID_NEWBUNDLE, _("Create Bundle"), wxEmptyString, wxITEM_NORMAL);
    Menu4->Append(MenuItem12);
    MenuItem13 = new wxMenuItem(Menu4, ID_EDITBUNDLE, _("Edit Bundle"), wxEmptyString, wxITEM_NORMAL);
    Menu4->Append(MenuItem13);
    MenuItem13->Enable(false);
    MenuBar1->Append(Menu4, _("Bundle Model"));
    Menu5 = new wxMenu();
d475f4d6   Steve Greedy   SW1 Update to v1.0.1
177
    MenuItem16 = new wxMenuItem(Menu5, ID_NEWSPICE, _("Create Spice Bundle Model"), wxEmptyString, wxITEM_NORMAL);
886c558b   Steve Greedy   SACAMOS Public Re...
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
    Menu5->Append(MenuItem16);
    Menu5->AppendSeparator();
    Menu7 = new wxMenuItem(Menu5, ID_MENUITEM2, _("Export Spice Models"), wxEmptyString, wxITEM_NORMAL);
    Menu5->Append(Menu7);
    MenuBar1->Append(Menu5, _("Spice Model"));
    Menu2 = new wxMenu();
    MenuItem2 = new wxMenuItem(Menu2, idMenuAbout, _("About\tF1"), _("Show info about this application"), wxITEM_NORMAL);
    Menu2->Append(MenuItem2);
    MenuBar1->Append(Menu2, _("Help"));
    SetMenuBar(MenuBar1);
    StatusBar1 = new wxStatusBar(this, ID_STATUSBAR1, wxST_SIZEGRIP, _T("ID_STATUSBAR1"));
    int __wxStatusBarWidths_1[1] = { -1 };
    int __wxStatusBarStyles_1[1] = { wxSB_NORMAL };
    StatusBar1->SetFieldsCount(1,__wxStatusBarWidths_1);
    StatusBar1->SetStatusStyles(1,__wxStatusBarStyles_1);
    SetStatusBar(StatusBar1);
    DirDialog1 = new wxDirDialog(this, _("Select the MOD Directory"), wxEmptyString, wxDD_DEFAULT_STYLE|wxSIMPLE_BORDER, wxDefaultPosition, wxDefaultSize, _T("wxDirDialog"));
    FlexGridSizer1->Fit(this);
    FlexGridSizer1->SetSizeHints(this);

    Panel1->Connect(wxEVT_PAINT,(wxObjectEventFunction)&SW1_GUIFrame::OnPanel1Paint,0,this);
    Panel2->Connect(wxEVT_PAINT,(wxObjectEventFunction)&SW1_GUIFrame::OnPanel2Paint,0,this);
2a0d305e   Steve Greedy   Modifications to ...
200
201
    Connect(ID_CREATEMOD,wxEVT_COMMAND_MENU_SELECTED,(wxObjectEventFunction)&SW1_GUIFrame::OnCreateMOD);
    Connect(ID_SELECTMOD,wxEVT_COMMAND_MENU_SELECTED,(wxObjectEventFunction)&SW1_GUIFrame::OnSelectMOD);
886c558b   Steve Greedy   SACAMOS Public Re...
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
    Connect(ID_MENUITEM1,wxEVT_COMMAND_MENU_SELECTED,(wxObjectEventFunction)&SW1_GUIFrame::OnQuit);
    Connect(ID_CYLINDRICAL,wxEVT_COMMAND_MENU_SELECTED,(wxObjectEventFunction)&SW1_GUIFrame::OnCYLINDRICAL);
    Connect(ID_COAX,wxEVT_COMMAND_MENU_SELECTED,(wxObjectEventFunction)&SW1_GUIFrame::OnCOAXIAL);
    Connect(ID_TWINAX,wxEVT_COMMAND_MENU_SELECTED,(wxObjectEventFunction)&SW1_GUIFrame::OnTWINAX);
    Connect(ID_UTP,wxEVT_COMMAND_MENU_SELECTED,(wxObjectEventFunction)&SW1_GUIFrame::OnUTP);
    Connect(ID_TP,wxEVT_COMMAND_MENU_SELECTED,(wxObjectEventFunction)&SW1_GUIFrame::OnTP);
    Connect(ID_SPACEWIRE,wxEVT_COMMAND_MENU_SELECTED,(wxObjectEventFunction)&SW1_GUIFrame::OnSPACEWIRE);
    Connect(ID_FLEX,wxEVT_COMMAND_MENU_SELECTED,(wxObjectEventFunction)&SW1_GUIFrame::OnFLEXCABLE);
    Connect(ID_DSUB,wxEVT_COMMAND_MENU_SELECTED,(wxObjectEventFunction)&SW1_GUIFrame::OnDSUB);
    Connect(ID_OVERSHIELD,wxEVT_COMMAND_MENU_SELECTED,(wxObjectEventFunction)&SW1_GUIFrame::OnOVERSHIELD);
    Connect(ID_NEWBUNDLE,wxEVT_COMMAND_MENU_SELECTED,(wxObjectEventFunction)&SW1_GUIFrame::OnNEWBUNDLE);
    Connect(ID_NEWSPICE,wxEVT_COMMAND_MENU_SELECTED,(wxObjectEventFunction)&SW1_GUIFrame::OnCREATESPICE);
    Connect(ID_MENUITEM2,wxEVT_COMMAND_MENU_SELECTED,(wxObjectEventFunction)&SW1_GUIFrame::OnEXPORTSPICE);
    Connect(idMenuAbout,wxEVT_COMMAND_MENU_SELECTED,(wxObjectEventFunction)&SW1_GUIFrame::OnAbout);
    //*)

2a0d305e   Steve Greedy   Modifications to ...
218
219
220
221
222
223
224
225
    // Set frame icon here
    wxIcon FrameIcon;
    FrameIcon.CopyFromBitmap(wxBitmap(wxImage(_T("resources/spacewire_schematic_64x64.ico"))));
    SetIcon(FrameIcon);

    // Set main image
    StaticBitmap1->SetBitmap(wxBitmap(wxImage(_T("resources/Sacamos_Logo_v2.png"))));

886c558b   Steve Greedy   SACAMOS Public Re...
226
227
228
229
230
    // Disable Top Menu Items Until MOD location is chosen
    MenuBar1->EnableTop(MenuBar1->FindMenu(_("&Cable Model")),false);
    MenuBar1->EnableTop(MenuBar1->FindMenu(_("&Bundle Model")),false);
    MenuBar1->EnableTop(MenuBar1->FindMenu(_("&Spice Model")),false);

2a0d305e   Steve Greedy   Modifications to ...
231
232
    // Set status bar message text
    StatusBar1 -> SetStatusText(wxT("Please Select MOD Directory"));
886c558b   Steve Greedy   SACAMOS Public Re...
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
}

SW1_GUIFrame::~SW1_GUIFrame()
{
    //(*Destroy(SW1_GUIFrame)
    //*)
}

void SW1_GUIFrame::OnQuit(wxCommandEvent& event)
{
    //clean up temporary files
    clean_temp_files();
    Close();
}

void SW1_GUIFrame::OnAbout(wxCommandEvent& event)
{
    ABOUT *about = new ABOUT(this);
    about->ShowModal();
}

2a0d305e   Steve Greedy   Modifications to ...
254
void SW1_GUIFrame::OnSelectMOD(wxCommandEvent& event)
886c558b   Steve Greedy   SACAMOS Public Re...
255
256
257
258
259
260
261
262
263
264
{
    // Create a new wxDirDialog dialog
    wxDirDialog* dirDialog = new wxDirDialog(this);

    // Display the dialog and transfer the contents to
    // the wxTextCtrl on the main frame if the user
    // doesn't cancel
    if (dirDialog->ShowModal() == wxID_OK)
    {
        wxString selectedFile = dirDialog->GetPath();
2a0d305e   Steve Greedy   Modifications to ...
265
266

        SelectedFile = dirDialog->GetPath();
886c558b   Steve Greedy   SACAMOS Public Re...
267
268
269
        PathToMOD << dirDialog->GetPath();

        // Show the selected folder in the status bar
2a0d305e   Steve Greedy   Modifications to ...
270
        SetStatusText(SelectedFile, 0);
886c558b   Steve Greedy   SACAMOS Public Re...
271

2a0d305e   Steve Greedy   Modifications to ...
272
        PopulateTheDirectoryTree (SelectedFile);
886c558b   Steve Greedy   SACAMOS Public Re...
273
    }
886c558b   Steve Greedy   SACAMOS Public Re...
274
275
    dirDialog->Destroy();

1bcf33cb   Steve Greedy   Modifications to ...
276
277
278
    wxString separator(wxFileName::GetPathSeparator());

    wxStringTokenizer tkz(PathToMOD, separator);
886c558b   Steve Greedy   SACAMOS Public Re...
279
280
281
282
283

    while (tkz.HasMoreTokens())
    {
        MODname = tkz.GetNextToken();
    }
886c558b   Steve Greedy   SACAMOS Public Re...
284
285
}

2a0d305e   Steve Greedy   Modifications to ...
286
void SW1_GUIFrame::OnCreateMOD(wxCommandEvent& event)
886c558b   Steve Greedy   SACAMOS Public Re...
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
{
    // Create a new wxDirDialog dialog
    wxDirDialog* dirDialog = new wxDirDialog(this);

    // Display the dialog and transfer the contents to
    // the wxTextCtrl on the main frame if the user
    // doesn't cancel
    if (dirDialog->ShowModal() == wxID_OK)
    {
        wxString selectedFile = dirDialog->GetPath();
        PathToMOD << dirDialog->GetPath();

        wxStringTokenizer tkz(PathToMOD, wxT("/"));

        while (tkz.HasMoreTokens())
        {
            MODname = tkz.GetNextToken();
        }
886c558b   Steve Greedy   SACAMOS Public Re...
305
306
307
308
309
        wxString folder, dirName;

        folder = PathToMOD + "/CABLE";
        dirName = folder;
        if (!wxDirExists(dirName))
2a0d305e   Steve Greedy   Modifications to ...
310
            wxMkdir(dirName, 0);
886c558b   Steve Greedy   SACAMOS Public Re...
311
312
313
314

        folder = PathToMOD + "/BUNDLE";
        dirName = folder;
        if (!wxDirExists(dirName))
2a0d305e   Steve Greedy   Modifications to ...
315
            wxMkdir(dirName, 0);
886c558b   Steve Greedy   SACAMOS Public Re...
316
317
318
319

        folder = PathToMOD + "/SPICE";
        dirName = folder;
        if (!wxDirExists(dirName))
2a0d305e   Steve Greedy   Modifications to ...
320
            wxMkdir(dirName, 0);
886c558b   Steve Greedy   SACAMOS Public Re...
321
322
323
324

        folder = PathToMOD + "/SPICE/SYMBOL";
        dirName = folder;
        if (!wxDirExists(dirName))
2a0d305e   Steve Greedy   Modifications to ...
325
            wxMkdir(dirName, 0);
886c558b   Steve Greedy   SACAMOS Public Re...
326
327
328
329
330

        wxMenuBar* MenuBar1 = GetMenuBar();
        MenuBar1->EnableTop(MenuBar1->FindMenu(_("&Cable Model")),true);
        MenuBar1->EnableTop(MenuBar1->FindMenu(_("&Bundle Model")),true);
        MenuBar1->EnableTop(MenuBar1->FindMenu(_("&Spice Model")),true);
886c558b   Steve Greedy   SACAMOS Public Re...
331
332
333
334
335
336
337
338
339
340
    }
    dirDialog->Destroy();
}

void SW1_GUIFrame::PopulateTheDirectoryTree ( wxString RootFolder)
{
    int size_h, size_v;
    Panel1->GetSize(&size_h, &size_v );

    if (tree != NULL)
886c558b   Steve Greedy   SACAMOS Public Re...
341
342
343
344
345
346
347
        tree->Destroy();

    tree = (wxSpecificDirCtrl *) NULL;

    tree = new wxSpecificDirCtrl (Panel1, -1, RootFolder,
                                 wxDefaultPosition,
                                 wxSize(size_h,size_v),
2a0d305e   Steve Greedy   Modifications to ...
348
349
                                 wxSIMPLE_BORDER,
                                 "*.cable_spec;*.bundle_spec;*.spice_model_spec", 0,
886c558b   Steve Greedy   SACAMOS Public Re...
350
351
                                 _T("Directory Listing"));

2a0d305e   Steve Greedy   Modifications to ...
352
353
    //Connect tree item activated e.g. single click and tree item selected e.g. double click events
    Connect(tree->GetTreeCtrl()->GetId(),wxEVT_COMMAND_TREE_SEL_CHANGED , (wxObjectEventFunction) (wxEventFunction)(wxCommandEventFunction) &SW1_GUIFrame::OnTreeSelection);
886c558b   Steve Greedy   SACAMOS Public Re...
354
    Connect(tree->GetTreeCtrl()->GetId(),wxEVT_COMMAND_TREE_ITEM_ACTIVATED, (wxObjectEventFunction) (wxEventFunction)(wxCommandEventFunction) &SW1_GUIFrame::OnTreeSelectionChanged);
886c558b   Steve Greedy   SACAMOS Public Re...
355

2a0d305e   Steve Greedy   Modifications to ...
356
    //Activate Menu Items Once MOD Selected
886c558b   Steve Greedy   SACAMOS Public Re...
357
358
359
360
    wxMenuBar* MenuBar1 = GetMenuBar();
    MenuBar1->EnableTop(MenuBar1->FindMenu(_("&Cable Model")),true);
    MenuBar1->EnableTop(MenuBar1->FindMenu(_("&Bundle Model")),true);
    MenuBar1->EnableTop(MenuBar1->FindMenu(_("&Spice Model")),true);
886c558b   Steve Greedy   SACAMOS Public Re...
361
362
}

2a0d305e   Steve Greedy   Modifications to ...
363
void SW1_GUIFrame::OnTreeSelection(wxTreeEvent& evt)
886c558b   Steve Greedy   SACAMOS Public Re...
364
365
366
{
    wxFileName fname (tree->GetFilePath());
    wxString File_Path         = fname.GetPath();
2a0d305e   Steve Greedy   Modifications to ...
367
    wxString File_FullName     = fname.GetFullName();
886c558b   Steve Greedy   SACAMOS Public Re...
368
369
370
371
    wxString File_FullNamePath = fname.GetFullPath();

    StaticBitmap1->Hide();

2a0d305e   Steve Greedy   Modifications to ...
372
    SetStatusText(File_FullName, 0);
886c558b   Steve Greedy   SACAMOS Public Re...
373

2a0d305e   Steve Greedy   Modifications to ...
374
375
    if(File_FullName.substr(File_FullName.find_last_of(".") + 1) == "cable_spec")
    {
886c558b   Steve Greedy   SACAMOS Public Re...
376
377
378
379
         draw_cable(Panel2,File_FullNamePath, 0, 0);
    }

    else
886c558b   Steve Greedy   SACAMOS Public Re...
380

2a0d305e   Steve Greedy   Modifications to ...
381
382
    if(File_FullName.substr(File_FullName.find_last_of(".") + 1) == "bundle_spec")
    {
886c558b   Steve Greedy   SACAMOS Public Re...
383
384
385
386
         draw_bundle(Panel2, PathToMOD, File_FullNamePath);
    }
}

2a0d305e   Steve Greedy   Modifications to ...
387
388

void SW1_GUIFrame::OnTreeSelectionChanged(wxTreeEvent& evt)
886c558b   Steve Greedy   SACAMOS Public Re...
389
{
2a0d305e   Steve Greedy   Modifications to ...
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
    wxFileName fname (tree->GetFilePath());
    wxString File_Path         = fname.GetPath();
    wxString File_FullName     = fname.GetFullName();
    wxString File_FullNamePath = fname.GetFullPath();

    SetStatusText(File_FullName, 0);

    StaticBitmap1->Hide();

    if(File_FullName.substr(File_FullName.find_last_of(".") + 1) == "cable_spec")
    {
        std::ifstream cableFile;
        cableFile.open (File_FullNamePath);

        std::string str;
886c558b   Steve Greedy   SACAMOS Public Re...
405

2a0d305e   Steve Greedy   Modifications to ...
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
        std::getline(cableFile, str);
        std::getline(cableFile, str);
        std::getline(cableFile, str);

        if (str == "Cylindrical")
        {
            Edit = true;
            CreateCable ("Cylindrical", File_FullName, Edit);
        }

        if (str == "Coax")
        {
            Edit = true;
            CreateCable ("Coaxial", File_FullName, Edit);
        }

        if (str == "Twinax")
        {
            Edit = true;
            CreateCable ("Twinax", File_FullName, Edit);
        }

        if (str == "Twisted_pair")
        {
            Edit = true;
            CreateCable ("UTP", File_FullName, Edit);
        }

        if (str == "Shielded_twisted_pair")
        {
            Edit = true;
            CreateCable ("TP", File_FullName, Edit);
        }

        if (str == "Spacewire")
        {
            Edit = true;
            CreateCable ("Spacewire", File_FullName, Edit);
        }

        if (str == "Overshield")
        {
            Edit = true;
            CreateCable ("Overshield", File_FullName, Edit);
        }

        if (str == "Dconnector")
        {
            Edit = true;
            CreateCable ("Dsub", File_FullName, Edit);
        }

        if (str == "Flex_cable")
        {
            Edit = true;
            CreateCable ("Flexcable", File_FullName, Edit);
        }
    }
}

void SW1_GUIFrame::CreateCable(wxString CableType, wxString CableFile, bool Edit)
{
    int cable;

    if (CableType == "Cylindrical") cable = 1;
    if (CableType == "Coaxial")     cable = 2;
    if (CableType == "Twinax")      cable = 3;
    if (CableType == "UTP")         cable = 4;
    if (CableType == "TP")          cable = 5;
    if (CableType == "Spacewire")   cable = 6;
    if (CableType == "Overshield")  cable = 7;
    if (CableType == "Flexcable")   cable = 8;
    if (CableType == "Dsub")        cable = 9;

    switch (cable)
    {
        case 1:
            {
            CYLINDRICAL *cylindrical = new CYLINDRICAL(this);
            cylindrical->SetPathToMOD(PathToMOD, MODname);
            cylindrical->EDIT_EXISTING = Edit;
            cylindrical->ShowModal();
            break;
            }

        case 2:
            {
            COAXIAL *coaxial = new COAXIAL(this);
            coaxial->SetPathToMOD(PathToMOD, MODname);
            coaxial->EDIT_EXISTING = Edit;
            coaxial->ShowModal();
            break;
            }

        case 3:
            {
            TWINAX *twinax = new TWINAX(this);
            twinax->SetPathToMOD(PathToMOD, MODname);
            twinax->EDIT_EXISTING = Edit;
            twinax->ShowModal();
            break;
            }

        case 4:
            {
            UTP *utp = new UTP(this);
            utp->SetPathToMOD(PathToMOD, MODname);
            utp->EDIT_EXISTING = Edit;
            utp->ShowModal();
            break;
            }

        case 5:
            {
            TP *tp = new TP(this);
            tp->SetPathToMOD(PathToMOD, MODname);
            tp->EDIT_EXISTING = Edit;
            tp->ShowModal();
            break;
            }

        case 6:
            {
            SPACEWIRE *spacewire = new SPACEWIRE(this);
            spacewire->SetPathToMOD(PathToMOD, MODname);
            spacewire->EDIT_EXISTING = Edit;
            spacewire->ShowModal();
            break;
            }

        case 7:
            {
            OVERSHIELD *overshield = new OVERSHIELD(this);
            overshield->SetPathToMOD(PathToMOD, MODname);
            overshield->EDIT_EXISTING = Edit;
            overshield->ShowModal();
            break;
            }

        case 8:
            {
            FLEXCABLE *flexcable = new FLEXCABLE(this);
            flexcable->SetPathToMOD(PathToMOD, MODname);
            flexcable->EDIT_EXISTING = Edit;
            flexcable->ShowModal();
            break;
            }


        case 9:
            {
            DCONN *dsub = new DCONN(this);
            dsub->SetPathToMOD(PathToMOD, MODname);
            dsub->EDIT_EXISTING = Edit;
            dsub->ShowModal();
            break;
            }
    }
}

void SW1_GUIFrame::OnCYLINDRICAL(wxCommandEvent& event)
{
    Edit = false;
    CreateCable ("Cylindrical", "", Edit);
886c558b   Steve Greedy   SACAMOS Public Re...
570
571
572
573
}

void SW1_GUIFrame::OnCOAXIAL(wxCommandEvent& event)
{
2a0d305e   Steve Greedy   Modifications to ...
574
575
    Edit = false;
    CreateCable ("Coaxial", "", Edit);
886c558b   Steve Greedy   SACAMOS Public Re...
576
577
578
579
}

void SW1_GUIFrame::OnTWINAX(wxCommandEvent& event)
{
2a0d305e   Steve Greedy   Modifications to ...
580
581
    Edit = false;
    CreateCable ("Twinax", "", Edit);
886c558b   Steve Greedy   SACAMOS Public Re...
582
583
584
585
}

void SW1_GUIFrame::OnUTP(wxCommandEvent& event)
{
2a0d305e   Steve Greedy   Modifications to ...
586
587
    Edit = false;
    CreateCable ("UTP", "", Edit);
886c558b   Steve Greedy   SACAMOS Public Re...
588
589
590
591
}

void SW1_GUIFrame::OnTP(wxCommandEvent& event)
{
2a0d305e   Steve Greedy   Modifications to ...
592
593
    Edit = false;
    CreateCable ("TP", "", Edit);
886c558b   Steve Greedy   SACAMOS Public Re...
594
595
596
597
}

void SW1_GUIFrame::OnSPACEWIRE(wxCommandEvent& event)
{
2a0d305e   Steve Greedy   Modifications to ...
598
599
    Edit = false;
    CreateCable ("Spacewire", "", Edit);
886c558b   Steve Greedy   SACAMOS Public Re...
600
601
602
603
}

void SW1_GUIFrame::OnOVERSHIELD(wxCommandEvent& event)
{
2a0d305e   Steve Greedy   Modifications to ...
604
605
    Edit = false;
    CreateCable ("Overshield", "", Edit);
886c558b   Steve Greedy   SACAMOS Public Re...
606
607
608
609
}

void SW1_GUIFrame::OnFLEXCABLE(wxCommandEvent& event)
{
2a0d305e   Steve Greedy   Modifications to ...
610
611
    Edit = false;
    CreateCable ("Flexcable", "", Edit);
886c558b   Steve Greedy   SACAMOS Public Re...
612
613
614
615
}

void SW1_GUIFrame::OnDSUB(wxCommandEvent& event)
{
2a0d305e   Steve Greedy   Modifications to ...
616
617
    Edit = false;
    CreateCable ("Dsub", "", Edit);
886c558b   Steve Greedy   SACAMOS Public Re...
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
}

void SW1_GUIFrame::OnNEWBUNDLE(wxCommandEvent& event)
{
    BUNDLEBLDR *bundle = new BUNDLEBLDR(this);
    bundle->SetPathForDir(PathToMOD, MODname);
    bundle->ShowModal();
}

void SW1_GUIFrame::OnCREATESPICE(wxCommandEvent& event)
{
    SPICEMODEL *spice = new SPICEMODEL(this);
    spice->SetPathForDir(PathToMOD, MODname);
    spice->ShowModal();
}

void SW1_GUIFrame::OnEXPORTSPICE(wxCommandEvent& event)
{
    EXPORT_SPICE *exportspice = new EXPORT_SPICE(this);
    exportspice->SetPathToMOD(PathToMOD, MODname);
    exportspice->ShowModal();
}

void SW1_GUIFrame::OnPanel1Paint(wxPaintEvent& event)
{
2a0d305e   Steve Greedy   Modifications to ...
643
644
645
646
647
    if (tree != NULL){
        int size_h, size_v;
        Panel1->GetSize(&size_h, &size_v );
        tree->SetSize(size_h,size_v);
    }
886c558b   Steve Greedy   SACAMOS Public Re...
648
}
2a0d305e   Steve Greedy   Modifications to ...
649

886c558b   Steve Greedy   SACAMOS Public Re...
650
651
652
653
void SW1_GUIFrame::OnPanel2Paint(wxPaintEvent& event)
{

}