diff --git a/GUI/SW1/SRC/BUNDLEBLDR.cpp b/GUI/SW1/SRC/BUNDLEBLDR.cpp index cf9238a..629937e 100644 --- a/GUI/SW1/SRC/BUNDLEBLDR.cpp +++ b/GUI/SW1/SRC/BUNDLEBLDR.cpp @@ -97,6 +97,9 @@ const long BUNDLEBLDR::ID_BUTTON1 = wxNewId(); const long BUNDLEBLDR::ID_BUTTON2 = wxNewId(); const long BUNDLEBLDR::ID_BUTTON3 = wxNewId(); const long BUNDLEBLDR::ID_PANEL1 = wxNewId(); +const long BUNDLEBLDR::ID_STATICTEXT12 = wxNewId(); +const long BUNDLEBLDR::ID_TEXTCTRL8 = wxNewId(); +const long BUNDLEBLDR::ID_SPINBUTTON1 = wxNewId(); //*) BEGIN_EVENT_TABLE(BUNDLEBLDR,wxDialog) @@ -107,6 +110,7 @@ END_EVENT_TABLE() BUNDLEBLDR::BUNDLEBLDR(wxWindow* parent,wxWindowID id,const wxPoint& pos,const wxSize& size) { //(*Initialize(BUNDLEBLDR) + wxBoxSizer* BoxSizer4; wxStaticBoxSizer* StaticBoxSizer2; wxBoxSizer* BoxSizer6; wxFlexGridSizer* FlexGridSizer4; @@ -251,10 +255,19 @@ BUNDLEBLDR::BUNDLEBLDR(wxWindow* parent,wxWindowID id,const wxPoint& pos,const w BoxSizer1->Add(Button3, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5); StaticBoxSizer4->Add(BoxSizer1, 1, wxALL, 5); FlexGridSizer1->Add(StaticBoxSizer4, 3, wxALL|wxEXPAND, 5); - StaticBoxSizer1 = new wxStaticBoxSizer(wxHORIZONTAL, this, _("2D Cross Section")); + StaticBoxSizer1 = new wxStaticBoxSizer(wxVERTICAL, this, _("2D Cross Section")); Panel1 = new wxPanel(this, ID_PANEL1, wxDefaultPosition, wxSize(500,500), wxTAB_TRAVERSAL, _T("ID_PANEL1")); Panel1->SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW)); - StaticBoxSizer1->Add(Panel1, 1, wxALL|wxEXPAND, 5); + StaticBoxSizer1->Add(Panel1, 9, wxALL|wxEXPAND, 5); + BoxSizer4 = new wxBoxSizer(wxHORIZONTAL); + StaticText12 = new wxStaticText(this, ID_STATICTEXT12, _("Cross Section xmax, ymax (m) = "), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT12")); + BoxSizer4->Add(StaticText12, 4, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5); + TextCtrl8 = new wxTextCtrl(this, ID_TEXTCTRL8, _("0.030"), wxDefaultPosition, wxDefaultSize, wxTE_PROCESS_ENTER, wxDefaultValidator, _T("ID_TEXTCTRL8")); + BoxSizer4->Add(TextCtrl8, 4, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5); + SpinButton1 = new wxSpinButton(this, ID_SPINBUTTON1, wxDefaultPosition, wxDefaultSize, wxSP_VERTICAL|wxSP_ARROW_KEYS, _T("ID_SPINBUTTON1")); + SpinButton1->SetRange(0, 100); + BoxSizer4->Add(SpinButton1, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5); + StaticBoxSizer1->Add(BoxSizer4, 1, wxALL, 5); FlexGridSizer1->Add(StaticBoxSizer1, 1, wxALL, 5); SetSizer(FlexGridSizer1); FlexGridSizer1->Fit(this); @@ -270,6 +283,10 @@ BUNDLEBLDR::BUNDLEBLDR(wxWindow* parent,wxWindowID id,const wxPoint& pos,const w Connect(ID_BUTTON2,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&BUNDLEBLDR::OnButton2Click); Connect(ID_BUTTON3,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&BUNDLEBLDR::OnButton3Click); Panel1->Connect(wxEVT_PAINT,(wxObjectEventFunction)&BUNDLEBLDR::OnPanel1Paint,0,this); + Connect(ID_TEXTCTRL8,wxEVT_COMMAND_TEXT_ENTER,(wxObjectEventFunction)&BUNDLEBLDR::OnTextCtrl8TextEnter); + Connect(ID_SPINBUTTON1,wxEVT_SCROLL_THUMBTRACK,(wxObjectEventFunction)&BUNDLEBLDR::OnSpinButton1Change); + Connect(ID_SPINBUTTON1,wxEVT_SCROLL_LINEUP,(wxObjectEventFunction)&BUNDLEBLDR::OnSpinButton1ChangeUp); + Connect(ID_SPINBUTTON1,wxEVT_SCROLL_LINEDOWN,(wxObjectEventFunction)&BUNDLEBLDR::OnSpinButton1ChangeDown); Connect(wxID_ANY,wxEVT_INIT_DIALOG,(wxObjectEventFunction)&BUNDLEBLDR::OnInit); //*) @@ -452,7 +469,13 @@ void BUNDLEBLDR::OnCheckListBox1Toggled(wxCommandEvent& event) void BUNDLEBLDR::OnPanel1Paint(wxPaintEvent& event) { - FormatPanel("temp"); + double maxDimension; + + wxString maxXY = TextCtrl8->GetValue(); + + maxXY.ToDouble(&maxDimension); + + FormatPanel(maxDimension); } void BUNDLEBLDR::DrawBundleCsection() @@ -475,11 +498,15 @@ void BUNDLEBLDR::DrawBundleCsection() // BUNDLE GRAPHICAL SCHEMATIC - SET UP PANEL -void BUNDLEBLDR::FormatPanel(wxString TheFileNameToDraw) +void BUNDLEBLDR::FormatPanel(double maxDimension) + { int size_h, size_v; Panel1->GetSize(&size_h, &size_v ); + wxString scale; + scale << maxDimension/2.0; + wxClientDC dc(Panel1); dc.Clear(); @@ -500,11 +527,20 @@ void BUNDLEBLDR::FormatPanel(wxString TheFileNameToDraw) dc.DrawLine( 5, size_v-10, 5, size_v-35); dc.DrawText("y", 10, size_v-45); dc.DrawText("x", 30, size_v-25); + + dc.SetTextForeground(*wxBLUE); + + dc.DrawLine( size_h/2, size_v-50, size_h-size_h/4, size_v-50 ); + dc.DrawLine( size_h/2, size_v-50, size_h/2, size_v-40 ); + dc.DrawLine( size_h-size_h/4, size_v-50, size_h-size_h/4, size_v-40 ); + + dc.DrawText("scale (m)", (size_h/2+50), size_v-70); + dc.DrawText(scale, (size_h/2+55), size_v-40); } void BUNDLEBLDR::DrawBundleCable(wxString cable, wxString x, wxString y) { - double xCoord, yCoord; + double xCoord, yCoord, maxDimension; x.ToDouble(&xCoord); y.ToDouble(&yCoord); @@ -533,21 +569,25 @@ void BUNDLEBLDR::DrawBundleCable(wxString cable, wxString x, wxString y) float scaleFactor = (size_h/2 * 1.0); //float maxHdimension; //float maxVdimension; - float maxDimension; + //float maxDimension; - maxDimension = 0.015; //metres + //maxDimension = 0.015; //metres - wxString scale; - scale << maxDimension/2.0; + wxString maxXY = TextCtrl8->GetValue(); - dc.SetTextForeground(*wxBLUE); + maxXY.ToDouble(&maxDimension); - dc.DrawLine( size_h/2, size_v-50, size_h-size_h/4, size_v-50 ); - dc.DrawLine( size_h/2, size_v-50, size_h/2, size_v-40 ); - dc.DrawLine( size_h-size_h/4, size_v-50, size_h-size_h/4, size_v-40 ); +// wxString scale; +// scale << maxDimension/2.0; - dc.DrawText("scale (m)", (size_h/2+50), size_v-70); - dc.DrawText(scale, (size_h/2+55), size_v-40); +// dc.SetTextForeground(*wxBLUE); +// +// dc.DrawLine( size_h/2, size_v-50, size_h-size_h/4, size_v-50 ); +// dc.DrawLine( size_h/2, size_v-50, size_h/2, size_v-40 ); +// dc.DrawLine( size_h-size_h/4, size_v-50, size_h-size_h/4, size_v-40 ); +// +// dc.DrawText("scale (m)", (size_h/2+50), size_v-70); +// dc.DrawText(scale, (size_h/2+55), size_v-40); if (str.compare("Cylindrical") == 0 ){ @@ -893,7 +933,7 @@ void BUNDLEBLDR::DrawBundleCable(wxString cable, wxString x, wxString y) dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH)); - dc.DrawCircle( wxPoint(size_h/2,(size_v/2-shielded_twisted_pair_Scaledradius-inner_conductor_Scaledseparation/2)), inner_dielectric_Scaledradius ); + dc.DrawCircle( wxPoint(size_h/2,(size_v/2-shielded_twisted_pair_Scaledradius+inner_conductor_Scaledseparation/2)), inner_dielectric_Scaledradius ); dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); dc.SetBrush(wxBrush(*wxBLACK, wxSOLID)); @@ -923,7 +963,7 @@ void BUNDLEBLDR::DrawBundleCable(wxString cable, wxString x, wxString y) dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH)); - dc.DrawCircle( wxPoint((size_h/2-shielded_twisted_pair_Scaledradius-inner_conductor_Scaledseparation/2),size_v/2), inner_dielectric_Scaledradius ); + dc.DrawCircle( wxPoint((size_h/2-shielded_twisted_pair_Scaledradius+inner_conductor_Scaledseparation/2),size_v/2), inner_dielectric_Scaledradius ); dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); dc.SetBrush(wxBrush(*wxBLACK, wxSOLID)); @@ -981,7 +1021,7 @@ void BUNDLEBLDR::DrawBundleCable(wxString cable, wxString x, wxString y) dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH)); - dc.DrawCircle( wxPoint((size_h/2+shielded_twisted_pair_Scaledradius-inner_conductor_Scaledseparation/2),size_v/2), inner_dielectric_Scaledradius ); + dc.DrawCircle( wxPoint((size_h/2+shielded_twisted_pair_Scaledradius+inner_conductor_Scaledseparation/2),size_v/2), inner_dielectric_Scaledradius ); dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); dc.SetBrush(wxBrush(*wxBLACK, wxSOLID)); @@ -1282,43 +1322,31 @@ void BUNDLEBLDR::OnButton2Click(wxCommandEvent& event) if (CheckBox2->GetValue()) { - // Identify all mesh files for viewing - //struct _finddata_t fileinfo; - //long hFile; - wxString meshFileName = "*.msh.vtk"; - - //wxString pattern((meshFileName)); - wxString pattern((".msh.vtk")); + wxString pattern(("*.msh.vtk")); wxString file; ComboBox1->Clear(); file = wxFindFirstFile(pattern); + while ( !file.empty()) { - wxString meshfile = file; - size_t extindex = meshfile.find_first_of ("."); + wxString meshfile = file; - meshfile = meshfile.substr(0, extindex); + size_t extindex = meshfile.find_last_of ("."); - ComboBox1->Append(meshfile); - } + meshfile = meshfile.substr(0, extindex); -// if (( hFile = _findfirst( pattern, &fileinfo )) != -1 ) -// { -// do -// { -// wxString meshfile = fileinfo.name; -// size_t extindex = meshfile.find_first_of ("."); -// -// meshfile = meshfile.substr(0, extindex); -// -// ComboBox1->Append(meshfile); -// -// } while ( _findnext( hFile, &fileinfo) == 0); -// } -// _findclose( hFile); + extindex = meshfile.find_last_of ("."); + + meshfile = meshfile.substr(0, extindex); + meshfile = meshfile.substr(2,meshfile.length()); + + ComboBox1->Append(meshfile); + + file = wxFindNextFile(); + } CheckBox3->Enable(); } } @@ -1379,3 +1407,75 @@ void BUNDLEBLDR::OnTextCtrl5Text(wxCommandEvent& event) int IsError = 0; check_is_numeric(TextCtrl5, &IsError); } + +void BUNDLEBLDR::OnSpinButton1Change(wxSpinEvent& event) +{ + + double maxDimension; + + wxString maxXY = TextCtrl8->GetValue(); + + maxXY.ToDouble(&maxDimension); + + FormatPanel(maxDimension); + + DrawBundleCsection(); +} + +void BUNDLEBLDR::OnTextCtrl8TextEnter(wxCommandEvent& event) +{ + double maxDimension; + + wxString maxXY = TextCtrl8->GetValue(); + + maxXY.ToDouble(&maxDimension); + + FormatPanel(maxDimension); + + DrawBundleCsection(); + +} + +void BUNDLEBLDR::OnSpinButton1ChangeUp(wxSpinEvent& event) +{ + double maxDimension; + + wxString maxXY = TextCtrl8->GetValue(); + + maxXY.ToDouble(&maxDimension); + + maxDimension = maxDimension + 0.001; + + maxXY = ""; + + maxXY << maxDimension; + + TextCtrl8 ->SetValue(maxXY); + + FormatPanel(maxDimension); + + DrawBundleCsection(); +} + +void BUNDLEBLDR::OnSpinButton1ChangeDown(wxSpinEvent& event) +{ + double maxDimension; + + wxString maxXY = TextCtrl8->GetValue(); + + maxXY.ToDouble(&maxDimension); + + maxDimension = maxDimension - 0.001; + + if (maxDimension <=0) maxDimension = 0; + + maxXY = ""; + + maxXY << maxDimension; + + TextCtrl8 ->SetValue(maxXY); + + FormatPanel(maxDimension); + + DrawBundleCsection(); +} diff --git a/GUI/SW1/SRC/BUNDLEBLDR.h b/GUI/SW1/SRC/BUNDLEBLDR.h index 9a9ccf7..895d7fa 100644 --- a/GUI/SW1/SRC/BUNDLEBLDR.h +++ b/GUI/SW1/SRC/BUNDLEBLDR.h @@ -52,6 +52,7 @@ #include #include #include +#include #include //*) @@ -110,7 +111,7 @@ class BUNDLEBLDR: public wxDialog void paintNow(); void render(wxDC& dc); - void FormatPanel(wxString); + void FormatPanel(double); void DrawBundleCable(wxString, wxString, wxString); void ConstructBundleCsection(wxString, wxString, wxString); @@ -169,14 +170,17 @@ class BUNDLEBLDR: public wxDialog wxPanel* Panel6; wxCheckBox* CheckBox1; wxPanel* Panel3; + wxSpinButton* SpinButton1; wxButton* Button3; wxStaticText* StaticText5; wxStaticText* StaticText7; + wxTextCtrl* TextCtrl8; wxTextCtrl* TextCtrl2; wxCheckBox* CheckBox4; wxComboBox* ComboBox1; wxTextCtrl* TextCtrl7; wxTextCtrl* TextCtrl1; + wxStaticText* StaticText12; wxPanel* Panel2; wxTextCtrl* TextCtrl5; wxStaticText* StaticText4; @@ -223,6 +227,9 @@ class BUNDLEBLDR: public wxDialog static const long ID_BUTTON2; static const long ID_BUTTON3; static const long ID_PANEL1; + static const long ID_STATICTEXT12; + static const long ID_TEXTCTRL8; + static const long ID_SPINBUTTON1; //*) private: @@ -240,6 +247,11 @@ class BUNDLEBLDR: public wxDialog void OnTextCtrl4Text(wxCommandEvent& event); void OnInit(wxInitDialogEvent& event); void OnTextCtrl5Text(wxCommandEvent& event); + void OnSpinButton1Change(wxSpinEvent& event); + void OnTextCtrl8Text(wxCommandEvent& event); + void OnTextCtrl8TextEnter(wxCommandEvent& event); + void OnSpinButton1ChangeUp(wxSpinEvent& event); + void OnSpinButton1ChangeDown(wxSpinEvent& event); //*) void PopulateTheDirectoryTree ( wxString); diff --git a/GUI/SW1/SRC/BUNDLE_SCHEMATIC.cpp b/GUI/SW1/SRC/BUNDLE_SCHEMATIC.cpp index 009dd36..500df98 100644 --- a/GUI/SW1/SRC/BUNDLE_SCHEMATIC.cpp +++ b/GUI/SW1/SRC/BUNDLE_SCHEMATIC.cpp @@ -480,7 +480,7 @@ void draw_bundle(wxPanel *Panel, wxString Path, wxString bundle_to_draw) dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH)); - dc.DrawCircle( wxPoint(size_ho/2,(size_vo/2-shielded_twisted_pair_Scaledradius-inner_conductor_Scaledseparation/2)), inner_dielectric_Scaledradius ); + dc.DrawCircle( wxPoint(size_ho/2,(size_vo/2-shielded_twisted_pair_Scaledradius+inner_conductor_Scaledseparation/2)), inner_dielectric_Scaledradius ); dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); dc.SetBrush(wxBrush(*wxBLACK, wxSOLID)); @@ -510,7 +510,7 @@ void draw_bundle(wxPanel *Panel, wxString Path, wxString bundle_to_draw) dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH)); - dc.DrawCircle( wxPoint((size_ho/2-shielded_twisted_pair_Scaledradius-inner_conductor_Scaledseparation/2),size_vo/2), inner_dielectric_Scaledradius ); + dc.DrawCircle( wxPoint((size_ho/2-shielded_twisted_pair_Scaledradius+inner_conductor_Scaledseparation/2),size_vo/2), inner_dielectric_Scaledradius ); dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); dc.SetBrush(wxBrush(*wxBLACK, wxSOLID)); @@ -564,7 +564,7 @@ void draw_bundle(wxPanel *Panel, wxString Path, wxString bundle_to_draw) dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH)); - dc.DrawCircle( wxPoint((size_ho/2+shielded_twisted_pair_Scaledradius-inner_conductor_Scaledseparation/2),size_vo/2), inner_dielectric_Scaledradius ); + dc.DrawCircle( wxPoint((size_ho/2+shielded_twisted_pair_Scaledradius+inner_conductor_Scaledseparation/2),size_vo/2), inner_dielectric_Scaledradius ); dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH)); @@ -572,11 +572,11 @@ void draw_bundle(wxPanel *Panel, wxString Path, wxString bundle_to_draw) dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); dc.SetBrush(wxBrush(*wxBLACK, wxSOLID)); - dc.DrawCircle( wxPoint((size_ho/2+shielded_twisted_pair_Scaledradius-inner_conductor_Scaledseparation/2),size_vo/2), inner_conductor_Scaledradius ); + dc.DrawCircle( wxPoint((size_ho/2+shielded_twisted_pair_Scaledradius+inner_conductor_Scaledseparation/2),size_vo/2), inner_conductor_Scaledradius ); dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); dc.SetBrush(wxBrush(*wxBLACK, wxSOLID)); - dc.DrawCircle( wxPoint((size_ho/2+shielded_twisted_pair_Scaledradius+inner_conductor_Scaledseparation/2),size_vo/2), inner_conductor_Scaledradius ); + dc.DrawCircle( wxPoint((size_ho/2+shielded_twisted_pair_Scaledradius-inner_conductor_Scaledseparation/2),size_vo/2), inner_conductor_Scaledradius ); cableFile.close(); } diff --git a/GUI/SW1/SRC/CABLE_SCHEMATIC.cpp b/GUI/SW1/SRC/CABLE_SCHEMATIC.cpp index 09c53ac..e032bf6 100644 --- a/GUI/SW1/SRC/CABLE_SCHEMATIC.cpp +++ b/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 dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH)); - dc.DrawCircle( wxPoint(size_h/2,(size_v/2-shielded_twisted_pair_Scaledradius-inner_conductor_Scaledseparation/2)), inner_dielectric_Scaledradius ); + dc.DrawCircle( wxPoint(size_h/2,(size_v/2-shielded_twisted_pair_Scaledradius+inner_conductor_Scaledseparation/2)), inner_dielectric_Scaledradius ); dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); dc.SetBrush(wxBrush(*wxBLACK, wxSOLID)); @@ -611,7 +611,7 @@ void draw_cable(wxPanel *Panel, wxString cable_to_draw, float x_coord, float y_c dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH)); - dc.DrawCircle( wxPoint((size_h/2-shielded_twisted_pair_Scaledradius-inner_conductor_Scaledseparation/2),size_v/2), inner_dielectric_Scaledradius ); + dc.DrawCircle( wxPoint((size_h/2-shielded_twisted_pair_Scaledradius+inner_conductor_Scaledseparation/2),size_v/2), inner_dielectric_Scaledradius ); dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); dc.SetBrush(wxBrush(*wxBLACK, wxSOLID)); @@ -669,7 +669,7 @@ void draw_cable(wxPanel *Panel, wxString cable_to_draw, float x_coord, float y_c dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); dc.SetBrush(wxBrush(*wxBLACK, wxBDIAGONAL_HATCH)); - dc.DrawCircle( wxPoint((size_h/2+shielded_twisted_pair_Scaledradius-inner_conductor_Scaledseparation/2),size_v/2), inner_dielectric_Scaledradius ); + dc.DrawCircle( wxPoint((size_h/2+shielded_twisted_pair_Scaledradius+inner_conductor_Scaledseparation/2),size_v/2), inner_dielectric_Scaledradius ); dc.SetPen( wxPen( wxColor(0,0,0),1 ) ); dc.SetBrush(wxBrush(*wxBLACK, wxSOLID)); diff --git a/GUI/SW1/SRC/COAXIAL.cpp b/GUI/SW1/SRC/COAXIAL.cpp index 4b95f97..eb7357e 100644 --- a/GUI/SW1/SRC/COAXIAL.cpp +++ b/GUI/SW1/SRC/COAXIAL.cpp @@ -209,11 +209,11 @@ COAXIAL::COAXIAL(wxWindow* parent,wxWindowID id,const wxPoint& pos,const wxSize& FlexGridSizer7->Add(StaticText18, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5); StaticText19 = new wxStaticText(Panel4, ID_STATICTEXT19, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT19")); FlexGridSizer7->Add(StaticText19, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5); - StaticText20 = new wxStaticText(Panel4, ID_STATICTEXT20, _("R (ohms)"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT20")); + StaticText20 = new wxStaticText(Panel4, ID_STATICTEXT20, _("R (ohms/m)"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT20")); FlexGridSizer7->Add(StaticText20, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5); TextCtrl15 = new wxTextCtrl(Panel4, ID_TEXTCTRL15, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_TEXTCTRL15")); FlexGridSizer7->Add(TextCtrl15, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5); - StaticText21 = new wxStaticText(Panel4, ID_STATICTEXT21, _("L (henries)"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT21")); + StaticText21 = new wxStaticText(Panel4, ID_STATICTEXT21, _("L (henries/m)"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT21")); FlexGridSizer7->Add(StaticText21, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5); TextCtrl16 = new wxTextCtrl(Panel4, ID_TEXTCTRL16, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_TEXTCTRL16")); FlexGridSizer7->Add(TextCtrl16, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5); @@ -307,6 +307,7 @@ COAXIAL::COAXIAL(wxWindow* parent,wxWindowID id,const wxPoint& pos,const wxSize& Connect(ID_coaxCLOSE,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&COAXIAL::OncoaxCLOSEClick); Panel1->Connect(wxEVT_PAINT,(wxObjectEventFunction)&COAXIAL::OnPanel1Paint,0,this); Panel1->Connect(wxEVT_LEFT_DCLICK,(wxObjectEventFunction)&COAXIAL::OnPanel1LeftDClick,0,this); + Connect(wxEVT_PAINT,(wxObjectEventFunction)&COAXIAL::OnPaint); //*) TextCtrl2->Bind(wxEVT_SET_FOCUS,(wxObjectEventFunction)&COAXIAL::OnHighlightSchematic, this); @@ -326,6 +327,11 @@ COAXIAL::~COAXIAL() //*) } +void COAXIAL::OnPaint(wxPaintEvent& event) +{ + if (EDIT_EXISTING==true) EditExistingCable(); +} + void COAXIAL::SetPathToMOD(wxString Path, wxString Name) { pathToMOD << Path; @@ -881,4 +887,10 @@ void COAXIAL::OnCheckBox2Click(wxCommandEvent& event) } } +void COAXIAL::EditExistingCable() +{ + Close(); +} + + diff --git a/GUI/SW1/SRC/CYLINDRICAL.cpp b/GUI/SW1/SRC/CYLINDRICAL.cpp index b654d7d..774d4a0 100644 --- a/GUI/SW1/SRC/CYLINDRICAL.cpp +++ b/GUI/SW1/SRC/CYLINDRICAL.cpp @@ -165,6 +165,7 @@ CYLINDRICAL::CYLINDRICAL(wxWindow* parent,wxWindowID id,const wxPoint& pos,const Connect(ID_BUTTON3,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&CYLINDRICAL::OnButton3Click); Panel1->Connect(wxEVT_PAINT,(wxObjectEventFunction)&CYLINDRICAL::OnPanel1Paint,0,this); Panel1->Connect(wxEVT_LEFT_DCLICK,(wxObjectEventFunction)&CYLINDRICAL::OnPanel1LeftDClick,0,this); + Connect(wxEVT_PAINT,(wxObjectEventFunction)&CYLINDRICAL::OnPaint); //*) TextCtrl2->Bind(wxEVT_SET_FOCUS,(wxObjectEventFunction)&CYLINDRICAL::OnHighlightSchematic, this); @@ -183,6 +184,11 @@ CYLINDRICAL::~CYLINDRICAL() } +void CYLINDRICAL::OnPaint(wxPaintEvent& event) +{ + if (EDIT_EXISTING==true) EditExistingCable(); +} + void CYLINDRICAL::SetPathToMOD(wxString Path, wxString Name) { pathToMOD << Path; @@ -191,6 +197,9 @@ void CYLINDRICAL::SetPathToMOD(wxString Path, wxString Name) void CYLINDRICAL::OnButton1Click(wxCommandEvent& event) { + + if (EDIT_EXISTING==true) EditExistingCable(); + int IsError = 0; wxString fileName = TextCtrl1->GetValue(); @@ -534,3 +543,10 @@ void CYLINDRICAL::OnPanel1LeftDClick(wxMouseEvent& event) { cylindricalSchematic(); } + +void CYLINDRICAL::EditExistingCable() +{ + Close(); +} + + diff --git a/GUI/SW1/SRC/DCONN.cpp b/GUI/SW1/SRC/DCONN.cpp index 6498650..36814fe 100644 --- a/GUI/SW1/SRC/DCONN.cpp +++ b/GUI/SW1/SRC/DCONN.cpp @@ -166,6 +166,7 @@ DCONN::DCONN(wxWindow* parent,wxWindowID id,const wxPoint& pos,const wxSize& siz Connect(ID_BUTTON3,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&DCONN::OnButton3Click); Panel1->Connect(wxEVT_PAINT,(wxObjectEventFunction)&DCONN::OnPanel1Paint,0,this); Panel1->Connect(wxEVT_LEFT_DCLICK,(wxObjectEventFunction)&DCONN::OnPanel1LeftDClick,0,this); + Connect(wxEVT_PAINT,(wxObjectEventFunction)&DCONN::OnPaint); //*) TextCtrl2->Bind(wxEVT_SET_FOCUS,(wxObjectEventFunction)&DCONN::OnHighlightSchematic, this); @@ -181,6 +182,11 @@ DCONN::~DCONN() //*) } +void DCONN::OnPaint(wxPaintEvent& event) +{ + if (EDIT_EXISTING==true) EditExistingCable(); +} + void DCONN::SetPathToMOD(wxString Path, wxString Name) { @@ -586,3 +592,8 @@ void DCONN::OnCheckBox2Click(wxCommandEvent& event) } WriteCableFile (TextCtrl1->GetValue()); } + +void DCONN::EditExistingCable() +{ + Close(); +} diff --git a/GUI/SW1/SRC/SW1_GUI.depend b/GUI/SW1/SRC/SW1_GUI.depend new file mode 100644 index 0000000..dae885d --- /dev/null +++ b/GUI/SW1/SRC/SW1_GUI.depend @@ -0,0 +1,3808 @@ +# depslib dependency file v1.0 +1512938044 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\about.cpp + "ABOUT.h" + + + + + + + + +1502693582 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\about.h + + + + + +1412638444 c:\wxwidgets-3.0.2\include\wx\sizer.h + "wx/defs.h" + "wx/window.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\defs.h + "wx/platform.h" + "wx/version.h" + "wx/dlimpexp.h" + + "wx/debug.h" + + + "wx/windowid.h" + + "wx/msw/winundef.h" + "wx/features.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\platform.h + + + + "wx/osx/config_xcode.h" + "wx/android/config_android.h" + "wx/compiler.h" + "wx/setup.h" + "wx/msw/wince/libraries.h" + "wx/msw/libraries.h" + "wx/msw/gccpriv.h" + + + "wx/chkconf.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\config_xcode.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\android\config_android.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\compiler.h + +1412638444 c:\wxwidgets-3.0.2\lib\gcc_dll\mswu\wx\setup.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wince\libraries.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\libraries.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\gccpriv.h + <_mingw.h> + + +1412638442 c:\wxwidgets-3.0.2\include\wx\chkconf.h + "wx/msw/wince/chkconf.h" + "wx/msw/chkconf.h" + "wx/gtk/chkconf.h" + "wx/gtk/chkconf.h" + "wx/cocoa/chkconf.h" + "wx/osx/chkconf.h" + "wx/os2/chkconf.h" + "wx/dfb/chkconf.h" + "wx/motif/chkconf.h" + "wx/x11/chkconf.h" + "wx/android/chkconf.h" + "wx/unix/chkconf.h" + "wx/univ/chkconf.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wince\chkconf.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\chkconf.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\chkconf.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\chkconf.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\chkconf.h + "wx/osx/iphone/chkconf.h" + "wx/osx/carbon/chkconf.h" + "wx/osx/cocoa/chkconf.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\iphone\chkconf.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\carbon\chkconf.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\cocoa\chkconf.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\chkconf.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\dfb\chkconf.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\chkconf.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\chkconf.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\android\chkconf.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\unix\chkconf.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\chkconf.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\version.h + "wx/cpp.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cpp.h + "wx/compiler.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\dlimpexp.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\debug.h + + + "wx/chartype.h" + "wx/cpp.h" + "wx/dlimpexp.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\chartype.h + "wx/platform.h" + + + + + + + + + + + + +1412638444 c:\wxwidgets-3.0.2\include\wx\windowid.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\winundef.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\features.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\window.h + "wx/event.h" + "wx/list.h" + "wx/cursor.h" + "wx/font.h" + "wx/colour.h" + "wx/region.h" + "wx/utils.h" + "wx/intl.h" + "wx/validate.h" + "wx/palette.h" + "wx/accel.h" + "wx/access.h" + "wx/msw/window.h" + "wx/motif/window.h" + "wx/gtk/window.h" + "wx/gtk1/window.h" + "wx/x11/window.h" + "wx/dfb/window.h" + "wx/osx/window.h" + "wx/cocoa/window.h" + "wx/os2/window.h" + "wx/univ/window.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\event.h + "wx/defs.h" + "wx/cpp.h" + "wx/object.h" + "wx/clntdata.h" + "wx/gdicmn.h" + "wx/cursor.h" + "wx/mousestate.h" + "wx/dynarray.h" + "wx/thread.h" + "wx/tracker.h" + "wx/typeinfo.h" + "wx/any.h" + "wx/meta/convertible.h" + "wx/meta/removeref.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\object.h + "wx/memory.h" + "wx/xti.h" + "wx/rtti.h" + "wx/xti2.h" + "wx/msw/msvcrt.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\memory.h + "wx/defs.h" + "wx/string.h" + "wx/msgout.h" + + +1412638444 c:\wxwidgets-3.0.2\include\wx\string.h + "wx/defs.h" + + + + + + + + + + + "wx/wxcrtbase.h" + "wx/strvararg.h" + "wx/buffer.h" + "wx/strconv.h" + "wx/stringimpl.h" + "wx/stringops.h" + "wx/unichar.h" + "wx/tls.h" + "wx/iosfwrap.h" + "wx/crt.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\wxcrtbase.h + "wx/chartype.h" + + + + + + + +1412638444 c:\wxwidgets-3.0.2\include\wx\strvararg.h + "wx/platform.h" + "wx/cpp.h" + "wx/chartype.h" + "wx/strconv.h" + "wx/buffer.h" + "wx/unichar.h" + + + + "wx/stringimpl.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\strconv.h + "wx/defs.h" + "wx/chartype.h" + "wx/buffer.h" + "typeinfo.h" + + "wx/fontenc.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\buffer.h + "wx/chartype.h" + "wx/wxcrtbase.h" + + +1412638444 c:\wxwidgets-3.0.2\include\wx\typeinfo.h + "wx/defs.h" + + + +1412638442 c:\wxwidgets-3.0.2\include\wx\fontenc.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\unichar.h + "wx/defs.h" + "wx/chartype.h" + "wx/stringimpl.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\stringimpl.h + "wx/defs.h" + "wx/chartype.h" + "wx/wxcrtbase.h" + + "wx/beforestd.h" + + "wx/afterstd.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\beforestd.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\afterstd.h + "wx/msw/winundef.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\stringops.h + "wx/chartype.h" + "wx/stringimpl.h" + "wx/unichar.h" + "wx/buffer.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\tls.h + "wx/defs.h" + "wx/msw/tls.h" + "wx/os2/tls.h" + "wx/unix/tls.h" + + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\tls.h + "wx/msw/wrapwin.h" + "wx/thread.h" + "wx/vector.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wrapwin.h + "wx/platform.h" + + + "wx/msw/winundef.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\thread.h + "wx/defs.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\vector.h + "wx/defs.h" + + + "wx/scopeguard.h" + "wx/meta/movable.h" + "wx/meta/if.h" + "wx/beforestd.h" + + "wx/afterstd.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\scopeguard.h + "wx/defs.h" + "wx/except.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\except.h + "wx/defs.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\meta\movable.h + "wx/meta/pod.h" + "wx/string.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\meta\pod.h + "wx/defs.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\meta\if.h + "wx/defs.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\tls.h + "wx/os2/private.h" + "wx/thread.h" + "wx/vector.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\private.h + + + + + + + + "wx/dlimpexp.h" + "wx/fontenc.h" + "wx/thread.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\unix\tls.h + + +1412638442 c:\wxwidgets-3.0.2\include\wx\iosfwrap.h + + + "wx/msw/winundef.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\crt.h + "wx/defs.h" + "wx/chartype.h" + "wx/wxcrt.h" + "wx/wxcrtvararg.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\wxcrt.h + "wx/wxcrtbase.h" + "wx/string.h" + + +1412638444 c:\wxwidgets-3.0.2\include\wx\wxcrtvararg.h + "wx/wxcrt.h" + "wx/strvararg.h" + "wx/string.h" + + +1412638444 c:\wxwidgets-3.0.2\include\wx\msgout.h + "wx/defs.h" + "wx/chartype.h" + "wx/strvararg.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\xti.h + "wx/defs.h" + "wx/xtitypes.h" + "wx/xtihandler.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\xtitypes.h + "wx/defs.h" + "wx/string.h" + "wx/hashmap.h" + "wx/arrstr.h" + "wx/flags.h" + "wx/intl.h" + "wx/log.h" + + +1412638442 c:\wxwidgets-3.0.2\include\wx\hashmap.h + "wx/string.h" + "wx/wxcrt.h" + + + + + + +1412638442 c:\wxwidgets-3.0.2\include\wx\arrstr.h + "wx/defs.h" + "wx/string.h" + "wx/dynarray.h" + "wx/beforestd.h" + + "wx/afterstd.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\dynarray.h + "wx/defs.h" + "wx/beforestd.h" + + + "wx/afterstd.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\flags.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\intl.h + "wx/defs.h" + "wx/string.h" + "wx/translation.h" + "wx/fontenc.h" + "wx/language.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\translation.h + "wx/defs.h" + "wx/string.h" + "wx/buffer.h" + "wx/language.h" + "wx/hashmap.h" + "wx/strconv.h" + "wx/scopedptr.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\language.h + "wx/defs.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\scopedptr.h + "wx/defs.h" + "wx/checkeddelete.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\checkeddelete.h + "wx/cpp.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\log.h + "wx/defs.h" + "wx/cpp.h" + "wx/string.h" + "wx/strvararg.h" + "wx/arrstr.h" + + "wx/dynarray.h" + "wx/hashmap.h" + "wx/thread.h" + "wx/iosfwrap.h" + "wx/generic/logg.h" + "wx/cocoa/log.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\logg.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\log.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\xtihandler.h + "wx/defs.h" + "wx/xti.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\rtti.h + "wx/memory.h" + "wx/flags.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\xti2.h + "wx/xtiprop.h" + "wx/xtictor.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\xtiprop.h + "wx/defs.h" + "wx/xti.h" + "wx/any.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\any.h + "wx/defs.h" + + "wx/string.h" + "wx/meta/if.h" + "wx/typeinfo.h" + "wx/list.h" + "wx/datetime.h" + "wx/variant.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\list.h + "wx/defs.h" + "wx/object.h" + "wx/string.h" + "wx/vector.h" + "wx/beforestd.h" + + + + "wx/afterstd.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\datetime.h + "wx/defs.h" + "wx/msw/wince/time.h" + + + "wx/longlong.h" + "wx/anystr.h" + "wx/dynarray.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wince\time.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\longlong.h + "wx/defs.h" + "wx/string.h" + + "wx/iosfwrap.h" + + "wx/strvararg.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\anystr.h + "wx/string.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\variant.h + "wx/defs.h" + "wx/object.h" + "wx/string.h" + "wx/arrstr.h" + "wx/list.h" + "wx/cpp.h" + "wx/longlong.h" + "wx/datetime.h" + "wx/iosfwrap.h" + "wx/any.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\xtictor.h + "wx/defs.h" + "wx/xti.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\msvcrt.h + + + +1412638442 c:\wxwidgets-3.0.2\include\wx\clntdata.h + "wx/defs.h" + "wx/string.h" + "wx/hashmap.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gdicmn.h + "wx/defs.h" + "wx/list.h" + "wx/string.h" + "wx/fontenc.h" + "wx/hashmap.h" + "wx/math.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\math.h + "wx/defs.h" + + + + + +1412638442 c:\wxwidgets-3.0.2\include\wx\cursor.h + "wx/defs.h" + "wx/msw/cursor.h" + "wx/motif/cursor.h" + "wx/gtk/cursor.h" + "wx/gtk1/cursor.h" + "wx/x11/cursor.h" + "wx/dfb/cursor.h" + "wx/osx/cursor.h" + "wx/cocoa/cursor.h" + "wx/os2/cursor.h" + "wx/utils.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\cursor.h + "wx/msw/gdiimage.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\gdiimage.h + "wx/gdiobj.h" + "wx/gdicmn.h" + "wx/list.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gdiobj.h + "wx/object.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\cursor.h + "wx/gdiobj.h" + "wx/gdicmn.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\cursor.h + "wx/gdiobj.h" + "wx/gdicmn.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\cursor.h + "wx/gdiobj.h" + "wx/gdicmn.h" + "wx/image.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\image.h + "wx/defs.h" + "wx/object.h" + "wx/string.h" + "wx/gdicmn.h" + "wx/hashmap.h" + "wx/arrstr.h" + "wx/stream.h" + "wx/variant.h" + "wx/imagbmp.h" + "wx/imagpng.h" + "wx/imaggif.h" + "wx/imagpcx.h" + "wx/imagjpeg.h" + "wx/imagtga.h" + "wx/imagtiff.h" + "wx/imagpnm.h" + "wx/imagxpm.h" + "wx/imagiff.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\stream.h + "wx/defs.h" + + "wx/object.h" + "wx/string.h" + "wx/filefn.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\filefn.h + "wx/list.h" + "wx/arrstr.h" + "wx/msw/wince/time.h" + "wx/msw/private.h" + + + + + "wx/os2/private.h" + + + + + + + + + + + + + + + + + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\private.h + "wx/msw/wrapwin.h" + "wx/msw/microwin.h" + "wx/log.h" + "wx/window.h" + "wx/gdicmn.h" + "wx/colour.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\microwin.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\colour.h + "wx/defs.h" + "wx/gdiobj.h" + "wx/variant.h" + "wx/msw/colour.h" + "wx/motif/colour.h" + "wx/gtk/colour.h" + "wx/gtk1/colour.h" + "wx/generic/colour.h" + "wx/x11/colour.h" + "wx/osx/colour.h" + "wx/cocoa/colour.h" + "wx/os2/colour.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\colour.h + "wx/object.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\colour.h + "wx/object.h" + "wx/string.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\colour.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\colour.h + "wx/defs.h" + "wx/object.h" + "wx/string.h" + "wx/gdiobj.h" + "wx/palette.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\palette.h + "wx/defs.h" + "wx/object.h" + "wx/gdiobj.h" + "wx/msw/palette.h" + "wx/x11/palette.h" + "wx/generic/paletteg.h" + "wx/osx/palette.h" + "wx/os2/palette.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\palette.h + "wx/gdiobj.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\palette.h + "wx/list.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\paletteg.h + "wx/defs.h" + "wx/object.h" + "wx/gdiobj.h" + "wx/gdicmn.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\palette.h + "wx/gdiobj.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\palette.h + "wx/gdiobj.h" + "wx/os2/private.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\colour.h + "wx/object.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\colour.h + "wx/defs.h" + "wx/object.h" + "wx/string.h" + "wx/gdiobj.h" + "wx/palette.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\colour.h + "wx/osx/core/colour.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\core\colour.h + "wx/object.h" + "wx/string.h" + "wx/osx/core/cfref.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\core\cfref.h + + + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\colour.h + "wx/object.h" + "wx/string.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\colour.h + "wx/object.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\imagbmp.h + "wx/image.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\imagpng.h + "wx/defs.h" + "wx/image.h" + "wx/versioninfo.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\versioninfo.h + "wx/string.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\imaggif.h + "wx/image.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\imagpcx.h + "wx/image.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\imagjpeg.h + "wx/defs.h" + "wx/image.h" + "wx/versioninfo.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\imagtga.h + "wx/image.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\imagtiff.h + "wx/defs.h" + "wx/image.h" + "wx/versioninfo.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\imagpnm.h + "wx/image.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\imagxpm.h + "wx/image.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\imagiff.h + "wx/image.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\cursor.h + "wx/gdiobj.h" + "wx/gdicmn.h" + "wx/colour.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\dfb\cursor.h + "wx/gdiobj.h" + "wx/gdicmn.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\cursor.h + "wx/bitmap.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\bitmap.h + "wx/string.h" + "wx/gdicmn.h" + "wx/colour.h" + "wx/image.h" + "wx/variant.h" + "wx/msw/bitmap.h" + "wx/x11/bitmap.h" + "wx/gtk/bitmap.h" + "wx/gtk1/bitmap.h" + "wx/x11/bitmap.h" + "wx/dfb/bitmap.h" + "wx/osx/bitmap.h" + "wx/cocoa/bitmap.h" + "wx/os2/bitmap.h" + "wx/generic/mask.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\bitmap.h + "wx/msw/gdiimage.h" + "wx/math.h" + "wx/palette.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\bitmap.h + "wx/defs.h" + "wx/object.h" + "wx/string.h" + "wx/palette.h" + "wx/gdiobj.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\bitmap.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\bitmap.h + "wx/defs.h" + "wx/object.h" + "wx/string.h" + "wx/palette.h" + "wx/gdiobj.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\dfb\bitmap.h + "wx/dfb/dfbptr.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\dfb\dfbptr.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\bitmap.h + "wx/palette.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\bitmap.h + "wx/palette.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\bitmap.h + "wx/os2/private.h" + "wx/os2/gdiimage.h" + "wx/gdicmn.h" + "wx/palette.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\gdiimage.h + "wx/gdiobj.h" + "wx/gdicmn.h" + "wx/list.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\mask.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\cursor.h + "wx/bitmap.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\cursor.h + "wx/bitmap.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\utils.h + "wx/object.h" + "wx/list.h" + "wx/filefn.h" + "wx/hashmap.h" + "wx/versioninfo.h" + "wx/meta/implicitconversion.h" + "wx/gdicmn.h" + "wx/mousestate.h" + "wx/longlong.h" + "wx/platinfo.h" + + + + + +1412638444 c:\wxwidgets-3.0.2\include\wx\meta\implicitconversion.h + "wx/defs.h" + "wx/meta/if.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\mousestate.h + "wx/gdicmn.h" + "wx/kbdstate.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\kbdstate.h + "wx/defs.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\platinfo.h + "wx/string.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\tracker.h + "wx/defs.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\meta\convertible.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\meta\removeref.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\font.h + "wx/defs.h" + "wx/fontenc.h" + "wx/gdiobj.h" + "wx/gdicmn.h" + "wx/msw/font.h" + "wx/motif/font.h" + "wx/gtk/font.h" + "wx/gtk1/font.h" + "wx/x11/font.h" + "wx/dfb/font.h" + "wx/osx/font.h" + "wx/cocoa/font.h" + "wx/os2/font.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\font.h + "wx/gdicmn.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\font.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\font.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\font.h + "wx/hash.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\hash.h + "wx/defs.h" + "wx/string.h" + "wx/object.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\font.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\dfb\font.h + "wx/dfb/dfbptr.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\font.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\font.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\font.h + "wx/gdiobj.h" + "wx/os2/private.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\region.h + "wx/gdiobj.h" + "wx/gdicmn.h" + "wx/msw/region.h" + "wx/gtk/region.h" + "wx/gtk1/region.h" + "wx/x11/region.h" + "wx/dfb/region.h" + "wx/osx/region.h" + "wx/cocoa/region.h" + "wx/os2/region.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\region.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\region.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\region.h + "wx/list.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\region.h + "wx/list.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\dfb\region.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\region.h + "wx/osx/carbon/region.h" + "wx/generic/region.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\carbon\region.h + "wx/list.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\region.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\region.h + "wx/generic/region.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\region.h + "wx/list.h" + "wx/os2/private.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\validate.h + "wx/defs.h" + "wx/event.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\accel.h + "wx/defs.h" + "wx/object.h" + "wx/generic/accel.h" + "wx/msw/accel.h" + "wx/motif/accel.h" + "wx/gtk/accel.h" + "wx/gtk1/accel.h" + "wx/osx/accel.h" + "wx/generic/accel.h" + "wx/os2/accel.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\accel.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\accel.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\accel.h + "wx/object.h" + "wx/string.h" + "wx/event.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\accel.h + "wx/generic/accel.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\accel.h + "wx/generic/accel.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\accel.h + "wx/string.h" + "wx/event.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\accel.h + "wx/object.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\access.h + "wx/defs.h" + "wx/variant.h" + "wx/msw/ole/access.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\ole\access.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\window.h + "wx/settings.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\settings.h + "wx/colour.h" + "wx/font.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\window.h + "wx/region.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\window.h + "wx/dynarray.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\window.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\window.h + "wx/region.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\dfb\window.h + "wx/dfb/dfbptr.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\window.h + "wx/brush.h" + "wx/dc.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\brush.h + "wx/defs.h" + "wx/object.h" + "wx/gdiobj.h" + "wx/gdicmn.h" + "wx/msw/brush.h" + "wx/x11/brush.h" + "wx/gtk/brush.h" + "wx/gtk1/brush.h" + "wx/dfb/brush.h" + "wx/osx/brush.h" + "wx/cocoa/brush.h" + "wx/os2/brush.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\brush.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\brush.h + "wx/gdiobj.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\brush.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\brush.h + "wx/defs.h" + "wx/object.h" + "wx/string.h" + "wx/gdiobj.h" + "wx/bitmap.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\dfb\brush.h + "wx/defs.h" + "wx/object.h" + "wx/string.h" + "wx/gdiobj.h" + "wx/bitmap.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\brush.h + "wx/gdicmn.h" + "wx/gdiobj.h" + "wx/bitmap.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\brush.h + "wx/gdicmn.h" + "wx/gdiobj.h" + "wx/bitmap.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\brush.h + "wx/bitmap.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\dc.h + "wx/object.h" + "wx/intl.h" + "wx/cursor.h" + "wx/font.h" + "wx/colour.h" + "wx/bitmap.h" + "wx/brush.h" + "wx/pen.h" + "wx/palette.h" + "wx/dynarray.h" + "wx/math.h" + "wx/image.h" + "wx/region.h" + "wx/affinematrix2d.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\pen.h + "wx/gdiobj.h" + "wx/gdicmn.h" + "wx/msw/pen.h" + "wx/x11/pen.h" + "wx/gtk/pen.h" + "wx/gtk1/pen.h" + "wx/dfb/pen.h" + "wx/osx/pen.h" + "wx/cocoa/pen.h" + "wx/os2/pen.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\pen.h + "wx/gdiobj.h" + "wx/gdicmn.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\pen.h + "wx/gdicmn.h" + "wx/gdiobj.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\pen.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\pen.h + "wx/defs.h" + "wx/object.h" + "wx/string.h" + "wx/gdiobj.h" + "wx/gdicmn.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\dfb\pen.h + "wx/defs.h" + "wx/object.h" + "wx/string.h" + "wx/gdiobj.h" + "wx/gdicmn.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\pen.h + "wx/gdiobj.h" + "wx/colour.h" + "wx/bitmap.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\pen.h + "wx/gdiobj.h" + "wx/gdicmn.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\pen.h + "wx/gdiobj.h" + "wx/bitmap.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\affinematrix2d.h + "wx/defs.h" + "wx/affinematrix2dbase.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\affinematrix2dbase.h + "wx/defs.h" + "wx/geometry.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\geometry.h + "wx/defs.h" + "wx/utils.h" + "wx/gdicmn.h" + "wx/math.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\window.h + "wx/cocoa/NSView.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\nsview.h + "wx/hashmap.h" + "wx/cocoa/ObjcAssociate.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\objcassociate.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\window.h + + "wx/hash.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\window.h + "wx/bitmap.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\textctrl.h + "wx/defs.h" + "wx/control.h" + "wx/textentry.h" + "wx/dynarray.h" + "wx/gdicmn.h" + "wx/ioswrap.h" + "wx/x11/textctrl.h" + "wx/univ/textctrl.h" + "wx/msw/wince/textctrlce.h" + "wx/msw/textctrl.h" + "wx/motif/textctrl.h" + "wx/gtk/textctrl.h" + "wx/gtk1/textctrl.h" + "wx/osx/textctrl.h" + "wx/cocoa/textctrl.h" + "wx/os2/textctrl.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\control.h + "wx/defs.h" + "wx/window.h" + "wx/univ/control.h" + "wx/msw/control.h" + "wx/motif/control.h" + "wx/gtk/control.h" + "wx/gtk1/control.h" + "wx/osx/control.h" + "wx/cocoa/control.h" + "wx/os2/control.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\control.h + "wx/univ/inphand.h" + "wx/univ/inpcons.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\inphand.h + "wx/univ/inpcons.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\inpcons.h + "wx/object.h" + "wx/event.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\control.h + "wx/dynarray.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\control.h + "wx/window.h" + "wx/list.h" + "wx/validate.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\control.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\control.h + "wx/defs.h" + "wx/object.h" + "wx/list.h" + "wx/window.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\control.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\control.h + "wx/cocoa/NSControl.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\nscontrol.h + "wx/hashmap.h" + "wx/cocoa/ObjcAssociate.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\control.h + "wx/dynarray.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\textentry.h + "wx/filefn.h" + "wx/gdicmn.h" + "wx/gtk/textentry.h" + "wx/osx/textentry.h" + "wx/msw/textentry.h" + "wx/motif/textentry.h" + "wx/os2/textentry.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\textentry.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\textentry.h + "wx/control.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\textentry.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\textentry.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\textentry.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\ioswrap.h + "wx/beforestd.h" + + + "wx/afterstd.h" + "wx/msw/winundef.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\textctrl.h + "wx/univ/textctrl.h" + "wx/scrolwin.h" + "wx/arrstr.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\textctrl.h + "wx/scrolwin.h" + "wx/univ/inphand.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\scrolwin.h + "wx/panel.h" + "wx/gtk/scrolwin.h" + "wx/gtk1/scrolwin.h" + "wx/generic/scrolwin.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\panel.h + "wx/window.h" + "wx/containr.h" + "wx/univ/panel.h" + "wx/msw/panel.h" + "wx/generic/panelg.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\containr.h + "wx/defs.h" + "wx/event.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\panel.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\panel.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\panelg.h + "wx/bitmap.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\scrolwin.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\scrolwin.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\scrolwin.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wince\textctrlce.h + "wx/dynarray.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\textctrl.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\textctrl.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\textctrl.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\textctrl.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\textctrl.h + "wx/control.h" + "wx/textctrl.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\textctrl.h + "wx/cocoa/NSTextField.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\nstextfield.h + "wx/hashmap.h" + "wx/cocoa/ObjcAssociate.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\textctrl.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\statbmp.h + "wx/defs.h" + "wx/control.h" + "wx/bitmap.h" + "wx/icon.h" + "wx/univ/statbmp.h" + "wx/msw/statbmp.h" + "wx/motif/statbmp.h" + "wx/gtk/statbmp.h" + "wx/gtk1/statbmp.h" + "wx/osx/statbmp.h" + "wx/cocoa/statbmp.h" + "wx/os2/statbmp.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\icon.h + "wx/iconloc.h" + "wx/msw/icon.h" + "wx/motif/icon.h" + "wx/generic/icon.h" + "wx/generic/icon.h" + "wx/generic/icon.h" + "wx/generic/icon.h" + "wx/osx/icon.h" + "wx/generic/icon.h" + "wx/cocoa/icon.h" + "wx/os2/icon.h" + "wx/variant.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\iconloc.h + "wx/string.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\icon.h + "wx/msw/gdiimage.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\icon.h + "wx/bitmap.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\icon.h + "wx/bitmap.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\icon.h + "wx/bitmap.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\icon.h + "wx/gdicmn.h" + "wx/gdiobj.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\icon.h + "wx/bitmap.h" + "wx/os2/gdiimage.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\statbmp.h + "wx/bitmap.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\statbmp.h + "wx/control.h" + "wx/icon.h" + "wx/bitmap.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\statbmp.h + "wx/motif/bmpmotif.h" + "wx/icon.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\bmpmotif.h + "wx/defs.h" + "wx/bitmap.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\statbmp.h + "wx/icon.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\statbmp.h + "wx/icon.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\statbmp.h + "wx/osx/carbon/statbmp.h" + "wx/generic/statbmpg.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\carbon\statbmp.h + "wx/icon.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\statbmpg.h + "wx/statbmp.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\statbmp.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\statbmp.h + "wx/control.h" + "wx/icon.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\dialog.h + "wx/toplevel.h" + "wx/containr.h" + "wx/sharedptr.h" + "wx/univ/dialog.h" + "wx/msw/dialog.h" + "wx/motif/dialog.h" + "wx/gtk/dialog.h" + "wx/gtk1/dialog.h" + "wx/osx/dialog.h" + "wx/cocoa/dialog.h" + "wx/os2/dialog.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\toplevel.h + "wx/nonownedwnd.h" + "wx/iconbndl.h" + "wx/weakref.h" + "wx/msw/toplevel.h" + "wx/gtk/toplevel.h" + "wx/gtk1/toplevel.h" + "wx/x11/toplevel.h" + "wx/dfb/toplevel.h" + "wx/osx/toplevel.h" + "wx/cocoa/toplevel.h" + "wx/os2/toplevel.h" + "wx/motif/toplevel.h" + "wx/univ/toplevel.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\nonownedwnd.h + "wx/window.h" + "wx/dfb/nonownedwnd.h" + "wx/gtk/nonownedwnd.h" + "wx/osx/nonownedwnd.h" + "wx/msw/nonownedwnd.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\dfb\nonownedwnd.h + "wx/window.h" + "wx/dfb/dfbptr.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\nonownedwnd.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\nonownedwnd.h + "wx/window.h" + "wx/graphics.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\graphics.h + "wx/defs.h" + "wx/geometry.h" + "wx/dynarray.h" + "wx/dc.h" + "wx/image.h" + "wx/vector.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\nonownedwnd.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\iconbndl.h + "wx/gdiobj.h" + "wx/gdicmn.h" + "wx/icon.h" + "wx/dynarray.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\weakref.h + "wx/tracker.h" + "wx/meta/convertible.h" + "wx/meta/int2type.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\meta\int2type.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\toplevel.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\toplevel.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\toplevel.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\toplevel.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\dfb\toplevel.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\toplevel.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\toplevel.h + "wx/hashmap.h" + "wx/cocoa/NSWindow.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\nswindow.h + "wx/hashmap.h" + "wx/cocoa/ObjcAssociate.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\toplevel.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\toplevel.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\toplevel.h + "wx/univ/inpcons.h" + "wx/univ/inphand.h" + "wx/icon.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\sharedptr.h + "wx/defs.h" + "wx/atomic.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\atomic.h + "wx/defs.h" + "wx/msw/wrapwin.h" + "libkern/OSAtomic.h" + + "wx/thread.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\dialog.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\dialog.h + "wx/panel.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\dialog.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\dialog.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\dialog.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\dialog.h + "wx/panel.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\dialog.h + "wx/defs.h" + "wx/panel.h" + "wx/cocoa/NSPanel.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\nspanel.h + "wx/hashmap.h" + "wx/cocoa/ObjcAssociate.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\dialog.h + "wx/panel.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\textfile.h + "wx/defs.h" + "wx/textbuf.h" + "wx/file.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\textbuf.h + "wx/defs.h" + "wx/arrstr.h" + "wx/convauto.h" + "wx/string.h" + "wx/dynarray.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\convauto.h + "wx/strconv.h" + "wx/fontenc.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\file.h + "wx/defs.h" + "wx/string.h" + "wx/filefn.h" + "wx/convauto.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msgdlg.h + "wx/defs.h" + "wx/dialog.h" + "wx/stockitem.h" + "wx/generic/msgdlgg.h" + "wx/cocoa/msgdlg.h" + "wx/msw/msgdlg.h" + "wx/motif/msgdlg.h" + "wx/gtk/msgdlg.h" + "wx/osx/msgdlg.h" + "wx/os2/msgdlg.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\stockitem.h + "wx/defs.h" + "wx/chartype.h" + "wx/string.h" + "wx/accel.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\msgdlgg.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\msgdlg.h + "wx/msgdlg.h" + "wx/generic/msgdlgg.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\msgdlg.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\msgdlg.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\msgdlg.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\msgdlg.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\msgdlg.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\hyperlink.h + "wx/defs.h" + "wx/control.h" + "wx/gtk/hyperlink.h" + "wx/msw/hyperlink.h" + "wx/generic/hyperlink.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\hyperlink.h + "wx/generic/hyperlink.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\hyperlink.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\hyperlink.h + "wx/generic/hyperlink.h" + +1529401255 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\bundle_schematic.cpp + "BUNDLE_SCHEMATIC.h" + +1502693582 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\bundle_schematic.h + + + + + + + + +1412638442 c:\wxwidgets-3.0.2\include\wx\dcclient.h + "wx/dc.h" + +1529401255 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\bundlebldr.cpp + "BUNDLEBLDR.h" + "PLACE_CABLE.h" + "MESH_LAPLACE.h" + + + + + + + + + + + +1529401255 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\bundlebldr.h + + + + + + + + + + + + + + + "FileSelectorCtrl.h" + "UTILITIES.h" + "MESH_LAPLACE.h" + "MESH_PARAM.h" + "RUN_STATUS.h" + + + +1412638444 c:\wxwidgets-3.0.2\include\wx\notebook.h + "wx/defs.h" + "wx/bookctrl.h" + "wx/univ/notebook.h" + "wx/msw/notebook.h" + "wx/generic/notebook.h" + "wx/gtk/notebook.h" + "wx/gtk1/notebook.h" + "wx/osx/notebook.h" + "wx/cocoa/notebook.h" + "wx/os2/notebook.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\bookctrl.h + "wx/defs.h" + "wx/control.h" + "wx/dynarray.h" + "wx/withimages.h" + "wx/notebook.h" + "wx/choicebk.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\withimages.h + "wx/defs.h" + "wx/icon.h" + "wx/imaglist.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\imaglist.h + "wx/defs.h" + "wx/generic/imaglist.h" + "wx/msw/imaglist.h" + "wx/osx/imaglist.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\imaglist.h + "wx/list.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\imaglist.h + "wx/bitmap.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\imaglist.h + "wx/defs.h" + "wx/list.h" + "wx/icon.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\choicebk.h + "wx/defs.h" + "wx/bookctrl.h" + "wx/choice.h" + "wx/containr.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\choice.h + "wx/defs.h" + "wx/ctrlsub.h" + "wx/univ/choice.h" + "wx/msw/wince/choicece.h" + "wx/msw/choice.h" + "wx/motif/choice.h" + "wx/gtk/choice.h" + "wx/gtk1/choice.h" + "wx/osx/choice.h" + "wx/cocoa/choice.h" + "wx/os2/choice.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\ctrlsub.h + "wx/defs.h" + "wx/arrstr.h" + "wx/control.h" + "wx/msw/ctrlsub.h" + "wx/motif/ctrlsub.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\ctrlsub.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\ctrlsub.h + "wx/dynarray.h" + "wx/generic/ctrlsub.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\ctrlsub.h + "wx/dynarray.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\choice.h + "wx/combobox.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\combobox.h + "wx/defs.h" + "wx/textctrl.h" + "wx/ctrlsub.h" + "wx/textentry.h" + "wx/univ/combobox.h" + "wx/msw/combobox.h" + "wx/motif/combobox.h" + "wx/gtk/combobox.h" + "wx/gtk1/combobox.h" + "wx/osx/combobox.h" + "wx/cocoa/combobox.h" + "wx/os2/combobox.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\combobox.h + "wx/combo.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\combo.h + "wx/defs.h" + "wx/control.h" + "wx/renderer.h" + "wx/bitmap.h" + "wx/textentry.h" + "wx/msw/combo.h" + "wx/generic/combo.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\renderer.h + "wx/gdicmn.h" + "wx/colour.h" + "wx/font.h" + "wx/bitmap.h" + "wx/string.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\combo.h + "wx/timer.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\timer.h + "wx/defs.h" + "wx/object.h" + "wx/longlong.h" + "wx/event.h" + "wx/stopwatch.h" + "wx/utils.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\stopwatch.h + "wx/defs.h" + "wx/longlong.h" + "wx/time.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\time.h + "wx/longlong.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\combo.h + "wx/dcbuffer.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\dcbuffer.h + "wx/dcmemory.h" + "wx/dcclient.h" + "wx/window.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\dcmemory.h + "wx/dc.h" + "wx/bitmap.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\combobox.h + "wx/choice.h" + "wx/textentry.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\combobox.h + "wx/choice.h" + "wx/textentry.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\combobox.h + "wx/choice.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\combobox.h + "wx/defs.h" + "wx/object.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\combobox.h + "wx/containr.h" + "wx/choice.h" + "wx/textctrl.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\combobox.h + "wx/hashmap.h" + "wx/cocoa/ObjcAssociate.h" + "wx/textctrl.h" + "wx/dynarray.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\combobox.h + "wx/choice.h" + "wx/textentry.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wince\choicece.h + "wx/defs.h" + "wx/dynarray.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\choice.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\choice.h + "wx/clntdata.h" + "wx/dynarray.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\choice.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\choice.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\choice.h + "wx/control.h" + "wx/dynarray.h" + "wx/arrstr.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\choice.h + "wx/cocoa/NSMenu.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\nsmenu.h + "wx/hashmap.h" + "wx/cocoa/ObjcAssociate.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\choice.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\notebook.h + "wx/arrstr.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\notebook.h + "wx/control.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\notebook.h + "wx/event.h" + "wx/control.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\notebook.h + "wx/list.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\notebook.h + "wx/list.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\notebook.h + "wx/event.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\notebook.h + "wx/cocoa/NSTabView.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\nstabview.h + "wx/hashmap.h" + "wx/cocoa/ObjcAssociate.h" + "wx/cocoa/ObjcRef.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\objcref.h + "wx/osx/core/cfref.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\notebook.h + "wx/control.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\stattext.h + "wx/defs.h" + "wx/control.h" + "wx/univ/stattext.h" + "wx/msw/stattext.h" + "wx/motif/stattext.h" + "wx/gtk/stattext.h" + "wx/gtk1/stattext.h" + "wx/osx/stattext.h" + "wx/cocoa/stattext.h" + "wx/os2/stattext.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\stattext.h + "wx/generic/stattextg.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\stattextg.h + "wx/stattext.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\stattext.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\stattext.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\stattext.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\stattext.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\stattext.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\stattext.h + "wx/cocoa/NSTextField.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\stattext.h + "wx/control.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\checkbox.h + "wx/defs.h" + "wx/control.h" + "wx/univ/checkbox.h" + "wx/msw/checkbox.h" + "wx/motif/checkbox.h" + "wx/gtk/checkbox.h" + "wx/gtk1/checkbox.h" + "wx/osx/checkbox.h" + "wx/cocoa/checkbox.h" + "wx/os2/checkbox.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\checkbox.h + "wx/button.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\button.h + "wx/defs.h" + "wx/anybutton.h" + "wx/univ/button.h" + "wx/msw/button.h" + "wx/motif/button.h" + "wx/gtk/button.h" + "wx/gtk1/button.h" + "wx/osx/button.h" + "wx/cocoa/button.h" + "wx/os2/button.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\anybutton.h + "wx/defs.h" + "wx/bitmap.h" + "wx/control.h" + "wx/univ/anybutton.h" + "wx/msw/anybutton.h" + "wx/gtk/anybutton.h" + "wx/osx/anybutton.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\anybutton.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\anybutton.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\anybutton.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\anybutton.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\button.h + "wx/bitmap.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\button.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\button.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\button.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\button.h + "wx/defs.h" + "wx/object.h" + "wx/list.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\button.h + "wx/control.h" + "wx/gdicmn.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\button.h + "wx/cocoa/NSButton.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\nsbutton.h + "wx/hashmap.h" + "wx/cocoa/ObjcAssociate.h" + "wx/cocoa/ObjcRef.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\button.h + "wx/control.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\checkbox.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\checkbox.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\checkbox.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\checkbox.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\checkbox.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\checkbox.h + "wx/cocoa/NSButton.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\checkbox.h + "wx/control.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\listbox.h + "wx/defs.h" + "wx/ctrlsub.h" + "wx/univ/listbox.h" + "wx/msw/listbox.h" + "wx/motif/listbox.h" + "wx/gtk/listbox.h" + "wx/gtk1/listbox.h" + "wx/osx/listbox.h" + "wx/os2/listbox.h" + "wx/cocoa/listbox.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\listbox.h + "wx/scrolwin.h" + "wx/dynarray.h" + "wx/arrstr.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\listbox.h + "wx/dynarray.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\listbox.h + "wx/ctrlsub.h" + "wx/clntdata.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\listbox.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\listbox.h + "wx/list.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\listbox.h + "wx/dynarray.h" + "wx/arrstr.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\listbox.h + "wx/dynarray.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\listbox.h + "wx/cocoa/NSTableView.h" + "wx/dynarray.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\nstableview.h + "wx/hashmap.h" + "wx/cocoa/ObjcAssociate.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\radiobut.h + "wx/defs.h" + "wx/control.h" + "wx/univ/radiobut.h" + "wx/msw/radiobut.h" + "wx/motif/radiobut.h" + "wx/gtk/radiobut.h" + "wx/gtk1/radiobut.h" + "wx/osx/radiobut.h" + "wx/cocoa/radiobut.h" + "wx/os2/radiobut.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\radiobut.h + "wx/checkbox.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\radiobut.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\radiobut.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\radiobut.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\radiobut.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\radiobut.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\radiobut.h + "wx/cocoa/NSButton.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\radiobut.h + "wx/control.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\spinbutt.h + "wx/defs.h" + "wx/control.h" + "wx/event.h" + "wx/range.h" + "wx/univ/spinbutt.h" + "wx/msw/spinbutt.h" + "wx/motif/spinbutt.h" + "wx/gtk/spinbutt.h" + "wx/gtk1/spinbutt.h" + "wx/osx/spinbutt.h" + "wx/cocoa/spinbutt.h" + "wx/os2/spinbutt.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\range.h + "wx/defs.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\spinbutt.h + "wx/univ/scrarrow.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\scrarrow.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\spinbutt.h + "wx/control.h" + "wx/event.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\spinbutt.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\spinbutt.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\spinbutt.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\spinbutt.h + "wx/control.h" + "wx/event.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\spinbutt.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\spinbutt.h + "wx/control.h" + "wx/event.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\dirctrl.h + "wx/generic/dirctrlg.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\dirctrlg.h + "wx/treectrl.h" + "wx/dialog.h" + "wx/dirdlg.h" + "wx/choice.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\treectrl.h + "wx/defs.h" + "wx/control.h" + "wx/treebase.h" + "wx/textctrl.h" + "wx/generic/treectlg.h" + "wx/msw/treectrl.h" + "wx/generic/treectlg.h" + "wx/generic/treectlg.h" + "wx/generic/treectlg.h" + "wx/generic/treectlg.h" + "wx/generic/treectlg.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\treebase.h + "wx/defs.h" + "wx/window.h" + "wx/event.h" + "wx/dynarray.h" + "wx/itemid.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\itemid.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\treectlg.h + "wx/scrolwin.h" + "wx/pen.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\treectrl.h + "wx/textctrl.h" + "wx/dynarray.h" + "wx/treebase.h" + "wx/hashmap.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\dirdlg.h + "wx/dialog.h" + "wx/generic/dirdlgg.h" + "wx/generic/dirdlgg.h" + "wx/generic/dirdlgg.h" + "wx/msw/dirdlg.h" + "wx/gtk/dirdlg.h" + "wx/generic/dirdlgg.h" + "wx/osx/dirdlg.h" + "wx/cocoa/dirdlg.h" + "wx/generic/dirdlgg.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\dirdlgg.h + "wx/dialog.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\dirdlg.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\dirdlg.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\dirdlg.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\dirdlg.h + +1502693578 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\fileselectorctrl.h + "wx/treectrl.h" + "wx/dialog.h" + "wx/dirdlg.h" + "wx/choice.h" + +1502693568 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\utilities.h + + + + + +1412638444 c:\wxwidgets-3.0.2\include\wx\tokenzr.h + "wx/object.h" + "wx/string.h" + "wx/arrstr.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\filename.h + "wx/arrstr.h" + "wx/filefn.h" + "wx/datetime.h" + "wx/intl.h" + "wx/longlong.h" + "wx/file.h" + +1502693576 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\mesh_laplace.h + + + + + + + + + + + +1502693576 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\mesh_param.h + + + + + + "UTILITIES.h" + +1502693574 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\run_status.h + + + + + + + + +1502693576 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\place_cable.h + + + + + + +1529401255 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\cable_schematic.cpp + "CABLE_SCHEMATIC.h" + +1502693580 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\cable_schematic.h + + + + + + + +1508706938 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\export_spice.cpp + "EXPORT_SPICE.h" + + + +1508706152 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\export_spice.h + + + + + + + + + +1412638442 c:\wxwidgets-3.0.2\include\wx\filepicker.h + "wx/defs.h" + "wx/pickerbase.h" + "wx/filename.h" + "wx/gtk/filepicker.h" + "wx/generic/filepickerg.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\pickerbase.h + "wx/control.h" + "wx/sizer.h" + "wx/containr.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\filepicker.h + "wx/generic/filepickerg.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\filepickerg.h + "wx/button.h" + "wx/filedlg.h" + "wx/dirdlg.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\filedlg.h + "wx/defs.h" + "wx/dialog.h" + "wx/arrstr.h" + "wx/generic/filedlgg.h" + "wx/msw/filedlg.h" + "wx/motif/filedlg.h" + "wx/gtk/filedlg.h" + "wx/gtk1/filedlg.h" + "wx/osx/filedlg.h" + "wx/cocoa/filedlg.h" + "wx/os2/filedlg.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\filedlgg.h + "wx/listctrl.h" + "wx/datetime.h" + "wx/filefn.h" + "wx/artprov.h" + "wx/filedlg.h" + "wx/generic/filectrlg.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\listctrl.h + "wx/defs.h" + "wx/listbase.h" + "wx/msw/listctrl.h" + "wx/osx/listctrl.h" + "wx/generic/listctrl.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\listbase.h + "wx/colour.h" + "wx/font.h" + "wx/gdicmn.h" + "wx/event.h" + "wx/control.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\listctrl.h + "wx/textctrl.h" + "wx/dynarray.h" + "wx/vector.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\listctrl.h + "wx/defs.h" + "wx/generic/listctrl.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\listctrl.h + "wx/containr.h" + "wx/scrolwin.h" + "wx/textctrl.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\artprov.h + "wx/string.h" + "wx/bitmap.h" + "wx/icon.h" + "wx/iconbndl.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\filectrlg.h + "wx/containr.h" + "wx/listctrl.h" + "wx/filectrl.h" + "wx/filename.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\filectrl.h + "wx/defs.h" + "wx/string.h" + "wx/event.h" + "wx/gtk/filectrl.h" + "wx/generic/filectrlg.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\filectrl.h + "wx/control.h" + "wx/filectrl.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\filedlg.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\filedlg.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\filedlg.h + "wx/gtk/filectrl.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\filedlg.h + "wx/generic/filedlgg.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\filedlg.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\filedlg.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\filedlg.h + +1509497630 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\fd_esr.cpp + "FD_ESR.h" + + + + +1509497630 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\fd_esr.h + + + + + + + + "UTILITIES.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\statline.h + "wx/defs.h" + "wx/control.h" + "wx/univ/statline.h" + "wx/msw/statline.h" + "wx/gtk/statline.h" + "wx/gtk1/statline.h" + "wx/os2/statline.h" + "wx/osx/statline.h" + "wx/cocoa/statline.h" + "wx/generic/statline.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\statline.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\statline.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\statline.h + "wx/defs.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\statline.h + "wx/defs.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\statline.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\statline.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\statline.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\statline.h + +1509484978 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\fd_esr_sw.cpp + "FD_ESR_SW.h" + "UTILITIES.h" + + + + +1509483256 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\fd_esr_sw.h + + + + + + + + +1502693578 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\fd_zt.cpp + "FD_ZT.h" + + + +1502693578 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\fd_zt.h + + + + + + + +1502693578 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\fileselectorctrl.cpp + "wx/wxprec.h" + "wx/generic/dirctrlg.h" + "FileSelectorCtrl.h" + "wx/hash.h" + "wx/intl.h" + "wx/log.h" + "wx/utils.h" + "wx/button.h" + "wx/icon.h" + "wx/settings.h" + "wx/msgdlg.h" + "wx/choice.h" + "wx/textctrl.h" + "wx/layout.h" + "wx/sizer.h" + "wx/textdlg.h" + "wx/gdicmn.h" + "wx/image.h" + "wx/module.h" + "wx/filename.h" + "wx/filefn.h" + "wx/imaglist.h" + "wx/tokenzr.h" + "wx/dir.h" + "wx/artprov.h" + "wx/mimetype.h" + "wx/statline.h" + "wx/osx/private.h" + + "wx/msw/winundef.h" + "wx/volume.h" + + "dos.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\wxprec.h + "wx/defs.h" + "wx/chartype.h" + "wx/msw/wrapwin.h" + "wx/msw/private.h" + "wx/msw/wrapcctl.h" + "wx/msw/wrapcdlg.h" + "wx/msw/missing.h" + "wx/os2/private.h" + "wx/wx.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wrapcctl.h + "wx/msw/wrapwin.h" + + "wx/msw/missing.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\missing.h + + "wx/msw/winundef.h" + "wx/msw/wince/missing.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wince\missing.h + "wx/msw/private.h" + "shellapi.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wrapcdlg.h + "wx/defs.h" + "wx/msw/wrapwin.h" + "wx/msw/private.h" + "wx/msw/missing.h" + + "wx/msw/winundef.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\wx.h + "wx/defs.h" + "wx/object.h" + "wx/dynarray.h" + "wx/list.h" + "wx/hash.h" + "wx/string.h" + "wx/hashmap.h" + "wx/arrstr.h" + "wx/intl.h" + "wx/log.h" + "wx/event.h" + "wx/app.h" + "wx/utils.h" + "wx/stream.h" + "wx/memory.h" + "wx/math.h" + "wx/stopwatch.h" + "wx/timer.h" + "wx/module.h" + "wx/wxcrt.h" + "wx/wxcrtvararg.h" + "wx/window.h" + "wx/containr.h" + "wx/panel.h" + "wx/toplevel.h" + "wx/frame.h" + "wx/gdicmn.h" + "wx/gdiobj.h" + "wx/region.h" + "wx/bitmap.h" + "wx/image.h" + "wx/colour.h" + "wx/font.h" + "wx/dc.h" + "wx/dcclient.h" + "wx/dcmemory.h" + "wx/dcprint.h" + "wx/dcscreen.h" + "wx/button.h" + "wx/menuitem.h" + "wx/menu.h" + "wx/pen.h" + "wx/brush.h" + "wx/palette.h" + "wx/icon.h" + "wx/cursor.h" + "wx/dialog.h" + "wx/settings.h" + "wx/msgdlg.h" + "wx/dataobj.h" + "wx/control.h" + "wx/ctrlsub.h" + "wx/bmpbuttn.h" + "wx/checkbox.h" + "wx/checklst.h" + "wx/choice.h" + "wx/scrolbar.h" + "wx/stattext.h" + "wx/statbmp.h" + "wx/statbox.h" + "wx/listbox.h" + "wx/radiobox.h" + "wx/radiobut.h" + "wx/textctrl.h" + "wx/slider.h" + "wx/gauge.h" + "wx/scrolwin.h" + "wx/dirdlg.h" + "wx/toolbar.h" + "wx/combobox.h" + "wx/layout.h" + "wx/sizer.h" + "wx/statusbr.h" + "wx/choicdlg.h" + "wx/textdlg.h" + "wx/filedlg.h" + "wx/mdi.h" + "wx/validate.h" + "wx/valtext.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\app.h + "wx/event.h" + "wx/eventfilter.h" + "wx/build.h" + "wx/cmdargs.h" + "wx/init.h" + "wx/intl.h" + "wx/log.h" + "wx/unix/app.h" + "wx/msw/app.h" + "wx/motif/app.h" + "wx/dfb/app.h" + "wx/gtk/app.h" + "wx/gtk1/app.h" + "wx/x11/app.h" + "wx/osx/app.h" + "wx/cocoa/app.h" + "wx/os2/app.h" + "wx/univ/theme.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\eventfilter.h + "wx/defs.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\build.h + "wx/version.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cmdargs.h + "wx/arrstr.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\init.h + "wx/defs.h" + "wx/chartype.h" + "wx/msw/init.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\init.h + "wx/msw/wrapwin.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\unix\app.h + + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\app.h + "wx/event.h" + "wx/icon.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\app.h + "wx/event.h" + "wx/hashmap.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\dfb\app.h + "wx/dfb/dfbptr.h" + "wx/vidmode.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\vidmode.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\app.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\app.h + "wx/frame.h" + "wx/icon.h" + "wx/strconv.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\frame.h + "wx/toplevel.h" + "wx/statusbr.h" + "wx/univ/frame.h" + "wx/msw/frame.h" + "wx/gtk/frame.h" + "wx/gtk1/frame.h" + "wx/motif/frame.h" + "wx/osx/frame.h" + "wx/cocoa/frame.h" + "wx/os2/frame.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\statusbr.h + "wx/defs.h" + "wx/control.h" + "wx/list.h" + "wx/dynarray.h" + "wx/univ/statusbr.h" + "wx/msw/statusbar.h" + "wx/generic/statusbr.h" + "wx/osx/statusbr.h" + "wx/generic/statusbr.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\statusbr.h + "wx/univ/inpcons.h" + "wx/arrstr.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\statusbar.h + "wx/vector.h" + "wx/tooltip.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\tooltip.h + "wx/defs.h" + "wx/msw/tooltip.h" + "wx/gtk/tooltip.h" + "wx/gtk1/tooltip.h" + "wx/osx/tooltip.h" + "wx/cocoa/tooltip.h" + "wx/os2/tooltip.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\tooltip.h + "wx/object.h" + "wx/gdicmn.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\tooltip.h + "wx/string.h" + "wx/object.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\tooltip.h + "wx/defs.h" + "wx/string.h" + "wx/object.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\tooltip.h + "wx/string.h" + "wx/event.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\tooltip.h + "wx/object.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\tooltip.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\statusbr.h + "wx/defs.h" + "wx/pen.h" + "wx/arrstr.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\statusbr.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\frame.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\frame.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\frame.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\frame.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\frame.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\frame.h + "wx/toolbar.h" + "wx/accel.h" + "wx/icon.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\toolbar.h + "wx/defs.h" + "wx/tbarbase.h" + "wx/univ/toolbar.h" + "wx/msw/toolbar.h" + "wx/msw/wince/tbarwce.h" + "wx/motif/toolbar.h" + "wx/gtk/toolbar.h" + "wx/gtk1/toolbar.h" + "wx/osx/toolbar.h" + "wx/cocoa/toolbar.h" + "wx/os2/toolbar.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\tbarbase.h + "wx/defs.h" + "wx/bitmap.h" + "wx/list.h" + "wx/control.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\toolbar.h + "wx/button.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\toolbar.h + "wx/dynarray.h" + "wx/imaglist.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wince\tbarwce.h + "wx/dynarray.h" + "wx/msw/toolbar.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\toolbar.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\toolbar.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\toolbar.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\toolbar.h + "wx/tbarbase.h" + "wx/dynarray.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\toolbar.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\toolbar.h + "wx/timer.h" + "wx/tbarbase.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\frame.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\frame.h + "wx/os2/wxrsc.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\wxrsc.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\app.h + "wx/gdicmn.h" + "wx/event.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\app.h + "wx/defs.h" + "wx/object.h" + "wx/gdicmn.h" + "wx/event.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\app.h + "wx/osx/core/cfref.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\app.h + + + + + + + + + "wx/event.h" + "wx/icon.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\theme.h + "wx/string.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\module.h + "wx/object.h" + "wx/list.h" + "wx/arrstr.h" + "wx/dynarray.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\dcprint.h + "wx/defs.h" + "wx/dc.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\dcscreen.h + "wx/defs.h" + "wx/dc.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\menuitem.h + "wx/defs.h" + "wx/object.h" + "wx/univ/menuitem.h" + "wx/msw/menuitem.h" + "wx/motif/menuitem.h" + "wx/gtk/menuitem.h" + "wx/gtk1/menuitem.h" + "wx/osx/menuitem.h" + "wx/cocoa/menuitem.h" + "wx/os2/menuitem.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\menuitem.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\menuitem.h + "wx/ownerdrw.h" + "wx/bitmap.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\ownerdrw.h + "wx/defs.h" + "wx/font.h" + "wx/colour.h" + "wx/msw/ownerdrw.h" + "wx/os2/ownerdrw.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\ownerdrw.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\ownerdrw.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\menuitem.h + "wx/bitmap.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\menuitem.h + "wx/bitmap.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\menuitem.h + "wx/bitmap.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\menuitem.h + "wx/defs.h" + "wx/bitmap.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\menuitem.h + "wx/hashmap.h" + "wx/bitmap.h" + "wx/cocoa/ObjcRef.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\menuitem.h + "wx/defs.h" + "wx/os2/private.h" + "wx/ownerdrw.h" + "wx/bitmap.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\menu.h + "wx/defs.h" + "wx/list.h" + "wx/window.h" + "wx/menuitem.h" + "wx/univ/menu.h" + "wx/msw/menu.h" + "wx/motif/menu.h" + "wx/gtk/menu.h" + "wx/gtk1/menu.h" + "wx/osx/menu.h" + "wx/cocoa/menu.h" + "wx/os2/menu.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\menu.h + "wx/accel.h" + "wx/dynarray.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\menu.h + "wx/accel.h" + "wx/dynarray.h" + "wx/arrstr.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\menu.h + "wx/colour.h" + "wx/font.h" + "wx/arrstr.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\menu.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\menu.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\menu.h + "wx/arrstr.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\menu.h + "wx/cocoa/NSMenu.h" + "wx/accel.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\menu.h + "wx/accel.h" + "wx/list.h" + "wx/dynarray.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\dataobj.h + "wx/defs.h" + "wx/string.h" + "wx/bitmap.h" + "wx/list.h" + "wx/arrstr.h" + "wx/msw/ole/dataform.h" + "wx/motif/dataform.h" + "wx/gtk/dataform.h" + "wx/gtk1/dataform.h" + "wx/x11/dataform.h" + "wx/osx/dataform.h" + "wx/cocoa/dataform.h" + "wx/os2/dataform.h" + "wx/msw/ole/dataobj.h" + "wx/motif/dataobj.h" + "wx/x11/dataobj.h" + "wx/gtk/dataobj.h" + "wx/gtk1/dataobj.h" + "wx/osx/dataobj.h" + "wx/cocoa/dataobj.h" + "wx/os2/dataobj.h" + "wx/msw/ole/dataobj2.h" + "wx/gtk/dataobj2.h" + "wx/gtk1/dataobj2.h" + "wx/x11/dataobj2.h" + "wx/motif/dataobj2.h" + "wx/osx/dataobj2.h" + "wx/cocoa/dataobj2.h" + "wx/os2/dataobj2.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\ole\dataform.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\dataform.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\dataform.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\dataform.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\dataform.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\dataform.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\dataform.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\dataform.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\ole\dataobj.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\dataobj.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\dataobj.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\dataobj.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\dataobj.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\dataobj.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\dataobj.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\dataobj.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\ole\dataobj2.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\dataobj2.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\dataobj2.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\x11\dataobj2.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\dataobj2.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\dataobj2.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\dataobj2.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\dataobj2.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\bmpbuttn.h + "wx/defs.h" + "wx/button.h" + "wx/univ/bmpbuttn.h" + "wx/msw/bmpbuttn.h" + "wx/motif/bmpbuttn.h" + "wx/gtk/bmpbuttn.h" + "wx/gtk1/bmpbuttn.h" + "wx/osx/bmpbuttn.h" + "wx/cocoa/bmpbuttn.h" + "wx/os2/bmpbuttn.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\bmpbuttn.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\bmpbuttn.h + "wx/button.h" + "wx/bitmap.h" + "wx/brush.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\bmpbuttn.h + "wx/motif/bmpmotif.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\bmpbuttn.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\bmpbuttn.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\bmpbuttn.h + "wx/button.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\bmpbuttn.h + "wx/cocoa/NSButton.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\bmpbuttn.h + "wx/button.h" + "wx/dcclient.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\checklst.h + "wx/defs.h" + "wx/listbox.h" + "wx/univ/checklst.h" + "wx/msw/wince/checklst.h" + "wx/msw/checklst.h" + "wx/motif/checklst.h" + "wx/gtk/checklst.h" + "wx/gtk1/checklst.h" + "wx/osx/checklst.h" + "wx/cocoa/checklst.h" + "wx/os2/checklst.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\checklst.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wince\checklst.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\checklst.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\checklst.h + "wx/listbox.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\checklst.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\checklst.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\checklst.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\checklst.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\checklst.h + + "wx/defs.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\scrolbar.h + "wx/defs.h" + "wx/control.h" + "wx/univ/scrolbar.h" + "wx/msw/scrolbar.h" + "wx/motif/scrolbar.h" + "wx/gtk/scrolbar.h" + "wx/gtk1/scrolbar.h" + "wx/osx/scrolbar.h" + "wx/cocoa/scrolbar.h" + "wx/os2/scrolbar.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\scrolbar.h + "wx/univ/scrarrow.h" + "wx/renderer.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\scrolbar.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\scrolbar.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\scrolbar.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\scrolbar.h + "wx/defs.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\scrolbar.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\scrolbar.h + "wx/cocoa/NSScroller.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\nsscroller.h + "wx/hashmap.h" + "wx/cocoa/ObjcAssociate.h" + "wx/cocoa/ObjcRef.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\scrolbar.h + "wx/scrolbar.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\statbox.h + "wx/defs.h" + "wx/control.h" + "wx/containr.h" + "wx/univ/statbox.h" + "wx/msw/statbox.h" + "wx/motif/statbox.h" + "wx/gtk/statbox.h" + "wx/gtk1/statbox.h" + "wx/osx/statbox.h" + "wx/cocoa/statbox.h" + "wx/os2/statbox.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\statbox.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\statbox.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\statbox.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\statbox.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\statbox.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\statbox.h + "wx/control.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\statbox.h + "wx/cocoa/NSBox.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\nsbox.h + "wx/hashmap.h" + "wx/cocoa/ObjcAssociate.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\statbox.h + "wx/control.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\radiobox.h + "wx/defs.h" + "wx/ctrlsub.h" + "wx/dynarray.h" + "wx/univ/radiobox.h" + "wx/msw/radiobox.h" + "wx/motif/radiobox.h" + "wx/gtk/radiobox.h" + "wx/gtk1/radiobox.h" + "wx/osx/radiobox.h" + "wx/cocoa/radiobox.h" + "wx/os2/radiobox.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\radiobox.h + "wx/statbox.h" + "wx/dynarray.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\radiobox.h + "wx/statbox.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\radiobox.h + "wx/dynarray.h" + "wx/arrstr.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\radiobox.h + "wx/bitmap.h" + "wx/list.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\radiobox.h + "wx/bitmap.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\radiobox.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\radiobox.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\radiobox.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\slider.h + "wx/defs.h" + "wx/control.h" + "wx/univ/slider.h" + "wx/msw/slider.h" + "wx/motif/slider.h" + "wx/gtk/slider.h" + "wx/gtk1/slider.h" + "wx/osx/slider.h" + "wx/cocoa/slider.h" + "wx/os2/slider.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\slider.h + "wx/univ/scrthumb.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\scrthumb.h + "wx/timer.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\slider.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\slider.h + "wx/control.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\slider.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\slider.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\slider.h + "wx/control.h" + "wx/slider.h" + "wx/stattext.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\slider.h + "wx/cocoa/NSSlider.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\nsslider.h + "wx/hashmap.h" + "wx/cocoa/ObjcAssociate.h" + "wx/cocoa/ObjcRef.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\slider.h + "wx/control.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gauge.h + "wx/defs.h" + "wx/control.h" + "wx/univ/gauge.h" + "wx/msw/gauge.h" + "wx/motif/gauge.h" + "wx/gtk/gauge.h" + "wx/gtk1/gauge.h" + "wx/osx/gauge.h" + "wx/cocoa/gauge.h" + "wx/os2/gauge.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\univ\gauge.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\gauge.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\motif\gauge.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\gauge.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\gauge.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\gauge.h + "wx/control.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\gauge.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\os2\gauge.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\layout.h + "wx/object.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\choicdlg.h + "wx/defs.h" + "wx/generic/choicdgg.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\choicdgg.h + "wx/dynarray.h" + "wx/dialog.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\textdlg.h + "wx/generic/textdlgg.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\textdlgg.h + "wx/defs.h" + "wx/dialog.h" + "wx/valtext.h" + "wx/textctrl.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\valtext.h + "wx/defs.h" + "wx/validate.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\mdi.h + "wx/defs.h" + "wx/frame.h" + "wx/menu.h" + "wx/generic/mdig.h" + "wx/msw/mdi.h" + "wx/gtk/mdi.h" + "wx/gtk1/mdi.h" + "wx/osx/mdi.h" + "wx/cocoa/mdi.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\generic\mdig.h + "wx/panel.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\mdi.h + "wx/frame.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk\mdi.h + "wx/frame.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\gtk1\mdi.h + "wx/frame.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\mdi.h + +1412638442 c:\wxwidgets-3.0.2\include\wx\cocoa\mdi.h + "wx/frame.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\dir.h + "wx/longlong.h" + "wx/string.h" + "wx/filefn.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\mimetype.h + "wx/defs.h" + "wx/string.h" + "wx/dynarray.h" + "wx/arrstr.h" + + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\private.h + "wx/osx/core/private.h" + "wx/osx/iphone/private.h" + "wx/osx/carbon/private.h" + "wx/osx/cocoa/private.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\core\private.h + "wx/defs.h" + + "wx/osx/core/cfstring.h" + "wx/osx/core/cfdataref.h" + + + + "wx/bitmap.h" + "wx/window.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\core\cfstring.h + + "wx/dlimpexp.h" + "wx/fontenc.h" + "wx/osx/core/cfref.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\core\cfdataref.h + "wx/osx/core/cfref.h" + + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\iphone\private.h + + + + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\carbon\private.h + "wx/osx/uma.h" + "wx/listbox.h" + "wx/osx/dc.h" + "wx/osx/dcclient.h" + "wx/osx/dcmemory.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\uma.h + "wx/osx/carbon/uma.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\carbon\uma.h + "wx/osx/private.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\dc.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\dcclient.h + "wx/dc.h" + "wx/dcgraph.h" + +1412638442 c:\wxwidgets-3.0.2\include\wx\dcgraph.h + "wx/dc.h" + "wx/geometry.h" + "wx/graphics.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\dcmemory.h + "wx/osx/dcclient.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\osx\cocoa\private.h + + +1412638444 c:\wxwidgets-3.0.2\include\wx\volume.h + "wx/defs.h" + "wx/arrstr.h" + "wx/icon.h" + "wx/iconbndl.h" + +1514917402 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\flexcable.cpp + "FLEXCABLE.h" + + + + +1514918566 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\flexcable.h + + + + + + + + + + + "UTILITIES.h" + "MESH_LAPLACE.h" + "MESH_PARAM.h" + "RUN_STATUS.h" + "FD_ESR.h" + + + + +1502693576 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\mesh_laplace.cpp + "MESH_LAPLACE.h" + +1502693576 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\mesh_param.cpp + "MESH_PARAM.h" + + + + +1514917242 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\overshield.cpp + "OVERSHIELD.h" + + + + +1514918530 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\overshield.h + + + + + + + + + "MESH_LAPLACE.h" + "UTILITIES.h" + "RUN_STATUS.h" + + + + +1502693576 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\place_cable.cpp + "PLACE_CABLE.h" + + + +1502693574 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\resource.rc + "wx/msw/wx.rc" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wx.rc + + "wx/msw/wince/wince.rc" + "wx/msw/rcdefs.h" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wince\wince.rc + + "wx/msw/wince/resources.h" + "wx/msw/wince/smartphone.rc" + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wince\resources.h + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\wince\smartphone.rc + + +1412638444 c:\wxwidgets-3.0.2\include\wx\msw\rcdefs.h + +1502693574 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\run_status.cpp + "RUN_STATUS.h" + + + +1514834464 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\spacewire.cpp + "SPACEWIRE.h" + + + + +1514834450 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\spacewire.h + + + + + + + + + + + + "FD_ESR_SW.h" + "UTILITIES.h" + "MESH_LAPLACE.h" + "MESH_PARAM.h" + "RUN_STATUS.h" + + + + +1509492344 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\spicemodel.cpp + "SPICEMODEL.h" + + + + + + + + + + + +1509486246 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\spicemodel.h + + + + + + + + + + + + + + + "FileSelectorCtrl.h" + "BUNDLE_SCHEMATIC.h" + "RUN_STATUS.h" + "UTILITIES.h" + +1502693570 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\sw1_guiapp.cpp + "SW1_GUIApp.h" + "SW1_GUIMain.h" + + +1502693570 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\sw1_guiapp.h + + +1514922396 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\sw1_guimain.h + + + + + + + + + + + + + + + "FileSelectorCtrl.h" + "ABOUT.h" + "CYLINDRICAL.h" + "COAXIAL.h" + "TWINAX.h" + "UTP.h" + "TP.h" + "SPACEWIRE.h" + "OVERSHIELD.h" + "FLEXCABLE.h" + "DCONN.h" + "BUNDLEBLDR.h" + "SPICEMODEL.h" + "CABLE_SCHEMATIC.h" + "BUNDLE_SCHEMATIC.h" + "EXPORT_SPICE.h" + "UTILITIES.h" + + + + +1514832882 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\cylindrical.h + + + + + + + + + + "FD_ESR.h" + "UTILITIES.h" + "RUN_STATUS.h" + + + + +1514832982 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\coaxial.h + + + + + + + + + + + + "UTILITIES.h" + "FD_ESR.h" + "FD_ZT.h" + "RUN_STATUS.h" + + + + +1514833854 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\twinax.h + + + + + + + + + + + + + "FD_ESR.h" + "UTILITIES.h" + "MESH_LAPLACE.h" + "MESH_PARAM.h" + "RUN_STATUS.h" + + + + +1514834002 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\utp.h + + + + + + + + + + + + "FD_ESR.h" + "UTILITIES.h" + "MESH_LAPLACE.h" + "MESH_PARAM.h" + "RUN_STATUS.h" + + + + + +1514834234 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\tp.h + + + + + + + + + + + + + "FD_ESR.h" + "MESH_LAPLACE.h" + "MESH_PARAM.h" + "UTILITIES.h" + "RUN_STATUS.h" + + + + +1514918482 c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\dconn.h + + + + + + + + + + + "MESH_LAPLACE.h" + "MESH_PARAM.h" + "RUN_STATUS.h" + "UTILITIES.h" + + + + +1514923368 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\sw1_guimain.cpp + "SW1_GUIMain.h" + + + + + + + +1502693568 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\utilities.cpp + "UTILITIES.h" + +1514834022 source:c:\users\eezsg\desktop\sacamos_june_2018\local_sw1\utp.cpp + "UTP.h" + + + + diff --git a/GUI/SW1/SRC/SW1_GUI.layout b/GUI/SW1/SRC/SW1_GUI.layout new file mode 100644 index 0000000..6d9550a --- /dev/null +++ b/GUI/SW1/SRC/SW1_GUI.layout @@ -0,0 +1,260 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/GUI/SW1/SRC/TP.cpp b/GUI/SW1/SRC/TP.cpp index d32d4d8..de6dbec 100644 --- a/GUI/SW1/SRC/TP.cpp +++ b/GUI/SW1/SRC/TP.cpp @@ -211,7 +211,7 @@ TP::TP(wxWindow* parent,wxWindowID id,const wxPoint& pos,const wxSize& size) FlexGridSizer8->Add(StaticText23, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5); StaticText24 = new wxStaticText(Panel3, ID_STATICTEXT24, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT24")); FlexGridSizer8->Add(StaticText24, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5); - StaticText25 = new wxStaticText(Panel3, ID_STATICTEXT25, _("R (ohms)"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT25")); + StaticText25 = new wxStaticText(Panel3, ID_STATICTEXT25, _("R (ohms/m)"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT25")); FlexGridSizer8->Add(StaticText25, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5); TextCtrl17 = new wxTextCtrl(Panel3, ID_TEXTCTRL17, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_TEXTCTRL17")); FlexGridSizer8->Add(TextCtrl17, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5); @@ -326,6 +326,7 @@ TP::TP(wxWindow* parent,wxWindowID id,const wxPoint& pos,const wxSize& size) Panel4->Connect(wxEVT_PAINT,(wxObjectEventFunction)&TP::OnPanel4Paint,0,this); Panel4->Connect(wxEVT_LEFT_DCLICK,(wxObjectEventFunction)&TP::OnPanel4LeftDClick,0,this); Panel4->Connect(wxEVT_MOUSEWHEEL,(wxObjectEventFunction)&TP::OnPanel4MouseWheel,0,this); + Connect(wxEVT_PAINT,(wxObjectEventFunction)&TP::OnPaint); //*) TextCtrl2->Bind(wxEVT_SET_FOCUS,(wxObjectEventFunction)&TP::OnHighlightSchematic, this); @@ -347,6 +348,12 @@ TP::~TP() //*) } +void TP::OnPaint(wxPaintEvent& event) +{ + if (EDIT_EXISTING==true) EditExistingCable(); +} + + void TP::SetPathToMOD(wxString Path, wxString Name) { @@ -1189,3 +1196,8 @@ void TP::OnCheckBox4Click(wxCommandEvent& event) } + +void TP::EditExistingCable() +{ + Close(); +} diff --git a/GUI/SW1/SRC/TWINAX.cpp b/GUI/SW1/SRC/TWINAX.cpp index 0591f23..9bfef16 100644 --- a/GUI/SW1/SRC/TWINAX.cpp +++ b/GUI/SW1/SRC/TWINAX.cpp @@ -214,11 +214,11 @@ TWINAX::TWINAX(wxWindow* parent,wxWindowID id,const wxPoint& pos,const wxSize& s FlexGridSizer8->Add(StaticText23, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5); StaticText24 = new wxStaticText(Panel3, ID_STATICTEXT24, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT24")); FlexGridSizer8->Add(StaticText24, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5); - StaticText25 = new wxStaticText(Panel3, ID_STATICTEXT25, _("R (ohms)"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT25")); + StaticText25 = new wxStaticText(Panel3, ID_STATICTEXT25, _("R (ohms/m)"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT25")); FlexGridSizer8->Add(StaticText25, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5); TextCtrl17 = new wxTextCtrl(Panel3, ID_TEXTCTRL17, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_TEXTCTRL17")); FlexGridSizer8->Add(TextCtrl17, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5); - StaticText26 = new wxStaticText(Panel3, ID_STATICTEXT26, _("H (henries)"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT26")); + StaticText26 = new wxStaticText(Panel3, ID_STATICTEXT26, _("H (henries/m)"), wxDefaultPosition, wxDefaultSize, 0, _T("ID_STATICTEXT26")); FlexGridSizer8->Add(StaticText26, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 5); TextCtrl18 = new wxTextCtrl(Panel3, ID_TEXTCTRL18, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0, wxDefaultValidator, _T("ID_TEXTCTRL18")); FlexGridSizer8->Add(TextCtrl18, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 5); @@ -334,6 +334,7 @@ TWINAX::TWINAX(wxWindow* parent,wxWindowID id,const wxPoint& pos,const wxSize& s Connect(ID_BUTTON2,wxEVT_COMMAND_BUTTON_CLICKED,(wxObjectEventFunction)&TWINAX::OnButton2Click); Panel1->Connect(wxEVT_PAINT,(wxObjectEventFunction)&TWINAX::OnPanel1Paint,0,this); Panel1->Connect(wxEVT_LEFT_DCLICK,(wxObjectEventFunction)&TWINAX::OnPanel1LeftDClick,0,this); + Connect(wxEVT_PAINT,(wxObjectEventFunction)&TWINAX::OnPaint); //*) TextCtrl2->Bind(wxEVT_SET_FOCUS,(wxObjectEventFunction)&TWINAX::OnHighlightSchematic, this); @@ -355,6 +356,11 @@ TWINAX::~TWINAX() //*) } +void TWINAX::OnPaint(wxPaintEvent& event) +{ + if (EDIT_EXISTING==true) EditExistingCable(); +} + void TWINAX::SetPathToMOD(wxString Path, wxString Name) { @@ -1171,3 +1177,10 @@ void TWINAX::OnCheckBox4Click(wxCommandEvent& event) } } + +void TWINAX::EditExistingCable() +{ + Close(); +} + + -- libgit2 0.21.2