Commit 55800c8b903e3a1973913999bc6fbc256787c985

Authored by Steve Greedy
1 parent a0787b12

Update to SW1

Implement re-scaling of bundle schematic.

Minor bug fixes
GUI/SW1/SRC/BUNDLEBLDR.cpp
@@ -97,6 +97,9 @@ const long BUNDLEBLDR::ID_BUTTON1 = wxNewId(); @@ -97,6 +97,9 @@ const long BUNDLEBLDR::ID_BUTTON1 = wxNewId();
97 const long BUNDLEBLDR::ID_BUTTON2 = wxNewId(); 97 const long BUNDLEBLDR::ID_BUTTON2 = wxNewId();
98 const long BUNDLEBLDR::ID_BUTTON3 = wxNewId(); 98 const long BUNDLEBLDR::ID_BUTTON3 = wxNewId();
99 const long BUNDLEBLDR::ID_PANEL1 = wxNewId(); 99 const long BUNDLEBLDR::ID_PANEL1 = wxNewId();
  100 +const long BUNDLEBLDR::ID_STATICTEXT12 = wxNewId();
  101 +const long BUNDLEBLDR::ID_TEXTCTRL8 = wxNewId();
  102 +const long BUNDLEBLDR::ID_SPINBUTTON1 = wxNewId();
100 //*) 103 //*)
101 104
102 BEGIN_EVENT_TABLE(BUNDLEBLDR,wxDialog) 105 BEGIN_EVENT_TABLE(BUNDLEBLDR,wxDialog)
@@ -107,6 +110,7 @@ END_EVENT_TABLE() @@ -107,6 +110,7 @@ END_EVENT_TABLE()
107 BUNDLEBLDR::BUNDLEBLDR(wxWindow* parent,wxWindowID id,const wxPoint& pos,const wxSize& size) 110 BUNDLEBLDR::BUNDLEBLDR(wxWindow* parent,wxWindowID id,const wxPoint& pos,const wxSize& size)
108 { 111 {
109 //(*Initialize(BUNDLEBLDR) 112 //(*Initialize(BUNDLEBLDR)
  113 + wxBoxSizer* BoxSizer4;
110 wxStaticBoxSizer* StaticBoxSizer2; 114 wxStaticBoxSizer* StaticBoxSizer2;
111 wxBoxSizer* BoxSizer6; 115 wxBoxSizer* BoxSizer6;
112 wxFlexGridSizer* FlexGridSizer4; 116 wxFlexGridSizer* FlexGridSizer4;
@@ -251,10 +255,19 @@ BUNDLEBLDR::BUNDLEBLDR(wxWindow* parent,wxWindowID id,const wxPoint& pos,const w @@ -251,10 +255,19 @@ BUNDLEBLDR::BUNDLEBLDR(wxWindow* parent,wxWindowID id,const wxPoint& pos,const w
251 BoxSizer1->Add(Button3, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5); 255 BoxSizer1->Add(Button3, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
252 StaticBoxSizer4->Add(BoxSizer1, 1, wxALL, 5); 256 StaticBoxSizer4->Add(BoxSizer1, 1, wxALL, 5);
253 FlexGridSizer1->Add(StaticBoxSizer4, 3, wxALL|wxEXPAND, 5); 257 FlexGridSizer1->Add(StaticBoxSizer4, 3, wxALL|wxEXPAND, 5);
254 - StaticBoxSizer1 = new wxStaticBoxSizer(wxHORIZONTAL, this, _("2D Cross Section")); 258 + StaticBoxSizer1 = new wxStaticBoxSizer(wxVERTICAL, this, _("2D Cross Section"));
255 Panel1 = new wxPanel(this, ID_PANEL1, wxDefaultPosition, wxSize(500,500), wxTAB_TRAVERSAL, _T("ID_PANEL1")); 259 Panel1 = new wxPanel(this, ID_PANEL1, wxDefaultPosition, wxSize(500,500), wxTAB_TRAVERSAL, _T("ID_PANEL1"));
256 Panel1->SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW)); 260 Panel1->SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW));
257 - StaticBoxSizer1->Add(Panel1, 1, wxALL|wxEXPAND, 5); 261 + StaticBoxSizer1->Add(Panel1, 9, wxALL|wxEXPAND, 5);
  262 + BoxSizer4 = new wxBoxSizer(wxHORIZONTAL);
  263 + StaticText12 = new wxStaticText(this, ID_STATICTEXT12, _("Cross Section xmax, ymax (m) = "), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT12"));
  264 + BoxSizer4->Add(StaticText12, 4, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
  265 + TextCtrl8 = new wxTextCtrl(this, ID_TEXTCTRL8, _("0.030"), wxDefaultPosition, wxDefaultSize, wxTE_PROCESS_ENTER, wxDefaultValidator, _T("ID_TEXTCTRL8"));
  266 + BoxSizer4->Add(TextCtrl8, 4, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
  267 + SpinButton1 = new wxSpinButton(this, ID_SPINBUTTON1, wxDefaultPosition, wxDefaultSize, wxSP_VERTICAL|wxSP_ARROW_KEYS, _T("ID_SPINBUTTON1"));
  268 + SpinButton1->SetRange(0, 100);
  269 + BoxSizer4->Add(SpinButton1, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
  270 + StaticBoxSizer1->Add(BoxSizer4, 1, wxALL, 5);
258 FlexGridSizer1->Add(StaticBoxSizer1, 1, wxALL, 5); 271 FlexGridSizer1->Add(StaticBoxSizer1, 1, wxALL, 5);
259 SetSizer(FlexGridSizer1); 272 SetSizer(FlexGridSizer1);
260 FlexGridSizer1->Fit(this); 273 FlexGridSizer1->Fit(this);
@@ -270,6 +283,10 @@ BUNDLEBLDR::BUNDLEBLDR(wxWindow* parent,wxWindowID id,const wxPoint& pos,const w @@ -270,6 +283,10 @@ BUNDLEBLDR::BUNDLEBLDR(wxWindow* parent,wxWindowID id,const wxPoint& pos,const w
270 Connect(ID_BUTTON2,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&BUNDLEBLDR::OnButton2Click); 283 Connect(ID_BUTTON2,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&BUNDLEBLDR::OnButton2Click);
271 Connect(ID_BUTTON3,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&BUNDLEBLDR::OnButton3Click); 284 Connect(ID_BUTTON3,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&BUNDLEBLDR::OnButton3Click);
272 Panel1->Connect(wxEVT_PAINT,(wxObjectEventFunction)&BUNDLEBLDR::OnPanel1Paint,0,this); 285 Panel1->Connect(wxEVT_PAINT,(wxObjectEventFunction)&BUNDLEBLDR::OnPanel1Paint,0,this);
  286 + Connect(ID_TEXTCTRL8,wxEVT_COMMAND_TEXT_ENTER,(wxObjectEventFunction)&BUNDLEBLDR::OnTextCtrl8TextEnter);
  287 + Connect(ID_SPINBUTTON1,wxEVT_SCROLL_THUMBTRACK,(wxObjectEventFunction)&BUNDLEBLDR::OnSpinButton1Change);
  288 + Connect(ID_SPINBUTTON1,wxEVT_SCROLL_LINEUP,(wxObjectEventFunction)&BUNDLEBLDR::OnSpinButton1ChangeUp);
  289 + Connect(ID_SPINBUTTON1,wxEVT_SCROLL_LINEDOWN,(wxObjectEventFunction)&BUNDLEBLDR::OnSpinButton1ChangeDown);
273 Connect(wxID_ANY,wxEVT_INIT_DIALOG,(wxObjectEventFunction)&BUNDLEBLDR::OnInit); 290 Connect(wxID_ANY,wxEVT_INIT_DIALOG,(wxObjectEventFunction)&BUNDLEBLDR::OnInit);
274 //*) 291 //*)
275 292
@@ -452,7 +469,13 @@ void BUNDLEBLDR::OnCheckListBox1Toggled(wxCommandEvent& event) @@ -452,7 +469,13 @@ void BUNDLEBLDR::OnCheckListBox1Toggled(wxCommandEvent& event)
452 469
453 void BUNDLEBLDR::OnPanel1Paint(wxPaintEvent& event) 470 void BUNDLEBLDR::OnPanel1Paint(wxPaintEvent& event)
454 { 471 {
455 - FormatPanel("temp"); 472 + double maxDimension;
  473 +
  474 + wxString maxXY = TextCtrl8->GetValue();
  475 +
  476 + maxXY.ToDouble(&maxDimension);
  477 +
  478 + FormatPanel(maxDimension);
456 } 479 }
457 480
458 void BUNDLEBLDR::DrawBundleCsection() 481 void BUNDLEBLDR::DrawBundleCsection()
@@ -475,11 +498,15 @@ void BUNDLEBLDR::DrawBundleCsection() @@ -475,11 +498,15 @@ void BUNDLEBLDR::DrawBundleCsection()
475 498
476 499
477 // BUNDLE GRAPHICAL SCHEMATIC - SET UP PANEL 500 // BUNDLE GRAPHICAL SCHEMATIC - SET UP PANEL
478 -void BUNDLEBLDR::FormatPanel(wxString TheFileNameToDraw) 501 +void BUNDLEBLDR::FormatPanel(double maxDimension)
  502 +
479 { 503 {
480 int size_h, size_v; 504 int size_h, size_v;
481 Panel1->GetSize(&size_h, &size_v ); 505 Panel1->GetSize(&size_h, &size_v );
482 506
  507 + wxString scale;
  508 + scale << maxDimension/2.0;
  509 +
483 wxClientDC dc(Panel1); 510 wxClientDC dc(Panel1);
484 dc.Clear(); 511 dc.Clear();
485 512
@@ -500,11 +527,20 @@ void BUNDLEBLDR::FormatPanel(wxString TheFileNameToDraw) @@ -500,11 +527,20 @@ void BUNDLEBLDR::FormatPanel(wxString TheFileNameToDraw)
500 dc.DrawLine( 5, size_v-10, 5, size_v-35); 527 dc.DrawLine( 5, size_v-10, 5, size_v-35);
501 dc.DrawText("y", 10, size_v-45); 528 dc.DrawText("y", 10, size_v-45);
502 dc.DrawText("x", 30, size_v-25); 529 dc.DrawText("x", 30, size_v-25);
  530 +
  531 + dc.SetTextForeground(*wxBLUE);
  532 +
  533 + dc.DrawLine( size_h/2, size_v-50, size_h-size_h/4, size_v-50 );
  534 + dc.DrawLine( size_h/2, size_v-50, size_h/2, size_v-40 );
  535 + dc.DrawLine( size_h-size_h/4, size_v-50, size_h-size_h/4, size_v-40 );
  536 +
  537 + dc.DrawText("scale (m)", (size_h/2+50), size_v-70);
  538 + dc.DrawText(scale, (size_h/2+55), size_v-40);
503 } 539 }
504 540
505 void BUNDLEBLDR::DrawBundleCable(wxString cable, wxString x, wxString y) 541 void BUNDLEBLDR::DrawBundleCable(wxString cable, wxString x, wxString y)
506 { 542 {
507 - double xCoord, yCoord; 543 + double xCoord, yCoord, maxDimension;
508 544
509 x.ToDouble(&xCoord); 545 x.ToDouble(&xCoord);
510 y.ToDouble(&yCoord); 546 y.ToDouble(&yCoord);
@@ -533,21 +569,25 @@ void BUNDLEBLDR::DrawBundleCable(wxString cable, wxString x, wxString y) @@ -533,21 +569,25 @@ void BUNDLEBLDR::DrawBundleCable(wxString cable, wxString x, wxString y)
533 float scaleFactor = (size_h/2 * 1.0); 569 float scaleFactor = (size_h/2 * 1.0);
534 //float maxHdimension; 570 //float maxHdimension;
535 //float maxVdimension; 571 //float maxVdimension;
536 - float maxDimension; 572 + //float maxDimension;
537 573
538 - maxDimension = 0.015; //metres 574 + //maxDimension = 0.015; //metres
539 575
540 - wxString scale;  
541 - scale << maxDimension/2.0; 576 + wxString maxXY = TextCtrl8->GetValue();
542 577
543 - dc.SetTextForeground(*wxBLUE); 578 + maxXY.ToDouble(&maxDimension);
544 579
545 - dc.DrawLine( size_h/2, size_v-50, size_h-size_h/4, size_v-50 );  
546 - dc.DrawLine( size_h/2, size_v-50, size_h/2, size_v-40 );  
547 - dc.DrawLine( size_h-size_h/4, size_v-50, size_h-size_h/4, size_v-40 ); 580 +// wxString scale;
  581 +// scale << maxDimension/2.0;
548 582
549 - dc.DrawText("scale (m)", (size_h/2+50), size_v-70);  
550 - dc.DrawText(scale, (size_h/2+55), size_v-40); 583 +// dc.SetTextForeground(*wxBLUE);
  584 +//
  585 +// dc.DrawLine( size_h/2, size_v-50, size_h-size_h/4, size_v-50 );
  586 +// dc.DrawLine( size_h/2, size_v-50, size_h/2, size_v-40 );
  587 +// dc.DrawLine( size_h-size_h/4, size_v-50, size_h-size_h/4, size_v-40 );
  588 +//
  589 +// dc.DrawText("scale (m)", (size_h/2+50), size_v-70);
  590 +// dc.DrawText(scale, (size_h/2+55), size_v-40);
551 591
552 if (str.compare("Cylindrical") == 0 ){ 592 if (str.compare("Cylindrical") == 0 ){
553 593
@@ -893,7 +933,7 @@ void BUNDLEBLDR::DrawBundleCable(wxString cable, wxString x, wxString y) @@ -893,7 +933,7 @@ void BUNDLEBLDR::DrawBundleCable(wxString cable, wxString x, wxString y)
893 933
894 dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); 934 dc.SetPen( wxPen( wxColor(0,0,0),1 ) );
895 dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH)); 935 dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH));
896 - dc.DrawCircle( wxPoint(size_h/2,(size_v/2-shielded_twisted_pair_Scaledradius-inner_conductor_Scaledseparation/2)), inner_dielectric_Scaledradius ); 936 + dc.DrawCircle( wxPoint(size_h/2,(size_v/2-shielded_twisted_pair_Scaledradius+inner_conductor_Scaledseparation/2)), inner_dielectric_Scaledradius );
897 937
898 dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); 938 dc.SetPen( wxPen( wxColor(0,0,0),1 ) );
899 dc.SetBrush(wxBrush(*wxBLACK, wxSOLID)); 939 dc.SetBrush(wxBrush(*wxBLACK, wxSOLID));
@@ -923,7 +963,7 @@ void BUNDLEBLDR::DrawBundleCable(wxString cable, wxString x, wxString y) @@ -923,7 +963,7 @@ void BUNDLEBLDR::DrawBundleCable(wxString cable, wxString x, wxString y)
923 963
924 dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); 964 dc.SetPen( wxPen( wxColor(0,0,0),1 ) );
925 dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH)); 965 dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH));
926 - dc.DrawCircle( wxPoint((size_h/2-shielded_twisted_pair_Scaledradius-inner_conductor_Scaledseparation/2),size_v/2), inner_dielectric_Scaledradius ); 966 + dc.DrawCircle( wxPoint((size_h/2-shielded_twisted_pair_Scaledradius+inner_conductor_Scaledseparation/2),size_v/2), inner_dielectric_Scaledradius );
927 967
928 dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); 968 dc.SetPen( wxPen( wxColor(0,0,0),1 ) );
929 dc.SetBrush(wxBrush(*wxBLACK, wxSOLID)); 969 dc.SetBrush(wxBrush(*wxBLACK, wxSOLID));
@@ -981,7 +1021,7 @@ void BUNDLEBLDR::DrawBundleCable(wxString cable, wxString x, wxString y) @@ -981,7 +1021,7 @@ void BUNDLEBLDR::DrawBundleCable(wxString cable, wxString x, wxString y)
981 1021
982 dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); 1022 dc.SetPen( wxPen( wxColor(0,0,0),1 ) );
983 dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH)); 1023 dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH));
984 - dc.DrawCircle( wxPoint((size_h/2+shielded_twisted_pair_Scaledradius-inner_conductor_Scaledseparation/2),size_v/2), inner_dielectric_Scaledradius ); 1024 + dc.DrawCircle( wxPoint((size_h/2+shielded_twisted_pair_Scaledradius+inner_conductor_Scaledseparation/2),size_v/2), inner_dielectric_Scaledradius );
985 1025
986 dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); 1026 dc.SetPen( wxPen( wxColor(0,0,0),1 ) );
987 dc.SetBrush(wxBrush(*wxBLACK, wxSOLID)); 1027 dc.SetBrush(wxBrush(*wxBLACK, wxSOLID));
@@ -1282,43 +1322,31 @@ void BUNDLEBLDR::OnButton2Click(wxCommandEvent&amp; event) @@ -1282,43 +1322,31 @@ void BUNDLEBLDR::OnButton2Click(wxCommandEvent&amp; event)
1282 1322
1283 if (CheckBox2->GetValue()) 1323 if (CheckBox2->GetValue())
1284 { 1324 {
1285 - // Identify all mesh files for viewing  
1286 - //struct _finddata_t fileinfo;  
1287 - //long hFile;  
1288 - wxString meshFileName = "*.msh.vtk";  
1289 -  
1290 - //wxString pattern((meshFileName));  
1291 - wxString pattern((".msh.vtk")); 1325 + wxString pattern(("*.msh.vtk"));
1292 wxString file; 1326 wxString file;
1293 1327
1294 ComboBox1->Clear(); 1328 ComboBox1->Clear();
1295 1329
1296 file = wxFindFirstFile(pattern); 1330 file = wxFindFirstFile(pattern);
  1331 +
1297 while ( !file.empty()) 1332 while ( !file.empty())
1298 { 1333 {
1299 - wxString meshfile = file;  
1300 - size_t extindex = meshfile.find_first_of ("."); 1334 + wxString meshfile = file;
1301 1335
1302 - meshfile = meshfile.substr(0, extindex); 1336 + size_t extindex = meshfile.find_last_of (".");
1303 1337
1304 - ComboBox1->Append(meshfile);  
1305 - } 1338 + meshfile = meshfile.substr(0, extindex);
1306 1339
1307 -// if (( hFile = _findfirst( pattern, &fileinfo )) != -1 )  
1308 -// {  
1309 -// do  
1310 -// {  
1311 -// wxString meshfile = fileinfo.name;  
1312 -// size_t extindex = meshfile.find_first_of (".");  
1313 -//  
1314 -// meshfile = meshfile.substr(0, extindex);  
1315 -//  
1316 -// ComboBox1->Append(meshfile);  
1317 -//  
1318 -// } while ( _findnext( hFile, &fileinfo) == 0);  
1319 -// }  
1320 -// _findclose( hFile); 1340 + extindex = meshfile.find_last_of (".");
  1341 +
  1342 + meshfile = meshfile.substr(0, extindex);
1321 1343
  1344 + meshfile = meshfile.substr(2,meshfile.length());
  1345 +
  1346 + ComboBox1->Append(meshfile);
  1347 +
  1348 + file = wxFindNextFile();
  1349 + }
1322 CheckBox3->Enable(); 1350 CheckBox3->Enable();
1323 } 1351 }
1324 } 1352 }
@@ -1379,3 +1407,75 @@ void BUNDLEBLDR::OnTextCtrl5Text(wxCommandEvent&amp; event) @@ -1379,3 +1407,75 @@ void BUNDLEBLDR::OnTextCtrl5Text(wxCommandEvent&amp; event)
1379 int IsError = 0; 1407 int IsError = 0;
1380 check_is_numeric(TextCtrl5, &IsError); 1408 check_is_numeric(TextCtrl5, &IsError);
1381 } 1409 }
  1410 +
  1411 +void BUNDLEBLDR::OnSpinButton1Change(wxSpinEvent& event)
  1412 +{
  1413 +
  1414 + double maxDimension;
  1415 +
  1416 + wxString maxXY = TextCtrl8->GetValue();
  1417 +
  1418 + maxXY.ToDouble(&maxDimension);
  1419 +
  1420 + FormatPanel(maxDimension);
  1421 +
  1422 + DrawBundleCsection();
  1423 +}
  1424 +
  1425 +void BUNDLEBLDR::OnTextCtrl8TextEnter(wxCommandEvent& event)
  1426 +{
  1427 + double maxDimension;
  1428 +
  1429 + wxString maxXY = TextCtrl8->GetValue();
  1430 +
  1431 + maxXY.ToDouble(&maxDimension);
  1432 +
  1433 + FormatPanel(maxDimension);
  1434 +
  1435 + DrawBundleCsection();
  1436 +
  1437 +}
  1438 +
  1439 +void BUNDLEBLDR::OnSpinButton1ChangeUp(wxSpinEvent& event)
  1440 +{
  1441 + double maxDimension;
  1442 +
  1443 + wxString maxXY = TextCtrl8->GetValue();
  1444 +
  1445 + maxXY.ToDouble(&maxDimension);
  1446 +
  1447 + maxDimension = maxDimension + 0.001;
  1448 +
  1449 + maxXY = "";
  1450 +
  1451 + maxXY << maxDimension;
  1452 +
  1453 + TextCtrl8 ->SetValue(maxXY);
  1454 +
  1455 + FormatPanel(maxDimension);
  1456 +
  1457 + DrawBundleCsection();
  1458 +}
  1459 +
  1460 +void BUNDLEBLDR::OnSpinButton1ChangeDown(wxSpinEvent& event)
  1461 +{
  1462 + double maxDimension;
  1463 +
  1464 + wxString maxXY = TextCtrl8->GetValue();
  1465 +
  1466 + maxXY.ToDouble(&maxDimension);
  1467 +
  1468 + maxDimension = maxDimension - 0.001;
  1469 +
  1470 + if (maxDimension <=0) maxDimension = 0;
  1471 +
  1472 + maxXY = "";
  1473 +
  1474 + maxXY << maxDimension;
  1475 +
  1476 + TextCtrl8 ->SetValue(maxXY);
  1477 +
  1478 + FormatPanel(maxDimension);
  1479 +
  1480 + DrawBundleCsection();
  1481 +}
GUI/SW1/SRC/BUNDLEBLDR.h
@@ -52,6 +52,7 @@ @@ -52,6 +52,7 @@
52 #include <wx/panel.h> 52 #include <wx/panel.h>
53 #include <wx/button.h> 53 #include <wx/button.h>
54 #include <wx/dialog.h> 54 #include <wx/dialog.h>
  55 +#include <wx/spinbutt.h>
55 #include <wx/combobox.h> 56 #include <wx/combobox.h>
56 //*) 57 //*)
57 58
@@ -110,7 +111,7 @@ class BUNDLEBLDR: public wxDialog @@ -110,7 +111,7 @@ class BUNDLEBLDR: public wxDialog
110 111
111 void paintNow(); 112 void paintNow();
112 void render(wxDC& dc); 113 void render(wxDC& dc);
113 - void FormatPanel(wxString); 114 + void FormatPanel(double);
114 void DrawBundleCable(wxString, wxString, wxString); 115 void DrawBundleCable(wxString, wxString, wxString);
115 116
116 void ConstructBundleCsection(wxString, wxString, wxString); 117 void ConstructBundleCsection(wxString, wxString, wxString);
@@ -169,14 +170,17 @@ class BUNDLEBLDR: public wxDialog @@ -169,14 +170,17 @@ class BUNDLEBLDR: public wxDialog
169 wxPanel* Panel6; 170 wxPanel* Panel6;
170 wxCheckBox* CheckBox1; 171 wxCheckBox* CheckBox1;
171 wxPanel* Panel3; 172 wxPanel* Panel3;
  173 + wxSpinButton* SpinButton1;
172 wxButton* Button3; 174 wxButton* Button3;
173 wxStaticText* StaticText5; 175 wxStaticText* StaticText5;
174 wxStaticText* StaticText7; 176 wxStaticText* StaticText7;
  177 + wxTextCtrl* TextCtrl8;
175 wxTextCtrl* TextCtrl2; 178 wxTextCtrl* TextCtrl2;
176 wxCheckBox* CheckBox4; 179 wxCheckBox* CheckBox4;
177 wxComboBox* ComboBox1; 180 wxComboBox* ComboBox1;
178 wxTextCtrl* TextCtrl7; 181 wxTextCtrl* TextCtrl7;
179 wxTextCtrl* TextCtrl1; 182 wxTextCtrl* TextCtrl1;
  183 + wxStaticText* StaticText12;
180 wxPanel* Panel2; 184 wxPanel* Panel2;
181 wxTextCtrl* TextCtrl5; 185 wxTextCtrl* TextCtrl5;
182 wxStaticText* StaticText4; 186 wxStaticText* StaticText4;
@@ -223,6 +227,9 @@ class BUNDLEBLDR: public wxDialog @@ -223,6 +227,9 @@ class BUNDLEBLDR: public wxDialog
223 static const long ID_BUTTON2; 227 static const long ID_BUTTON2;
224 static const long ID_BUTTON3; 228 static const long ID_BUTTON3;
225 static const long ID_PANEL1; 229 static const long ID_PANEL1;
  230 + static const long ID_STATICTEXT12;
  231 + static const long ID_TEXTCTRL8;
  232 + static const long ID_SPINBUTTON1;
226 //*) 233 //*)
227 234
228 private: 235 private:
@@ -240,6 +247,11 @@ class BUNDLEBLDR: public wxDialog @@ -240,6 +247,11 @@ class BUNDLEBLDR: public wxDialog
240 void OnTextCtrl4Text(wxCommandEvent& event); 247 void OnTextCtrl4Text(wxCommandEvent& event);
241 void OnInit(wxInitDialogEvent& event); 248 void OnInit(wxInitDialogEvent& event);
242 void OnTextCtrl5Text(wxCommandEvent& event); 249 void OnTextCtrl5Text(wxCommandEvent& event);
  250 + void OnSpinButton1Change(wxSpinEvent& event);
  251 + void OnTextCtrl8Text(wxCommandEvent& event);
  252 + void OnTextCtrl8TextEnter(wxCommandEvent& event);
  253 + void OnSpinButton1ChangeUp(wxSpinEvent& event);
  254 + void OnSpinButton1ChangeDown(wxSpinEvent& event);
243 //*) 255 //*)
244 256
245 void PopulateTheDirectoryTree ( wxString); 257 void PopulateTheDirectoryTree ( wxString);
GUI/SW1/SRC/BUNDLE_SCHEMATIC.cpp
@@ -480,7 +480,7 @@ void draw_bundle(wxPanel *Panel, wxString Path, wxString bundle_to_draw) @@ -480,7 +480,7 @@ void draw_bundle(wxPanel *Panel, wxString Path, wxString bundle_to_draw)
480 480
481 dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); 481 dc.SetPen( wxPen( wxColor(0,0,0),1 ) );
482 dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH)); 482 dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH));
483 - dc.DrawCircle( wxPoint(size_ho/2,(size_vo/2-shielded_twisted_pair_Scaledradius-inner_conductor_Scaledseparation/2)), inner_dielectric_Scaledradius ); 483 + dc.DrawCircle( wxPoint(size_ho/2,(size_vo/2-shielded_twisted_pair_Scaledradius+inner_conductor_Scaledseparation/2)), inner_dielectric_Scaledradius );
484 484
485 dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); 485 dc.SetPen( wxPen( wxColor(0,0,0),1 ) );
486 dc.SetBrush(wxBrush(*wxBLACK, wxSOLID)); 486 dc.SetBrush(wxBrush(*wxBLACK, wxSOLID));
@@ -510,7 +510,7 @@ void draw_bundle(wxPanel *Panel, wxString Path, wxString bundle_to_draw) @@ -510,7 +510,7 @@ void draw_bundle(wxPanel *Panel, wxString Path, wxString bundle_to_draw)
510 510
511 dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); 511 dc.SetPen( wxPen( wxColor(0,0,0),1 ) );
512 dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH)); 512 dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH));
513 - dc.DrawCircle( wxPoint((size_ho/2-shielded_twisted_pair_Scaledradius-inner_conductor_Scaledseparation/2),size_vo/2), inner_dielectric_Scaledradius ); 513 + dc.DrawCircle( wxPoint((size_ho/2-shielded_twisted_pair_Scaledradius+inner_conductor_Scaledseparation/2),size_vo/2), inner_dielectric_Scaledradius );
514 514
515 dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); 515 dc.SetPen( wxPen( wxColor(0,0,0),1 ) );
516 dc.SetBrush(wxBrush(*wxBLACK, wxSOLID)); 516 dc.SetBrush(wxBrush(*wxBLACK, wxSOLID));
@@ -564,7 +564,7 @@ void draw_bundle(wxPanel *Panel, wxString Path, wxString bundle_to_draw) @@ -564,7 +564,7 @@ void draw_bundle(wxPanel *Panel, wxString Path, wxString bundle_to_draw)
564 564
565 dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); 565 dc.SetPen( wxPen( wxColor(0,0,0),1 ) );
566 dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH)); 566 dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH));
567 - dc.DrawCircle( wxPoint((size_ho/2+shielded_twisted_pair_Scaledradius-inner_conductor_Scaledseparation/2),size_vo/2), inner_dielectric_Scaledradius ); 567 + dc.DrawCircle( wxPoint((size_ho/2+shielded_twisted_pair_Scaledradius+inner_conductor_Scaledseparation/2),size_vo/2), inner_dielectric_Scaledradius );
568 568
569 dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); 569 dc.SetPen( wxPen( wxColor(0,0,0),1 ) );
570 dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH)); 570 dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH));
@@ -572,11 +572,11 @@ void draw_bundle(wxPanel *Panel, wxString Path, wxString bundle_to_draw) @@ -572,11 +572,11 @@ void draw_bundle(wxPanel *Panel, wxString Path, wxString bundle_to_draw)
572 572
573 dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); 573 dc.SetPen( wxPen( wxColor(0,0,0),1 ) );
574 dc.SetBrush(wxBrush(*wxBLACK, wxSOLID)); 574 dc.SetBrush(wxBrush(*wxBLACK, wxSOLID));
575 - dc.DrawCircle( wxPoint((size_ho/2+shielded_twisted_pair_Scaledradius-inner_conductor_Scaledseparation/2),size_vo/2), inner_conductor_Scaledradius ); 575 + dc.DrawCircle( wxPoint((size_ho/2+shielded_twisted_pair_Scaledradius+inner_conductor_Scaledseparation/2),size_vo/2), inner_conductor_Scaledradius );
576 576
577 dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); 577 dc.SetPen( wxPen( wxColor(0,0,0),1 ) );
578 dc.SetBrush(wxBrush(*wxBLACK, wxSOLID)); 578 dc.SetBrush(wxBrush(*wxBLACK, wxSOLID));
579 - dc.DrawCircle( wxPoint((size_ho/2+shielded_twisted_pair_Scaledradius+inner_conductor_Scaledseparation/2),size_vo/2), inner_conductor_Scaledradius ); 579 + dc.DrawCircle( wxPoint((size_ho/2+shielded_twisted_pair_Scaledradius-inner_conductor_Scaledseparation/2),size_vo/2), inner_conductor_Scaledradius );
580 580
581 cableFile.close(); 581 cableFile.close();
582 } 582 }
GUI/SW1/SRC/CABLE_SCHEMATIC.cpp
@@ -581,7 +581,7 @@ void draw_cable(wxPanel *Panel, wxString cable_to_draw, float x_coord, float y_c @@ -581,7 +581,7 @@ void draw_cable(wxPanel *Panel, wxString cable_to_draw, float x_coord, float y_c
581 581
582 dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); 582 dc.SetPen( wxPen( wxColor(0,0,0),1 ) );
583 dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH)); 583 dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH));
584 - dc.DrawCircle( wxPoint(size_h/2,(size_v/2-shielded_twisted_pair_Scaledradius-inner_conductor_Scaledseparation/2)), inner_dielectric_Scaledradius ); 584 + dc.DrawCircle( wxPoint(size_h/2,(size_v/2-shielded_twisted_pair_Scaledradius+inner_conductor_Scaledseparation/2)), inner_dielectric_Scaledradius );
585 585
586 dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); 586 dc.SetPen( wxPen( wxColor(0,0,0),1 ) );
587 dc.SetBrush(wxBrush(*wxBLACK, wxSOLID)); 587 dc.SetBrush(wxBrush(*wxBLACK, wxSOLID));
@@ -611,7 +611,7 @@ void draw_cable(wxPanel *Panel, wxString cable_to_draw, float x_coord, float y_c @@ -611,7 +611,7 @@ void draw_cable(wxPanel *Panel, wxString cable_to_draw, float x_coord, float y_c
611 611
612 dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); 612 dc.SetPen( wxPen( wxColor(0,0,0),1 ) );
613 dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH)); 613 dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH));
614 - dc.DrawCircle( wxPoint((size_h/2-shielded_twisted_pair_Scaledradius-inner_conductor_Scaledseparation/2),size_v/2), inner_dielectric_Scaledradius ); 614 + dc.DrawCircle( wxPoint((size_h/2-shielded_twisted_pair_Scaledradius+inner_conductor_Scaledseparation/2),size_v/2), inner_dielectric_Scaledradius );
615 615
616 dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); 616 dc.SetPen( wxPen( wxColor(0,0,0),1 ) );
617 dc.SetBrush(wxBrush(*wxBLACK, wxSOLID)); 617 dc.SetBrush(wxBrush(*wxBLACK, wxSOLID));
@@ -669,7 +669,7 @@ void draw_cable(wxPanel *Panel, wxString cable_to_draw, float x_coord, float y_c @@ -669,7 +669,7 @@ void draw_cable(wxPanel *Panel, wxString cable_to_draw, float x_coord, float y_c
669 669
670 dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); 670 dc.SetPen( wxPen( wxColor(0,0,0),1 ) );
671 dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH)); 671 dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH));
672 - dc.DrawCircle( wxPoint((size_h/2+shielded_twisted_pair_Scaledradius-inner_conductor_Scaledseparation/2),size_v/2), inner_dielectric_Scaledradius ); 672 + dc.DrawCircle( wxPoint((size_h/2+shielded_twisted_pair_Scaledradius+inner_conductor_Scaledseparation/2),size_v/2), inner_dielectric_Scaledradius );
673 673
674 dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); 674 dc.SetPen( wxPen( wxColor(0,0,0),1 ) );
675 dc.SetBrush(wxBrush(*wxBLACK, wxSOLID)); 675 dc.SetBrush(wxBrush(*wxBLACK, wxSOLID));
GUI/SW1/SRC/COAXIAL.cpp
@@ -209,11 +209,11 @@ COAXIAL::COAXIAL(wxWindow* parent,wxWindowID id,const wxPoint&amp; pos,const wxSize&amp; @@ -209,11 +209,11 @@ COAXIAL::COAXIAL(wxWindow* parent,wxWindowID id,const wxPoint&amp; pos,const wxSize&amp;
209 FlexGridSizer7->Add(StaticText18, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5); 209 FlexGridSizer7->Add(StaticText18, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5);
210 StaticText19 = new wxStaticText(Panel4, ID_STATICTEXT19, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT19")); 210 StaticText19 = new wxStaticText(Panel4, ID_STATICTEXT19, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT19"));
211 FlexGridSizer7->Add(StaticText19, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5); 211 FlexGridSizer7->Add(StaticText19, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
212 - StaticText20 = new wxStaticText(Panel4, ID_STATICTEXT20, _("R (ohms)"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT20")); 212 + StaticText20 = new wxStaticText(Panel4, ID_STATICTEXT20, _("R (ohms/m)"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT20"));
213 FlexGridSizer7->Add(StaticText20, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5); 213 FlexGridSizer7->Add(StaticText20, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5);
214 TextCtrl15 = new wxTextCtrl(Panel4, ID_TEXTCTRL15, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_TEXTCTRL15")); 214 TextCtrl15 = new wxTextCtrl(Panel4, ID_TEXTCTRL15, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_TEXTCTRL15"));
215 FlexGridSizer7->Add(TextCtrl15, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5); 215 FlexGridSizer7->Add(TextCtrl15, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
216 - StaticText21 = new wxStaticText(Panel4, ID_STATICTEXT21, _("L (henries)"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT21")); 216 + StaticText21 = new wxStaticText(Panel4, ID_STATICTEXT21, _("L (henries/m)"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT21"));
217 FlexGridSizer7->Add(StaticText21, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5); 217 FlexGridSizer7->Add(StaticText21, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5);
218 TextCtrl16 = new wxTextCtrl(Panel4, ID_TEXTCTRL16, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_TEXTCTRL16")); 218 TextCtrl16 = new wxTextCtrl(Panel4, ID_TEXTCTRL16, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_TEXTCTRL16"));
219 FlexGridSizer7->Add(TextCtrl16, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5); 219 FlexGridSizer7->Add(TextCtrl16, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
@@ -307,6 +307,7 @@ COAXIAL::COAXIAL(wxWindow* parent,wxWindowID id,const wxPoint&amp; pos,const wxSize&amp; @@ -307,6 +307,7 @@ COAXIAL::COAXIAL(wxWindow* parent,wxWindowID id,const wxPoint&amp; pos,const wxSize&amp;
307 Connect(ID_coaxCLOSE,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&COAXIAL::OncoaxCLOSEClick); 307 Connect(ID_coaxCLOSE,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&COAXIAL::OncoaxCLOSEClick);
308 Panel1->Connect(wxEVT_PAINT,(wxObjectEventFunction)&COAXIAL::OnPanel1Paint,0,this); 308 Panel1->Connect(wxEVT_PAINT,(wxObjectEventFunction)&COAXIAL::OnPanel1Paint,0,this);
309 Panel1->Connect(wxEVT_LEFT_DCLICK,(wxObjectEventFunction)&COAXIAL::OnPanel1LeftDClick,0,this); 309 Panel1->Connect(wxEVT_LEFT_DCLICK,(wxObjectEventFunction)&COAXIAL::OnPanel1LeftDClick,0,this);
  310 + Connect(wxEVT_PAINT,(wxObjectEventFunction)&COAXIAL::OnPaint);
310 //*) 311 //*)
311 312
312 TextCtrl2->Bind(wxEVT_SET_FOCUS,(wxObjectEventFunction)&COAXIAL::OnHighlightSchematic, this); 313 TextCtrl2->Bind(wxEVT_SET_FOCUS,(wxObjectEventFunction)&COAXIAL::OnHighlightSchematic, this);
@@ -326,6 +327,11 @@ COAXIAL::~COAXIAL() @@ -326,6 +327,11 @@ COAXIAL::~COAXIAL()
326 //*) 327 //*)
327 } 328 }
328 329
  330 +void COAXIAL::OnPaint(wxPaintEvent& event)
  331 +{
  332 + if (EDIT_EXISTING==true) EditExistingCable();
  333 +}
  334 +
329 void COAXIAL::SetPathToMOD(wxString Path, wxString Name) 335 void COAXIAL::SetPathToMOD(wxString Path, wxString Name)
330 { 336 {
331 pathToMOD << Path; 337 pathToMOD << Path;
@@ -881,4 +887,10 @@ void COAXIAL::OnCheckBox2Click(wxCommandEvent&amp; event) @@ -881,4 +887,10 @@ void COAXIAL::OnCheckBox2Click(wxCommandEvent&amp; event)
881 } 887 }
882 } 888 }
883 889
  890 +void COAXIAL::EditExistingCable()
  891 +{
  892 + Close();
  893 +}
  894 +
  895 +
884 896
GUI/SW1/SRC/CYLINDRICAL.cpp
@@ -165,6 +165,7 @@ CYLINDRICAL::CYLINDRICAL(wxWindow* parent,wxWindowID id,const wxPoint&amp; pos,const @@ -165,6 +165,7 @@ CYLINDRICAL::CYLINDRICAL(wxWindow* parent,wxWindowID id,const wxPoint&amp; pos,const
165 Connect(ID_BUTTON3,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&CYLINDRICAL::OnButton3Click); 165 Connect(ID_BUTTON3,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&CYLINDRICAL::OnButton3Click);
166 Panel1->Connect(wxEVT_PAINT,(wxObjectEventFunction)&CYLINDRICAL::OnPanel1Paint,0,this); 166 Panel1->Connect(wxEVT_PAINT,(wxObjectEventFunction)&CYLINDRICAL::OnPanel1Paint,0,this);
167 Panel1->Connect(wxEVT_LEFT_DCLICK,(wxObjectEventFunction)&CYLINDRICAL::OnPanel1LeftDClick,0,this); 167 Panel1->Connect(wxEVT_LEFT_DCLICK,(wxObjectEventFunction)&CYLINDRICAL::OnPanel1LeftDClick,0,this);
  168 + Connect(wxEVT_PAINT,(wxObjectEventFunction)&CYLINDRICAL::OnPaint);
168 //*) 169 //*)
169 170
170 TextCtrl2->Bind(wxEVT_SET_FOCUS,(wxObjectEventFunction)&CYLINDRICAL::OnHighlightSchematic, this); 171 TextCtrl2->Bind(wxEVT_SET_FOCUS,(wxObjectEventFunction)&CYLINDRICAL::OnHighlightSchematic, this);
@@ -183,6 +184,11 @@ CYLINDRICAL::~CYLINDRICAL() @@ -183,6 +184,11 @@ CYLINDRICAL::~CYLINDRICAL()
183 184
184 } 185 }
185 186
  187 +void CYLINDRICAL::OnPaint(wxPaintEvent& event)
  188 +{
  189 + if (EDIT_EXISTING==true) EditExistingCable();
  190 +}
  191 +
186 void CYLINDRICAL::SetPathToMOD(wxString Path, wxString Name) 192 void CYLINDRICAL::SetPathToMOD(wxString Path, wxString Name)
187 { 193 {
188 pathToMOD << Path; 194 pathToMOD << Path;
@@ -191,6 +197,9 @@ void CYLINDRICAL::SetPathToMOD(wxString Path, wxString Name) @@ -191,6 +197,9 @@ void CYLINDRICAL::SetPathToMOD(wxString Path, wxString Name)
191 197
192 void CYLINDRICAL::OnButton1Click(wxCommandEvent& event) 198 void CYLINDRICAL::OnButton1Click(wxCommandEvent& event)
193 { 199 {
  200 +
  201 + if (EDIT_EXISTING==true) EditExistingCable();
  202 +
194 int IsError = 0; 203 int IsError = 0;
195 204
196 wxString fileName = TextCtrl1->GetValue(); 205 wxString fileName = TextCtrl1->GetValue();
@@ -534,3 +543,10 @@ void CYLINDRICAL::OnPanel1LeftDClick(wxMouseEvent&amp; event) @@ -534,3 +543,10 @@ void CYLINDRICAL::OnPanel1LeftDClick(wxMouseEvent&amp; event)
534 { 543 {
535 cylindricalSchematic(); 544 cylindricalSchematic();
536 } 545 }
  546 +
  547 +void CYLINDRICAL::EditExistingCable()
  548 +{
  549 + Close();
  550 +}
  551 +
  552 +
GUI/SW1/SRC/DCONN.cpp
@@ -166,6 +166,7 @@ DCONN::DCONN(wxWindow* parent,wxWindowID id,const wxPoint&amp; pos,const wxSize&amp; siz @@ -166,6 +166,7 @@ DCONN::DCONN(wxWindow* parent,wxWindowID id,const wxPoint&amp; pos,const wxSize&amp; siz
166 Connect(ID_BUTTON3,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&DCONN::OnButton3Click); 166 Connect(ID_BUTTON3,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&DCONN::OnButton3Click);
167 Panel1->Connect(wxEVT_PAINT,(wxObjectEventFunction)&DCONN::OnPanel1Paint,0,this); 167 Panel1->Connect(wxEVT_PAINT,(wxObjectEventFunction)&DCONN::OnPanel1Paint,0,this);
168 Panel1->Connect(wxEVT_LEFT_DCLICK,(wxObjectEventFunction)&DCONN::OnPanel1LeftDClick,0,this); 168 Panel1->Connect(wxEVT_LEFT_DCLICK,(wxObjectEventFunction)&DCONN::OnPanel1LeftDClick,0,this);
  169 + Connect(wxEVT_PAINT,(wxObjectEventFunction)&DCONN::OnPaint);
169 //*) 170 //*)
170 171
171 TextCtrl2->Bind(wxEVT_SET_FOCUS,(wxObjectEventFunction)&DCONN::OnHighlightSchematic, this); 172 TextCtrl2->Bind(wxEVT_SET_FOCUS,(wxObjectEventFunction)&DCONN::OnHighlightSchematic, this);
@@ -181,6 +182,11 @@ DCONN::~DCONN() @@ -181,6 +182,11 @@ DCONN::~DCONN()
181 //*) 182 //*)
182 } 183 }
183 184
  185 +void DCONN::OnPaint(wxPaintEvent& event)
  186 +{
  187 + if (EDIT_EXISTING==true) EditExistingCable();
  188 +}
  189 +
184 void DCONN::SetPathToMOD(wxString Path, wxString Name) 190 void DCONN::SetPathToMOD(wxString Path, wxString Name)
185 { 191 {
186 192
@@ -586,3 +592,8 @@ void DCONN::OnCheckBox2Click(wxCommandEvent&amp; event) @@ -586,3 +592,8 @@ void DCONN::OnCheckBox2Click(wxCommandEvent&amp; event)
586 } 592 }
587 WriteCableFile (TextCtrl1->GetValue()); 593 WriteCableFile (TextCtrl1->GetValue());
588 } 594 }
  595 +
  596 +void DCONN::EditExistingCable()
  597 +{
  598 + Close();
  599 +}
GUI/SW1/SRC/SW1_GUI.depend 0 โ†’ 100644
@@ -0,0 +1,3808 @@ @@ -0,0 +1,3808 @@
  1 +# depslib dependency file v1.0
  2 +1512938044 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\about.cpp
  3 + "ABOUT.h"
  4 + <wx/textfile.h>
  5 + <wx/msgdlg.h>
  6 + <wx/hyperlink.h>
  7 + <wx/bitmap.h>
  8 + <wx/intl.h>
  9 + <wx/image.h>
  10 + <wx/string.h>
  11 +
  12 +1502693582 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\about.h
  13 + <wx/sizer.h>
  14 + <wx/textctrl.h>
  15 + <wx/statbmp.h>
  16 + <wx/dialog.h>
  17 +
  18 +1412638444 c:\wxwidgets-3.0.2\include\wx\sizer.h
  19 + "wx/defs.h"
  20 + "wx/window.h"
  21 +
  22 +1412638442 c:\wxwidgets-3.0.2\include\wx\defs.h
  23 + "wx/platform.h"
  24 + "wx/version.h"
  25 + "wx/dlimpexp.h"
  26 + <stddef.h>
  27 + "wx/debug.h"
  28 + <sys/types.h>
  29 + <sys/types.h>
  30 + "wx/windowid.h"
  31 + <unistd.h>
  32 + "wx/msw/winundef.h"
  33 + "wx/features.h"
  34 +
  35 +1412638444 c:\wxwidgets-3.0.2\include\wx\platform.h
  36 + <unistd.h>
  37 + <TargetConditionals.h>
  38 + <AvailabilityMacros.h>
  39 + "wx/osx/config_xcode.h"
  40 + "wx/android/config_android.h"
  41 + "wx/compiler.h"
  42 + "wx/setup.h"
  43 + "wx/msw/wince/libraries.h"
  44 + "wx/msw/libraries.h"
  45 + "wx/msw/gccpriv.h"
  46 + <TargetConditionals.h>
  47 + <AvailabilityMacros.h>
  48 + "wx/chkconf.h"
  49 +
  50 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\config_xcode.h
  51 +
  52 +1412638442 c:\wxwidgets-3.0.2\include\wx\android\config_android.h
  53 +
  54 +1412638442 c:\wxwidgets-3.0.2\include\wx\compiler.h
  55 +
  56 +1412638444 c:\wxwidgets-3.0.2\lib\gcc_dll\mswu\wx\setup.h
  57 +
  58 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wince\libraries.h
  59 +
  60 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\libraries.h
  61 +
  62 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\gccpriv.h
  63 + <_mingw.h>
  64 + <w32api.h>
  65 +
  66 +1412638442 c:\wxwidgets-3.0.2\include\wx\chkconf.h
  67 + "wx/msw/wince/chkconf.h"
  68 + "wx/msw/chkconf.h"
  69 + "wx/gtk/chkconf.h"
  70 + "wx/gtk/chkconf.h"
  71 + "wx/cocoa/chkconf.h"
  72 + "wx/osx/chkconf.h"
  73 + "wx/os2/chkconf.h"
  74 + "wx/dfb/chkconf.h"
  75 + "wx/motif/chkconf.h"
  76 + "wx/x11/chkconf.h"
  77 + "wx/android/chkconf.h"
  78 + "wx/unix/chkconf.h"
  79 + "wx/univ/chkconf.h"
  80 +
  81 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wince\chkconf.h
  82 +
  83 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\chkconf.h
  84 +
  85 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\chkconf.h
  86 +
  87 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\chkconf.h
  88 +
  89 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\chkconf.h
  90 + "wx/osx/iphone/chkconf.h"
  91 + "wx/osx/carbon/chkconf.h"
  92 + "wx/osx/cocoa/chkconf.h"
  93 +
  94 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\iphone\chkconf.h
  95 +
  96 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\carbon\chkconf.h
  97 +
  98 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\cocoa\chkconf.h
  99 +
  100 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\chkconf.h
  101 +
  102 +1412638442 c:\wxwidgets-3.0.2\include\wx\dfb\chkconf.h
  103 +
  104 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\chkconf.h
  105 +
  106 +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\chkconf.h
  107 +
  108 +1412638442 c:\wxwidgets-3.0.2\include\wx\android\chkconf.h
  109 +
  110 +1412638444 c:\wxwidgets-3.0.2\include\wx\unix\chkconf.h
  111 +
  112 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\chkconf.h
  113 +
  114 +1412638444 c:\wxwidgets-3.0.2\include\wx\version.h
  115 + "wx/cpp.h"
  116 +
  117 +1412638442 c:\wxwidgets-3.0.2\include\wx\cpp.h
  118 + "wx/compiler.h"
  119 +
  120 +1412638442 c:\wxwidgets-3.0.2\include\wx\dlimpexp.h
  121 +
  122 +1412638442 c:\wxwidgets-3.0.2\include\wx\debug.h
  123 + <assert.h>
  124 + <limits.h>
  125 + "wx/chartype.h"
  126 + "wx/cpp.h"
  127 + "wx/dlimpexp.h"
  128 +
  129 +1412638442 c:\wxwidgets-3.0.2\include\wx\chartype.h
  130 + "wx/platform.h"
  131 + <sys/types.h>
  132 + <wchar.h>
  133 + <wcstr.h>
  134 + <stdlib.h>
  135 + <widec.h>
  136 + <ctype.h>
  137 + <stddef.h>
  138 + <string.h>
  139 + <ctype.h>
  140 + <tchar.h>
  141 + <ctype.h>
  142 +
  143 +1412638444 c:\wxwidgets-3.0.2\include\wx\windowid.h
  144 +
  145 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\winundef.h
  146 +
  147 +1412638442 c:\wxwidgets-3.0.2\include\wx\features.h
  148 +
  149 +1412638444 c:\wxwidgets-3.0.2\include\wx\window.h
  150 + "wx/event.h"
  151 + "wx/list.h"
  152 + "wx/cursor.h"
  153 + "wx/font.h"
  154 + "wx/colour.h"
  155 + "wx/region.h"
  156 + "wx/utils.h"
  157 + "wx/intl.h"
  158 + "wx/validate.h"
  159 + "wx/palette.h"
  160 + "wx/accel.h"
  161 + "wx/access.h"
  162 + "wx/msw/window.h"
  163 + "wx/motif/window.h"
  164 + "wx/gtk/window.h"
  165 + "wx/gtk1/window.h"
  166 + "wx/x11/window.h"
  167 + "wx/dfb/window.h"
  168 + "wx/osx/window.h"
  169 + "wx/cocoa/window.h"
  170 + "wx/os2/window.h"
  171 + "wx/univ/window.h"
  172 +
  173 +1412638442 c:\wxwidgets-3.0.2\include\wx\event.h
  174 + "wx/defs.h"
  175 + "wx/cpp.h"
  176 + "wx/object.h"
  177 + "wx/clntdata.h"
  178 + "wx/gdicmn.h"
  179 + "wx/cursor.h"
  180 + "wx/mousestate.h"
  181 + "wx/dynarray.h"
  182 + "wx/thread.h"
  183 + "wx/tracker.h"
  184 + "wx/typeinfo.h"
  185 + "wx/any.h"
  186 + "wx/meta/convertible.h"
  187 + "wx/meta/removeref.h"
  188 +
  189 +1412638444 c:\wxwidgets-3.0.2\include\wx\object.h
  190 + "wx/memory.h"
  191 + "wx/xti.h"
  192 + "wx/rtti.h"
  193 + "wx/xti2.h"
  194 + "wx/msw/msvcrt.h"
  195 +
  196 +1412638444 c:\wxwidgets-3.0.2\include\wx\memory.h
  197 + "wx/defs.h"
  198 + "wx/string.h"
  199 + "wx/msgout.h"
  200 + <stddef.h>
  201 +
  202 +1412638444 c:\wxwidgets-3.0.2\include\wx\string.h
  203 + "wx/defs.h"
  204 + <ctype.h>
  205 + <stdio.h>
  206 + <string.h>
  207 + <stdarg.h>
  208 + <limits.h>
  209 + <string.h>
  210 + <stdio.h>
  211 + <stdarg.h>
  212 + <limits.h>
  213 + <stdlib.h>
  214 + "wx/wxcrtbase.h"
  215 + "wx/strvararg.h"
  216 + "wx/buffer.h"
  217 + "wx/strconv.h"
  218 + "wx/stringimpl.h"
  219 + "wx/stringops.h"
  220 + "wx/unichar.h"
  221 + "wx/tls.h"
  222 + "wx/iosfwrap.h"
  223 + "wx/crt.h"
  224 +
  225 +1412638444 c:\wxwidgets-3.0.2\include\wx\wxcrtbase.h
  226 + "wx/chartype.h"
  227 + <stdio.h>
  228 + <string.h>
  229 + <ctype.h>
  230 + <wctype.h>
  231 + <time.h>
  232 + <io.h>
  233 +
  234 +1412638444 c:\wxwidgets-3.0.2\include\wx\strvararg.h
  235 + "wx/platform.h"
  236 + "wx/cpp.h"
  237 + "wx/chartype.h"
  238 + "wx/strconv.h"
  239 + "wx/buffer.h"
  240 + "wx/unichar.h"
  241 + <type_traits>
  242 + <type_traits>
  243 + <tr1/type_traits>
  244 + "wx/stringimpl.h"
  245 +
  246 +1412638444 c:\wxwidgets-3.0.2\include\wx\strconv.h
  247 + "wx/defs.h"
  248 + "wx/chartype.h"
  249 + "wx/buffer.h"
  250 + "typeinfo.h"
  251 + <stdlib.h>
  252 + "wx/fontenc.h"
  253 +
  254 +1412638442 c:\wxwidgets-3.0.2\include\wx\buffer.h
  255 + "wx/chartype.h"
  256 + "wx/wxcrtbase.h"
  257 + <stdlib.h>
  258 +
  259 +1412638444 c:\wxwidgets-3.0.2\include\wx\typeinfo.h
  260 + "wx/defs.h"
  261 + <typeinfo>
  262 + <string.h>
  263 +
  264 +1412638442 c:\wxwidgets-3.0.2\include\wx\fontenc.h
  265 +
  266 +1412638444 c:\wxwidgets-3.0.2\include\wx\unichar.h
  267 + "wx/defs.h"
  268 + "wx/chartype.h"
  269 + "wx/stringimpl.h"
  270 +
  271 +1412638444 c:\wxwidgets-3.0.2\include\wx\stringimpl.h
  272 + "wx/defs.h"
  273 + "wx/chartype.h"
  274 + "wx/wxcrtbase.h"
  275 + <stdlib.h>
  276 + "wx/beforestd.h"
  277 + <string>
  278 + "wx/afterstd.h"
  279 +
  280 +1412638442 c:\wxwidgets-3.0.2\include\wx\beforestd.h
  281 +
  282 +1412638442 c:\wxwidgets-3.0.2\include\wx\afterstd.h
  283 + "wx/msw/winundef.h"
  284 +
  285 +1412638444 c:\wxwidgets-3.0.2\include\wx\stringops.h
  286 + "wx/chartype.h"
  287 + "wx/stringimpl.h"
  288 + "wx/unichar.h"
  289 + "wx/buffer.h"
  290 +
  291 +1412638444 c:\wxwidgets-3.0.2\include\wx\tls.h
  292 + "wx/defs.h"
  293 + "wx/msw/tls.h"
  294 + "wx/os2/tls.h"
  295 + "wx/unix/tls.h"
  296 + <stdlib.h>
  297 +
  298 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\tls.h
  299 + "wx/msw/wrapwin.h"
  300 + "wx/thread.h"
  301 + "wx/vector.h"
  302 +
  303 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wrapwin.h
  304 + "wx/platform.h"
  305 + <winsock2.h>
  306 + <windows.h>
  307 + "wx/msw/winundef.h"
  308 +
  309 +1412638444 c:\wxwidgets-3.0.2\include\wx\thread.h
  310 + "wx/defs.h"
  311 +
  312 +1412638444 c:\wxwidgets-3.0.2\include\wx\vector.h
  313 + "wx/defs.h"
  314 + <vector>
  315 + <algorithm>
  316 + "wx/scopeguard.h"
  317 + "wx/meta/movable.h"
  318 + "wx/meta/if.h"
  319 + "wx/beforestd.h"
  320 + <new>
  321 + "wx/afterstd.h"
  322 +
  323 +1412638444 c:\wxwidgets-3.0.2\include\wx\scopeguard.h
  324 + "wx/defs.h"
  325 + "wx/except.h"
  326 +
  327 +1412638442 c:\wxwidgets-3.0.2\include\wx\except.h
  328 + "wx/defs.h"
  329 +
  330 +1412638444 c:\wxwidgets-3.0.2\include\wx\meta\movable.h
  331 + "wx/meta/pod.h"
  332 + "wx/string.h"
  333 +
  334 +1412638444 c:\wxwidgets-3.0.2\include\wx\meta\pod.h
  335 + "wx/defs.h"
  336 +
  337 +1412638444 c:\wxwidgets-3.0.2\include\wx\meta\if.h
  338 + "wx/defs.h"
  339 +
  340 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\tls.h
  341 + "wx/os2/private.h"
  342 + "wx/thread.h"
  343 + "wx/vector.h"
  344 +
  345 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\private.h
  346 + <os2.h>
  347 + <os2def.h>
  348 + <X11/Xmd.h>
  349 + <Xm/VendorSP.h>
  350 + <types.h>
  351 + <tcpustd.h>
  352 + <sys/time.h>
  353 + "wx/dlimpexp.h"
  354 + "wx/fontenc.h"
  355 + "wx/thread.h"
  356 +
  357 +1412638444 c:\wxwidgets-3.0.2\include\wx\unix\tls.h
  358 + <pthread.h>
  359 +
  360 +1412638442 c:\wxwidgets-3.0.2\include\wx\iosfwrap.h
  361 + <iostream.h>
  362 + <iosfwd>
  363 + "wx/msw/winundef.h"
  364 +
  365 +1412638442 c:\wxwidgets-3.0.2\include\wx\crt.h
  366 + "wx/defs.h"
  367 + "wx/chartype.h"
  368 + "wx/wxcrt.h"
  369 + "wx/wxcrtvararg.h"
  370 +
  371 +1412638444 c:\wxwidgets-3.0.2\include\wx\wxcrt.h
  372 + "wx/wxcrtbase.h"
  373 + "wx/string.h"
  374 + <string.h>
  375 +
  376 +1412638444 c:\wxwidgets-3.0.2\include\wx\wxcrtvararg.h
  377 + "wx/wxcrt.h"
  378 + "wx/strvararg.h"
  379 + "wx/string.h"
  380 + <stdarg.h>
  381 +
  382 +1412638444 c:\wxwidgets-3.0.2\include\wx\msgout.h
  383 + "wx/defs.h"
  384 + "wx/chartype.h"
  385 + "wx/strvararg.h"
  386 +
  387 +1412638444 c:\wxwidgets-3.0.2\include\wx\xti.h
  388 + "wx/defs.h"
  389 + "wx/xtitypes.h"
  390 + "wx/xtihandler.h"
  391 +
  392 +1412638444 c:\wxwidgets-3.0.2\include\wx\xtitypes.h
  393 + "wx/defs.h"
  394 + "wx/string.h"
  395 + "wx/hashmap.h"
  396 + "wx/arrstr.h"
  397 + "wx/flags.h"
  398 + "wx/intl.h"
  399 + "wx/log.h"
  400 + <typeinfo>
  401 +
  402 +1412638442 c:\wxwidgets-3.0.2\include\wx\hashmap.h
  403 + "wx/string.h"
  404 + "wx/wxcrt.h"
  405 + <unordered_map>
  406 + <tr1/unordered_map>
  407 + <ext/hash_map>
  408 + <hash_map>
  409 + <stddef.h>
  410 +
  411 +1412638442 c:\wxwidgets-3.0.2\include\wx\arrstr.h
  412 + "wx/defs.h"
  413 + "wx/string.h"
  414 + "wx/dynarray.h"
  415 + "wx/beforestd.h"
  416 + <iterator>
  417 + "wx/afterstd.h"
  418 +
  419 +1412638442 c:\wxwidgets-3.0.2\include\wx\dynarray.h
  420 + "wx/defs.h"
  421 + "wx/beforestd.h"
  422 + <vector>
  423 + <algorithm>
  424 + "wx/afterstd.h"
  425 +
  426 +1412638442 c:\wxwidgets-3.0.2\include\wx\flags.h
  427 +
  428 +1412638442 c:\wxwidgets-3.0.2\include\wx\intl.h
  429 + "wx/defs.h"
  430 + "wx/string.h"
  431 + "wx/translation.h"
  432 + "wx/fontenc.h"
  433 + "wx/language.h"
  434 +
  435 +1412638444 c:\wxwidgets-3.0.2\include\wx\translation.h
  436 + "wx/defs.h"
  437 + "wx/string.h"
  438 + "wx/buffer.h"
  439 + "wx/language.h"
  440 + "wx/hashmap.h"
  441 + "wx/strconv.h"
  442 + "wx/scopedptr.h"
  443 +
  444 +1412638444 c:\wxwidgets-3.0.2\include\wx\language.h
  445 + "wx/defs.h"
  446 +
  447 +1412638444 c:\wxwidgets-3.0.2\include\wx\scopedptr.h
  448 + "wx/defs.h"
  449 + "wx/checkeddelete.h"
  450 +
  451 +1412638442 c:\wxwidgets-3.0.2\include\wx\checkeddelete.h
  452 + "wx/cpp.h"
  453 +
  454 +1412638444 c:\wxwidgets-3.0.2\include\wx\log.h
  455 + "wx/defs.h"
  456 + "wx/cpp.h"
  457 + "wx/string.h"
  458 + "wx/strvararg.h"
  459 + "wx/arrstr.h"
  460 + <time.h>
  461 + "wx/dynarray.h"
  462 + "wx/hashmap.h"
  463 + "wx/thread.h"
  464 + "wx/iosfwrap.h"
  465 + "wx/generic/logg.h"
  466 + "wx/cocoa/log.h"
  467 +
  468 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\logg.h
  469 +
  470 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\log.h
  471 +
  472 +1412638444 c:\wxwidgets-3.0.2\include\wx\xtihandler.h
  473 + "wx/defs.h"
  474 + "wx/xti.h"
  475 +
  476 +1412638444 c:\wxwidgets-3.0.2\include\wx\rtti.h
  477 + "wx/memory.h"
  478 + "wx/flags.h"
  479 +
  480 +1412638444 c:\wxwidgets-3.0.2\include\wx\xti2.h
  481 + "wx/xtiprop.h"
  482 + "wx/xtictor.h"
  483 +
  484 +1412638444 c:\wxwidgets-3.0.2\include\wx\xtiprop.h
  485 + "wx/defs.h"
  486 + "wx/xti.h"
  487 + "wx/any.h"
  488 +
  489 +1412638442 c:\wxwidgets-3.0.2\include\wx\any.h
  490 + "wx/defs.h"
  491 + <new>
  492 + "wx/string.h"
  493 + "wx/meta/if.h"
  494 + "wx/typeinfo.h"
  495 + "wx/list.h"
  496 + "wx/datetime.h"
  497 + "wx/variant.h"
  498 +
  499 +1412638444 c:\wxwidgets-3.0.2\include\wx\list.h
  500 + "wx/defs.h"
  501 + "wx/object.h"
  502 + "wx/string.h"
  503 + "wx/vector.h"
  504 + "wx/beforestd.h"
  505 + <algorithm>
  506 + <iterator>
  507 + <list>
  508 + "wx/afterstd.h"
  509 +
  510 +1412638442 c:\wxwidgets-3.0.2\include\wx\datetime.h
  511 + "wx/defs.h"
  512 + "wx/msw/wince/time.h"
  513 + <time.h>
  514 + <limits.h>
  515 + "wx/longlong.h"
  516 + "wx/anystr.h"
  517 + "wx/dynarray.h"
  518 +
  519 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wince\time.h
  520 +
  521 +1412638444 c:\wxwidgets-3.0.2\include\wx\longlong.h
  522 + "wx/defs.h"
  523 + "wx/string.h"
  524 + <limits.h>
  525 + "wx/iosfwrap.h"
  526 + <limits>
  527 + "wx/strvararg.h"
  528 +
  529 +1412638442 c:\wxwidgets-3.0.2\include\wx\anystr.h
  530 + "wx/string.h"
  531 +
  532 +1412638444 c:\wxwidgets-3.0.2\include\wx\variant.h
  533 + "wx/defs.h"
  534 + "wx/object.h"
  535 + "wx/string.h"
  536 + "wx/arrstr.h"
  537 + "wx/list.h"
  538 + "wx/cpp.h"
  539 + "wx/longlong.h"
  540 + "wx/datetime.h"
  541 + "wx/iosfwrap.h"
  542 + "wx/any.h"
  543 +
  544 +1412638444 c:\wxwidgets-3.0.2\include\wx\xtictor.h
  545 + "wx/defs.h"
  546 + "wx/xti.h"
  547 +
  548 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\msvcrt.h
  549 + <stdlib.h>
  550 + <crtdbg.h>
  551 +
  552 +1412638442 c:\wxwidgets-3.0.2\include\wx\clntdata.h
  553 + "wx/defs.h"
  554 + "wx/string.h"
  555 + "wx/hashmap.h"
  556 +
  557 +1412638442 c:\wxwidgets-3.0.2\include\wx\gdicmn.h
  558 + "wx/defs.h"
  559 + "wx/list.h"
  560 + "wx/string.h"
  561 + "wx/fontenc.h"
  562 + "wx/hashmap.h"
  563 + "wx/math.h"
  564 +
  565 +1412638444 c:\wxwidgets-3.0.2\include\wx\math.h
  566 + "wx/defs.h"
  567 + <math.h>
  568 + <cmath>
  569 + <float.h>
  570 + <ieeefp.h>
  571 +
  572 +1412638442 c:\wxwidgets-3.0.2\include\wx\cursor.h
  573 + "wx/defs.h"
  574 + "wx/msw/cursor.h"
  575 + "wx/motif/cursor.h"
  576 + "wx/gtk/cursor.h"
  577 + "wx/gtk1/cursor.h"
  578 + "wx/x11/cursor.h"
  579 + "wx/dfb/cursor.h"
  580 + "wx/osx/cursor.h"
  581 + "wx/cocoa/cursor.h"
  582 + "wx/os2/cursor.h"
  583 + "wx/utils.h"
  584 +
  585 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\cursor.h
  586 + "wx/msw/gdiimage.h"
  587 +
  588 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\gdiimage.h
  589 + "wx/gdiobj.h"
  590 + "wx/gdicmn.h"
  591 + "wx/list.h"
  592 +
  593 +1412638442 c:\wxwidgets-3.0.2\include\wx\gdiobj.h
  594 + "wx/object.h"
  595 +
  596 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\cursor.h
  597 + "wx/gdiobj.h"
  598 + "wx/gdicmn.h"
  599 +
  600 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\cursor.h
  601 + "wx/gdiobj.h"
  602 + "wx/gdicmn.h"
  603 +
  604 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\cursor.h
  605 + "wx/gdiobj.h"
  606 + "wx/gdicmn.h"
  607 + "wx/image.h"
  608 +
  609 +1412638442 c:\wxwidgets-3.0.2\include\wx\image.h
  610 + "wx/defs.h"
  611 + "wx/object.h"
  612 + "wx/string.h"
  613 + "wx/gdicmn.h"
  614 + "wx/hashmap.h"
  615 + "wx/arrstr.h"
  616 + "wx/stream.h"
  617 + "wx/variant.h"
  618 + "wx/imagbmp.h"
  619 + "wx/imagpng.h"
  620 + "wx/imaggif.h"
  621 + "wx/imagpcx.h"
  622 + "wx/imagjpeg.h"
  623 + "wx/imagtga.h"
  624 + "wx/imagtiff.h"
  625 + "wx/imagpnm.h"
  626 + "wx/imagxpm.h"
  627 + "wx/imagiff.h"
  628 +
  629 +1412638444 c:\wxwidgets-3.0.2\include\wx\stream.h
  630 + "wx/defs.h"
  631 + <stdio.h>
  632 + "wx/object.h"
  633 + "wx/string.h"
  634 + "wx/filefn.h"
  635 +
  636 +1412638442 c:\wxwidgets-3.0.2\include\wx\filefn.h
  637 + "wx/list.h"
  638 + "wx/arrstr.h"
  639 + "wx/msw/wince/time.h"
  640 + "wx/msw/private.h"
  641 + <time.h>
  642 + <sys/types.h>
  643 + <sys/stat.h>
  644 + <process.h>
  645 + "wx/os2/private.h"
  646 + <direct.h>
  647 + <io.h>
  648 + <unistd.h>
  649 + <unistd.h>
  650 + <dirent.h>
  651 + <direct.h>
  652 + <dos.h>
  653 + <io.h>
  654 + <direct.h>
  655 + <dos.h>
  656 + <io.h>
  657 + <io.h>
  658 + <unistd.h>
  659 + <dir.h>
  660 + <fcntl.h>
  661 + <sys/types.h>
  662 +
  663 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\private.h
  664 + "wx/msw/wrapwin.h"
  665 + "wx/msw/microwin.h"
  666 + "wx/log.h"
  667 + "wx/window.h"
  668 + "wx/gdicmn.h"
  669 + "wx/colour.h"
  670 +
  671 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\microwin.h
  672 +
  673 +1412638442 c:\wxwidgets-3.0.2\include\wx\colour.h
  674 + "wx/defs.h"
  675 + "wx/gdiobj.h"
  676 + "wx/variant.h"
  677 + "wx/msw/colour.h"
  678 + "wx/motif/colour.h"
  679 + "wx/gtk/colour.h"
  680 + "wx/gtk1/colour.h"
  681 + "wx/generic/colour.h"
  682 + "wx/x11/colour.h"
  683 + "wx/osx/colour.h"
  684 + "wx/cocoa/colour.h"
  685 + "wx/os2/colour.h"
  686 +
  687 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\colour.h
  688 + "wx/object.h"
  689 +
  690 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\colour.h
  691 + "wx/object.h"
  692 + "wx/string.h"
  693 +
  694 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\colour.h
  695 +
  696 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\colour.h
  697 + "wx/defs.h"
  698 + "wx/object.h"
  699 + "wx/string.h"
  700 + "wx/gdiobj.h"
  701 + "wx/palette.h"
  702 +
  703 +1412638444 c:\wxwidgets-3.0.2\include\wx\palette.h
  704 + "wx/defs.h"
  705 + "wx/object.h"
  706 + "wx/gdiobj.h"
  707 + "wx/msw/palette.h"
  708 + "wx/x11/palette.h"
  709 + "wx/generic/paletteg.h"
  710 + "wx/osx/palette.h"
  711 + "wx/os2/palette.h"
  712 +
  713 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\palette.h
  714 + "wx/gdiobj.h"
  715 +
  716 +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\palette.h
  717 + "wx/list.h"
  718 +
  719 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\paletteg.h
  720 + "wx/defs.h"
  721 + "wx/object.h"
  722 + "wx/gdiobj.h"
  723 + "wx/gdicmn.h"
  724 +
  725 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\palette.h
  726 + "wx/gdiobj.h"
  727 +
  728 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\palette.h
  729 + "wx/gdiobj.h"
  730 + "wx/os2/private.h"
  731 +
  732 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\colour.h
  733 + "wx/object.h"
  734 +
  735 +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\colour.h
  736 + "wx/defs.h"
  737 + "wx/object.h"
  738 + "wx/string.h"
  739 + "wx/gdiobj.h"
  740 + "wx/palette.h"
  741 +
  742 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\colour.h
  743 + "wx/osx/core/colour.h"
  744 +
  745 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\core\colour.h
  746 + "wx/object.h"
  747 + "wx/string.h"
  748 + "wx/osx/core/cfref.h"
  749 +
  750 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\core\cfref.h
  751 + <unistd.h>
  752 + <AvailabilityMacros.h>
  753 +
  754 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\colour.h
  755 + "wx/object.h"
  756 + "wx/string.h"
  757 +
  758 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\colour.h
  759 + "wx/object.h"
  760 +
  761 +1412638442 c:\wxwidgets-3.0.2\include\wx\imagbmp.h
  762 + "wx/image.h"
  763 +
  764 +1412638442 c:\wxwidgets-3.0.2\include\wx\imagpng.h
  765 + "wx/defs.h"
  766 + "wx/image.h"
  767 + "wx/versioninfo.h"
  768 +
  769 +1412638444 c:\wxwidgets-3.0.2\include\wx\versioninfo.h
  770 + "wx/string.h"
  771 +
  772 +1412638442 c:\wxwidgets-3.0.2\include\wx\imaggif.h
  773 + "wx/image.h"
  774 +
  775 +1412638442 c:\wxwidgets-3.0.2\include\wx\imagpcx.h
  776 + "wx/image.h"
  777 +
  778 +1412638442 c:\wxwidgets-3.0.2\include\wx\imagjpeg.h
  779 + "wx/defs.h"
  780 + "wx/image.h"
  781 + "wx/versioninfo.h"
  782 +
  783 +1412638442 c:\wxwidgets-3.0.2\include\wx\imagtga.h
  784 + "wx/image.h"
  785 +
  786 +1412638442 c:\wxwidgets-3.0.2\include\wx\imagtiff.h
  787 + "wx/defs.h"
  788 + "wx/image.h"
  789 + "wx/versioninfo.h"
  790 +
  791 +1412638442 c:\wxwidgets-3.0.2\include\wx\imagpnm.h
  792 + "wx/image.h"
  793 +
  794 +1412638442 c:\wxwidgets-3.0.2\include\wx\imagxpm.h
  795 + "wx/image.h"
  796 +
  797 +1412638442 c:\wxwidgets-3.0.2\include\wx\imagiff.h
  798 + "wx/image.h"
  799 +
  800 +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\cursor.h
  801 + "wx/gdiobj.h"
  802 + "wx/gdicmn.h"
  803 + "wx/colour.h"
  804 +
  805 +1412638442 c:\wxwidgets-3.0.2\include\wx\dfb\cursor.h
  806 + "wx/gdiobj.h"
  807 + "wx/gdicmn.h"
  808 +
  809 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\cursor.h
  810 + "wx/bitmap.h"
  811 +
  812 +1412638442 c:\wxwidgets-3.0.2\include\wx\bitmap.h
  813 + "wx/string.h"
  814 + "wx/gdicmn.h"
  815 + "wx/colour.h"
  816 + "wx/image.h"
  817 + "wx/variant.h"
  818 + "wx/msw/bitmap.h"
  819 + "wx/x11/bitmap.h"
  820 + "wx/gtk/bitmap.h"
  821 + "wx/gtk1/bitmap.h"
  822 + "wx/x11/bitmap.h"
  823 + "wx/dfb/bitmap.h"
  824 + "wx/osx/bitmap.h"
  825 + "wx/cocoa/bitmap.h"
  826 + "wx/os2/bitmap.h"
  827 + "wx/generic/mask.h"
  828 +
  829 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\bitmap.h
  830 + "wx/msw/gdiimage.h"
  831 + "wx/math.h"
  832 + "wx/palette.h"
  833 +
  834 +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\bitmap.h
  835 + "wx/defs.h"
  836 + "wx/object.h"
  837 + "wx/string.h"
  838 + "wx/palette.h"
  839 + "wx/gdiobj.h"
  840 +
  841 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\bitmap.h
  842 +
  843 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\bitmap.h
  844 + "wx/defs.h"
  845 + "wx/object.h"
  846 + "wx/string.h"
  847 + "wx/palette.h"
  848 + "wx/gdiobj.h"
  849 +
  850 +1412638442 c:\wxwidgets-3.0.2\include\wx\dfb\bitmap.h
  851 + "wx/dfb/dfbptr.h"
  852 +
  853 +1412638442 c:\wxwidgets-3.0.2\include\wx\dfb\dfbptr.h
  854 +
  855 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\bitmap.h
  856 + "wx/palette.h"
  857 +
  858 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\bitmap.h
  859 + "wx/palette.h"
  860 +
  861 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\bitmap.h
  862 + "wx/os2/private.h"
  863 + "wx/os2/gdiimage.h"
  864 + "wx/gdicmn.h"
  865 + "wx/palette.h"
  866 +
  867 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\gdiimage.h
  868 + "wx/gdiobj.h"
  869 + "wx/gdicmn.h"
  870 + "wx/list.h"
  871 +
  872 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\mask.h
  873 +
  874 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\cursor.h
  875 + "wx/bitmap.h"
  876 +
  877 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\cursor.h
  878 + "wx/bitmap.h"
  879 +
  880 +1412638444 c:\wxwidgets-3.0.2\include\wx\utils.h
  881 + "wx/object.h"
  882 + "wx/list.h"
  883 + "wx/filefn.h"
  884 + "wx/hashmap.h"
  885 + "wx/versioninfo.h"
  886 + "wx/meta/implicitconversion.h"
  887 + "wx/gdicmn.h"
  888 + "wx/mousestate.h"
  889 + "wx/longlong.h"
  890 + "wx/platinfo.h"
  891 + <direct.h>
  892 + <dirent.h>
  893 + <unistd.h>
  894 + <stdio.h>
  895 +
  896 +1412638444 c:\wxwidgets-3.0.2\include\wx\meta\implicitconversion.h
  897 + "wx/defs.h"
  898 + "wx/meta/if.h"
  899 +
  900 +1412638444 c:\wxwidgets-3.0.2\include\wx\mousestate.h
  901 + "wx/gdicmn.h"
  902 + "wx/kbdstate.h"
  903 +
  904 +1412638444 c:\wxwidgets-3.0.2\include\wx\kbdstate.h
  905 + "wx/defs.h"
  906 +
  907 +1412638444 c:\wxwidgets-3.0.2\include\wx\platinfo.h
  908 + "wx/string.h"
  909 +
  910 +1412638444 c:\wxwidgets-3.0.2\include\wx\tracker.h
  911 + "wx/defs.h"
  912 +
  913 +1412638444 c:\wxwidgets-3.0.2\include\wx\meta\convertible.h
  914 +
  915 +1412638444 c:\wxwidgets-3.0.2\include\wx\meta\removeref.h
  916 +
  917 +1412638442 c:\wxwidgets-3.0.2\include\wx\font.h
  918 + "wx/defs.h"
  919 + "wx/fontenc.h"
  920 + "wx/gdiobj.h"
  921 + "wx/gdicmn.h"
  922 + "wx/msw/font.h"
  923 + "wx/motif/font.h"
  924 + "wx/gtk/font.h"
  925 + "wx/gtk1/font.h"
  926 + "wx/x11/font.h"
  927 + "wx/dfb/font.h"
  928 + "wx/osx/font.h"
  929 + "wx/cocoa/font.h"
  930 + "wx/os2/font.h"
  931 +
  932 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\font.h
  933 + "wx/gdicmn.h"
  934 +
  935 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\font.h
  936 +
  937 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\font.h
  938 +
  939 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\font.h
  940 + "wx/hash.h"
  941 +
  942 +1412638442 c:\wxwidgets-3.0.2\include\wx\hash.h
  943 + "wx/defs.h"
  944 + "wx/string.h"
  945 + "wx/object.h"
  946 +
  947 +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\font.h
  948 +
  949 +1412638442 c:\wxwidgets-3.0.2\include\wx\dfb\font.h
  950 + "wx/dfb/dfbptr.h"
  951 +
  952 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\font.h
  953 +
  954 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\font.h
  955 +
  956 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\font.h
  957 + "wx/gdiobj.h"
  958 + "wx/os2/private.h"
  959 +
  960 +1412638444 c:\wxwidgets-3.0.2\include\wx\region.h
  961 + "wx/gdiobj.h"
  962 + "wx/gdicmn.h"
  963 + "wx/msw/region.h"
  964 + "wx/gtk/region.h"
  965 + "wx/gtk1/region.h"
  966 + "wx/x11/region.h"
  967 + "wx/dfb/region.h"
  968 + "wx/osx/region.h"
  969 + "wx/cocoa/region.h"
  970 + "wx/os2/region.h"
  971 +
  972 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\region.h
  973 +
  974 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\region.h
  975 +
  976 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\region.h
  977 + "wx/list.h"
  978 +
  979 +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\region.h
  980 + "wx/list.h"
  981 +
  982 +1412638442 c:\wxwidgets-3.0.2\include\wx\dfb\region.h
  983 +
  984 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\region.h
  985 + "wx/osx/carbon/region.h"
  986 + "wx/generic/region.h"
  987 +
  988 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\carbon\region.h
  989 + "wx/list.h"
  990 +
  991 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\region.h
  992 +
  993 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\region.h
  994 + "wx/generic/region.h"
  995 +
  996 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\region.h
  997 + "wx/list.h"
  998 + "wx/os2/private.h"
  999 +
  1000 +1412638444 c:\wxwidgets-3.0.2\include\wx\validate.h
  1001 + "wx/defs.h"
  1002 + "wx/event.h"
  1003 +
  1004 +1412638442 c:\wxwidgets-3.0.2\include\wx\accel.h
  1005 + "wx/defs.h"
  1006 + "wx/object.h"
  1007 + "wx/generic/accel.h"
  1008 + "wx/msw/accel.h"
  1009 + "wx/motif/accel.h"
  1010 + "wx/gtk/accel.h"
  1011 + "wx/gtk1/accel.h"
  1012 + "wx/osx/accel.h"
  1013 + "wx/generic/accel.h"
  1014 + "wx/os2/accel.h"
  1015 +
  1016 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\accel.h
  1017 +
  1018 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\accel.h
  1019 +
  1020 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\accel.h
  1021 + "wx/object.h"
  1022 + "wx/string.h"
  1023 + "wx/event.h"
  1024 +
  1025 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\accel.h
  1026 + "wx/generic/accel.h"
  1027 +
  1028 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\accel.h
  1029 + "wx/generic/accel.h"
  1030 +
  1031 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\accel.h
  1032 + "wx/string.h"
  1033 + "wx/event.h"
  1034 +
  1035 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\accel.h
  1036 + "wx/object.h"
  1037 +
  1038 +1412638442 c:\wxwidgets-3.0.2\include\wx\access.h
  1039 + "wx/defs.h"
  1040 + "wx/variant.h"
  1041 + "wx/msw/ole/access.h"
  1042 +
  1043 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\ole\access.h
  1044 +
  1045 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\window.h
  1046 + "wx/settings.h"
  1047 +
  1048 +1412638444 c:\wxwidgets-3.0.2\include\wx\settings.h
  1049 + "wx/colour.h"
  1050 + "wx/font.h"
  1051 +
  1052 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\window.h
  1053 + "wx/region.h"
  1054 +
  1055 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\window.h
  1056 + "wx/dynarray.h"
  1057 +
  1058 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\window.h
  1059 +
  1060 +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\window.h
  1061 + "wx/region.h"
  1062 +
  1063 +1412638442 c:\wxwidgets-3.0.2\include\wx\dfb\window.h
  1064 + "wx/dfb/dfbptr.h"
  1065 +
  1066 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\window.h
  1067 + "wx/brush.h"
  1068 + "wx/dc.h"
  1069 +
  1070 +1412638442 c:\wxwidgets-3.0.2\include\wx\brush.h
  1071 + "wx/defs.h"
  1072 + "wx/object.h"
  1073 + "wx/gdiobj.h"
  1074 + "wx/gdicmn.h"
  1075 + "wx/msw/brush.h"
  1076 + "wx/x11/brush.h"
  1077 + "wx/gtk/brush.h"
  1078 + "wx/gtk1/brush.h"
  1079 + "wx/dfb/brush.h"
  1080 + "wx/osx/brush.h"
  1081 + "wx/cocoa/brush.h"
  1082 + "wx/os2/brush.h"
  1083 +
  1084 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\brush.h
  1085 +
  1086 +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\brush.h
  1087 + "wx/gdiobj.h"
  1088 +
  1089 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\brush.h
  1090 +
  1091 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\brush.h
  1092 + "wx/defs.h"
  1093 + "wx/object.h"
  1094 + "wx/string.h"
  1095 + "wx/gdiobj.h"
  1096 + "wx/bitmap.h"
  1097 +
  1098 +1412638442 c:\wxwidgets-3.0.2\include\wx\dfb\brush.h
  1099 + "wx/defs.h"
  1100 + "wx/object.h"
  1101 + "wx/string.h"
  1102 + "wx/gdiobj.h"
  1103 + "wx/bitmap.h"
  1104 +
  1105 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\brush.h
  1106 + "wx/gdicmn.h"
  1107 + "wx/gdiobj.h"
  1108 + "wx/bitmap.h"
  1109 +
  1110 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\brush.h
  1111 + "wx/gdicmn.h"
  1112 + "wx/gdiobj.h"
  1113 + "wx/bitmap.h"
  1114 +
  1115 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\brush.h
  1116 + "wx/bitmap.h"
  1117 +
  1118 +1412638442 c:\wxwidgets-3.0.2\include\wx\dc.h
  1119 + "wx/object.h"
  1120 + "wx/intl.h"
  1121 + "wx/cursor.h"
  1122 + "wx/font.h"
  1123 + "wx/colour.h"
  1124 + "wx/bitmap.h"
  1125 + "wx/brush.h"
  1126 + "wx/pen.h"
  1127 + "wx/palette.h"
  1128 + "wx/dynarray.h"
  1129 + "wx/math.h"
  1130 + "wx/image.h"
  1131 + "wx/region.h"
  1132 + "wx/affinematrix2d.h"
  1133 +
  1134 +1412638444 c:\wxwidgets-3.0.2\include\wx\pen.h
  1135 + "wx/gdiobj.h"
  1136 + "wx/gdicmn.h"
  1137 + "wx/msw/pen.h"
  1138 + "wx/x11/pen.h"
  1139 + "wx/gtk/pen.h"
  1140 + "wx/gtk1/pen.h"
  1141 + "wx/dfb/pen.h"
  1142 + "wx/osx/pen.h"
  1143 + "wx/cocoa/pen.h"
  1144 + "wx/os2/pen.h"
  1145 +
  1146 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\pen.h
  1147 + "wx/gdiobj.h"
  1148 + "wx/gdicmn.h"
  1149 +
  1150 +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\pen.h
  1151 + "wx/gdicmn.h"
  1152 + "wx/gdiobj.h"
  1153 +
  1154 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\pen.h
  1155 +
  1156 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\pen.h
  1157 + "wx/defs.h"
  1158 + "wx/object.h"
  1159 + "wx/string.h"
  1160 + "wx/gdiobj.h"
  1161 + "wx/gdicmn.h"
  1162 +
  1163 +1412638442 c:\wxwidgets-3.0.2\include\wx\dfb\pen.h
  1164 + "wx/defs.h"
  1165 + "wx/object.h"
  1166 + "wx/string.h"
  1167 + "wx/gdiobj.h"
  1168 + "wx/gdicmn.h"
  1169 +
  1170 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\pen.h
  1171 + "wx/gdiobj.h"
  1172 + "wx/colour.h"
  1173 + "wx/bitmap.h"
  1174 +
  1175 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\pen.h
  1176 + "wx/gdiobj.h"
  1177 + "wx/gdicmn.h"
  1178 +
  1179 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\pen.h
  1180 + "wx/gdiobj.h"
  1181 + "wx/bitmap.h"
  1182 +
  1183 +1412638442 c:\wxwidgets-3.0.2\include\wx\affinematrix2d.h
  1184 + "wx/defs.h"
  1185 + "wx/affinematrix2dbase.h"
  1186 +
  1187 +1412638442 c:\wxwidgets-3.0.2\include\wx\affinematrix2dbase.h
  1188 + "wx/defs.h"
  1189 + "wx/geometry.h"
  1190 +
  1191 +1412638442 c:\wxwidgets-3.0.2\include\wx\geometry.h
  1192 + "wx/defs.h"
  1193 + "wx/utils.h"
  1194 + "wx/gdicmn.h"
  1195 + "wx/math.h"
  1196 +
  1197 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\window.h
  1198 + "wx/cocoa/NSView.h"
  1199 +
  1200 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\nsview.h
  1201 + "wx/hashmap.h"
  1202 + "wx/cocoa/ObjcAssociate.h"
  1203 +
  1204 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\objcassociate.h
  1205 +
  1206 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\window.h
  1207 + <os2.h>
  1208 + "wx/hash.h"
  1209 +
  1210 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\window.h
  1211 + "wx/bitmap.h"
  1212 +
  1213 +1412638444 c:\wxwidgets-3.0.2\include\wx\textctrl.h
  1214 + "wx/defs.h"
  1215 + "wx/control.h"
  1216 + "wx/textentry.h"
  1217 + "wx/dynarray.h"
  1218 + "wx/gdicmn.h"
  1219 + "wx/ioswrap.h"
  1220 + "wx/x11/textctrl.h"
  1221 + "wx/univ/textctrl.h"
  1222 + "wx/msw/wince/textctrlce.h"
  1223 + "wx/msw/textctrl.h"
  1224 + "wx/motif/textctrl.h"
  1225 + "wx/gtk/textctrl.h"
  1226 + "wx/gtk1/textctrl.h"
  1227 + "wx/osx/textctrl.h"
  1228 + "wx/cocoa/textctrl.h"
  1229 + "wx/os2/textctrl.h"
  1230 +
  1231 +1412638442 c:\wxwidgets-3.0.2\include\wx\control.h
  1232 + "wx/defs.h"
  1233 + "wx/window.h"
  1234 + "wx/univ/control.h"
  1235 + "wx/msw/control.h"
  1236 + "wx/motif/control.h"
  1237 + "wx/gtk/control.h"
  1238 + "wx/gtk1/control.h"
  1239 + "wx/osx/control.h"
  1240 + "wx/cocoa/control.h"
  1241 + "wx/os2/control.h"
  1242 +
  1243 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\control.h
  1244 + "wx/univ/inphand.h"
  1245 + "wx/univ/inpcons.h"
  1246 +
  1247 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\inphand.h
  1248 + "wx/univ/inpcons.h"
  1249 +
  1250 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\inpcons.h
  1251 + "wx/object.h"
  1252 + "wx/event.h"
  1253 +
  1254 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\control.h
  1255 + "wx/dynarray.h"
  1256 +
  1257 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\control.h
  1258 + "wx/window.h"
  1259 + "wx/list.h"
  1260 + "wx/validate.h"
  1261 +
  1262 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\control.h
  1263 +
  1264 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\control.h
  1265 + "wx/defs.h"
  1266 + "wx/object.h"
  1267 + "wx/list.h"
  1268 + "wx/window.h"
  1269 +
  1270 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\control.h
  1271 +
  1272 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\control.h
  1273 + "wx/cocoa/NSControl.h"
  1274 +
  1275 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\nscontrol.h
  1276 + "wx/hashmap.h"
  1277 + "wx/cocoa/ObjcAssociate.h"
  1278 +
  1279 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\control.h
  1280 + "wx/dynarray.h"
  1281 +
  1282 +1412638444 c:\wxwidgets-3.0.2\include\wx\textentry.h
  1283 + "wx/filefn.h"
  1284 + "wx/gdicmn.h"
  1285 + "wx/gtk/textentry.h"
  1286 + "wx/osx/textentry.h"
  1287 + "wx/msw/textentry.h"
  1288 + "wx/motif/textentry.h"
  1289 + "wx/os2/textentry.h"
  1290 +
  1291 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\textentry.h
  1292 +
  1293 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\textentry.h
  1294 + "wx/control.h"
  1295 +
  1296 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\textentry.h
  1297 +
  1298 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\textentry.h
  1299 +
  1300 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\textentry.h
  1301 +
  1302 +1412638442 c:\wxwidgets-3.0.2\include\wx\ioswrap.h
  1303 + "wx/beforestd.h"
  1304 + <iostream.h>
  1305 + <iostream>
  1306 + "wx/afterstd.h"
  1307 + "wx/msw/winundef.h"
  1308 +
  1309 +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\textctrl.h
  1310 + "wx/univ/textctrl.h"
  1311 + "wx/scrolwin.h"
  1312 + "wx/arrstr.h"
  1313 +
  1314 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\textctrl.h
  1315 + "wx/scrolwin.h"
  1316 + "wx/univ/inphand.h"
  1317 +
  1318 +1412638444 c:\wxwidgets-3.0.2\include\wx\scrolwin.h
  1319 + "wx/panel.h"
  1320 + "wx/gtk/scrolwin.h"
  1321 + "wx/gtk1/scrolwin.h"
  1322 + "wx/generic/scrolwin.h"
  1323 +
  1324 +1412638444 c:\wxwidgets-3.0.2\include\wx\panel.h
  1325 + "wx/window.h"
  1326 + "wx/containr.h"
  1327 + "wx/univ/panel.h"
  1328 + "wx/msw/panel.h"
  1329 + "wx/generic/panelg.h"
  1330 +
  1331 +1412638442 c:\wxwidgets-3.0.2\include\wx\containr.h
  1332 + "wx/defs.h"
  1333 + "wx/event.h"
  1334 +
  1335 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\panel.h
  1336 +
  1337 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\panel.h
  1338 +
  1339 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\panelg.h
  1340 + "wx/bitmap.h"
  1341 +
  1342 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\scrolwin.h
  1343 +
  1344 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\scrolwin.h
  1345 +
  1346 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\scrolwin.h
  1347 +
  1348 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wince\textctrlce.h
  1349 + "wx/dynarray.h"
  1350 +
  1351 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\textctrl.h
  1352 +
  1353 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\textctrl.h
  1354 +
  1355 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\textctrl.h
  1356 +
  1357 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\textctrl.h
  1358 +
  1359 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\textctrl.h
  1360 + "wx/control.h"
  1361 + "wx/textctrl.h"
  1362 +
  1363 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\textctrl.h
  1364 + "wx/cocoa/NSTextField.h"
  1365 +
  1366 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\nstextfield.h
  1367 + "wx/hashmap.h"
  1368 + "wx/cocoa/ObjcAssociate.h"
  1369 +
  1370 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\textctrl.h
  1371 +
  1372 +1412638444 c:\wxwidgets-3.0.2\include\wx\statbmp.h
  1373 + "wx/defs.h"
  1374 + "wx/control.h"
  1375 + "wx/bitmap.h"
  1376 + "wx/icon.h"
  1377 + "wx/univ/statbmp.h"
  1378 + "wx/msw/statbmp.h"
  1379 + "wx/motif/statbmp.h"
  1380 + "wx/gtk/statbmp.h"
  1381 + "wx/gtk1/statbmp.h"
  1382 + "wx/osx/statbmp.h"
  1383 + "wx/cocoa/statbmp.h"
  1384 + "wx/os2/statbmp.h"
  1385 +
  1386 +1412638442 c:\wxwidgets-3.0.2\include\wx\icon.h
  1387 + "wx/iconloc.h"
  1388 + "wx/msw/icon.h"
  1389 + "wx/motif/icon.h"
  1390 + "wx/generic/icon.h"
  1391 + "wx/generic/icon.h"
  1392 + "wx/generic/icon.h"
  1393 + "wx/generic/icon.h"
  1394 + "wx/osx/icon.h"
  1395 + "wx/generic/icon.h"
  1396 + "wx/cocoa/icon.h"
  1397 + "wx/os2/icon.h"
  1398 + "wx/variant.h"
  1399 +
  1400 +1412638442 c:\wxwidgets-3.0.2\include\wx\iconloc.h
  1401 + "wx/string.h"
  1402 +
  1403 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\icon.h
  1404 + "wx/msw/gdiimage.h"
  1405 +
  1406 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\icon.h
  1407 + "wx/bitmap.h"
  1408 +
  1409 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\icon.h
  1410 + "wx/bitmap.h"
  1411 +
  1412 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\icon.h
  1413 + "wx/bitmap.h"
  1414 +
  1415 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\icon.h
  1416 + "wx/gdicmn.h"
  1417 + "wx/gdiobj.h"
  1418 +
  1419 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\icon.h
  1420 + "wx/bitmap.h"
  1421 + "wx/os2/gdiimage.h"
  1422 +
  1423 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\statbmp.h
  1424 + "wx/bitmap.h"
  1425 +
  1426 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\statbmp.h
  1427 + "wx/control.h"
  1428 + "wx/icon.h"
  1429 + "wx/bitmap.h"
  1430 +
  1431 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\statbmp.h
  1432 + "wx/motif/bmpmotif.h"
  1433 + "wx/icon.h"
  1434 +
  1435 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\bmpmotif.h
  1436 + "wx/defs.h"
  1437 + "wx/bitmap.h"
  1438 +
  1439 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\statbmp.h
  1440 + "wx/icon.h"
  1441 +
  1442 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\statbmp.h
  1443 + "wx/icon.h"
  1444 +
  1445 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\statbmp.h
  1446 + "wx/osx/carbon/statbmp.h"
  1447 + "wx/generic/statbmpg.h"
  1448 +
  1449 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\carbon\statbmp.h
  1450 + "wx/icon.h"
  1451 +
  1452 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\statbmpg.h
  1453 + "wx/statbmp.h"
  1454 +
  1455 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\statbmp.h
  1456 +
  1457 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\statbmp.h
  1458 + "wx/control.h"
  1459 + "wx/icon.h"
  1460 +
  1461 +1412638442 c:\wxwidgets-3.0.2\include\wx\dialog.h
  1462 + "wx/toplevel.h"
  1463 + "wx/containr.h"
  1464 + "wx/sharedptr.h"
  1465 + "wx/univ/dialog.h"
  1466 + "wx/msw/dialog.h"
  1467 + "wx/motif/dialog.h"
  1468 + "wx/gtk/dialog.h"
  1469 + "wx/gtk1/dialog.h"
  1470 + "wx/osx/dialog.h"
  1471 + "wx/cocoa/dialog.h"
  1472 + "wx/os2/dialog.h"
  1473 +
  1474 +1412638444 c:\wxwidgets-3.0.2\include\wx\toplevel.h
  1475 + "wx/nonownedwnd.h"
  1476 + "wx/iconbndl.h"
  1477 + "wx/weakref.h"
  1478 + "wx/msw/toplevel.h"
  1479 + "wx/gtk/toplevel.h"
  1480 + "wx/gtk1/toplevel.h"
  1481 + "wx/x11/toplevel.h"
  1482 + "wx/dfb/toplevel.h"
  1483 + "wx/osx/toplevel.h"
  1484 + "wx/cocoa/toplevel.h"
  1485 + "wx/os2/toplevel.h"
  1486 + "wx/motif/toplevel.h"
  1487 + "wx/univ/toplevel.h"
  1488 +
  1489 +1412638444 c:\wxwidgets-3.0.2\include\wx\nonownedwnd.h
  1490 + "wx/window.h"
  1491 + "wx/dfb/nonownedwnd.h"
  1492 + "wx/gtk/nonownedwnd.h"
  1493 + "wx/osx/nonownedwnd.h"
  1494 + "wx/msw/nonownedwnd.h"
  1495 +
  1496 +1412638442 c:\wxwidgets-3.0.2\include\wx\dfb\nonownedwnd.h
  1497 + "wx/window.h"
  1498 + "wx/dfb/dfbptr.h"
  1499 +
  1500 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\nonownedwnd.h
  1501 +
  1502 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\nonownedwnd.h
  1503 + "wx/window.h"
  1504 + "wx/graphics.h"
  1505 +
  1506 +1412638442 c:\wxwidgets-3.0.2\include\wx\graphics.h
  1507 + "wx/defs.h"
  1508 + "wx/geometry.h"
  1509 + "wx/dynarray.h"
  1510 + "wx/dc.h"
  1511 + "wx/image.h"
  1512 + "wx/vector.h"
  1513 +
  1514 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\nonownedwnd.h
  1515 +
  1516 +1412638442 c:\wxwidgets-3.0.2\include\wx\iconbndl.h
  1517 + "wx/gdiobj.h"
  1518 + "wx/gdicmn.h"
  1519 + "wx/icon.h"
  1520 + "wx/dynarray.h"
  1521 +
  1522 +1412638444 c:\wxwidgets-3.0.2\include\wx\weakref.h
  1523 + "wx/tracker.h"
  1524 + "wx/meta/convertible.h"
  1525 + "wx/meta/int2type.h"
  1526 +
  1527 +1412638444 c:\wxwidgets-3.0.2\include\wx\meta\int2type.h
  1528 +
  1529 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\toplevel.h
  1530 +
  1531 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\toplevel.h
  1532 +
  1533 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\toplevel.h
  1534 +
  1535 +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\toplevel.h
  1536 +
  1537 +1412638442 c:\wxwidgets-3.0.2\include\wx\dfb\toplevel.h
  1538 +
  1539 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\toplevel.h
  1540 +
  1541 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\toplevel.h
  1542 + "wx/hashmap.h"
  1543 + "wx/cocoa/NSWindow.h"
  1544 +
  1545 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\nswindow.h
  1546 + "wx/hashmap.h"
  1547 + "wx/cocoa/ObjcAssociate.h"
  1548 +
  1549 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\toplevel.h
  1550 +
  1551 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\toplevel.h
  1552 +
  1553 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\toplevel.h
  1554 + "wx/univ/inpcons.h"
  1555 + "wx/univ/inphand.h"
  1556 + "wx/icon.h"
  1557 +
  1558 +1412638444 c:\wxwidgets-3.0.2\include\wx\sharedptr.h
  1559 + "wx/defs.h"
  1560 + "wx/atomic.h"
  1561 +
  1562 +1412638442 c:\wxwidgets-3.0.2\include\wx\atomic.h
  1563 + "wx/defs.h"
  1564 + "wx/msw/wrapwin.h"
  1565 + "libkern/OSAtomic.h"
  1566 + <atomic.h>
  1567 + "wx/thread.h"
  1568 +
  1569 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\dialog.h
  1570 +
  1571 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\dialog.h
  1572 + "wx/panel.h"
  1573 +
  1574 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\dialog.h
  1575 +
  1576 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\dialog.h
  1577 +
  1578 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\dialog.h
  1579 +
  1580 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\dialog.h
  1581 + "wx/panel.h"
  1582 +
  1583 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\dialog.h
  1584 + "wx/defs.h"
  1585 + "wx/panel.h"
  1586 + "wx/cocoa/NSPanel.h"
  1587 +
  1588 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\nspanel.h
  1589 + "wx/hashmap.h"
  1590 + "wx/cocoa/ObjcAssociate.h"
  1591 +
  1592 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\dialog.h
  1593 + "wx/panel.h"
  1594 +
  1595 +1412638444 c:\wxwidgets-3.0.2\include\wx\textfile.h
  1596 + "wx/defs.h"
  1597 + "wx/textbuf.h"
  1598 + "wx/file.h"
  1599 +
  1600 +1412638444 c:\wxwidgets-3.0.2\include\wx\textbuf.h
  1601 + "wx/defs.h"
  1602 + "wx/arrstr.h"
  1603 + "wx/convauto.h"
  1604 + "wx/string.h"
  1605 + "wx/dynarray.h"
  1606 +
  1607 +1412638442 c:\wxwidgets-3.0.2\include\wx\convauto.h
  1608 + "wx/strconv.h"
  1609 + "wx/fontenc.h"
  1610 +
  1611 +1412638442 c:\wxwidgets-3.0.2\include\wx\file.h
  1612 + "wx/defs.h"
  1613 + "wx/string.h"
  1614 + "wx/filefn.h"
  1615 + "wx/convauto.h"
  1616 +
  1617 +1412638444 c:\wxwidgets-3.0.2\include\wx\msgdlg.h
  1618 + "wx/defs.h"
  1619 + "wx/dialog.h"
  1620 + "wx/stockitem.h"
  1621 + "wx/generic/msgdlgg.h"
  1622 + "wx/cocoa/msgdlg.h"
  1623 + "wx/msw/msgdlg.h"
  1624 + "wx/motif/msgdlg.h"
  1625 + "wx/gtk/msgdlg.h"
  1626 + "wx/osx/msgdlg.h"
  1627 + "wx/os2/msgdlg.h"
  1628 +
  1629 +1412638444 c:\wxwidgets-3.0.2\include\wx\stockitem.h
  1630 + "wx/defs.h"
  1631 + "wx/chartype.h"
  1632 + "wx/string.h"
  1633 + "wx/accel.h"
  1634 +
  1635 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\msgdlgg.h
  1636 +
  1637 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\msgdlg.h
  1638 + "wx/msgdlg.h"
  1639 + "wx/generic/msgdlgg.h"
  1640 +
  1641 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\msgdlg.h
  1642 +
  1643 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\msgdlg.h
  1644 +
  1645 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\msgdlg.h
  1646 +
  1647 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\msgdlg.h
  1648 +
  1649 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\msgdlg.h
  1650 +
  1651 +1412638442 c:\wxwidgets-3.0.2\include\wx\hyperlink.h
  1652 + "wx/defs.h"
  1653 + "wx/control.h"
  1654 + "wx/gtk/hyperlink.h"
  1655 + "wx/msw/hyperlink.h"
  1656 + "wx/generic/hyperlink.h"
  1657 +
  1658 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\hyperlink.h
  1659 + "wx/generic/hyperlink.h"
  1660 +
  1661 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\hyperlink.h
  1662 +
  1663 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\hyperlink.h
  1664 + "wx/generic/hyperlink.h"
  1665 +
  1666 +1529401255 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\bundle_schematic.cpp
  1667 + "BUNDLE_SCHEMATIC.h"
  1668 +
  1669 +1502693582 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\bundle_schematic.h
  1670 + <wx/panel.h>
  1671 + <wx/dcclient.h>
  1672 + <wx/msgdlg.h>
  1673 + <iostream>
  1674 + <fstream>
  1675 + <sstream>
  1676 + <cmath>
  1677 +
  1678 +1412638442 c:\wxwidgets-3.0.2\include\wx\dcclient.h
  1679 + "wx/dc.h"
  1680 +
  1681 +1529401255 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\bundlebldr.cpp
  1682 + "BUNDLEBLDR.h"
  1683 + "PLACE_CABLE.h"
  1684 + "MESH_LAPLACE.h"
  1685 + <wx/msgdlg.h>
  1686 + <wx/filename.h>
  1687 + <wx/dcclient.h>
  1688 + <iostream>
  1689 + <string>
  1690 + <fstream>
  1691 + <sstream>
  1692 + <wx/settings.h>
  1693 + <wx/intl.h>
  1694 + <wx/string.h>
  1695 +
  1696 +1529401255 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\bundlebldr.h
  1697 + <wx/notebook.h>
  1698 + <wx/sizer.h>
  1699 + <wx/stattext.h>
  1700 + <wx/textctrl.h>
  1701 + <wx/checkbox.h>
  1702 + <wx/listbox.h>
  1703 + <wx/radiobut.h>
  1704 + <wx/panel.h>
  1705 + <wx/button.h>
  1706 + <wx/dialog.h>
  1707 + <wx/spinbutt.h>
  1708 + <wx/combobox.h>
  1709 + <wx/dirctrl.h>
  1710 + <wx/treectrl.h>
  1711 + "FileSelectorCtrl.h"
  1712 + "UTILITIES.h"
  1713 + "MESH_LAPLACE.h"
  1714 + "MESH_PARAM.h"
  1715 + "RUN_STATUS.h"
  1716 + <iostream>
  1717 + <string>
  1718 +
  1719 +1412638444 c:\wxwidgets-3.0.2\include\wx\notebook.h
  1720 + "wx/defs.h"
  1721 + "wx/bookctrl.h"
  1722 + "wx/univ/notebook.h"
  1723 + "wx/msw/notebook.h"
  1724 + "wx/generic/notebook.h"
  1725 + "wx/gtk/notebook.h"
  1726 + "wx/gtk1/notebook.h"
  1727 + "wx/osx/notebook.h"
  1728 + "wx/cocoa/notebook.h"
  1729 + "wx/os2/notebook.h"
  1730 +
  1731 +1412638442 c:\wxwidgets-3.0.2\include\wx\bookctrl.h
  1732 + "wx/defs.h"
  1733 + "wx/control.h"
  1734 + "wx/dynarray.h"
  1735 + "wx/withimages.h"
  1736 + "wx/notebook.h"
  1737 + "wx/choicebk.h"
  1738 +
  1739 +1412638444 c:\wxwidgets-3.0.2\include\wx\withimages.h
  1740 + "wx/defs.h"
  1741 + "wx/icon.h"
  1742 + "wx/imaglist.h"
  1743 +
  1744 +1412638442 c:\wxwidgets-3.0.2\include\wx\imaglist.h
  1745 + "wx/defs.h"
  1746 + "wx/generic/imaglist.h"
  1747 + "wx/msw/imaglist.h"
  1748 + "wx/osx/imaglist.h"
  1749 +
  1750 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\imaglist.h
  1751 + "wx/list.h"
  1752 +
  1753 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\imaglist.h
  1754 + "wx/bitmap.h"
  1755 +
  1756 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\imaglist.h
  1757 + "wx/defs.h"
  1758 + "wx/list.h"
  1759 + "wx/icon.h"
  1760 +
  1761 +1412638442 c:\wxwidgets-3.0.2\include\wx\choicebk.h
  1762 + "wx/defs.h"
  1763 + "wx/bookctrl.h"
  1764 + "wx/choice.h"
  1765 + "wx/containr.h"
  1766 +
  1767 +1412638442 c:\wxwidgets-3.0.2\include\wx\choice.h
  1768 + "wx/defs.h"
  1769 + "wx/ctrlsub.h"
  1770 + "wx/univ/choice.h"
  1771 + "wx/msw/wince/choicece.h"
  1772 + "wx/msw/choice.h"
  1773 + "wx/motif/choice.h"
  1774 + "wx/gtk/choice.h"
  1775 + "wx/gtk1/choice.h"
  1776 + "wx/osx/choice.h"
  1777 + "wx/cocoa/choice.h"
  1778 + "wx/os2/choice.h"
  1779 +
  1780 +1412638442 c:\wxwidgets-3.0.2\include\wx\ctrlsub.h
  1781 + "wx/defs.h"
  1782 + "wx/arrstr.h"
  1783 + "wx/control.h"
  1784 + "wx/msw/ctrlsub.h"
  1785 + "wx/motif/ctrlsub.h"
  1786 +
  1787 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\ctrlsub.h
  1788 +
  1789 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\ctrlsub.h
  1790 + "wx/dynarray.h"
  1791 + "wx/generic/ctrlsub.h"
  1792 +
  1793 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\ctrlsub.h
  1794 + "wx/dynarray.h"
  1795 +
  1796 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\choice.h
  1797 + "wx/combobox.h"
  1798 +
  1799 +1412638442 c:\wxwidgets-3.0.2\include\wx\combobox.h
  1800 + "wx/defs.h"
  1801 + "wx/textctrl.h"
  1802 + "wx/ctrlsub.h"
  1803 + "wx/textentry.h"
  1804 + "wx/univ/combobox.h"
  1805 + "wx/msw/combobox.h"
  1806 + "wx/motif/combobox.h"
  1807 + "wx/gtk/combobox.h"
  1808 + "wx/gtk1/combobox.h"
  1809 + "wx/osx/combobox.h"
  1810 + "wx/cocoa/combobox.h"
  1811 + "wx/os2/combobox.h"
  1812 +
  1813 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\combobox.h
  1814 + "wx/combo.h"
  1815 +
  1816 +1412638442 c:\wxwidgets-3.0.2\include\wx\combo.h
  1817 + "wx/defs.h"
  1818 + "wx/control.h"
  1819 + "wx/renderer.h"
  1820 + "wx/bitmap.h"
  1821 + "wx/textentry.h"
  1822 + "wx/msw/combo.h"
  1823 + "wx/generic/combo.h"
  1824 +
  1825 +1412638444 c:\wxwidgets-3.0.2\include\wx\renderer.h
  1826 + "wx/gdicmn.h"
  1827 + "wx/colour.h"
  1828 + "wx/font.h"
  1829 + "wx/bitmap.h"
  1830 + "wx/string.h"
  1831 +
  1832 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\combo.h
  1833 + "wx/timer.h"
  1834 +
  1835 +1412638444 c:\wxwidgets-3.0.2\include\wx\timer.h
  1836 + "wx/defs.h"
  1837 + "wx/object.h"
  1838 + "wx/longlong.h"
  1839 + "wx/event.h"
  1840 + "wx/stopwatch.h"
  1841 + "wx/utils.h"
  1842 +
  1843 +1412638444 c:\wxwidgets-3.0.2\include\wx\stopwatch.h
  1844 + "wx/defs.h"
  1845 + "wx/longlong.h"
  1846 + "wx/time.h"
  1847 +
  1848 +1412638444 c:\wxwidgets-3.0.2\include\wx\time.h
  1849 + "wx/longlong.h"
  1850 +
  1851 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\combo.h
  1852 + "wx/dcbuffer.h"
  1853 +
  1854 +1412638442 c:\wxwidgets-3.0.2\include\wx\dcbuffer.h
  1855 + "wx/dcmemory.h"
  1856 + "wx/dcclient.h"
  1857 + "wx/window.h"
  1858 +
  1859 +1412638442 c:\wxwidgets-3.0.2\include\wx\dcmemory.h
  1860 + "wx/dc.h"
  1861 + "wx/bitmap.h"
  1862 +
  1863 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\combobox.h
  1864 + "wx/choice.h"
  1865 + "wx/textentry.h"
  1866 +
  1867 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\combobox.h
  1868 + "wx/choice.h"
  1869 + "wx/textentry.h"
  1870 +
  1871 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\combobox.h
  1872 + "wx/choice.h"
  1873 +
  1874 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\combobox.h
  1875 + "wx/defs.h"
  1876 + "wx/object.h"
  1877 +
  1878 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\combobox.h
  1879 + "wx/containr.h"
  1880 + "wx/choice.h"
  1881 + "wx/textctrl.h"
  1882 +
  1883 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\combobox.h
  1884 + "wx/hashmap.h"
  1885 + "wx/cocoa/ObjcAssociate.h"
  1886 + "wx/textctrl.h"
  1887 + "wx/dynarray.h"
  1888 +
  1889 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\combobox.h
  1890 + "wx/choice.h"
  1891 + "wx/textentry.h"
  1892 +
  1893 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wince\choicece.h
  1894 + "wx/defs.h"
  1895 + "wx/dynarray.h"
  1896 +
  1897 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\choice.h
  1898 +
  1899 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\choice.h
  1900 + "wx/clntdata.h"
  1901 + "wx/dynarray.h"
  1902 +
  1903 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\choice.h
  1904 +
  1905 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\choice.h
  1906 +
  1907 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\choice.h
  1908 + "wx/control.h"
  1909 + "wx/dynarray.h"
  1910 + "wx/arrstr.h"
  1911 +
  1912 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\choice.h
  1913 + "wx/cocoa/NSMenu.h"
  1914 +
  1915 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\nsmenu.h
  1916 + "wx/hashmap.h"
  1917 + "wx/cocoa/ObjcAssociate.h"
  1918 +
  1919 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\choice.h
  1920 +
  1921 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\notebook.h
  1922 + "wx/arrstr.h"
  1923 +
  1924 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\notebook.h
  1925 + "wx/control.h"
  1926 +
  1927 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\notebook.h
  1928 + "wx/event.h"
  1929 + "wx/control.h"
  1930 +
  1931 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\notebook.h
  1932 + "wx/list.h"
  1933 +
  1934 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\notebook.h
  1935 + "wx/list.h"
  1936 +
  1937 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\notebook.h
  1938 + "wx/event.h"
  1939 +
  1940 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\notebook.h
  1941 + "wx/cocoa/NSTabView.h"
  1942 +
  1943 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\nstabview.h
  1944 + "wx/hashmap.h"
  1945 + "wx/cocoa/ObjcAssociate.h"
  1946 + "wx/cocoa/ObjcRef.h"
  1947 +
  1948 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\objcref.h
  1949 + "wx/osx/core/cfref.h"
  1950 +
  1951 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\notebook.h
  1952 + "wx/control.h"
  1953 +
  1954 +1412638444 c:\wxwidgets-3.0.2\include\wx\stattext.h
  1955 + "wx/defs.h"
  1956 + "wx/control.h"
  1957 + "wx/univ/stattext.h"
  1958 + "wx/msw/stattext.h"
  1959 + "wx/motif/stattext.h"
  1960 + "wx/gtk/stattext.h"
  1961 + "wx/gtk1/stattext.h"
  1962 + "wx/osx/stattext.h"
  1963 + "wx/cocoa/stattext.h"
  1964 + "wx/os2/stattext.h"
  1965 +
  1966 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\stattext.h
  1967 + "wx/generic/stattextg.h"
  1968 +
  1969 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\stattextg.h
  1970 + "wx/stattext.h"
  1971 +
  1972 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\stattext.h
  1973 +
  1974 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\stattext.h
  1975 +
  1976 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\stattext.h
  1977 +
  1978 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\stattext.h
  1979 +
  1980 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\stattext.h
  1981 +
  1982 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\stattext.h
  1983 + "wx/cocoa/NSTextField.h"
  1984 +
  1985 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\stattext.h
  1986 + "wx/control.h"
  1987 +
  1988 +1412638442 c:\wxwidgets-3.0.2\include\wx\checkbox.h
  1989 + "wx/defs.h"
  1990 + "wx/control.h"
  1991 + "wx/univ/checkbox.h"
  1992 + "wx/msw/checkbox.h"
  1993 + "wx/motif/checkbox.h"
  1994 + "wx/gtk/checkbox.h"
  1995 + "wx/gtk1/checkbox.h"
  1996 + "wx/osx/checkbox.h"
  1997 + "wx/cocoa/checkbox.h"
  1998 + "wx/os2/checkbox.h"
  1999 +
  2000 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\checkbox.h
  2001 + "wx/button.h"
  2002 +
  2003 +1412638442 c:\wxwidgets-3.0.2\include\wx\button.h
  2004 + "wx/defs.h"
  2005 + "wx/anybutton.h"
  2006 + "wx/univ/button.h"
  2007 + "wx/msw/button.h"
  2008 + "wx/motif/button.h"
  2009 + "wx/gtk/button.h"
  2010 + "wx/gtk1/button.h"
  2011 + "wx/osx/button.h"
  2012 + "wx/cocoa/button.h"
  2013 + "wx/os2/button.h"
  2014 +
  2015 +1412638442 c:\wxwidgets-3.0.2\include\wx\anybutton.h
  2016 + "wx/defs.h"
  2017 + "wx/bitmap.h"
  2018 + "wx/control.h"
  2019 + "wx/univ/anybutton.h"
  2020 + "wx/msw/anybutton.h"
  2021 + "wx/gtk/anybutton.h"
  2022 + "wx/osx/anybutton.h"
  2023 +
  2024 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\anybutton.h
  2025 +
  2026 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\anybutton.h
  2027 +
  2028 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\anybutton.h
  2029 +
  2030 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\anybutton.h
  2031 +
  2032 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\button.h
  2033 + "wx/bitmap.h"
  2034 +
  2035 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\button.h
  2036 +
  2037 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\button.h
  2038 +
  2039 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\button.h
  2040 +
  2041 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\button.h
  2042 + "wx/defs.h"
  2043 + "wx/object.h"
  2044 + "wx/list.h"
  2045 +
  2046 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\button.h
  2047 + "wx/control.h"
  2048 + "wx/gdicmn.h"
  2049 +
  2050 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\button.h
  2051 + "wx/cocoa/NSButton.h"
  2052 +
  2053 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\nsbutton.h
  2054 + "wx/hashmap.h"
  2055 + "wx/cocoa/ObjcAssociate.h"
  2056 + "wx/cocoa/ObjcRef.h"
  2057 +
  2058 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\button.h
  2059 + "wx/control.h"
  2060 +
  2061 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\checkbox.h
  2062 +
  2063 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\checkbox.h
  2064 +
  2065 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\checkbox.h
  2066 +
  2067 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\checkbox.h
  2068 +
  2069 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\checkbox.h
  2070 +
  2071 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\checkbox.h
  2072 + "wx/cocoa/NSButton.h"
  2073 +
  2074 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\checkbox.h
  2075 + "wx/control.h"
  2076 +
  2077 +1412638444 c:\wxwidgets-3.0.2\include\wx\listbox.h
  2078 + "wx/defs.h"
  2079 + "wx/ctrlsub.h"
  2080 + "wx/univ/listbox.h"
  2081 + "wx/msw/listbox.h"
  2082 + "wx/motif/listbox.h"
  2083 + "wx/gtk/listbox.h"
  2084 + "wx/gtk1/listbox.h"
  2085 + "wx/osx/listbox.h"
  2086 + "wx/os2/listbox.h"
  2087 + "wx/cocoa/listbox.h"
  2088 +
  2089 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\listbox.h
  2090 + "wx/scrolwin.h"
  2091 + "wx/dynarray.h"
  2092 + "wx/arrstr.h"
  2093 +
  2094 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\listbox.h
  2095 + "wx/dynarray.h"
  2096 +
  2097 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\listbox.h
  2098 + "wx/ctrlsub.h"
  2099 + "wx/clntdata.h"
  2100 +
  2101 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\listbox.h
  2102 +
  2103 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\listbox.h
  2104 + "wx/list.h"
  2105 +
  2106 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\listbox.h
  2107 + "wx/dynarray.h"
  2108 + "wx/arrstr.h"
  2109 +
  2110 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\listbox.h
  2111 + "wx/dynarray.h"
  2112 +
  2113 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\listbox.h
  2114 + "wx/cocoa/NSTableView.h"
  2115 + "wx/dynarray.h"
  2116 +
  2117 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\nstableview.h
  2118 + "wx/hashmap.h"
  2119 + "wx/cocoa/ObjcAssociate.h"
  2120 +
  2121 +1412638444 c:\wxwidgets-3.0.2\include\wx\radiobut.h
  2122 + "wx/defs.h"
  2123 + "wx/control.h"
  2124 + "wx/univ/radiobut.h"
  2125 + "wx/msw/radiobut.h"
  2126 + "wx/motif/radiobut.h"
  2127 + "wx/gtk/radiobut.h"
  2128 + "wx/gtk1/radiobut.h"
  2129 + "wx/osx/radiobut.h"
  2130 + "wx/cocoa/radiobut.h"
  2131 + "wx/os2/radiobut.h"
  2132 +
  2133 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\radiobut.h
  2134 + "wx/checkbox.h"
  2135 +
  2136 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\radiobut.h
  2137 +
  2138 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\radiobut.h
  2139 +
  2140 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\radiobut.h
  2141 +
  2142 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\radiobut.h
  2143 +
  2144 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\radiobut.h
  2145 +
  2146 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\radiobut.h
  2147 + "wx/cocoa/NSButton.h"
  2148 +
  2149 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\radiobut.h
  2150 + "wx/control.h"
  2151 +
  2152 +1412638444 c:\wxwidgets-3.0.2\include\wx\spinbutt.h
  2153 + "wx/defs.h"
  2154 + "wx/control.h"
  2155 + "wx/event.h"
  2156 + "wx/range.h"
  2157 + "wx/univ/spinbutt.h"
  2158 + "wx/msw/spinbutt.h"
  2159 + "wx/motif/spinbutt.h"
  2160 + "wx/gtk/spinbutt.h"
  2161 + "wx/gtk1/spinbutt.h"
  2162 + "wx/osx/spinbutt.h"
  2163 + "wx/cocoa/spinbutt.h"
  2164 + "wx/os2/spinbutt.h"
  2165 +
  2166 +1412638444 c:\wxwidgets-3.0.2\include\wx\range.h
  2167 + "wx/defs.h"
  2168 +
  2169 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\spinbutt.h
  2170 + "wx/univ/scrarrow.h"
  2171 +
  2172 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\scrarrow.h
  2173 +
  2174 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\spinbutt.h
  2175 + "wx/control.h"
  2176 + "wx/event.h"
  2177 +
  2178 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\spinbutt.h
  2179 +
  2180 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\spinbutt.h
  2181 +
  2182 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\spinbutt.h
  2183 +
  2184 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\spinbutt.h
  2185 + "wx/control.h"
  2186 + "wx/event.h"
  2187 +
  2188 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\spinbutt.h
  2189 +
  2190 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\spinbutt.h
  2191 + "wx/control.h"
  2192 + "wx/event.h"
  2193 +
  2194 +1412638442 c:\wxwidgets-3.0.2\include\wx\dirctrl.h
  2195 + "wx/generic/dirctrlg.h"
  2196 +
  2197 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\dirctrlg.h
  2198 + "wx/treectrl.h"
  2199 + "wx/dialog.h"
  2200 + "wx/dirdlg.h"
  2201 + "wx/choice.h"
  2202 +
  2203 +1412638444 c:\wxwidgets-3.0.2\include\wx\treectrl.h
  2204 + "wx/defs.h"
  2205 + "wx/control.h"
  2206 + "wx/treebase.h"
  2207 + "wx/textctrl.h"
  2208 + "wx/generic/treectlg.h"
  2209 + "wx/msw/treectrl.h"
  2210 + "wx/generic/treectlg.h"
  2211 + "wx/generic/treectlg.h"
  2212 + "wx/generic/treectlg.h"
  2213 + "wx/generic/treectlg.h"
  2214 + "wx/generic/treectlg.h"
  2215 +
  2216 +1412638444 c:\wxwidgets-3.0.2\include\wx\treebase.h
  2217 + "wx/defs.h"
  2218 + "wx/window.h"
  2219 + "wx/event.h"
  2220 + "wx/dynarray.h"
  2221 + "wx/itemid.h"
  2222 +
  2223 +1412638442 c:\wxwidgets-3.0.2\include\wx\itemid.h
  2224 +
  2225 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\treectlg.h
  2226 + "wx/scrolwin.h"
  2227 + "wx/pen.h"
  2228 +
  2229 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\treectrl.h
  2230 + "wx/textctrl.h"
  2231 + "wx/dynarray.h"
  2232 + "wx/treebase.h"
  2233 + "wx/hashmap.h"
  2234 +
  2235 +1412638442 c:\wxwidgets-3.0.2\include\wx\dirdlg.h
  2236 + "wx/dialog.h"
  2237 + "wx/generic/dirdlgg.h"
  2238 + "wx/generic/dirdlgg.h"
  2239 + "wx/generic/dirdlgg.h"
  2240 + "wx/msw/dirdlg.h"
  2241 + "wx/gtk/dirdlg.h"
  2242 + "wx/generic/dirdlgg.h"
  2243 + "wx/osx/dirdlg.h"
  2244 + "wx/cocoa/dirdlg.h"
  2245 + "wx/generic/dirdlgg.h"
  2246 +
  2247 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\dirdlgg.h
  2248 + "wx/dialog.h"
  2249 +
  2250 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\dirdlg.h
  2251 +
  2252 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\dirdlg.h
  2253 +
  2254 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\dirdlg.h
  2255 +
  2256 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\dirdlg.h
  2257 +
  2258 +1502693578 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\fileselectorctrl.h
  2259 + "wx/treectrl.h"
  2260 + "wx/dialog.h"
  2261 + "wx/dirdlg.h"
  2262 + "wx/choice.h"
  2263 +
  2264 +1502693568 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\utilities.h
  2265 + <wx/textctrl.h>
  2266 + <wx/tokenzr.h>
  2267 + <wx/filename.h>
  2268 + <wx/filefn.h>
  2269 +
  2270 +1412638444 c:\wxwidgets-3.0.2\include\wx\tokenzr.h
  2271 + "wx/object.h"
  2272 + "wx/string.h"
  2273 + "wx/arrstr.h"
  2274 +
  2275 +1412638442 c:\wxwidgets-3.0.2\include\wx\filename.h
  2276 + "wx/arrstr.h"
  2277 + "wx/filefn.h"
  2278 + "wx/datetime.h"
  2279 + "wx/intl.h"
  2280 + "wx/longlong.h"
  2281 + "wx/file.h"
  2282 +
  2283 +1502693576 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\mesh_laplace.h
  2284 + <wx/sizer.h>
  2285 + <wx/panel.h>
  2286 + <wx/button.h>
  2287 + <wx/dialog.h>
  2288 + <wx/msgdlg.h>
  2289 + <wx/dcclient.h>
  2290 + <iostream>
  2291 + <fstream>
  2292 + <string>
  2293 + <algorithm>
  2294 +
  2295 +1502693576 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\mesh_param.h
  2296 + <wx/sizer.h>
  2297 + <wx/stattext.h>
  2298 + <wx/textctrl.h>
  2299 + <wx/button.h>
  2300 + <wx/dialog.h>
  2301 + "UTILITIES.h"
  2302 +
  2303 +1502693574 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\run_status.h
  2304 + <wx/sizer.h>
  2305 + <wx/textctrl.h>
  2306 + <wx/dialog.h>
  2307 + <wx/textfile.h>
  2308 + <iostream>
  2309 + <fstream>
  2310 + <sstream>
  2311 +
  2312 +1502693576 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\place_cable.h
  2313 + <wx/sizer.h>
  2314 + <wx/stattext.h>
  2315 + <wx/textctrl.h>
  2316 + <wx/button.h>
  2317 + <wx/dialog.h>
  2318 +
  2319 +1529401255 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\cable_schematic.cpp
  2320 + "CABLE_SCHEMATIC.h"
  2321 +
  2322 +1502693580 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\cable_schematic.h
  2323 + <wx/panel.h>
  2324 + <wx/dcclient.h>
  2325 + <wx/msgdlg.h>
  2326 + <iostream>
  2327 + <fstream>
  2328 + <sstream>
  2329 +
  2330 +1508706938 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\export_spice.cpp
  2331 + "EXPORT_SPICE.h"
  2332 + <wx/intl.h>
  2333 + <wx/string.h>
  2334 +
  2335 +1508706152 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\export_spice.h
  2336 + <wx/sizer.h>
  2337 + <wx/textctrl.h>
  2338 + <wx/filepicker.h>
  2339 + <wx/button.h>
  2340 + <wx/dialog.h>
  2341 + <wx/msgdlg.h>
  2342 + <wx/filefn.h>
  2343 + <wx/textfile.h>
  2344 +
  2345 +1412638442 c:\wxwidgets-3.0.2\include\wx\filepicker.h
  2346 + "wx/defs.h"
  2347 + "wx/pickerbase.h"
  2348 + "wx/filename.h"
  2349 + "wx/gtk/filepicker.h"
  2350 + "wx/generic/filepickerg.h"
  2351 +
  2352 +1412638444 c:\wxwidgets-3.0.2\include\wx\pickerbase.h
  2353 + "wx/control.h"
  2354 + "wx/sizer.h"
  2355 + "wx/containr.h"
  2356 +
  2357 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\filepicker.h
  2358 + "wx/generic/filepickerg.h"
  2359 +
  2360 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\filepickerg.h
  2361 + "wx/button.h"
  2362 + "wx/filedlg.h"
  2363 + "wx/dirdlg.h"
  2364 +
  2365 +1412638442 c:\wxwidgets-3.0.2\include\wx\filedlg.h
  2366 + "wx/defs.h"
  2367 + "wx/dialog.h"
  2368 + "wx/arrstr.h"
  2369 + "wx/generic/filedlgg.h"
  2370 + "wx/msw/filedlg.h"
  2371 + "wx/motif/filedlg.h"
  2372 + "wx/gtk/filedlg.h"
  2373 + "wx/gtk1/filedlg.h"
  2374 + "wx/osx/filedlg.h"
  2375 + "wx/cocoa/filedlg.h"
  2376 + "wx/os2/filedlg.h"
  2377 +
  2378 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\filedlgg.h
  2379 + "wx/listctrl.h"
  2380 + "wx/datetime.h"
  2381 + "wx/filefn.h"
  2382 + "wx/artprov.h"
  2383 + "wx/filedlg.h"
  2384 + "wx/generic/filectrlg.h"
  2385 +
  2386 +1412638444 c:\wxwidgets-3.0.2\include\wx\listctrl.h
  2387 + "wx/defs.h"
  2388 + "wx/listbase.h"
  2389 + "wx/msw/listctrl.h"
  2390 + "wx/osx/listctrl.h"
  2391 + "wx/generic/listctrl.h"
  2392 +
  2393 +1412638444 c:\wxwidgets-3.0.2\include\wx\listbase.h
  2394 + "wx/colour.h"
  2395 + "wx/font.h"
  2396 + "wx/gdicmn.h"
  2397 + "wx/event.h"
  2398 + "wx/control.h"
  2399 +
  2400 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\listctrl.h
  2401 + "wx/textctrl.h"
  2402 + "wx/dynarray.h"
  2403 + "wx/vector.h"
  2404 +
  2405 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\listctrl.h
  2406 + "wx/defs.h"
  2407 + "wx/generic/listctrl.h"
  2408 +
  2409 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\listctrl.h
  2410 + "wx/containr.h"
  2411 + "wx/scrolwin.h"
  2412 + "wx/textctrl.h"
  2413 +
  2414 +1412638442 c:\wxwidgets-3.0.2\include\wx\artprov.h
  2415 + "wx/string.h"
  2416 + "wx/bitmap.h"
  2417 + "wx/icon.h"
  2418 + "wx/iconbndl.h"
  2419 +
  2420 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\filectrlg.h
  2421 + "wx/containr.h"
  2422 + "wx/listctrl.h"
  2423 + "wx/filectrl.h"
  2424 + "wx/filename.h"
  2425 +
  2426 +1412638442 c:\wxwidgets-3.0.2\include\wx\filectrl.h
  2427 + "wx/defs.h"
  2428 + "wx/string.h"
  2429 + "wx/event.h"
  2430 + "wx/gtk/filectrl.h"
  2431 + "wx/generic/filectrlg.h"
  2432 +
  2433 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\filectrl.h
  2434 + "wx/control.h"
  2435 + "wx/filectrl.h"
  2436 +
  2437 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\filedlg.h
  2438 +
  2439 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\filedlg.h
  2440 +
  2441 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\filedlg.h
  2442 + "wx/gtk/filectrl.h"
  2443 +
  2444 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\filedlg.h
  2445 + "wx/generic/filedlgg.h"
  2446 +
  2447 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\filedlg.h
  2448 +
  2449 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\filedlg.h
  2450 +
  2451 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\filedlg.h
  2452 +
  2453 +1509497630 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\fd_esr.cpp
  2454 + "FD_ESR.h"
  2455 + <wx/settings.h>
  2456 + <wx/intl.h>
  2457 + <wx/string.h>
  2458 +
  2459 +1509497630 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\fd_esr.h
  2460 + <wx/sizer.h>
  2461 + <wx/stattext.h>
  2462 + <wx/textctrl.h>
  2463 + <wx/statline.h>
  2464 + <wx/radiobut.h>
  2465 + <wx/button.h>
  2466 + <wx/dialog.h>
  2467 + "UTILITIES.h"
  2468 +
  2469 +1412638444 c:\wxwidgets-3.0.2\include\wx\statline.h
  2470 + "wx/defs.h"
  2471 + "wx/control.h"
  2472 + "wx/univ/statline.h"
  2473 + "wx/msw/statline.h"
  2474 + "wx/gtk/statline.h"
  2475 + "wx/gtk1/statline.h"
  2476 + "wx/os2/statline.h"
  2477 + "wx/osx/statline.h"
  2478 + "wx/cocoa/statline.h"
  2479 + "wx/generic/statline.h"
  2480 +
  2481 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\statline.h
  2482 +
  2483 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\statline.h
  2484 +
  2485 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\statline.h
  2486 + "wx/defs.h"
  2487 +
  2488 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\statline.h
  2489 + "wx/defs.h"
  2490 +
  2491 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\statline.h
  2492 +
  2493 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\statline.h
  2494 +
  2495 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\statline.h
  2496 +
  2497 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\statline.h
  2498 +
  2499 +1509484978 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\fd_esr_sw.cpp
  2500 + "FD_ESR_SW.h"
  2501 + "UTILITIES.h"
  2502 + <wx/settings.h>
  2503 + <wx/intl.h>
  2504 + <wx/string.h>
  2505 +
  2506 +1509483256 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\fd_esr_sw.h
  2507 + <wx/sizer.h>
  2508 + <wx/stattext.h>
  2509 + <wx/textctrl.h>
  2510 + <wx/statline.h>
  2511 + <wx/radiobut.h>
  2512 + <wx/button.h>
  2513 + <wx/dialog.h>
  2514 +
  2515 +1502693578 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\fd_zt.cpp
  2516 + "FD_ZT.h"
  2517 + <wx/intl.h>
  2518 + <wx/string.h>
  2519 +
  2520 +1502693578 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\fd_zt.h
  2521 + <wx/sizer.h>
  2522 + <wx/stattext.h>
  2523 + <wx/textctrl.h>
  2524 + <wx/statline.h>
  2525 + <wx/button.h>
  2526 + <wx/dialog.h>
  2527 +
  2528 +1502693578 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\fileselectorctrl.cpp
  2529 + "wx/wxprec.h"
  2530 + "wx/generic/dirctrlg.h"
  2531 + "FileSelectorCtrl.h"
  2532 + "wx/hash.h"
  2533 + "wx/intl.h"
  2534 + "wx/log.h"
  2535 + "wx/utils.h"
  2536 + "wx/button.h"
  2537 + "wx/icon.h"
  2538 + "wx/settings.h"
  2539 + "wx/msgdlg.h"
  2540 + "wx/choice.h"
  2541 + "wx/textctrl.h"
  2542 + "wx/layout.h"
  2543 + "wx/sizer.h"
  2544 + "wx/textdlg.h"
  2545 + "wx/gdicmn.h"
  2546 + "wx/image.h"
  2547 + "wx/module.h"
  2548 + "wx/filename.h"
  2549 + "wx/filefn.h"
  2550 + "wx/imaglist.h"
  2551 + "wx/tokenzr.h"
  2552 + "wx/dir.h"
  2553 + "wx/artprov.h"
  2554 + "wx/mimetype.h"
  2555 + "wx/statline.h"
  2556 + "wx/osx/private.h"
  2557 + <windows.h>
  2558 + "wx/msw/winundef.h"
  2559 + "wx/volume.h"
  2560 + <direct.h>
  2561 + "dos.h"
  2562 +
  2563 +1412638444 c:\wxwidgets-3.0.2\include\wx\wxprec.h
  2564 + "wx/defs.h"
  2565 + "wx/chartype.h"
  2566 + "wx/msw/wrapwin.h"
  2567 + "wx/msw/private.h"
  2568 + "wx/msw/wrapcctl.h"
  2569 + "wx/msw/wrapcdlg.h"
  2570 + "wx/msw/missing.h"
  2571 + "wx/os2/private.h"
  2572 + "wx/wx.h"
  2573 +
  2574 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wrapcctl.h
  2575 + "wx/msw/wrapwin.h"
  2576 + <commctrl.h>
  2577 + "wx/msw/missing.h"
  2578 +
  2579 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\missing.h
  2580 + <windows.h>
  2581 + "wx/msw/winundef.h"
  2582 + "wx/msw/wince/missing.h"
  2583 +
  2584 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wince\missing.h
  2585 + "wx/msw/private.h"
  2586 + "shellapi.h"
  2587 +
  2588 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wrapcdlg.h
  2589 + "wx/defs.h"
  2590 + "wx/msw/wrapwin.h"
  2591 + "wx/msw/private.h"
  2592 + "wx/msw/missing.h"
  2593 + <commdlg.h>
  2594 + "wx/msw/winundef.h"
  2595 +
  2596 +1412638444 c:\wxwidgets-3.0.2\include\wx\wx.h
  2597 + "wx/defs.h"
  2598 + "wx/object.h"
  2599 + "wx/dynarray.h"
  2600 + "wx/list.h"
  2601 + "wx/hash.h"
  2602 + "wx/string.h"
  2603 + "wx/hashmap.h"
  2604 + "wx/arrstr.h"
  2605 + "wx/intl.h"
  2606 + "wx/log.h"
  2607 + "wx/event.h"
  2608 + "wx/app.h"
  2609 + "wx/utils.h"
  2610 + "wx/stream.h"
  2611 + "wx/memory.h"
  2612 + "wx/math.h"
  2613 + "wx/stopwatch.h"
  2614 + "wx/timer.h"
  2615 + "wx/module.h"
  2616 + "wx/wxcrt.h"
  2617 + "wx/wxcrtvararg.h"
  2618 + "wx/window.h"
  2619 + "wx/containr.h"
  2620 + "wx/panel.h"
  2621 + "wx/toplevel.h"
  2622 + "wx/frame.h"
  2623 + "wx/gdicmn.h"
  2624 + "wx/gdiobj.h"
  2625 + "wx/region.h"
  2626 + "wx/bitmap.h"
  2627 + "wx/image.h"
  2628 + "wx/colour.h"
  2629 + "wx/font.h"
  2630 + "wx/dc.h"
  2631 + "wx/dcclient.h"
  2632 + "wx/dcmemory.h"
  2633 + "wx/dcprint.h"
  2634 + "wx/dcscreen.h"
  2635 + "wx/button.h"
  2636 + "wx/menuitem.h"
  2637 + "wx/menu.h"
  2638 + "wx/pen.h"
  2639 + "wx/brush.h"
  2640 + "wx/palette.h"
  2641 + "wx/icon.h"
  2642 + "wx/cursor.h"
  2643 + "wx/dialog.h"
  2644 + "wx/settings.h"
  2645 + "wx/msgdlg.h"
  2646 + "wx/dataobj.h"
  2647 + "wx/control.h"
  2648 + "wx/ctrlsub.h"
  2649 + "wx/bmpbuttn.h"
  2650 + "wx/checkbox.h"
  2651 + "wx/checklst.h"
  2652 + "wx/choice.h"
  2653 + "wx/scrolbar.h"
  2654 + "wx/stattext.h"
  2655 + "wx/statbmp.h"
  2656 + "wx/statbox.h"
  2657 + "wx/listbox.h"
  2658 + "wx/radiobox.h"
  2659 + "wx/radiobut.h"
  2660 + "wx/textctrl.h"
  2661 + "wx/slider.h"
  2662 + "wx/gauge.h"
  2663 + "wx/scrolwin.h"
  2664 + "wx/dirdlg.h"
  2665 + "wx/toolbar.h"
  2666 + "wx/combobox.h"
  2667 + "wx/layout.h"
  2668 + "wx/sizer.h"
  2669 + "wx/statusbr.h"
  2670 + "wx/choicdlg.h"
  2671 + "wx/textdlg.h"
  2672 + "wx/filedlg.h"
  2673 + "wx/mdi.h"
  2674 + "wx/validate.h"
  2675 + "wx/valtext.h"
  2676 +
  2677 +1412638442 c:\wxwidgets-3.0.2\include\wx\app.h
  2678 + "wx/event.h"
  2679 + "wx/eventfilter.h"
  2680 + "wx/build.h"
  2681 + "wx/cmdargs.h"
  2682 + "wx/init.h"
  2683 + "wx/intl.h"
  2684 + "wx/log.h"
  2685 + "wx/unix/app.h"
  2686 + "wx/msw/app.h"
  2687 + "wx/motif/app.h"
  2688 + "wx/dfb/app.h"
  2689 + "wx/gtk/app.h"
  2690 + "wx/gtk1/app.h"
  2691 + "wx/x11/app.h"
  2692 + "wx/osx/app.h"
  2693 + "wx/cocoa/app.h"
  2694 + "wx/os2/app.h"
  2695 + "wx/univ/theme.h"
  2696 +
  2697 +1412638442 c:\wxwidgets-3.0.2\include\wx\eventfilter.h
  2698 + "wx/defs.h"
  2699 +
  2700 +1412638442 c:\wxwidgets-3.0.2\include\wx\build.h
  2701 + "wx/version.h"
  2702 +
  2703 +1412638442 c:\wxwidgets-3.0.2\include\wx\cmdargs.h
  2704 + "wx/arrstr.h"
  2705 +
  2706 +1412638442 c:\wxwidgets-3.0.2\include\wx\init.h
  2707 + "wx/defs.h"
  2708 + "wx/chartype.h"
  2709 + "wx/msw/init.h"
  2710 +
  2711 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\init.h
  2712 + "wx/msw/wrapwin.h"
  2713 +
  2714 +1412638444 c:\wxwidgets-3.0.2\include\wx\unix\app.h
  2715 + <signal.h>
  2716 +
  2717 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\app.h
  2718 + "wx/event.h"
  2719 + "wx/icon.h"
  2720 +
  2721 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\app.h
  2722 + "wx/event.h"
  2723 + "wx/hashmap.h"
  2724 +
  2725 +1412638442 c:\wxwidgets-3.0.2\include\wx\dfb\app.h
  2726 + "wx/dfb/dfbptr.h"
  2727 + "wx/vidmode.h"
  2728 +
  2729 +1412638444 c:\wxwidgets-3.0.2\include\wx\vidmode.h
  2730 +
  2731 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\app.h
  2732 +
  2733 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\app.h
  2734 + "wx/frame.h"
  2735 + "wx/icon.h"
  2736 + "wx/strconv.h"
  2737 +
  2738 +1412638442 c:\wxwidgets-3.0.2\include\wx\frame.h
  2739 + "wx/toplevel.h"
  2740 + "wx/statusbr.h"
  2741 + "wx/univ/frame.h"
  2742 + "wx/msw/frame.h"
  2743 + "wx/gtk/frame.h"
  2744 + "wx/gtk1/frame.h"
  2745 + "wx/motif/frame.h"
  2746 + "wx/osx/frame.h"
  2747 + "wx/cocoa/frame.h"
  2748 + "wx/os2/frame.h"
  2749 +
  2750 +1412638444 c:\wxwidgets-3.0.2\include\wx\statusbr.h
  2751 + "wx/defs.h"
  2752 + "wx/control.h"
  2753 + "wx/list.h"
  2754 + "wx/dynarray.h"
  2755 + "wx/univ/statusbr.h"
  2756 + "wx/msw/statusbar.h"
  2757 + "wx/generic/statusbr.h"
  2758 + "wx/osx/statusbr.h"
  2759 + "wx/generic/statusbr.h"
  2760 +
  2761 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\statusbr.h
  2762 + "wx/univ/inpcons.h"
  2763 + "wx/arrstr.h"
  2764 +
  2765 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\statusbar.h
  2766 + "wx/vector.h"
  2767 + "wx/tooltip.h"
  2768 +
  2769 +1412638444 c:\wxwidgets-3.0.2\include\wx\tooltip.h
  2770 + "wx/defs.h"
  2771 + "wx/msw/tooltip.h"
  2772 + "wx/gtk/tooltip.h"
  2773 + "wx/gtk1/tooltip.h"
  2774 + "wx/osx/tooltip.h"
  2775 + "wx/cocoa/tooltip.h"
  2776 + "wx/os2/tooltip.h"
  2777 +
  2778 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\tooltip.h
  2779 + "wx/object.h"
  2780 + "wx/gdicmn.h"
  2781 +
  2782 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\tooltip.h
  2783 + "wx/string.h"
  2784 + "wx/object.h"
  2785 +
  2786 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\tooltip.h
  2787 + "wx/defs.h"
  2788 + "wx/string.h"
  2789 + "wx/object.h"
  2790 +
  2791 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\tooltip.h
  2792 + "wx/string.h"
  2793 + "wx/event.h"
  2794 +
  2795 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\tooltip.h
  2796 + "wx/object.h"
  2797 +
  2798 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\tooltip.h
  2799 +
  2800 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\statusbr.h
  2801 + "wx/defs.h"
  2802 + "wx/pen.h"
  2803 + "wx/arrstr.h"
  2804 +
  2805 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\statusbr.h
  2806 +
  2807 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\frame.h
  2808 +
  2809 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\frame.h
  2810 +
  2811 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\frame.h
  2812 +
  2813 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\frame.h
  2814 +
  2815 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\frame.h
  2816 +
  2817 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\frame.h
  2818 + "wx/toolbar.h"
  2819 + "wx/accel.h"
  2820 + "wx/icon.h"
  2821 +
  2822 +1412638444 c:\wxwidgets-3.0.2\include\wx\toolbar.h
  2823 + "wx/defs.h"
  2824 + "wx/tbarbase.h"
  2825 + "wx/univ/toolbar.h"
  2826 + "wx/msw/toolbar.h"
  2827 + "wx/msw/wince/tbarwce.h"
  2828 + "wx/motif/toolbar.h"
  2829 + "wx/gtk/toolbar.h"
  2830 + "wx/gtk1/toolbar.h"
  2831 + "wx/osx/toolbar.h"
  2832 + "wx/cocoa/toolbar.h"
  2833 + "wx/os2/toolbar.h"
  2834 +
  2835 +1412638444 c:\wxwidgets-3.0.2\include\wx\tbarbase.h
  2836 + "wx/defs.h"
  2837 + "wx/bitmap.h"
  2838 + "wx/list.h"
  2839 + "wx/control.h"
  2840 +
  2841 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\toolbar.h
  2842 + "wx/button.h"
  2843 +
  2844 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\toolbar.h
  2845 + "wx/dynarray.h"
  2846 + "wx/imaglist.h"
  2847 +
  2848 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wince\tbarwce.h
  2849 + "wx/dynarray.h"
  2850 + "wx/msw/toolbar.h"
  2851 +
  2852 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\toolbar.h
  2853 +
  2854 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\toolbar.h
  2855 +
  2856 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\toolbar.h
  2857 +
  2858 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\toolbar.h
  2859 + "wx/tbarbase.h"
  2860 + "wx/dynarray.h"
  2861 +
  2862 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\toolbar.h
  2863 +
  2864 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\toolbar.h
  2865 + "wx/timer.h"
  2866 + "wx/tbarbase.h"
  2867 +
  2868 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\frame.h
  2869 +
  2870 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\frame.h
  2871 + "wx/os2/wxrsc.h"
  2872 +
  2873 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\wxrsc.h
  2874 +
  2875 +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\app.h
  2876 + "wx/gdicmn.h"
  2877 + "wx/event.h"
  2878 +
  2879 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\app.h
  2880 + "wx/defs.h"
  2881 + "wx/object.h"
  2882 + "wx/gdicmn.h"
  2883 + "wx/event.h"
  2884 +
  2885 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\app.h
  2886 + "wx/osx/core/cfref.h"
  2887 +
  2888 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\app.h
  2889 + <types.h>
  2890 + <sys/ioctl.h>
  2891 + <sys/select.h>
  2892 + <sys/time.h>
  2893 + <sys/types.h>
  2894 + <unistd.h>
  2895 + <utils.h>
  2896 + <types.h>
  2897 + "wx/event.h"
  2898 + "wx/icon.h"
  2899 +
  2900 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\theme.h
  2901 + "wx/string.h"
  2902 +
  2903 +1412638444 c:\wxwidgets-3.0.2\include\wx\module.h
  2904 + "wx/object.h"
  2905 + "wx/list.h"
  2906 + "wx/arrstr.h"
  2907 + "wx/dynarray.h"
  2908 +
  2909 +1412638442 c:\wxwidgets-3.0.2\include\wx\dcprint.h
  2910 + "wx/defs.h"
  2911 + "wx/dc.h"
  2912 +
  2913 +1412638442 c:\wxwidgets-3.0.2\include\wx\dcscreen.h
  2914 + "wx/defs.h"
  2915 + "wx/dc.h"
  2916 +
  2917 +1412638444 c:\wxwidgets-3.0.2\include\wx\menuitem.h
  2918 + "wx/defs.h"
  2919 + "wx/object.h"
  2920 + "wx/univ/menuitem.h"
  2921 + "wx/msw/menuitem.h"
  2922 + "wx/motif/menuitem.h"
  2923 + "wx/gtk/menuitem.h"
  2924 + "wx/gtk1/menuitem.h"
  2925 + "wx/osx/menuitem.h"
  2926 + "wx/cocoa/menuitem.h"
  2927 + "wx/os2/menuitem.h"
  2928 +
  2929 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\menuitem.h
  2930 +
  2931 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\menuitem.h
  2932 + "wx/ownerdrw.h"
  2933 + "wx/bitmap.h"
  2934 +
  2935 +1412638444 c:\wxwidgets-3.0.2\include\wx\ownerdrw.h
  2936 + "wx/defs.h"
  2937 + "wx/font.h"
  2938 + "wx/colour.h"
  2939 + "wx/msw/ownerdrw.h"
  2940 + "wx/os2/ownerdrw.h"
  2941 +
  2942 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\ownerdrw.h
  2943 +
  2944 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\ownerdrw.h
  2945 +
  2946 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\menuitem.h
  2947 + "wx/bitmap.h"
  2948 +
  2949 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\menuitem.h
  2950 + "wx/bitmap.h"
  2951 +
  2952 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\menuitem.h
  2953 + "wx/bitmap.h"
  2954 +
  2955 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\menuitem.h
  2956 + "wx/defs.h"
  2957 + "wx/bitmap.h"
  2958 +
  2959 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\menuitem.h
  2960 + "wx/hashmap.h"
  2961 + "wx/bitmap.h"
  2962 + "wx/cocoa/ObjcRef.h"
  2963 +
  2964 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\menuitem.h
  2965 + "wx/defs.h"
  2966 + "wx/os2/private.h"
  2967 + "wx/ownerdrw.h"
  2968 + "wx/bitmap.h"
  2969 +
  2970 +1412638444 c:\wxwidgets-3.0.2\include\wx\menu.h
  2971 + "wx/defs.h"
  2972 + "wx/list.h"
  2973 + "wx/window.h"
  2974 + "wx/menuitem.h"
  2975 + "wx/univ/menu.h"
  2976 + "wx/msw/menu.h"
  2977 + "wx/motif/menu.h"
  2978 + "wx/gtk/menu.h"
  2979 + "wx/gtk1/menu.h"
  2980 + "wx/osx/menu.h"
  2981 + "wx/cocoa/menu.h"
  2982 + "wx/os2/menu.h"
  2983 +
  2984 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\menu.h
  2985 + "wx/accel.h"
  2986 + "wx/dynarray.h"
  2987 +
  2988 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\menu.h
  2989 + "wx/accel.h"
  2990 + "wx/dynarray.h"
  2991 + "wx/arrstr.h"
  2992 +
  2993 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\menu.h
  2994 + "wx/colour.h"
  2995 + "wx/font.h"
  2996 + "wx/arrstr.h"
  2997 +
  2998 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\menu.h
  2999 +
  3000 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\menu.h
  3001 +
  3002 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\menu.h
  3003 + "wx/arrstr.h"
  3004 +
  3005 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\menu.h
  3006 + "wx/cocoa/NSMenu.h"
  3007 + "wx/accel.h"
  3008 +
  3009 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\menu.h
  3010 + "wx/accel.h"
  3011 + "wx/list.h"
  3012 + "wx/dynarray.h"
  3013 +
  3014 +1412638442 c:\wxwidgets-3.0.2\include\wx\dataobj.h
  3015 + "wx/defs.h"
  3016 + "wx/string.h"
  3017 + "wx/bitmap.h"
  3018 + "wx/list.h"
  3019 + "wx/arrstr.h"
  3020 + "wx/msw/ole/dataform.h"
  3021 + "wx/motif/dataform.h"
  3022 + "wx/gtk/dataform.h"
  3023 + "wx/gtk1/dataform.h"
  3024 + "wx/x11/dataform.h"
  3025 + "wx/osx/dataform.h"
  3026 + "wx/cocoa/dataform.h"
  3027 + "wx/os2/dataform.h"
  3028 + "wx/msw/ole/dataobj.h"
  3029 + "wx/motif/dataobj.h"
  3030 + "wx/x11/dataobj.h"
  3031 + "wx/gtk/dataobj.h"
  3032 + "wx/gtk1/dataobj.h"
  3033 + "wx/osx/dataobj.h"
  3034 + "wx/cocoa/dataobj.h"
  3035 + "wx/os2/dataobj.h"
  3036 + "wx/msw/ole/dataobj2.h"
  3037 + "wx/gtk/dataobj2.h"
  3038 + "wx/gtk1/dataobj2.h"
  3039 + "wx/x11/dataobj2.h"
  3040 + "wx/motif/dataobj2.h"
  3041 + "wx/osx/dataobj2.h"
  3042 + "wx/cocoa/dataobj2.h"
  3043 + "wx/os2/dataobj2.h"
  3044 +
  3045 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\ole\dataform.h
  3046 +
  3047 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\dataform.h
  3048 +
  3049 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\dataform.h
  3050 +
  3051 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\dataform.h
  3052 +
  3053 +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\dataform.h
  3054 +
  3055 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\dataform.h
  3056 +
  3057 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\dataform.h
  3058 +
  3059 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\dataform.h
  3060 +
  3061 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\ole\dataobj.h
  3062 +
  3063 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\dataobj.h
  3064 +
  3065 +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\dataobj.h
  3066 +
  3067 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\dataobj.h
  3068 +
  3069 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\dataobj.h
  3070 +
  3071 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\dataobj.h
  3072 +
  3073 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\dataobj.h
  3074 +
  3075 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\dataobj.h
  3076 +
  3077 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\ole\dataobj2.h
  3078 +
  3079 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\dataobj2.h
  3080 +
  3081 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\dataobj2.h
  3082 +
  3083 +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\dataobj2.h
  3084 +
  3085 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\dataobj2.h
  3086 +
  3087 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\dataobj2.h
  3088 +
  3089 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\dataobj2.h
  3090 +
  3091 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\dataobj2.h
  3092 +
  3093 +1412638442 c:\wxwidgets-3.0.2\include\wx\bmpbuttn.h
  3094 + "wx/defs.h"
  3095 + "wx/button.h"
  3096 + "wx/univ/bmpbuttn.h"
  3097 + "wx/msw/bmpbuttn.h"
  3098 + "wx/motif/bmpbuttn.h"
  3099 + "wx/gtk/bmpbuttn.h"
  3100 + "wx/gtk1/bmpbuttn.h"
  3101 + "wx/osx/bmpbuttn.h"
  3102 + "wx/cocoa/bmpbuttn.h"
  3103 + "wx/os2/bmpbuttn.h"
  3104 +
  3105 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\bmpbuttn.h
  3106 +
  3107 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\bmpbuttn.h
  3108 + "wx/button.h"
  3109 + "wx/bitmap.h"
  3110 + "wx/brush.h"
  3111 +
  3112 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\bmpbuttn.h
  3113 + "wx/motif/bmpmotif.h"
  3114 +
  3115 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\bmpbuttn.h
  3116 +
  3117 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\bmpbuttn.h
  3118 +
  3119 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\bmpbuttn.h
  3120 + "wx/button.h"
  3121 +
  3122 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\bmpbuttn.h
  3123 + "wx/cocoa/NSButton.h"
  3124 +
  3125 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\bmpbuttn.h
  3126 + "wx/button.h"
  3127 + "wx/dcclient.h"
  3128 +
  3129 +1412638442 c:\wxwidgets-3.0.2\include\wx\checklst.h
  3130 + "wx/defs.h"
  3131 + "wx/listbox.h"
  3132 + "wx/univ/checklst.h"
  3133 + "wx/msw/wince/checklst.h"
  3134 + "wx/msw/checklst.h"
  3135 + "wx/motif/checklst.h"
  3136 + "wx/gtk/checklst.h"
  3137 + "wx/gtk1/checklst.h"
  3138 + "wx/osx/checklst.h"
  3139 + "wx/cocoa/checklst.h"
  3140 + "wx/os2/checklst.h"
  3141 +
  3142 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\checklst.h
  3143 +
  3144 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wince\checklst.h
  3145 +
  3146 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\checklst.h
  3147 +
  3148 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\checklst.h
  3149 + "wx/listbox.h"
  3150 +
  3151 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\checklst.h
  3152 +
  3153 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\checklst.h
  3154 +
  3155 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\checklst.h
  3156 +
  3157 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\checklst.h
  3158 +
  3159 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\checklst.h
  3160 + <stddef.h>
  3161 + "wx/defs.h"
  3162 +
  3163 +1412638444 c:\wxwidgets-3.0.2\include\wx\scrolbar.h
  3164 + "wx/defs.h"
  3165 + "wx/control.h"
  3166 + "wx/univ/scrolbar.h"
  3167 + "wx/msw/scrolbar.h"
  3168 + "wx/motif/scrolbar.h"
  3169 + "wx/gtk/scrolbar.h"
  3170 + "wx/gtk1/scrolbar.h"
  3171 + "wx/osx/scrolbar.h"
  3172 + "wx/cocoa/scrolbar.h"
  3173 + "wx/os2/scrolbar.h"
  3174 +
  3175 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\scrolbar.h
  3176 + "wx/univ/scrarrow.h"
  3177 + "wx/renderer.h"
  3178 +
  3179 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\scrolbar.h
  3180 +
  3181 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\scrolbar.h
  3182 +
  3183 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\scrolbar.h
  3184 +
  3185 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\scrolbar.h
  3186 + "wx/defs.h"
  3187 +
  3188 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\scrolbar.h
  3189 +
  3190 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\scrolbar.h
  3191 + "wx/cocoa/NSScroller.h"
  3192 +
  3193 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\nsscroller.h
  3194 + "wx/hashmap.h"
  3195 + "wx/cocoa/ObjcAssociate.h"
  3196 + "wx/cocoa/ObjcRef.h"
  3197 +
  3198 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\scrolbar.h
  3199 + "wx/scrolbar.h"
  3200 +
  3201 +1412638444 c:\wxwidgets-3.0.2\include\wx\statbox.h
  3202 + "wx/defs.h"
  3203 + "wx/control.h"
  3204 + "wx/containr.h"
  3205 + "wx/univ/statbox.h"
  3206 + "wx/msw/statbox.h"
  3207 + "wx/motif/statbox.h"
  3208 + "wx/gtk/statbox.h"
  3209 + "wx/gtk1/statbox.h"
  3210 + "wx/osx/statbox.h"
  3211 + "wx/cocoa/statbox.h"
  3212 + "wx/os2/statbox.h"
  3213 +
  3214 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\statbox.h
  3215 +
  3216 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\statbox.h
  3217 +
  3218 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\statbox.h
  3219 +
  3220 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\statbox.h
  3221 +
  3222 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\statbox.h
  3223 +
  3224 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\statbox.h
  3225 + "wx/control.h"
  3226 +
  3227 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\statbox.h
  3228 + "wx/cocoa/NSBox.h"
  3229 +
  3230 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\nsbox.h
  3231 + "wx/hashmap.h"
  3232 + "wx/cocoa/ObjcAssociate.h"
  3233 +
  3234 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\statbox.h
  3235 + "wx/control.h"
  3236 +
  3237 +1412638444 c:\wxwidgets-3.0.2\include\wx\radiobox.h
  3238 + "wx/defs.h"
  3239 + "wx/ctrlsub.h"
  3240 + "wx/dynarray.h"
  3241 + "wx/univ/radiobox.h"
  3242 + "wx/msw/radiobox.h"
  3243 + "wx/motif/radiobox.h"
  3244 + "wx/gtk/radiobox.h"
  3245 + "wx/gtk1/radiobox.h"
  3246 + "wx/osx/radiobox.h"
  3247 + "wx/cocoa/radiobox.h"
  3248 + "wx/os2/radiobox.h"
  3249 +
  3250 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\radiobox.h
  3251 + "wx/statbox.h"
  3252 + "wx/dynarray.h"
  3253 +
  3254 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\radiobox.h
  3255 + "wx/statbox.h"
  3256 +
  3257 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\radiobox.h
  3258 + "wx/dynarray.h"
  3259 + "wx/arrstr.h"
  3260 +
  3261 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\radiobox.h
  3262 + "wx/bitmap.h"
  3263 + "wx/list.h"
  3264 +
  3265 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\radiobox.h
  3266 + "wx/bitmap.h"
  3267 +
  3268 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\radiobox.h
  3269 +
  3270 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\radiobox.h
  3271 +
  3272 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\radiobox.h
  3273 +
  3274 +1412638444 c:\wxwidgets-3.0.2\include\wx\slider.h
  3275 + "wx/defs.h"
  3276 + "wx/control.h"
  3277 + "wx/univ/slider.h"
  3278 + "wx/msw/slider.h"
  3279 + "wx/motif/slider.h"
  3280 + "wx/gtk/slider.h"
  3281 + "wx/gtk1/slider.h"
  3282 + "wx/osx/slider.h"
  3283 + "wx/cocoa/slider.h"
  3284 + "wx/os2/slider.h"
  3285 +
  3286 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\slider.h
  3287 + "wx/univ/scrthumb.h"
  3288 +
  3289 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\scrthumb.h
  3290 + "wx/timer.h"
  3291 +
  3292 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\slider.h
  3293 +
  3294 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\slider.h
  3295 + "wx/control.h"
  3296 +
  3297 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\slider.h
  3298 +
  3299 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\slider.h
  3300 +
  3301 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\slider.h
  3302 + "wx/control.h"
  3303 + "wx/slider.h"
  3304 + "wx/stattext.h"
  3305 +
  3306 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\slider.h
  3307 + "wx/cocoa/NSSlider.h"
  3308 +
  3309 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\nsslider.h
  3310 + "wx/hashmap.h"
  3311 + "wx/cocoa/ObjcAssociate.h"
  3312 + "wx/cocoa/ObjcRef.h"
  3313 +
  3314 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\slider.h
  3315 + "wx/control.h"
  3316 +
  3317 +1412638442 c:\wxwidgets-3.0.2\include\wx\gauge.h
  3318 + "wx/defs.h"
  3319 + "wx/control.h"
  3320 + "wx/univ/gauge.h"
  3321 + "wx/msw/gauge.h"
  3322 + "wx/motif/gauge.h"
  3323 + "wx/gtk/gauge.h"
  3324 + "wx/gtk1/gauge.h"
  3325 + "wx/osx/gauge.h"
  3326 + "wx/cocoa/gauge.h"
  3327 + "wx/os2/gauge.h"
  3328 +
  3329 +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\gauge.h
  3330 +
  3331 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\gauge.h
  3332 +
  3333 +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\gauge.h
  3334 +
  3335 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\gauge.h
  3336 +
  3337 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\gauge.h
  3338 +
  3339 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\gauge.h
  3340 + "wx/control.h"
  3341 +
  3342 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\gauge.h
  3343 +
  3344 +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\gauge.h
  3345 +
  3346 +1412638444 c:\wxwidgets-3.0.2\include\wx\layout.h
  3347 + "wx/object.h"
  3348 +
  3349 +1412638442 c:\wxwidgets-3.0.2\include\wx\choicdlg.h
  3350 + "wx/defs.h"
  3351 + "wx/generic/choicdgg.h"
  3352 +
  3353 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\choicdgg.h
  3354 + "wx/dynarray.h"
  3355 + "wx/dialog.h"
  3356 +
  3357 +1412638444 c:\wxwidgets-3.0.2\include\wx\textdlg.h
  3358 + "wx/generic/textdlgg.h"
  3359 +
  3360 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\textdlgg.h
  3361 + "wx/defs.h"
  3362 + "wx/dialog.h"
  3363 + "wx/valtext.h"
  3364 + "wx/textctrl.h"
  3365 +
  3366 +1412638444 c:\wxwidgets-3.0.2\include\wx\valtext.h
  3367 + "wx/defs.h"
  3368 + "wx/validate.h"
  3369 +
  3370 +1412638444 c:\wxwidgets-3.0.2\include\wx\mdi.h
  3371 + "wx/defs.h"
  3372 + "wx/frame.h"
  3373 + "wx/menu.h"
  3374 + "wx/generic/mdig.h"
  3375 + "wx/msw/mdi.h"
  3376 + "wx/gtk/mdi.h"
  3377 + "wx/gtk1/mdi.h"
  3378 + "wx/osx/mdi.h"
  3379 + "wx/cocoa/mdi.h"
  3380 +
  3381 +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\mdig.h
  3382 + "wx/panel.h"
  3383 +
  3384 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\mdi.h
  3385 + "wx/frame.h"
  3386 +
  3387 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\mdi.h
  3388 + "wx/frame.h"
  3389 +
  3390 +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\mdi.h
  3391 + "wx/frame.h"
  3392 +
  3393 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\mdi.h
  3394 +
  3395 +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\mdi.h
  3396 + "wx/frame.h"
  3397 +
  3398 +1412638442 c:\wxwidgets-3.0.2\include\wx\dir.h
  3399 + "wx/longlong.h"
  3400 + "wx/string.h"
  3401 + "wx/filefn.h"
  3402 +
  3403 +1412638444 c:\wxwidgets-3.0.2\include\wx\mimetype.h
  3404 + "wx/defs.h"
  3405 + "wx/string.h"
  3406 + "wx/dynarray.h"
  3407 + "wx/arrstr.h"
  3408 + <stdarg.h>
  3409 +
  3410 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\private.h
  3411 + "wx/osx/core/private.h"
  3412 + "wx/osx/iphone/private.h"
  3413 + "wx/osx/carbon/private.h"
  3414 + "wx/osx/cocoa/private.h"
  3415 +
  3416 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\core\private.h
  3417 + "wx/defs.h"
  3418 + <CoreFoundation/CoreFoundation.h>
  3419 + "wx/osx/core/cfstring.h"
  3420 + "wx/osx/core/cfdataref.h"
  3421 + <Carbon/Carbon.h>
  3422 + <CoreGraphics/CoreGraphics.h>
  3423 + <ApplicationServices/ApplicationServices.h>
  3424 + "wx/bitmap.h"
  3425 + "wx/window.h"
  3426 +
  3427 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\core\cfstring.h
  3428 + <CoreFoundation/CFString.h>
  3429 + "wx/dlimpexp.h"
  3430 + "wx/fontenc.h"
  3431 + "wx/osx/core/cfref.h"
  3432 +
  3433 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\core\cfdataref.h
  3434 + "wx/osx/core/cfref.h"
  3435 + <CoreFoundation/CFData.h>
  3436 +
  3437 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\iphone\private.h
  3438 + <CoreText/CTFont.h>
  3439 + <CoreText/CTStringAttributes.h>
  3440 + <CoreText/CTLine.h>
  3441 +
  3442 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\carbon\private.h
  3443 + "wx/osx/uma.h"
  3444 + "wx/listbox.h"
  3445 + "wx/osx/dc.h"
  3446 + "wx/osx/dcclient.h"
  3447 + "wx/osx/dcmemory.h"
  3448 +
  3449 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\uma.h
  3450 + "wx/osx/carbon/uma.h"
  3451 +
  3452 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\carbon\uma.h
  3453 + "wx/osx/private.h"
  3454 +
  3455 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\dc.h
  3456 +
  3457 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\dcclient.h
  3458 + "wx/dc.h"
  3459 + "wx/dcgraph.h"
  3460 +
  3461 +1412638442 c:\wxwidgets-3.0.2\include\wx\dcgraph.h
  3462 + "wx/dc.h"
  3463 + "wx/geometry.h"
  3464 + "wx/graphics.h"
  3465 +
  3466 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\dcmemory.h
  3467 + "wx/osx/dcclient.h"
  3468 +
  3469 +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\cocoa\private.h
  3470 + <ApplicationServices/ApplicationServices.h>
  3471 +
  3472 +1412638444 c:\wxwidgets-3.0.2\include\wx\volume.h
  3473 + "wx/defs.h"
  3474 + "wx/arrstr.h"
  3475 + "wx/icon.h"
  3476 + "wx/iconbndl.h"
  3477 +
  3478 +1514917402 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\flexcable.cpp
  3479 + "FLEXCABLE.h"
  3480 + <wx/settings.h>
  3481 + <wx/intl.h>
  3482 + <wx/string.h>
  3483 +
  3484 +1514918566 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\flexcable.h
  3485 + <wx/notebook.h>
  3486 + <wx/sizer.h>
  3487 + <wx/stattext.h>
  3488 + <wx/textctrl.h>
  3489 + <wx/checkbox.h>
  3490 + <wx/panel.h>
  3491 + <wx/button.h>
  3492 + <wx/dialog.h>
  3493 + <wx/msgdlg.h>
  3494 + <wx/dcclient.h>
  3495 + "UTILITIES.h"
  3496 + "MESH_LAPLACE.h"
  3497 + "MESH_PARAM.h"
  3498 + "RUN_STATUS.h"
  3499 + "FD_ESR.h"
  3500 + <iostream>
  3501 + <fstream>
  3502 + <sstream>
  3503 +
  3504 +1502693576 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\mesh_laplace.cpp
  3505 + "MESH_LAPLACE.h"
  3506 +
  3507 +1502693576 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\mesh_param.cpp
  3508 + "MESH_PARAM.h"
  3509 + <wx/settings.h>
  3510 + <wx/intl.h>
  3511 + <wx/string.h>
  3512 +
  3513 +1514917242 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\overshield.cpp
  3514 + "OVERSHIELD.h"
  3515 + <wx/settings.h>
  3516 + <wx/intl.h>
  3517 + <wx/string.h>
  3518 +
  3519 +1514918530 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\overshield.h
  3520 + <wx/sizer.h>
  3521 + <wx/stattext.h>
  3522 + <wx/textctrl.h>
  3523 + <wx/panel.h>
  3524 + <wx/button.h>
  3525 + <wx/dialog.h>
  3526 + <wx/msgdlg.h>
  3527 + <wx/dcclient.h>
  3528 + "MESH_LAPLACE.h"
  3529 + "UTILITIES.h"
  3530 + "RUN_STATUS.h"
  3531 + <iostream>
  3532 + <fstream>
  3533 + <sstream>
  3534 +
  3535 +1502693576 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\place_cable.cpp
  3536 + "PLACE_CABLE.h"
  3537 + <wx/intl.h>
  3538 + <wx/string.h>
  3539 +
  3540 +1502693574 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\resource.rc
  3541 + "wx/msw/wx.rc"
  3542 +
  3543 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wx.rc
  3544 + <windows.h>
  3545 + "wx/msw/wince/wince.rc"
  3546 + "wx/msw/rcdefs.h"
  3547 +
  3548 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wince\wince.rc
  3549 + <commctrl.h>
  3550 + "wx/msw/wince/resources.h"
  3551 + "wx/msw/wince/smartphone.rc"
  3552 +
  3553 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wince\resources.h
  3554 +
  3555 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wince\smartphone.rc
  3556 + <aygshell.h>
  3557 +
  3558 +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\rcdefs.h
  3559 +
  3560 +1502693574 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\run_status.cpp
  3561 + "RUN_STATUS.h"
  3562 + <wx/intl.h>
  3563 + <wx/string.h>
  3564 +
  3565 +1514834464 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\spacewire.cpp
  3566 + "SPACEWIRE.h"
  3567 + <wx/settings.h>
  3568 + <wx/intl.h>
  3569 + <wx/string.h>
  3570 +
  3571 +1514834450 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\spacewire.h
  3572 + <wx/notebook.h>
  3573 + <wx/sizer.h>
  3574 + <wx/stattext.h>
  3575 + <wx/textctrl.h>
  3576 + <wx/checkbox.h>
  3577 + <wx/panel.h>
  3578 + <wx/button.h>
  3579 + <wx/dialog.h>
  3580 + <wx/combobox.h>
  3581 + <wx/msgdlg.h>
  3582 + <wx/dcclient.h>
  3583 + "FD_ESR_SW.h"
  3584 + "UTILITIES.h"
  3585 + "MESH_LAPLACE.h"
  3586 + "MESH_PARAM.h"
  3587 + "RUN_STATUS.h"
  3588 + <iostream>
  3589 + <fstream>
  3590 + <sstream>
  3591 +
  3592 +1509492344 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\spicemodel.cpp
  3593 + "SPICEMODEL.h"
  3594 + <wx/filename.h>
  3595 + <wx/dcclient.h>
  3596 + <wx/tokenzr.h>
  3597 + <iostream>
  3598 + <fstream>
  3599 + <string>
  3600 + <sstream>
  3601 + <wx/settings.h>
  3602 + <wx/intl.h>
  3603 + <wx/string.h>
  3604 +
  3605 +1509486246 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\spicemodel.h
  3606 + <wx/notebook.h>
  3607 + <wx/sizer.h>
  3608 + <wx/stattext.h>
  3609 + <wx/textctrl.h>
  3610 + <wx/checkbox.h>
  3611 + <wx/radiobut.h>
  3612 + <wx/panel.h>
  3613 + <wx/button.h>
  3614 + <wx/dialog.h>
  3615 + <wx/msgdlg.h>
  3616 + <wx/dirctrl.h>
  3617 + <wx/treectrl.h>
  3618 + <iostream>
  3619 + <string>
  3620 + "FileSelectorCtrl.h"
  3621 + "BUNDLE_SCHEMATIC.h"
  3622 + "RUN_STATUS.h"
  3623 + "UTILITIES.h"
  3624 +
  3625 +1502693570 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\sw1_guiapp.cpp
  3626 + "SW1_GUIApp.h"
  3627 + "SW1_GUIMain.h"
  3628 + <wx/image.h>
  3629 +
  3630 +1502693570 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\sw1_guiapp.h
  3631 + <wx/app.h>
  3632 +
  3633 +1514922396 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\sw1_guimain.h
  3634 + <wx/sizer.h>
  3635 + <wx/menu.h>
  3636 + <wx/panel.h>
  3637 + <wx/statbmp.h>
  3638 + <wx/dirdlg.h>
  3639 + <wx/frame.h>
  3640 + <wx/statusbr.h>
  3641 + <wx/dirctrl.h>
  3642 + <wx/msgdlg.h>
  3643 + <wx/dir.h>
  3644 + <wx/dirctrl.h>
  3645 + <wx/treectrl.h>
  3646 + <wx/filename.h>
  3647 + <wx/dcclient.h>
  3648 + "FileSelectorCtrl.h"
  3649 + "ABOUT.h"
  3650 + "CYLINDRICAL.h"
  3651 + "COAXIAL.h"
  3652 + "TWINAX.h"
  3653 + "UTP.h"
  3654 + "TP.h"
  3655 + "SPACEWIRE.h"
  3656 + "OVERSHIELD.h"
  3657 + "FLEXCABLE.h"
  3658 + "DCONN.h"
  3659 + "BUNDLEBLDR.h"
  3660 + "SPICEMODEL.h"
  3661 + "CABLE_SCHEMATIC.h"
  3662 + "BUNDLE_SCHEMATIC.h"
  3663 + "EXPORT_SPICE.h"
  3664 + "UTILITIES.h"
  3665 + <iostream>
  3666 + <fstream>
  3667 + <string>
  3668 +
  3669 +1514832882 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\cylindrical.h
  3670 + <wx/sizer.h>
  3671 + <wx/stattext.h>
  3672 + <wx/textctrl.h>
  3673 + <wx/checkbox.h>
  3674 + <wx/panel.h>
  3675 + <wx/button.h>
  3676 + <wx/dialog.h>
  3677 + <wx/msgdlg.h>
  3678 + <wx/dcclient.h>
  3679 + "FD_ESR.h"
  3680 + "UTILITIES.h"
  3681 + "RUN_STATUS.h"
  3682 + <iostream>
  3683 + <fstream>
  3684 + <sstream>
  3685 +
  3686 +1514832982 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\coaxial.h
  3687 + <wx/notebook.h>
  3688 + <wx/sizer.h>
  3689 + <wx/stattext.h>
  3690 + <wx/textctrl.h>
  3691 + <wx/checkbox.h>
  3692 + <wx/statline.h>
  3693 + <wx/panel.h>
  3694 + <wx/button.h>
  3695 + <wx/dialog.h>
  3696 + <wx/msgdlg.h>
  3697 + <wx/dcclient.h>
  3698 + "UTILITIES.h"
  3699 + "FD_ESR.h"
  3700 + "FD_ZT.h"
  3701 + "RUN_STATUS.h"
  3702 + <iostream>
  3703 + <fstream>
  3704 + <sstream>
  3705 +
  3706 +1514833854 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\twinax.h
  3707 + <wx/notebook.h>
  3708 + <wx/sizer.h>
  3709 + <wx/stattext.h>
  3710 + <wx/textctrl.h>
  3711 + <wx/checkbox.h>
  3712 + <wx/statline.h>
  3713 + <wx/panel.h>
  3714 + <wx/button.h>
  3715 + <wx/dialog.h>
  3716 + <wx/combobox.h>
  3717 + <wx/msgdlg.h>
  3718 + <wx/dcclient.h>
  3719 + "FD_ESR.h"
  3720 + "UTILITIES.h"
  3721 + "MESH_LAPLACE.h"
  3722 + "MESH_PARAM.h"
  3723 + "RUN_STATUS.h"
  3724 + <iostream>
  3725 + <fstream>
  3726 + <sstream>
  3727 +
  3728 +1514834002 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\utp.h
  3729 + <wx/notebook.h>
  3730 + <wx/sizer.h>
  3731 + <wx/stattext.h>
  3732 + <wx/textctrl.h>
  3733 + <wx/checkbox.h>
  3734 + <wx/panel.h>
  3735 + <wx/button.h>
  3736 + <wx/dialog.h>
  3737 + <wx/combobox.h>
  3738 + <wx/msgdlg.h>
  3739 + <wx/dcclient.h>
  3740 + "FD_ESR.h"
  3741 + "UTILITIES.h"
  3742 + "MESH_LAPLACE.h"
  3743 + "MESH_PARAM.h"
  3744 + "RUN_STATUS.h"
  3745 + <iostream>
  3746 + <fstream>
  3747 + <sstream>
  3748 + <stdio.h>
  3749 +
  3750 +1514834234 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\tp.h
  3751 + <wx/notebook.h>
  3752 + <wx/sizer.h>
  3753 + <wx/stattext.h>
  3754 + <wx/textctrl.h>
  3755 + <wx/checkbox.h>
  3756 + <wx/statline.h>
  3757 + <wx/panel.h>
  3758 + <wx/button.h>
  3759 + <wx/dialog.h>
  3760 + <wx/combobox.h>
  3761 + <wx/msgdlg.h>
  3762 + <wx/dcclient.h>
  3763 + "FD_ESR.h"
  3764 + "MESH_LAPLACE.h"
  3765 + "MESH_PARAM.h"
  3766 + "UTILITIES.h"
  3767 + "RUN_STATUS.h"
  3768 + <iostream>
  3769 + <fstream>
  3770 + <sstream>
  3771 +
  3772 +1514918482 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\dconn.h
  3773 + <wx/sizer.h>
  3774 + <wx/stattext.h>
  3775 + <wx/textctrl.h>
  3776 + <wx/checkbox.h>
  3777 + <wx/panel.h>
  3778 + <wx/button.h>
  3779 + <wx/dialog.h>
  3780 + <wx/combobox.h>
  3781 + <wx/dcclient.h>
  3782 + <wx/msgdlg.h>
  3783 + "MESH_LAPLACE.h"
  3784 + "MESH_PARAM.h"
  3785 + "RUN_STATUS.h"
  3786 + "UTILITIES.h"
  3787 + <iostream>
  3788 + <fstream>
  3789 + <sstream>
  3790 +
  3791 +1514923368 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\sw1_guimain.cpp
  3792 + "SW1_GUIMain.h"
  3793 + <wx/bitmap.h>
  3794 + <wx/icon.h>
  3795 + <wx/settings.h>
  3796 + <wx/intl.h>
  3797 + <wx/image.h>
  3798 + <wx/string.h>
  3799 +
  3800 +1502693568 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\utilities.cpp
  3801 + "UTILITIES.h"
  3802 +
  3803 +1514834022 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\utp.cpp
  3804 + "UTP.h"
  3805 + <wx/settings.h>
  3806 + <wx/intl.h>
  3807 + <wx/string.h>
  3808 +
GUI/SW1/SRC/SW1_GUI.layout 0 โ†’ 100644
@@ -0,0 +1,260 @@ @@ -0,0 +1,260 @@
  1 +<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
  2 +<CodeBlocks_layout_file>
  3 + <FileVersion major="1" minor="0" />
  4 + <ActiveTarget name="Release" />
  5 + <File name="FLEXCABLE.cpp" open="0" top="0" tabpos="26" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  6 + <Cursor>
  7 + <Cursor1 position="18548" topLine="360" />
  8 + </Cursor>
  9 + </File>
  10 + <File name="CABLE_SCHEMATIC.h" open="0" top="0" tabpos="0" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  11 + <Cursor>
  12 + <Cursor1 position="1866" topLine="22" />
  13 + </Cursor>
  14 + </File>
  15 + <File name="FLEXCABLE.h" open="0" top="0" tabpos="38" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  16 + <Cursor>
  17 + <Cursor1 position="3678" topLine="84" />
  18 + </Cursor>
  19 + </File>
  20 + <File name="MESH_LAPLACE.cpp" open="1" top="0" tabpos="6" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  21 + <Cursor>
  22 + <Cursor1 position="3659" topLine="30" />
  23 + </Cursor>
  24 + </File>
  25 + <File name="OVERSHIELD.h" open="0" top="0" tabpos="10" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  26 + <Cursor>
  27 + <Cursor1 position="2061" topLine="41" />
  28 + </Cursor>
  29 + </File>
  30 + <File name="FD_ESR.h" open="0" top="0" tabpos="13" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  31 + <Cursor>
  32 + <Cursor1 position="1858" topLine="36" />
  33 + </Cursor>
  34 + </File>
  35 + <File name="MESH_LAPLACE.h" open="0" top="0" tabpos="31" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  36 + <Cursor>
  37 + <Cursor1 position="2652" topLine="37" />
  38 + </Cursor>
  39 + </File>
  40 + <File name="BUNDLE_SCHEMATIC.cpp" open="1" top="0" tabpos="12" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  41 + <Cursor>
  42 + <Cursor1 position="30038" topLine="533" />
  43 + </Cursor>
  44 + </File>
  45 + <File name="PLACE_CABLE.cpp" open="0" top="0" tabpos="20" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  46 + <Cursor>
  47 + <Cursor1 position="372" topLine="78" />
  48 + </Cursor>
  49 + </File>
  50 + <File name="MESH_PARAM.cpp" open="1" top="0" tabpos="7" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  51 + <Cursor>
  52 + <Cursor1 position="3862" topLine="0" />
  53 + </Cursor>
  54 + </File>
  55 + <File name="EXPORT_SPICE.cpp" open="0" top="0" tabpos="5" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  56 + <Cursor>
  57 + <Cursor1 position="6826" topLine="120" />
  58 + </Cursor>
  59 + </File>
  60 + <File name="ABOUT.cpp" open="0" top="0" tabpos="12" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  61 + <Cursor>
  62 + <Cursor1 position="4147" topLine="94" />
  63 + </Cursor>
  64 + </File>
  65 + <File name="ABOUT.h" open="0" top="0" tabpos="33" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  66 + <Cursor>
  67 + <Cursor1 position="372" topLine="46" />
  68 + </Cursor>
  69 + </File>
  70 + <File name="UTILITIES.h" open="0" top="0" tabpos="24" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  71 + <Cursor>
  72 + <Cursor1 position="2195" topLine="26" />
  73 + </Cursor>
  74 + </File>
  75 + <File name="COAXIAL.h" open="0" top="0" tabpos="2" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  76 + <Cursor>
  77 + <Cursor1 position="3237" topLine="72" />
  78 + </Cursor>
  79 + </File>
  80 + <File name="TWINAX.h" open="0" top="0" tabpos="36" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  81 + <Cursor>
  82 + <Cursor1 position="2696" topLine="67" />
  83 + </Cursor>
  84 + </File>
  85 + <File name="FD_ESR.cpp" open="0" top="0" tabpos="3" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  86 + <Cursor>
  87 + <Cursor1 position="19665" topLine="32" />
  88 + </Cursor>
  89 + </File>
  90 + <File name="PLACE_CABLE.h" open="0" top="0" tabpos="9" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  91 + <Cursor>
  92 + <Cursor1 position="313" topLine="0" />
  93 + </Cursor>
  94 + </File>
  95 + <File name="UTP.h" open="0" top="0" tabpos="7" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  96 + <Cursor>
  97 + <Cursor1 position="2715" topLine="59" />
  98 + </Cursor>
  99 + </File>
  100 + <File name="FD_ESR_SW.h" open="0" top="0" tabpos="29" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  101 + <Cursor>
  102 + <Cursor1 position="372" topLine="33" />
  103 + </Cursor>
  104 + </File>
  105 + <File name="SPICEMODEL.h" open="0" top="0" tabpos="2" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  106 + <Cursor>
  107 + <Cursor1 position="2134" topLine="36" />
  108 + </Cursor>
  109 + </File>
  110 + <File name="OVERSHIELD.cpp" open="0" top="0" tabpos="8" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  111 + <Cursor>
  112 + <Cursor1 position="13635" topLine="229" />
  113 + </Cursor>
  114 + </File>
  115 + <File name="SPACEWIRE.h" open="0" top="0" tabpos="2" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  116 + <Cursor>
  117 + <Cursor1 position="2706" topLine="55" />
  118 + </Cursor>
  119 + </File>
  120 + <File name="CYLINDRICAL.h" open="1" top="0" tabpos="4" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  121 + <Cursor>
  122 + <Cursor1 position="2536" topLine="62" />
  123 + </Cursor>
  124 + </File>
  125 + <File name="SPICEMODEL.cpp" open="1" top="0" tabpos="8" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  126 + <Cursor>
  127 + <Cursor1 position="25248" topLine="554" />
  128 + </Cursor>
  129 + </File>
  130 + <File name="BUNDLEBLDR.h" open="1" top="0" tabpos="10" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  131 + <Cursor>
  132 + <Cursor1 position="3550" topLine="92" />
  133 + </Cursor>
  134 + </File>
  135 + <File name="SW1_GUIApp.cpp" open="0" top="0" tabpos="5" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  136 + <Cursor>
  137 + <Cursor1 position="372" topLine="16" />
  138 + </Cursor>
  139 + </File>
  140 + <File name="COAXIAL.cpp" open="0" top="0" tabpos="1" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  141 + <Cursor>
  142 + <Cursor1 position="40499" topLine="840" />
  143 + </Cursor>
  144 + </File>
  145 + <File name="SW1_GUIMain.cpp" open="1" top="0" tabpos="1" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  146 + <Cursor>
  147 + <Cursor1 position="20272" topLine="390" />
  148 + </Cursor>
  149 + </File>
  150 + <File name="FD_ESR_SW.cpp" open="0" top="0" tabpos="37" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  151 + <Cursor>
  152 + <Cursor1 position="372" topLine="0" />
  153 + </Cursor>
  154 + </File>
  155 + <File name="SW1_GUIMain.h" open="1" top="0" tabpos="2" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  156 + <Cursor>
  157 + <Cursor1 position="2586" topLine="54" />
  158 + </Cursor>
  159 + </File>
  160 + <File name="FileSelectorCtrl.cpp" open="0" top="0" tabpos="2" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  161 + <Cursor>
  162 + <Cursor1 position="18154" topLine="606" />
  163 + </Cursor>
  164 + </File>
  165 + <File name="RUN_STATUS.cpp" open="0" top="0" tabpos="0" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  166 + <Cursor>
  167 + <Cursor1 position="3291" topLine="57" />
  168 + </Cursor>
  169 + </File>
  170 + <File name="UTP.cpp" open="0" top="0" tabpos="9" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  171 + <Cursor>
  172 + <Cursor1 position="29998" topLine="708" />
  173 + </Cursor>
  174 + </File>
  175 + <File name="EXPORT_SPICE.h" open="0" top="0" tabpos="0" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  176 + <Cursor>
  177 + <Cursor1 position="1941" topLine="29" />
  178 + </Cursor>
  179 + </File>
  180 + <File name="TP.cpp" open="0" top="0" tabpos="5" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  181 + <Cursor>
  182 + <Cursor1 position="52600" topLine="1150" />
  183 + </Cursor>
  184 + </File>
  185 + <File name="FileSelectorCtrl.h" open="0" top="0" tabpos="3" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  186 + <Cursor>
  187 + <Cursor1 position="2475" topLine="97" />
  188 + </Cursor>
  189 + </File>
  190 + <File name="RUN_STATUS.h" open="0" top="0" tabpos="0" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  191 + <Cursor>
  192 + <Cursor1 position="1814" topLine="51" />
  193 + </Cursor>
  194 + </File>
  195 + <File name="DCONN.cpp" open="0" top="0" tabpos="3" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  196 + <Cursor>
  197 + <Cursor1 position="12437" topLine="244" />
  198 + </Cursor>
  199 + </File>
  200 + <File name="SW1_GUIApp.h" open="0" top="0" tabpos="27" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  201 + <Cursor>
  202 + <Cursor1 position="372" topLine="0" />
  203 + </Cursor>
  204 + </File>
  205 + <File name="wxsmith\BUNDLEBLDR.wxs" open="0" top="0" tabpos="2" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  206 + <Cursor>
  207 + <Cursor1 position="92" topLine="0" />
  208 + </Cursor>
  209 + </File>
  210 + <File name="MESH_PARAM.h" open="0" top="0" tabpos="9" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  211 + <Cursor>
  212 + <Cursor1 position="191" topLine="0" />
  213 + </Cursor>
  214 + </File>
  215 + <File name="SPACEWIRE.cpp" open="0" top="0" tabpos="4" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  216 + <Cursor>
  217 + <Cursor1 position="77541" topLine="1604" />
  218 + </Cursor>
  219 + </File>
  220 + <File name="CABLE_SCHEMATIC.cpp" open="1" top="0" tabpos="11" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  221 + <Cursor>
  222 + <Cursor1 position="30319" topLine="572" />
  223 + </Cursor>
  224 + </File>
  225 + <File name="TP.h" open="0" top="0" tabpos="8" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  226 + <Cursor>
  227 + <Cursor1 position="2670" topLine="0" />
  228 + </Cursor>
  229 + </File>
  230 + <File name="CYLINDRICAL.cpp" open="1" top="0" tabpos="3" split="0" active="1" splitpos="0" zoom_1="1" zoom_2="0">
  231 + <Cursor>
  232 + <Cursor1 position="11613" topLine="315" />
  233 + </Cursor>
  234 + </File>
  235 + <File name="TWINAX.cpp" open="0" top="0" tabpos="6" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  236 + <Cursor>
  237 + <Cursor1 position="52828" topLine="1131" />
  238 + </Cursor>
  239 + </File>
  240 + <File name="BUNDLEBLDR.cpp" open="1" top="1" tabpos="5" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  241 + <Cursor>
  242 + <Cursor1 position="61889" topLine="1429" />
  243 + </Cursor>
  244 + </File>
  245 + <File name="UTILITIES.cpp" open="0" top="0" tabpos="4" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  246 + <Cursor>
  247 + <Cursor1 position="5276" topLine="168" />
  248 + </Cursor>
  249 + </File>
  250 + <File name="DCONN.h" open="0" top="0" tabpos="23" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  251 + <Cursor>
  252 + <Cursor1 position="2094" topLine="41" />
  253 + </Cursor>
  254 + </File>
  255 + <File name="BUNDLE_SCHEMATIC.h" open="0" top="0" tabpos="0" split="0" active="1" splitpos="0" zoom_1="0" zoom_2="0">
  256 + <Cursor>
  257 + <Cursor1 position="1781" topLine="25" />
  258 + </Cursor>
  259 + </File>
  260 +</CodeBlocks_layout_file>
GUI/SW1/SRC/TP.cpp
@@ -211,7 +211,7 @@ TP::TP(wxWindow* parent,wxWindowID id,const wxPoint&amp; pos,const wxSize&amp; size) @@ -211,7 +211,7 @@ TP::TP(wxWindow* parent,wxWindowID id,const wxPoint&amp; pos,const wxSize&amp; size)
211 FlexGridSizer8->Add(StaticText23, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5); 211 FlexGridSizer8->Add(StaticText23, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5);
212 StaticText24 = new wxStaticText(Panel3, ID_STATICTEXT24, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT24")); 212 StaticText24 = new wxStaticText(Panel3, ID_STATICTEXT24, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT24"));
213 FlexGridSizer8->Add(StaticText24, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5); 213 FlexGridSizer8->Add(StaticText24, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
214 - StaticText25 = new wxStaticText(Panel3, ID_STATICTEXT25, _("R (ohms)"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT25")); 214 + StaticText25 = new wxStaticText(Panel3, ID_STATICTEXT25, _("R (ohms/m)"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT25"));
215 FlexGridSizer8->Add(StaticText25, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5); 215 FlexGridSizer8->Add(StaticText25, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5);
216 TextCtrl17 = new wxTextCtrl(Panel3, ID_TEXTCTRL17, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_TEXTCTRL17")); 216 TextCtrl17 = new wxTextCtrl(Panel3, ID_TEXTCTRL17, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_TEXTCTRL17"));
217 FlexGridSizer8->Add(TextCtrl17, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5); 217 FlexGridSizer8->Add(TextCtrl17, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
@@ -326,6 +326,7 @@ TP::TP(wxWindow* parent,wxWindowID id,const wxPoint&amp; pos,const wxSize&amp; size) @@ -326,6 +326,7 @@ TP::TP(wxWindow* parent,wxWindowID id,const wxPoint&amp; pos,const wxSize&amp; size)
326 Panel4->Connect(wxEVT_PAINT,(wxObjectEventFunction)&TP::OnPanel4Paint,0,this); 326 Panel4->Connect(wxEVT_PAINT,(wxObjectEventFunction)&TP::OnPanel4Paint,0,this);
327 Panel4->Connect(wxEVT_LEFT_DCLICK,(wxObjectEventFunction)&TP::OnPanel4LeftDClick,0,this); 327 Panel4->Connect(wxEVT_LEFT_DCLICK,(wxObjectEventFunction)&TP::OnPanel4LeftDClick,0,this);
328 Panel4->Connect(wxEVT_MOUSEWHEEL,(wxObjectEventFunction)&TP::OnPanel4MouseWheel,0,this); 328 Panel4->Connect(wxEVT_MOUSEWHEEL,(wxObjectEventFunction)&TP::OnPanel4MouseWheel,0,this);
  329 + Connect(wxEVT_PAINT,(wxObjectEventFunction)&TP::OnPaint);
329 //*) 330 //*)
330 331
331 TextCtrl2->Bind(wxEVT_SET_FOCUS,(wxObjectEventFunction)&TP::OnHighlightSchematic, this); 332 TextCtrl2->Bind(wxEVT_SET_FOCUS,(wxObjectEventFunction)&TP::OnHighlightSchematic, this);
@@ -347,6 +348,12 @@ TP::~TP() @@ -347,6 +348,12 @@ TP::~TP()
347 //*) 348 //*)
348 } 349 }
349 350
  351 +void TP::OnPaint(wxPaintEvent& event)
  352 +{
  353 + if (EDIT_EXISTING==true) EditExistingCable();
  354 +}
  355 +
  356 +
350 void TP::SetPathToMOD(wxString Path, wxString Name) 357 void TP::SetPathToMOD(wxString Path, wxString Name)
351 { 358 {
352 359
@@ -1189,3 +1196,8 @@ void TP::OnCheckBox4Click(wxCommandEvent&amp; event) @@ -1189,3 +1196,8 @@ void TP::OnCheckBox4Click(wxCommandEvent&amp; event)
1189 1196
1190 1197
1191 } 1198 }
  1199 +
  1200 +void TP::EditExistingCable()
  1201 +{
  1202 + Close();
  1203 +}
GUI/SW1/SRC/TWINAX.cpp
@@ -214,11 +214,11 @@ TWINAX::TWINAX(wxWindow* parent,wxWindowID id,const wxPoint&amp; pos,const wxSize&amp; s @@ -214,11 +214,11 @@ TWINAX::TWINAX(wxWindow* parent,wxWindowID id,const wxPoint&amp; pos,const wxSize&amp; s
214 FlexGridSizer8->Add(StaticText23, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5); 214 FlexGridSizer8->Add(StaticText23, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5);
215 StaticText24 = new wxStaticText(Panel3, ID_STATICTEXT24, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT24")); 215 StaticText24 = new wxStaticText(Panel3, ID_STATICTEXT24, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT24"));
216 FlexGridSizer8->Add(StaticText24, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5); 216 FlexGridSizer8->Add(StaticText24, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
217 - StaticText25 = new wxStaticText(Panel3, ID_STATICTEXT25, _("R (ohms)"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT25")); 217 + StaticText25 = new wxStaticText(Panel3, ID_STATICTEXT25, _("R (ohms/m)"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT25"));
218 FlexGridSizer8->Add(StaticText25, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5); 218 FlexGridSizer8->Add(StaticText25, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5);
219 TextCtrl17 = new wxTextCtrl(Panel3, ID_TEXTCTRL17, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_TEXTCTRL17")); 219 TextCtrl17 = new wxTextCtrl(Panel3, ID_TEXTCTRL17, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_TEXTCTRL17"));
220 FlexGridSizer8->Add(TextCtrl17, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5); 220 FlexGridSizer8->Add(TextCtrl17, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
221 - StaticText26 = new wxStaticText(Panel3, ID_STATICTEXT26, _("H (henries)"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT26")); 221 + StaticText26 = new wxStaticText(Panel3, ID_STATICTEXT26, _("H (henries/m)"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT26"));
222 FlexGridSizer8->Add(StaticText26, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5); 222 FlexGridSizer8->Add(StaticText26, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5);
223 TextCtrl18 = new wxTextCtrl(Panel3, ID_TEXTCTRL18, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_TEXTCTRL18")); 223 TextCtrl18 = new wxTextCtrl(Panel3, ID_TEXTCTRL18, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_TEXTCTRL18"));
224 FlexGridSizer8->Add(TextCtrl18, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5); 224 FlexGridSizer8->Add(TextCtrl18, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5);
@@ -334,6 +334,7 @@ TWINAX::TWINAX(wxWindow* parent,wxWindowID id,const wxPoint&amp; pos,const wxSize&amp; s @@ -334,6 +334,7 @@ TWINAX::TWINAX(wxWindow* parent,wxWindowID id,const wxPoint&amp; pos,const wxSize&amp; s
334 Connect(ID_BUTTON2,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&TWINAX::OnButton2Click); 334 Connect(ID_BUTTON2,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&TWINAX::OnButton2Click);
335 Panel1->Connect(wxEVT_PAINT,(wxObjectEventFunction)&TWINAX::OnPanel1Paint,0,this); 335 Panel1->Connect(wxEVT_PAINT,(wxObjectEventFunction)&TWINAX::OnPanel1Paint,0,this);
336 Panel1->Connect(wxEVT_LEFT_DCLICK,(wxObjectEventFunction)&TWINAX::OnPanel1LeftDClick,0,this); 336 Panel1->Connect(wxEVT_LEFT_DCLICK,(wxObjectEventFunction)&TWINAX::OnPanel1LeftDClick,0,this);
  337 + Connect(wxEVT_PAINT,(wxObjectEventFunction)&TWINAX::OnPaint);
337 //*) 338 //*)
338 339
339 TextCtrl2->Bind(wxEVT_SET_FOCUS,(wxObjectEventFunction)&TWINAX::OnHighlightSchematic, this); 340 TextCtrl2->Bind(wxEVT_SET_FOCUS,(wxObjectEventFunction)&TWINAX::OnHighlightSchematic, this);
@@ -355,6 +356,11 @@ TWINAX::~TWINAX() @@ -355,6 +356,11 @@ TWINAX::~TWINAX()
355 //*) 356 //*)
356 } 357 }
357 358
  359 +void TWINAX::OnPaint(wxPaintEvent& event)
  360 +{
  361 + if (EDIT_EXISTING==true) EditExistingCable();
  362 +}
  363 +
358 void TWINAX::SetPathToMOD(wxString Path, wxString Name) 364 void TWINAX::SetPathToMOD(wxString Path, wxString Name)
359 { 365 {
360 366
@@ -1171,3 +1177,10 @@ void TWINAX::OnCheckBox4Click(wxCommandEvent&amp; event) @@ -1171,3 +1177,10 @@ void TWINAX::OnCheckBox4Click(wxCommandEvent&amp; event)
1171 } 1177 }
1172 1178
1173 } 1179 }
  1180 +
  1181 +void TWINAX::EditExistingCable()
  1182 +{
  1183 + Close();
  1184 +}
  1185 +
  1186 +