git-svn-id: https://svn.code.sf.net/p/freetel/code@1231 01035d8c-6547-0410-b346-abe4f...
authorwittend99 <wittend99@01035d8c-6547-0410-b346-abe4f91aad63>
Tue, 26 Mar 2013 15:53:46 +0000 (15:53 +0000)
committerwittend99 <wittend99@01035d8c-6547-0410-b346-abe4f91aad63>
Tue, 26 Mar 2013 15:53:46 +0000 (15:53 +0000)
30 files changed:
fdmdv2/build/codelite/hamlib_trial/MainFrame.cpp [new file with mode: 0644]
fdmdv2/build/codelite/hamlib_trial/MainFrame.h [new file with mode: 0644]
fdmdv2/build/codelite/hamlib_trial/Release/.d [new file with mode: 0644]
fdmdv2/build/codelite/hamlib_trial/Release/MainFrame.o.d [new file with mode: 0644]
fdmdv2/build/codelite/hamlib_trial/Release/dlg_rig_ctrl.o.d [new file with mode: 0644]
fdmdv2/build/codelite/hamlib_trial/Release/hamlib_trial.exe [new file with mode: 0644]
fdmdv2/build/codelite/hamlib_trial/Release/main.o.d [new file with mode: 0644]
fdmdv2/build/codelite/hamlib_trial/Release/visiWidgits.conf [new file with mode: 0644]
fdmdv2/build/codelite/hamlib_trial/Release/wxcrafter.o.d [new file with mode: 0644]
fdmdv2/build/codelite/hamlib_trial/Release/wxcrafter_bitmaps.o.d [new file with mode: 0644]
fdmdv2/build/codelite/hamlib_trial/dlg_rig_ctrl.cpp [new file with mode: 0644]
fdmdv2/build/codelite/hamlib_trial/dlg_rig_ctrl.h [new file with mode: 0644]
fdmdv2/build/codelite/hamlib_trial/hamlib_trial.mk [new file with mode: 0644]
fdmdv2/build/codelite/hamlib_trial/hamlib_trial.project [new file with mode: 0644]
fdmdv2/build/codelite/hamlib_trial/hamlib_trial.txt [new file with mode: 0644]
fdmdv2/build/codelite/hamlib_trial/main.cpp [new file with mode: 0644]
fdmdv2/build/codelite/hamlib_trial/main.h [new file with mode: 0644]
fdmdv2/build/codelite/hamlib_trial/win_resources.rc [new file with mode: 0644]
fdmdv2/build/codelite/hamlib_trial/wxcrafter.cpp [new file with mode: 0644]
fdmdv2/build/codelite/hamlib_trial/wxcrafter.h [new file with mode: 0644]
fdmdv2/build/codelite/hamlib_trial/wxcrafter.wxcp [new file with mode: 0644]
fdmdv2/build/codelite/hamlib_trial/wxcrafter.xrc [new file with mode: 0644]
fdmdv2/build/codelite/hamlib_trial/wxcrafter_bitmaps.cpp [new file with mode: 0644]
fdmdv2/build/codelite/hamlib_trial/wxcrafter_bitmaps.xrc [new file with mode: 0644]
fdmdv2/build/codelite/libPortCtrl/Debug/.d [new file with mode: 0644]
fdmdv2/build/codelite/libPortCtrl/Release/.d [new file with mode: 0644]
fdmdv2/build/codelite/libPortCtrl/freedv_osx_port.patch [new file with mode: 0644]
fdmdv2/build/codelite/libPortCtrl/libPortCtrl.mk [new file with mode: 0644]
fdmdv2/build/codelite/libPortCtrl/libPortCtrl.project [new file with mode: 0644]
fdmdv2/build/codelite/libPortCtrl/libPortCtrl.txt [new file with mode: 0644]

diff --git a/fdmdv2/build/codelite/hamlib_trial/MainFrame.cpp b/fdmdv2/build/codelite/hamlib_trial/MainFrame.cpp
new file mode 100644 (file)
index 0000000..c0fae92
--- /dev/null
@@ -0,0 +1,80 @@
+#include "main.h"
+#include "MainFrame.h"
+#include <wx/aboutdlg.h>
+#include "dlg_rig_ctrl.h"
+
+MainFrame::MainFrame(wxWindow* parent): MainFrameBaseClass(parent)
+{
+    wxConfigBase *pConfig = wxConfigBase::Get();
+    if(pConfig)
+    {
+        pConfig->SetRecordDefaults();
+
+        // restore frame position and size
+        int x = pConfig->Read(wxT("/MainFrame/top"),       50);
+        int y = pConfig->Read(wxT("/MainFrame/left"),      50);
+        int w = pConfig->Read(wxT("/MainFrame/width"),     650);
+        int h = pConfig->Read(wxT("/MainFrame/height"),    400);
+
+        Move(x, y);
+        SetClientSize(w, h);
+    }
+}
+
+MainFrame::~MainFrame()
+{
+    int x;
+    int y;
+    int w;
+    int h;
+
+    wxConfigBase *pConfig = wxConfigBase::Get();
+    if(pConfig)
+    {
+        GetClientSize(&w, &h);
+        GetPosition(&x, &y);
+        //wxLogDebug("x = %d y = %d w = %d h = %d\n", x,y,w,h);
+        pConfig->Write(wxT("/MainFrame/top"), (long) x);
+        pConfig->Write(wxT("/MainFrame/left"), (long) y);
+        pConfig->Write(wxT("/MainFrame/width"), (long) w);
+        pConfig->Write(wxT("/MainFrame/height"), (long) h);
+    }
+    delete wxConfigBase::Set((wxConfigBase *) NULL);
+}
+
+void MainFrame::OnExit(wxCommandEvent& event)
+{
+    wxUnusedVar(event);
+    Close();
+}
+
+void MainFrame::OnAbout(wxCommandEvent& event)
+{
+    wxUnusedVar(event);
+    wxAboutDialogInfo info;
+    info.SetCopyright(_("HAMLib Test"));
+    info.SetLicence(_("GPL v2 or later"));
+    info.SetDescription(_("Short description goes here"));
+    ::wxAboutBox(info);
+}
+
+void MainFrame::OnNew(wxCommandEvent& event)
+{
+}
+
+void MainFrame::OnOpen(wxCommandEvent& event)
+{
+}
+
+void MainFrame::OnSize(wxSizeEvent& event)
+{
+}
+
+void MainFrame::OnToolsPrefs(wxCommandEvent& event)
+{
+    wxUnusedVar(event);
+    DlgRigCtrlBase *dlg = new DlgRigCtrlBase(NULL);
+    //int rVal = dlg
+    dlg->ShowModal();
+    delete dlg;
+}
diff --git a/fdmdv2/build/codelite/hamlib_trial/MainFrame.h b/fdmdv2/build/codelite/hamlib_trial/MainFrame.h
new file mode 100644 (file)
index 0000000..2797db0
--- /dev/null
@@ -0,0 +1,19 @@
+#ifndef MAINFRAME_H
+#define MAINFRAME_H
+#include "wxcrafter.h"
+
+class MainFrame : public MainFrameBaseClass
+{
+public:
+    MainFrame(wxWindow* parent);
+    virtual ~MainFrame();
+
+    void OnExit(wxCommandEvent& event);
+    void OnAbout(wxCommandEvent& event);
+protected:
+    virtual void OnToolsPrefs(wxCommandEvent& event);
+    virtual void OnNew(wxCommandEvent& event);
+    virtual void OnOpen(wxCommandEvent& event);
+    virtual void OnSize(wxSizeEvent& event);
+};
+#endif // MAINFRAME_H
diff --git a/fdmdv2/build/codelite/hamlib_trial/Release/.d b/fdmdv2/build/codelite/hamlib_trial/Release/.d
new file mode 100644 (file)
index 0000000..950b468
--- /dev/null
@@ -0,0 +1 @@
+"" \r
diff --git a/fdmdv2/build/codelite/hamlib_trial/Release/MainFrame.o.d b/fdmdv2/build/codelite/hamlib_trial/Release/MainFrame.o.d
new file mode 100644 (file)
index 0000000..a3f41c3
--- /dev/null
@@ -0,0 +1,795 @@
+Release/MainFrame.o: MainFrame.cpp main.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/wx.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/defs.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/platform.h \\r
+ D:\bin\wxWidgets-2.9.4\lib\gcc_dll\mswu/wx/setup.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/libraries.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/gccpriv.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/chkconf.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/chkconf.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/version.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/cpp.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/dlimpexp.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/debug.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/chartype.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/windowid.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/winundef.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/features.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/object.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/memory.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/string.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/wxcrtbase.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/strvararg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/strconv.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/buffer.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/fontenc.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/unichar.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/stringimpl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/beforestd.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/afterstd.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/stringops.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/iosfwrap.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/crt.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/wxcrt.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/wxcrtvararg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msgout.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xti.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/rtti.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/flags.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xti2.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/dynarray.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/list.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/hash.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/hashmap.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/arrstr.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/intl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/translation.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/language.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/scopedptr.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/checkeddelete.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/log.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/thread.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/generic/logg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/event.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/clntdata.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/gdicmn.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/math.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/cursor.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/cursor.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/gdiimage.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/gdiobj.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/utils.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/filefn.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/versioninfo.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/implicitconversion.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/if.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/mousestate.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/kbdstate.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/longlong.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/platinfo.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/tracker.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/typeinfo.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/any.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/datetime.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/anystr.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/variant.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/convertible.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/app.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/eventfilter.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/build.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/cmdargs.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/init.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/init.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/wrapwin.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/app.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/icon.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/iconloc.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/icon.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/stream.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/stopwatch.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/time.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/timer.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/module.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/window.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/font.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/font.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/colour.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/colour.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/region.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/region.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/validate.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/palette.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/palette.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/accel.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/accel.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/window.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/settings.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/containr.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/panel.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/panel.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/toplevel.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/nonownedwnd.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/nonownedwnd.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/iconbndl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/weakref.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/int2type.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/toplevel.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/frame.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/statusbr.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/control.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/control.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/statusbar.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/vector.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/scopeguard.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/except.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/movable.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/pod.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/tooltip.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/tooltip.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/frame.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/bitmap.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/image.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagbmp.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagpng.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imaggif.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagpcx.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagjpeg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagtga.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagtiff.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagpnm.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagxpm.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagiff.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/bitmap.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/dc.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/brush.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/brush.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/pen.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/pen.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/affinematrix2d.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/affinematrix2dbase.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/geometry.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/dcclient.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/dcmemory.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/dcprint.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/dcscreen.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/button.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/anybutton.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/anybutton.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/button.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/menuitem.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/menuitem.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/ownerdrw.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/ownerdrw.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/menu.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/menu.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/dialog.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/dialog.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msgdlg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/stockitem.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/generic/msgdlgg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/msgdlg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/dataobj.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/ole/dataform.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/ole/dataobj.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/ole/dataobj2.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/ctrlsub.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/ctrlsub.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/bmpbuttn.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/bmpbuttn.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/checkbox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/checkbox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/checklst.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/listbox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/listbox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/checklst.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/choice.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/choice.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/scrolbar.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/scrolbar.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/stattext.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/stattext.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/statbmp.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/statbmp.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/statbox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/statbox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/radiobox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/radiobox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/radiobut.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/radiobut.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/textctrl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/textentry.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/textentry.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/ioswrap.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/textctrl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/slider.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/slider.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/gauge.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/gauge.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/scrolwin.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/generic/scrolwin.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/dirdlg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/dirdlg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/toolbar.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/tbarbase.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/toolbar.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imaglist.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/imaglist.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/combobox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/combobox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/layout.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/sizer.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/choicdlg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/generic/choicdgg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/textdlg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/generic/textdlgg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/valtext.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/filedlg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/filedlg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/mdi.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/mdi.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/aui/framemanager.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/file.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/filename.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/config.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/confbase.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/base64.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/regconf.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/registry.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/fileconf.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/textfile.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/textbuf.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/convauto.h MainFrame.h wxcrafter.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xmlres.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/filesys.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/artprov.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/animate.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/animdecod.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/generic/animate.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xml/xml.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bmp.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/notebook.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/bookctrl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/withimages.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/notebook.h \\r
+ D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/rig.h \\r
+ D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/riglist.h \\r
+ D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/rig_dll.h \\r
+ D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/rig_dll.h \\r
+ D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/riglist.h \\r
+ D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/rotator.h \\r
+ D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/rig.h \\r
+ D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/rotlist.h \\r
+ D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/rotlist.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/aboutdlg.h dlg_rig_ctrl.h\r
+\r
+main.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/wx.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/defs.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/platform.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\lib\gcc_dll\mswu/wx/setup.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/libraries.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/gccpriv.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/chkconf.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/chkconf.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/version.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/cpp.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/dlimpexp.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/debug.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/chartype.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/windowid.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/winundef.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/features.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/object.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/memory.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/string.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/wxcrtbase.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/strvararg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/strconv.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/buffer.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/fontenc.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/unichar.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/stringimpl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/beforestd.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/afterstd.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/stringops.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/iosfwrap.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/crt.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/wxcrt.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/wxcrtvararg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msgout.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xti.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/rtti.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/flags.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xti2.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/dynarray.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/list.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/hash.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/hashmap.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/arrstr.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/intl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/translation.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/language.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/scopedptr.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/checkeddelete.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/log.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/thread.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/generic/logg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/event.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/clntdata.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/gdicmn.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/math.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/cursor.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/cursor.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/gdiimage.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/gdiobj.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/utils.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/filefn.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/versioninfo.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/implicitconversion.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/if.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/mousestate.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/kbdstate.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/longlong.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/platinfo.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/tracker.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/typeinfo.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/any.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/datetime.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/anystr.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/variant.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/convertible.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/app.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/eventfilter.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/build.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/cmdargs.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/init.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/init.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/wrapwin.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/app.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/icon.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/iconloc.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/icon.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/stream.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/stopwatch.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/time.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/timer.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/module.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/window.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/font.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/font.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/colour.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/colour.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/region.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/region.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/validate.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/palette.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/palette.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/accel.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/accel.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/window.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/settings.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/containr.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/panel.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/panel.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/toplevel.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/nonownedwnd.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/nonownedwnd.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/iconbndl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/weakref.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/int2type.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/toplevel.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/frame.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/statusbr.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/control.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/control.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/statusbar.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/vector.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/scopeguard.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/except.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/movable.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/pod.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/tooltip.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/tooltip.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/frame.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/bitmap.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/image.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagbmp.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagpng.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imaggif.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagpcx.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagjpeg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagtga.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagtiff.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagpnm.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagxpm.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagiff.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/bitmap.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/dc.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/brush.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/brush.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/pen.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/pen.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/affinematrix2d.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/affinematrix2dbase.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/geometry.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/dcclient.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/dcmemory.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/dcprint.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/dcscreen.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/button.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/anybutton.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/anybutton.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/button.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/menuitem.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/menuitem.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/ownerdrw.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/ownerdrw.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/menu.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/menu.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/dialog.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/dialog.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msgdlg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/stockitem.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/generic/msgdlgg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/msgdlg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/dataobj.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/ole/dataform.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/ole/dataobj.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/ole/dataobj2.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/ctrlsub.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/ctrlsub.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/bmpbuttn.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/bmpbuttn.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/checkbox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/checkbox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/checklst.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/listbox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/listbox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/checklst.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/choice.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/choice.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/scrolbar.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/scrolbar.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/stattext.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/stattext.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/statbmp.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/statbmp.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/statbox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/statbox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/radiobox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/radiobox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/radiobut.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/radiobut.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/textctrl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/textentry.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/textentry.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/ioswrap.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/textctrl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/slider.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/slider.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/gauge.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/gauge.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/scrolwin.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/generic/scrolwin.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/dirdlg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/dirdlg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/toolbar.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/tbarbase.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/toolbar.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imaglist.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/imaglist.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/combobox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/combobox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/layout.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/sizer.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/choicdlg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/generic/choicdgg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/textdlg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/generic/textdlgg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/valtext.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/filedlg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/filedlg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/mdi.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/mdi.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/aui/framemanager.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/file.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/filename.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/config.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/confbase.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/base64.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/regconf.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/registry.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/fileconf.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/textfile.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/textbuf.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/convauto.h:\r
+\r
+MainFrame.h:\r
+\r
+wxcrafter.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xmlres.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/filesys.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/artprov.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/animate.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/animdecod.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/generic/animate.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xml/xml.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bmp.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/notebook.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/bookctrl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/withimages.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/notebook.h:\r
+\r
+D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/rig.h:\r
+\r
+D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/riglist.h:\r
+\r
+D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/rig_dll.h:\r
+\r
+D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/rig_dll.h:\r
+\r
+D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/riglist.h:\r
+\r
+D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/rotator.h:\r
+\r
+D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/rig.h:\r
+\r
+D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/rotlist.h:\r
+\r
+D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/rotlist.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/aboutdlg.h:\r
+\r
+dlg_rig_ctrl.h:\r
diff --git a/fdmdv2/build/codelite/hamlib_trial/Release/dlg_rig_ctrl.o.d b/fdmdv2/build/codelite/hamlib_trial/Release/dlg_rig_ctrl.o.d
new file mode 100644 (file)
index 0000000..a708d26
--- /dev/null
@@ -0,0 +1,554 @@
+Release/dlg_rig_ctrl.o: dlg_rig_ctrl.cpp dlg_rig_ctrl.h wxcrafter.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/settings.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/colour.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/defs.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/platform.h \\r
+ D:\bin\wxWidgets-2.9.4\lib\gcc_dll\mswu/wx/setup.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/libraries.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/gccpriv.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/chkconf.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/chkconf.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/version.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/cpp.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/dlimpexp.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/debug.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/chartype.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/windowid.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/winundef.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/features.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/gdiobj.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/object.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/memory.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/string.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/wxcrtbase.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/strvararg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/strconv.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/buffer.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/fontenc.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/unichar.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/stringimpl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/beforestd.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/afterstd.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/stringops.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/iosfwrap.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/crt.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/wxcrt.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/wxcrtvararg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msgout.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xti.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/rtti.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/flags.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xti2.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/variant.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/arrstr.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/list.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/longlong.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/datetime.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/anystr.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/dynarray.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/any.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/if.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/typeinfo.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/colour.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/font.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/gdicmn.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/hashmap.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/math.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/font.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xmlres.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/filesys.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/stream.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/filefn.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/filename.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/intl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/translation.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/language.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/scopedptr.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/checkeddelete.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/file.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/bitmap.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/image.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagbmp.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagpng.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/versioninfo.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imaggif.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagpcx.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagjpeg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagtga.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagtiff.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagpnm.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagxpm.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagiff.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/bitmap.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/gdiimage.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/palette.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/palette.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/icon.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/iconloc.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/icon.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/artprov.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/iconbndl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/animate.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/animdecod.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/log.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/thread.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/generic/logg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/control.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/window.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/event.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/clntdata.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/cursor.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/cursor.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/utils.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/implicitconversion.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/mousestate.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/kbdstate.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/platinfo.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/tracker.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/convertible.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/region.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/region.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/validate.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/accel.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/accel.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/window.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/control.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/timer.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/stopwatch.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/time.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/generic/animate.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/vector.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/scopeguard.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/except.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/movable.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/pod.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xml/xml.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bmp.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/frame.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/toplevel.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/nonownedwnd.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/nonownedwnd.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/containr.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/weakref.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/int2type.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/toplevel.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/statusbr.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/statusbar.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/tooltip.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/tooltip.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/frame.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/sizer.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/panel.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/panel.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/menu.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/menuitem.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/menuitem.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/ownerdrw.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/ownerdrw.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/menu.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/toolbar.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/tbarbase.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/toolbar.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imaglist.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/imaglist.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/dialog.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/dialog.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/notebook.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/bookctrl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/withimages.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/notebook.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/statbox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/statbox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/checkbox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/checkbox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/stattext.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/stattext.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/combobox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/textctrl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/textentry.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/textentry.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/ioswrap.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/textctrl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/ctrlsub.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/ctrlsub.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/combobox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/choice.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/choice.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/radiobox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/radiobox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/button.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/anybutton.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/anybutton.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/button.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/slider.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/slider.h\r
+\r
+dlg_rig_ctrl.h:\r
+\r
+wxcrafter.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/settings.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/colour.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/defs.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/platform.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\lib\gcc_dll\mswu/wx/setup.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/libraries.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/gccpriv.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/chkconf.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/chkconf.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/version.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/cpp.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/dlimpexp.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/debug.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/chartype.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/windowid.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/winundef.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/features.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/gdiobj.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/object.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/memory.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/string.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/wxcrtbase.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/strvararg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/strconv.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/buffer.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/fontenc.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/unichar.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/stringimpl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/beforestd.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/afterstd.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/stringops.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/iosfwrap.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/crt.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/wxcrt.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/wxcrtvararg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msgout.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xti.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/rtti.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/flags.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xti2.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/variant.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/arrstr.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/list.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/longlong.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/datetime.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/anystr.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/dynarray.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/any.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/if.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/typeinfo.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/colour.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/font.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/gdicmn.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/hashmap.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/math.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/font.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xmlres.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/filesys.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/stream.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/filefn.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/filename.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/intl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/translation.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/language.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/scopedptr.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/checkeddelete.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/file.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/bitmap.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/image.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagbmp.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagpng.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/versioninfo.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imaggif.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagpcx.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagjpeg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagtga.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagtiff.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagpnm.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagxpm.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagiff.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/bitmap.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/gdiimage.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/palette.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/palette.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/icon.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/iconloc.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/icon.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/artprov.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/iconbndl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/animate.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/animdecod.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/log.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/thread.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/generic/logg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/control.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/window.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/event.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/clntdata.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/cursor.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/cursor.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/utils.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/implicitconversion.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/mousestate.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/kbdstate.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/platinfo.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/tracker.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/convertible.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/region.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/region.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/validate.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/accel.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/accel.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/window.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/control.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/timer.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/stopwatch.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/time.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/generic/animate.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/vector.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/scopeguard.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/except.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/movable.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/pod.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xml/xml.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bmp.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/frame.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/toplevel.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/nonownedwnd.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/nonownedwnd.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/containr.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/weakref.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/int2type.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/toplevel.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/statusbr.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/statusbar.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/tooltip.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/tooltip.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/frame.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/sizer.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/panel.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/panel.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/menu.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/menuitem.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/menuitem.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/ownerdrw.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/ownerdrw.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/menu.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/toolbar.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/tbarbase.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/toolbar.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imaglist.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/imaglist.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/dialog.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/dialog.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/notebook.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/bookctrl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/withimages.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/notebook.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/statbox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/statbox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/checkbox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/checkbox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/stattext.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/stattext.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/combobox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/textctrl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/textentry.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/textentry.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/ioswrap.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/textctrl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/ctrlsub.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/ctrlsub.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/combobox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/choice.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/choice.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/radiobox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/radiobox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/button.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/anybutton.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/anybutton.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/button.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/slider.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/slider.h:\r
diff --git a/fdmdv2/build/codelite/hamlib_trial/Release/hamlib_trial.exe b/fdmdv2/build/codelite/hamlib_trial/Release/hamlib_trial.exe
new file mode 100644 (file)
index 0000000..0d9dc54
Binary files /dev/null and b/fdmdv2/build/codelite/hamlib_trial/Release/hamlib_trial.exe differ
diff --git a/fdmdv2/build/codelite/hamlib_trial/Release/main.o.d b/fdmdv2/build/codelite/hamlib_trial/Release/main.o.d
new file mode 100644 (file)
index 0000000..e4bbe07
--- /dev/null
@@ -0,0 +1,750 @@
+Release/main.o: main.cpp main.h D:\bin\wxWidgets-2.9.4\include/wx/wx.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/defs.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/platform.h \\r
+ D:\bin\wxWidgets-2.9.4\lib\gcc_dll\mswu/wx/setup.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/libraries.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/gccpriv.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/chkconf.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/chkconf.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/version.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/cpp.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/dlimpexp.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/debug.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/chartype.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/windowid.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/winundef.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/features.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/object.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/memory.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/string.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/wxcrtbase.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/strvararg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/strconv.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/buffer.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/fontenc.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/unichar.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/stringimpl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/beforestd.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/afterstd.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/stringops.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/iosfwrap.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/crt.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/wxcrt.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/wxcrtvararg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msgout.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xti.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/rtti.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/flags.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xti2.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/dynarray.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/list.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/hash.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/hashmap.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/arrstr.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/intl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/translation.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/language.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/scopedptr.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/checkeddelete.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/log.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/thread.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/generic/logg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/event.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/clntdata.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/gdicmn.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/math.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/cursor.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/cursor.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/gdiimage.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/gdiobj.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/utils.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/filefn.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/versioninfo.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/implicitconversion.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/if.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/mousestate.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/kbdstate.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/longlong.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/platinfo.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/tracker.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/typeinfo.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/any.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/datetime.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/anystr.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/variant.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/convertible.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/app.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/eventfilter.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/build.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/cmdargs.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/init.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/init.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/wrapwin.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/app.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/icon.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/iconloc.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/icon.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/stream.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/stopwatch.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/time.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/timer.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/module.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/window.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/font.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/font.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/colour.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/colour.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/region.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/region.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/validate.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/palette.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/palette.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/accel.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/accel.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/window.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/settings.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/containr.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/panel.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/panel.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/toplevel.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/nonownedwnd.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/nonownedwnd.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/iconbndl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/weakref.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/int2type.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/toplevel.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/frame.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/statusbr.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/control.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/control.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/statusbar.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/vector.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/scopeguard.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/except.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/movable.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/pod.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/tooltip.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/tooltip.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/frame.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/bitmap.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/image.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagbmp.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagpng.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imaggif.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagpcx.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagjpeg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagtga.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagtiff.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagpnm.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagxpm.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagiff.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/bitmap.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/dc.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/brush.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/brush.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/pen.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/pen.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/affinematrix2d.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/affinematrix2dbase.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/geometry.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/dcclient.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/dcmemory.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/dcprint.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/dcscreen.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/button.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/anybutton.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/anybutton.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/button.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/menuitem.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/menuitem.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/ownerdrw.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/ownerdrw.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/menu.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/menu.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/dialog.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/dialog.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msgdlg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/stockitem.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/generic/msgdlgg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/msgdlg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/dataobj.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/ole/dataform.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/ole/dataobj.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/ole/dataobj2.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/ctrlsub.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/ctrlsub.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/bmpbuttn.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/bmpbuttn.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/checkbox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/checkbox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/checklst.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/listbox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/listbox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/checklst.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/choice.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/choice.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/scrolbar.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/scrolbar.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/stattext.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/stattext.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/statbmp.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/statbmp.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/statbox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/statbox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/radiobox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/radiobox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/radiobut.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/radiobut.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/textctrl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/textentry.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/textentry.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/ioswrap.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/textctrl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/slider.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/slider.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/gauge.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/gauge.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/scrolwin.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/generic/scrolwin.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/dirdlg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/dirdlg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/toolbar.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/tbarbase.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/toolbar.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imaglist.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/imaglist.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/combobox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/combobox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/layout.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/sizer.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/choicdlg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/generic/choicdgg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/textdlg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/generic/textdlgg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/valtext.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/filedlg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/filedlg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/mdi.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/mdi.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/aui/framemanager.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/file.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/filename.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/config.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/confbase.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/base64.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/regconf.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/registry.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/fileconf.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/textfile.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/textbuf.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/convauto.h MainFrame.h wxcrafter.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xmlres.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/filesys.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/artprov.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/animate.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/animdecod.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/generic/animate.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xml/xml.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bmp.h\r
+\r
+main.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/wx.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/defs.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/platform.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\lib\gcc_dll\mswu/wx/setup.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/libraries.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/gccpriv.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/chkconf.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/chkconf.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/version.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/cpp.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/dlimpexp.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/debug.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/chartype.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/windowid.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/winundef.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/features.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/object.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/memory.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/string.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/wxcrtbase.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/strvararg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/strconv.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/buffer.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/fontenc.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/unichar.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/stringimpl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/beforestd.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/afterstd.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/stringops.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/iosfwrap.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/crt.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/wxcrt.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/wxcrtvararg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msgout.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xti.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/rtti.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/flags.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xti2.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/dynarray.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/list.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/hash.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/hashmap.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/arrstr.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/intl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/translation.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/language.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/scopedptr.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/checkeddelete.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/log.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/thread.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/generic/logg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/event.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/clntdata.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/gdicmn.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/math.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/cursor.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/cursor.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/gdiimage.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/gdiobj.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/utils.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/filefn.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/versioninfo.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/implicitconversion.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/if.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/mousestate.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/kbdstate.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/longlong.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/platinfo.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/tracker.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/typeinfo.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/any.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/datetime.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/anystr.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/variant.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/convertible.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/app.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/eventfilter.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/build.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/cmdargs.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/init.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/init.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/wrapwin.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/app.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/icon.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/iconloc.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/icon.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/stream.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/stopwatch.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/time.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/timer.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/module.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/window.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/font.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/font.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/colour.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/colour.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/region.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/region.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/validate.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/palette.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/palette.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/accel.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/accel.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/window.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/settings.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/containr.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/panel.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/panel.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/toplevel.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/nonownedwnd.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/nonownedwnd.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/iconbndl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/weakref.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/int2type.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/toplevel.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/frame.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/statusbr.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/control.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/control.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/statusbar.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/vector.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/scopeguard.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/except.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/movable.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/pod.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/tooltip.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/tooltip.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/frame.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/bitmap.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/image.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagbmp.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagpng.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imaggif.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagpcx.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagjpeg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagtga.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagtiff.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagpnm.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagxpm.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagiff.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/bitmap.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/dc.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/brush.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/brush.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/pen.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/pen.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/affinematrix2d.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/affinematrix2dbase.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/geometry.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/dcclient.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/dcmemory.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/dcprint.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/dcscreen.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/button.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/anybutton.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/anybutton.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/button.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/menuitem.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/menuitem.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/ownerdrw.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/ownerdrw.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/menu.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/menu.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/dialog.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/dialog.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msgdlg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/stockitem.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/generic/msgdlgg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/msgdlg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/dataobj.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/ole/dataform.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/ole/dataobj.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/ole/dataobj2.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/ctrlsub.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/ctrlsub.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/bmpbuttn.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/bmpbuttn.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/checkbox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/checkbox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/checklst.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/listbox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/listbox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/checklst.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/choice.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/choice.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/scrolbar.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/scrolbar.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/stattext.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/stattext.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/statbmp.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/statbmp.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/statbox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/statbox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/radiobox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/radiobox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/radiobut.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/radiobut.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/textctrl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/textentry.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/textentry.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/ioswrap.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/textctrl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/slider.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/slider.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/gauge.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/gauge.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/scrolwin.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/generic/scrolwin.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/dirdlg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/dirdlg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/toolbar.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/tbarbase.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/toolbar.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imaglist.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/imaglist.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/combobox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/combobox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/layout.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/sizer.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/choicdlg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/generic/choicdgg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/textdlg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/generic/textdlgg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/valtext.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/filedlg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/filedlg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/mdi.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/mdi.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/aui/framemanager.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/file.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/filename.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/config.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/confbase.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/base64.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/regconf.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/registry.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/fileconf.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/textfile.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/textbuf.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/convauto.h:\r
+\r
+MainFrame.h:\r
+\r
+wxcrafter.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xmlres.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/filesys.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/artprov.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/animate.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/animdecod.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/generic/animate.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xml/xml.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bmp.h:\r
diff --git a/fdmdv2/build/codelite/hamlib_trial/Release/visiWidgits.conf b/fdmdv2/build/codelite/hamlib_trial/Release/visiWidgits.conf
new file mode 100644 (file)
index 0000000..e2f3270
--- /dev/null
@@ -0,0 +1,5 @@
+[MainFrame]\r
+top=732\r
+left=122\r
+width=732\r
+height=539\r
diff --git a/fdmdv2/build/codelite/hamlib_trial/Release/wxcrafter.o.d b/fdmdv2/build/codelite/hamlib_trial/Release/wxcrafter.o.d
new file mode 100644 (file)
index 0000000..83bc10b
--- /dev/null
@@ -0,0 +1,558 @@
+Release/wxcrafter.o: wxcrafter.cpp wxcrafter.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/settings.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/colour.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/defs.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/platform.h \\r
+ D:\bin\wxWidgets-2.9.4\lib\gcc_dll\mswu/wx/setup.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/libraries.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/gccpriv.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/chkconf.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/chkconf.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/version.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/cpp.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/dlimpexp.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/debug.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/chartype.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/windowid.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/winundef.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/features.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/gdiobj.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/object.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/memory.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/string.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/wxcrtbase.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/strvararg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/strconv.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/buffer.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/fontenc.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/unichar.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/stringimpl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/beforestd.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/afterstd.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/stringops.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/iosfwrap.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/crt.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/wxcrt.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/wxcrtvararg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msgout.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xti.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/rtti.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/flags.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xti2.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/variant.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/arrstr.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/list.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/longlong.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/datetime.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/anystr.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/dynarray.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/any.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/if.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/typeinfo.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/colour.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/font.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/gdicmn.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/hashmap.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/math.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/font.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xmlres.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/filesys.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/stream.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/filefn.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/filename.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/intl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/translation.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/language.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/scopedptr.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/checkeddelete.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/file.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/bitmap.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/image.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagbmp.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagpng.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/versioninfo.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imaggif.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagpcx.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagjpeg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagtga.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagtiff.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagpnm.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagxpm.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagiff.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/bitmap.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/gdiimage.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/palette.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/palette.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/icon.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/iconloc.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/icon.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/artprov.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/iconbndl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/animate.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/animdecod.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/log.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/thread.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/generic/logg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/control.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/window.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/event.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/clntdata.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/cursor.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/cursor.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/utils.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/implicitconversion.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/mousestate.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/kbdstate.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/platinfo.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/tracker.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/convertible.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/region.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/region.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/validate.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/accel.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/accel.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/window.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/control.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/timer.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/stopwatch.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/time.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/generic/animate.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/vector.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/scopeguard.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/except.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/movable.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/pod.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xml/xml.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bmp.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/frame.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/toplevel.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/nonownedwnd.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/nonownedwnd.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/containr.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/weakref.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/int2type.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/toplevel.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/statusbr.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/statusbar.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/tooltip.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/tooltip.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/frame.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/sizer.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/panel.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/panel.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/menu.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/menuitem.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/menuitem.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/ownerdrw.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/ownerdrw.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/menu.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/toolbar.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/tbarbase.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/toolbar.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imaglist.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/imaglist.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/dialog.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/dialog.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/notebook.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/bookctrl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/withimages.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/notebook.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/statbox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/statbox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/checkbox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/checkbox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/stattext.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/stattext.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/combobox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/textctrl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/textentry.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/textentry.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/ioswrap.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/textctrl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/ctrlsub.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/ctrlsub.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/combobox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/choice.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/choice.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/radiobox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/radiobox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/button.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/anybutton.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/anybutton.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/button.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/slider.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/slider.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/radiobut.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/radiobut.h\r
+\r
+wxcrafter.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/settings.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/colour.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/defs.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/platform.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\lib\gcc_dll\mswu/wx/setup.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/libraries.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/gccpriv.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/chkconf.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/chkconf.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/version.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/cpp.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/dlimpexp.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/debug.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/chartype.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/windowid.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/winundef.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/features.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/gdiobj.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/object.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/memory.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/string.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/wxcrtbase.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/strvararg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/strconv.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/buffer.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/fontenc.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/unichar.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/stringimpl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/beforestd.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/afterstd.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/stringops.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/iosfwrap.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/crt.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/wxcrt.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/wxcrtvararg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msgout.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xti.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/rtti.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/flags.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xti2.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/variant.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/arrstr.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/list.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/longlong.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/datetime.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/anystr.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/dynarray.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/any.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/if.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/typeinfo.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/colour.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/font.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/gdicmn.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/hashmap.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/math.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/font.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xmlres.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/filesys.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/stream.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/filefn.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/filename.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/intl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/translation.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/language.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/scopedptr.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/checkeddelete.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/file.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/bitmap.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/image.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagbmp.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagpng.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/versioninfo.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imaggif.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagpcx.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagjpeg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagtga.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagtiff.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagpnm.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagxpm.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagiff.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/bitmap.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/gdiimage.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/palette.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/palette.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/icon.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/iconloc.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/icon.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/artprov.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/iconbndl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/animate.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/animdecod.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/log.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/thread.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/generic/logg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/control.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/window.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/event.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/clntdata.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/cursor.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/cursor.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/utils.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/implicitconversion.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/mousestate.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/kbdstate.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/platinfo.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/tracker.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/convertible.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/region.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/region.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/validate.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/accel.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/accel.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/window.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/control.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/timer.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/stopwatch.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/time.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/generic/animate.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/vector.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/scopeguard.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/except.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/movable.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/pod.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xml/xml.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bmp.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/frame.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/toplevel.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/nonownedwnd.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/nonownedwnd.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/containr.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/weakref.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/int2type.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/toplevel.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/statusbr.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/statusbar.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/tooltip.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/tooltip.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/frame.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/sizer.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/panel.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/panel.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/menu.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/menuitem.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/menuitem.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/ownerdrw.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/ownerdrw.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/menu.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/toolbar.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/tbarbase.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/toolbar.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imaglist.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/imaglist.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/dialog.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/dialog.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/notebook.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/bookctrl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/withimages.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/notebook.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/statbox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/statbox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/checkbox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/checkbox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/stattext.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/stattext.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/combobox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/textctrl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/textentry.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/textentry.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/ioswrap.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/textctrl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/ctrlsub.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/ctrlsub.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/combobox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/choice.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/choice.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/radiobox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/radiobox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/button.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/anybutton.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/anybutton.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/button.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/slider.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/slider.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/radiobut.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/radiobut.h:\r
diff --git a/fdmdv2/build/codelite/hamlib_trial/Release/wxcrafter_bitmaps.o.d b/fdmdv2/build/codelite/hamlib_trial/Release/wxcrafter_bitmaps.o.d
new file mode 100644 (file)
index 0000000..7742002
--- /dev/null
@@ -0,0 +1,574 @@
+Release/wxcrafter_bitmaps.o: wxcrafter_bitmaps.cpp \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/wxprec.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/defs.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/platform.h \\r
+ D:\bin\wxWidgets-2.9.4\lib\gcc_dll\mswu/wx/setup.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/libraries.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/gccpriv.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/chkconf.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/chkconf.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/version.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/cpp.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/dlimpexp.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/debug.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/chartype.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/windowid.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/winundef.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/features.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/filesys.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/stream.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/object.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/memory.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/string.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/wxcrtbase.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/strvararg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/strconv.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/buffer.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/fontenc.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/unichar.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/stringimpl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/beforestd.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/afterstd.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/stringops.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/iosfwrap.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/crt.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/wxcrt.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/wxcrtvararg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msgout.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xti.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/rtti.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/flags.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xti2.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/filefn.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/list.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/arrstr.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/datetime.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/longlong.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/anystr.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/dynarray.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/filename.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/intl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/translation.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/language.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/hashmap.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/scopedptr.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/checkeddelete.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/file.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/fs_mem.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/bitmap.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/gdicmn.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/math.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/colour.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/gdiobj.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/variant.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/any.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/if.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/typeinfo.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/colour.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/image.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagbmp.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagpng.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/versioninfo.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imaggif.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagpcx.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagjpeg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagtga.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagtiff.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagpnm.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagxpm.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/imagiff.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/bitmap.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/gdiimage.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/palette.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/palette.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xmlres.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/icon.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/iconloc.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/icon.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/artprov.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/iconbndl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/animate.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/animdecod.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/log.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/thread.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/generic/logg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/control.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/window.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/event.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/clntdata.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/cursor.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/cursor.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/utils.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/implicitconversion.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/mousestate.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/kbdstate.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/platinfo.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/tracker.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/convertible.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/font.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/font.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/region.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/region.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/validate.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/accel.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/accel.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/window.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/settings.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/msw/control.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/timer.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/stopwatch.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/time.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/generic/animate.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/vector.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/scopeguard.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/except.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/movable.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/meta/pod.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xml/xml.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_all.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_animatctrl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bannerwindow.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bmp.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bmpbt.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bmpcbox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bttn.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_cald.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_chckb.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_chckl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_choic.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_choicbk.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_clrpicker.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_cmdlinkbn.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_collpane.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_combo.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_comboctrl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_datectrl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_dirpicker.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_dlg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_editlbox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_filectrl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_filepicker.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_fontpicker.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_frame.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_gauge.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_gdctl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_grid.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_html.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_htmllbox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_hyperlink.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_listb.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_listc.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_listbk.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_mdi.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_menu.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_notbk.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_odcombo.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_panel.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_propdlg.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_radbt.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_radbx.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_scrol.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_scwin.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_sizer.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/sizer.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/gbsizer.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_slidr.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_spin.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_split.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_srchctrl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_statbar.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_stbox.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_stbmp.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_sttxt.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_stlin.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_text.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_tglbtn.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_timectrl.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_toolb.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_toolbk.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_tree.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_treebk.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_unkwn.h \\r
+ D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_wizrd.h\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/wxprec.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/defs.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/platform.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\lib\gcc_dll\mswu/wx/setup.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/libraries.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/gccpriv.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/chkconf.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/chkconf.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/version.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/cpp.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/dlimpexp.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/debug.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/chartype.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/windowid.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/winundef.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/features.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/filesys.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/stream.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/object.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/memory.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/string.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/wxcrtbase.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/strvararg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/strconv.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/buffer.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/fontenc.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/unichar.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/stringimpl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/beforestd.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/afterstd.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/stringops.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/iosfwrap.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/crt.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/wxcrt.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/wxcrtvararg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msgout.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xti.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/rtti.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/flags.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xti2.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/filefn.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/list.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/arrstr.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/datetime.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/longlong.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/anystr.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/dynarray.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/filename.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/intl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/translation.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/language.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/hashmap.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/scopedptr.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/checkeddelete.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/file.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/fs_mem.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/bitmap.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/gdicmn.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/math.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/colour.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/gdiobj.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/variant.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/any.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/if.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/typeinfo.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/colour.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/image.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagbmp.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagpng.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/versioninfo.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imaggif.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagpcx.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagjpeg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagtga.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagtiff.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagpnm.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagxpm.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/imagiff.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/bitmap.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/gdiimage.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/palette.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/palette.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xmlres.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/icon.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/iconloc.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/icon.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/artprov.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/iconbndl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/animate.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/animdecod.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/log.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/thread.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/generic/logg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/control.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/window.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/event.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/clntdata.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/cursor.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/cursor.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/utils.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/implicitconversion.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/mousestate.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/kbdstate.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/platinfo.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/tracker.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/convertible.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/font.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/font.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/region.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/region.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/validate.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/accel.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/accel.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/window.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/settings.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/msw/control.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/timer.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/stopwatch.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/time.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/generic/animate.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/vector.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/scopeguard.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/except.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/movable.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/meta/pod.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xml/xml.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_all.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_animatctrl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bannerwindow.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bmp.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bmpbt.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bmpcbox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bttn.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_cald.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_chckb.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_chckl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_choic.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_choicbk.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_clrpicker.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_cmdlinkbn.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_collpane.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_combo.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_comboctrl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_datectrl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_dirpicker.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_dlg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_editlbox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_filectrl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_filepicker.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_fontpicker.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_frame.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_gauge.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_gdctl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_grid.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_html.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_htmllbox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_hyperlink.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_listb.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_listc.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_listbk.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_mdi.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_menu.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_notbk.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_odcombo.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_panel.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_propdlg.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_radbt.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_radbx.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_scrol.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_scwin.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_sizer.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/sizer.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/gbsizer.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_slidr.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_spin.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_split.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_srchctrl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_statbar.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_stbox.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_stbmp.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_sttxt.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_stlin.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_text.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_tglbtn.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_timectrl.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_toolb.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_toolbk.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_tree.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_treebk.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_unkwn.h:\r
+\r
+D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_wizrd.h:\r
diff --git a/fdmdv2/build/codelite/hamlib_trial/dlg_rig_ctrl.cpp b/fdmdv2/build/codelite/hamlib_trial/dlg_rig_ctrl.cpp
new file mode 100644 (file)
index 0000000..82ba665
--- /dev/null
@@ -0,0 +1,10 @@
+#include "dlg_rig_ctrl.h"
+
+DialogRigCtrl::DialogRigCtrl(wxWindow* parent) : DlgRigCtrlBase(parent)
+{
+}
+
+DialogRigCtrl::~DialogRigCtrl()
+{
+}
+
diff --git a/fdmdv2/build/codelite/hamlib_trial/dlg_rig_ctrl.h b/fdmdv2/build/codelite/hamlib_trial/dlg_rig_ctrl.h
new file mode 100644 (file)
index 0000000..88f2f88
--- /dev/null
@@ -0,0 +1,11 @@
+#ifndef DIALOGRIGCTRL_H
+#define DIALOGRIGCTRL_H
+#include "wxcrafter.h"
+
+class DialogRigCtrl : public DlgRigCtrlBase
+{
+public:
+    DialogRigCtrl(wxWindow* parent);
+    virtual ~DialogRigCtrl();
+};
+#endif // DIALOGRIGCTRL_H
diff --git a/fdmdv2/build/codelite/hamlib_trial/hamlib_trial.mk b/fdmdv2/build/codelite/hamlib_trial/hamlib_trial.mk
new file mode 100644 (file)
index 0000000..c5cffb2
--- /dev/null
@@ -0,0 +1,162 @@
+##\r
+## Auto Generated makefile by CodeLite IDE\r
+## any manual changes will be erased      \r
+##\r
+## Release\r
+ProjectName            :=hamlib_trial\r
+ConfigurationName      :=Release\r
+WorkspacePath          := "D:\Projects\Radio\fdmdv2\build\codelite"\r
+ProjectPath            := "D:\Projects\Radio\fdmdv2\build\codelite\hamlib_trial"\r
+IntermediateDirectory  :=./Release\r
+OutDir                 := $(IntermediateDirectory)\r
+CurrentFileName        :=\r
+CurrentFilePath        :=\r
+CurrentFileFullPath    :=\r
+User                   :=wittend\r
+Date                   :=3/25/2013\r
+CodeLitePath           :="D:\bin\CodeLite"\r
+LinkerName             :=g++\r
+SharedObjectLinkerName :=g++ -shared -fPIC\r
+ObjectSuffix           :=.o\r
+DependSuffix           :=.o.d\r
+PreprocessSuffix       :=.o.i\r
+DebugSwitch            :=-gstab\r
+IncludeSwitch          :=-I\r
+LibrarySwitch          :=-l\r
+OutputSwitch           :=-o \r
+LibraryPathSwitch      :=-L\r
+PreprocessorSwitch     :=-D\r
+SourceSwitch           :=-c \r
+OutputFile             :=$(IntermediateDirectory)/$(ProjectName)\r
+Preprocessors          :=\r
+ObjectSwitch           :=-o \r
+ArchiveOutputSwitch    := \r
+PreprocessOnlySwitch   :=-E \r
+ObjectsFileList        :="hamlib_trial.txt"\r
+PCHCompileFlags        :=\r
+MakeDirCommand         :=makedir\r
+RcCmpOptions           := $(shell wx-config --rcflags)\r
+RcCompilerName         :=windres\r
+LinkOptions            :=  $(shell wx-config --libs) -mwindows\r
+IncludePath            :=  $(IncludeSwitch). $(IncludeSwitch). $(IncludeSwitch)D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib $(IncludeSwitch)D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include \r
+IncludePCH             := \r
+RcIncludePath          := \r
+Libs                   := \r
+ArLibs                 :=  \r
+LibPath                := $(LibraryPathSwitch). \r
+\r
+##\r
+## Common variables\r
+## AR, CXX, CC, CXXFLAGS and CFLAGS can be overriden using an environment variables\r
+##\r
+AR       := ar rcus\r
+CXX      := g++\r
+CC       := gcc\r
+CXXFLAGS :=  -O2 -Wall $(shell wx-config --cflags)  -DSVN_REVISION=\"1225\"  $(Preprocessors)\r
+CFLAGS   :=  -O2 -Wall  -DSVN_REVISION=\"1225\"  $(Preprocessors)\r
+\r
+\r
+##\r
+## User defined environment variables\r
+##\r
+CodeLiteDir:=D:\bin\CodeLite\r
+WXWIN:=D:\bin\wxWidgets-2.9.4\r
+PATH:=$(WXWIN)\lib\gcc_dll;$(PATH)\r
+WXCFG:=gcc_dll\mswu\r
+UNIT_TEST_PP_SRC_DIR:=D:\bin\UnitTest++1.3\r
+Objects0=$(IntermediateDirectory)/main$(ObjectSuffix) $(IntermediateDirectory)/MainFrame$(ObjectSuffix) $(IntermediateDirectory)/wxcrafter$(ObjectSuffix) $(IntermediateDirectory)/wxcrafter_bitmaps$(ObjectSuffix) $(IntermediateDirectory)/win_resources.rc$(ObjectSuffix) $(IntermediateDirectory)/dlg_rig_ctrl$(ObjectSuffix) \r
+\r
+\r
+\r
+Objects=$(Objects0) \r
+\r
+##\r
+## Main Build Targets \r
+##\r
+.PHONY: all clean PreBuild PrePreBuild PostBuild\r
+all: $(OutputFile)\r
+\r
+$(OutputFile): $(IntermediateDirectory)/.d $(Objects) \r
+       @$(MakeDirCommand) $(@D)\r
+       @echo "" > $(IntermediateDirectory)/.d\r
+       @echo $(Objects0)  > $(ObjectsFileList)\r
+       $(LinkerName) $(OutputSwitch)$(OutputFile) @$(ObjectsFileList) $(LibPath) $(Libs) $(LinkOptions)\r
+\r
+$(IntermediateDirectory)/.d:\r
+       @$(MakeDirCommand) "./Release"\r
+\r
+PreBuild:\r
+\r
+\r
+##\r
+## Objects\r
+##\r
+$(IntermediateDirectory)/main$(ObjectSuffix): main.cpp $(IntermediateDirectory)/main$(DependSuffix)\r
+       $(CXX) $(IncludePCH) $(SourceSwitch) "D:/Projects/Radio/fdmdv2/build/codelite/hamlib_trial/main.cpp" $(CXXFLAGS) $(ObjectSwitch)$(IntermediateDirectory)/main$(ObjectSuffix) $(IncludePath)\r
+$(IntermediateDirectory)/main$(DependSuffix): main.cpp\r
+       @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) -MG -MP -MT$(IntermediateDirectory)/main$(ObjectSuffix) -MF$(IntermediateDirectory)/main$(DependSuffix) -MM "main.cpp"\r
+\r
+$(IntermediateDirectory)/main$(PreprocessSuffix): main.cpp\r
+       @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) $(PreprocessOnlySwitch) $(OutputSwitch) $(IntermediateDirectory)/main$(PreprocessSuffix) "main.cpp"\r
+\r
+$(IntermediateDirectory)/MainFrame$(ObjectSuffix): MainFrame.cpp $(IntermediateDirectory)/MainFrame$(DependSuffix)\r
+       $(CXX) $(IncludePCH) $(SourceSwitch) "D:/Projects/Radio/fdmdv2/build/codelite/hamlib_trial/MainFrame.cpp" $(CXXFLAGS) $(ObjectSwitch)$(IntermediateDirectory)/MainFrame$(ObjectSuffix) $(IncludePath)\r
+$(IntermediateDirectory)/MainFrame$(DependSuffix): MainFrame.cpp\r
+       @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) -MG -MP -MT$(IntermediateDirectory)/MainFrame$(ObjectSuffix) -MF$(IntermediateDirectory)/MainFrame$(DependSuffix) -MM "MainFrame.cpp"\r
+\r
+$(IntermediateDirectory)/MainFrame$(PreprocessSuffix): MainFrame.cpp\r
+       @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) $(PreprocessOnlySwitch) $(OutputSwitch) $(IntermediateDirectory)/MainFrame$(PreprocessSuffix) "MainFrame.cpp"\r
+\r
+$(IntermediateDirectory)/wxcrafter$(ObjectSuffix): wxcrafter.cpp $(IntermediateDirectory)/wxcrafter$(DependSuffix)\r
+       $(CXX) $(IncludePCH) $(SourceSwitch) "D:/Projects/Radio/fdmdv2/build/codelite/hamlib_trial/wxcrafter.cpp" $(CXXFLAGS) $(ObjectSwitch)$(IntermediateDirectory)/wxcrafter$(ObjectSuffix) $(IncludePath)\r
+$(IntermediateDirectory)/wxcrafter$(DependSuffix): wxcrafter.cpp\r
+       @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) -MG -MP -MT$(IntermediateDirectory)/wxcrafter$(ObjectSuffix) -MF$(IntermediateDirectory)/wxcrafter$(DependSuffix) -MM "wxcrafter.cpp"\r
+\r
+$(IntermediateDirectory)/wxcrafter$(PreprocessSuffix): wxcrafter.cpp\r
+       @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) $(PreprocessOnlySwitch) $(OutputSwitch) $(IntermediateDirectory)/wxcrafter$(PreprocessSuffix) "wxcrafter.cpp"\r
+\r
+$(IntermediateDirectory)/wxcrafter_bitmaps$(ObjectSuffix): wxcrafter_bitmaps.cpp $(IntermediateDirectory)/wxcrafter_bitmaps$(DependSuffix)\r
+       $(CXX) $(IncludePCH) $(SourceSwitch) "D:/Projects/Radio/fdmdv2/build/codelite/hamlib_trial/wxcrafter_bitmaps.cpp" $(CXXFLAGS) $(ObjectSwitch)$(IntermediateDirectory)/wxcrafter_bitmaps$(ObjectSuffix) $(IncludePath)\r
+$(IntermediateDirectory)/wxcrafter_bitmaps$(DependSuffix): wxcrafter_bitmaps.cpp\r
+       @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) -MG -MP -MT$(IntermediateDirectory)/wxcrafter_bitmaps$(ObjectSuffix) -MF$(IntermediateDirectory)/wxcrafter_bitmaps$(DependSuffix) -MM "wxcrafter_bitmaps.cpp"\r
+\r
+$(IntermediateDirectory)/wxcrafter_bitmaps$(PreprocessSuffix): wxcrafter_bitmaps.cpp\r
+       @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) $(PreprocessOnlySwitch) $(OutputSwitch) $(IntermediateDirectory)/wxcrafter_bitmaps$(PreprocessSuffix) "wxcrafter_bitmaps.cpp"\r
+\r
+$(IntermediateDirectory)/win_resources.rc$(ObjectSuffix): win_resources.rc\r
+       $(RcCompilerName) -i "D:/Projects/Radio/fdmdv2/build/codelite/hamlib_trial/win_resources.rc" $(RcCmpOptions)   $(ObjectSwitch)$(IntermediateDirectory)/win_resources.rc$(ObjectSuffix) $(RcIncludePath)\r
+$(IntermediateDirectory)/dlg_rig_ctrl$(ObjectSuffix): dlg_rig_ctrl.cpp $(IntermediateDirectory)/dlg_rig_ctrl$(DependSuffix)\r
+       $(CXX) $(IncludePCH) $(SourceSwitch) "D:/Projects/Radio/fdmdv2/build/codelite/hamlib_trial/dlg_rig_ctrl.cpp" $(CXXFLAGS) $(ObjectSwitch)$(IntermediateDirectory)/dlg_rig_ctrl$(ObjectSuffix) $(IncludePath)\r
+$(IntermediateDirectory)/dlg_rig_ctrl$(DependSuffix): dlg_rig_ctrl.cpp\r
+       @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) -MG -MP -MT$(IntermediateDirectory)/dlg_rig_ctrl$(ObjectSuffix) -MF$(IntermediateDirectory)/dlg_rig_ctrl$(DependSuffix) -MM "dlg_rig_ctrl.cpp"\r
+\r
+$(IntermediateDirectory)/dlg_rig_ctrl$(PreprocessSuffix): dlg_rig_ctrl.cpp\r
+       @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) $(PreprocessOnlySwitch) $(OutputSwitch) $(IntermediateDirectory)/dlg_rig_ctrl$(PreprocessSuffix) "dlg_rig_ctrl.cpp"\r
+\r
+\r
+-include $(IntermediateDirectory)/*$(DependSuffix)\r
+##\r
+## Clean\r
+##\r
+clean:\r
+       $(RM) $(IntermediateDirectory)/main$(ObjectSuffix)\r
+       $(RM) $(IntermediateDirectory)/main$(DependSuffix)\r
+       $(RM) $(IntermediateDirectory)/main$(PreprocessSuffix)\r
+       $(RM) $(IntermediateDirectory)/MainFrame$(ObjectSuffix)\r
+       $(RM) $(IntermediateDirectory)/MainFrame$(DependSuffix)\r
+       $(RM) $(IntermediateDirectory)/MainFrame$(PreprocessSuffix)\r
+       $(RM) $(IntermediateDirectory)/wxcrafter$(ObjectSuffix)\r
+       $(RM) $(IntermediateDirectory)/wxcrafter$(DependSuffix)\r
+       $(RM) $(IntermediateDirectory)/wxcrafter$(PreprocessSuffix)\r
+       $(RM) $(IntermediateDirectory)/wxcrafter_bitmaps$(ObjectSuffix)\r
+       $(RM) $(IntermediateDirectory)/wxcrafter_bitmaps$(DependSuffix)\r
+       $(RM) $(IntermediateDirectory)/wxcrafter_bitmaps$(PreprocessSuffix)\r
+       $(RM) $(IntermediateDirectory)/win_resources.rc$(ObjectSuffix)\r
+       $(RM) $(IntermediateDirectory)/dlg_rig_ctrl$(ObjectSuffix)\r
+       $(RM) $(IntermediateDirectory)/dlg_rig_ctrl$(DependSuffix)\r
+       $(RM) $(IntermediateDirectory)/dlg_rig_ctrl$(PreprocessSuffix)\r
+       $(RM) $(OutputFile)\r
+       $(RM) $(OutputFile).exe\r
+       $(RM) "../.build-release/hamlib_trial"\r
+\r
+\r
diff --git a/fdmdv2/build/codelite/hamlib_trial/hamlib_trial.project b/fdmdv2/build/codelite/hamlib_trial/hamlib_trial.project
new file mode 100644 (file)
index 0000000..1217de4
--- /dev/null
@@ -0,0 +1,123 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<CodeLite_Project Name="hamlib_trial" InternalType="GUI">
+  <Plugins>
+    <Plugin Name="qmake">
+      <![CDATA[00010001N0007Release000000000000]]>
+    </Plugin>
+  </Plugins>
+  <Description/>
+  <Dependencies/>
+  <VirtualDirectory Name="src">
+    <File Name="main.cpp"/>
+    <File Name="MainFrame.cpp"/>
+    <File Name="wxcrafter.cpp"/>
+    <File Name="wxcrafter_bitmaps.cpp"/>
+  </VirtualDirectory>
+  <VirtualDirectory Name="include">
+    <File Name="MainFrame.h"/>
+    <File Name="wxcrafter.h"/>
+    <File Name="main.h"/>
+  </VirtualDirectory>
+  <VirtualDirectory Name="resources">
+    <File Name="wxcrafter.wxcp"/>
+    <File Name="win_resources.rc"/>
+  </VirtualDirectory>
+  <Dependencies Name="Debug"/>
+  <Dependencies Name="Release"/>
+  <Settings Type="Executable">
+    <GlobalSettings>
+      <Compiler Options="" C_Options="">
+        <IncludePath Value="."/>
+      </Compiler>
+      <Linker Options="">
+        <LibraryPath Value="."/>
+      </Linker>
+      <ResourceCompiler Options=""/>
+    </GlobalSettings>
+    <Configuration Name="Debug" CompilerType="gnu g++" DebuggerType="GNU gdb debugger" Type="Executable" BuildCmpWithGlobalSettings="append" BuildLnkWithGlobalSettings="append" BuildResWithGlobalSettings="append">
+      <Compiler Options="-g;-O0;-Wall;$(shell wx-config --cflags --debug)" C_Options="-g;-O0;-Wall" Required="yes" PreCompiledHeader="" PCHInCommandLine="no" UseDifferentPCHFlags="no" PCHFlags="">
+        <IncludePath Value="."/>
+      </Compiler>
+      <Linker Options="$(shell wx-config --libs --debug);-mwindows" Required="yes"/>
+      <ResourceCompiler Options="$(shell wx-config --rcflags)" Required="no"/>
+      <General OutputFile="$(IntermediateDirectory)/$(ProjectName)" IntermediateDirectory="./Debug" Command="./$(ProjectName)" CommandArguments="" UseSeparateDebugArgs="no" DebugArguments="" WorkingDirectory="$(IntermediateDirectory)" PauseExecWhenProcTerminates="no"/>
+      <Environment EnvVarSetName="&lt;Use Defaults&gt;" DbgSetName="&lt;Use Defaults&gt;">
+        <![CDATA[]]>
+      </Environment>
+      <Debugger IsRemote="no" RemoteHostName="" RemoteHostPort="" DebuggerPath="">
+        <PostConnectCommands/>
+        <StartupCommands/>
+      </Debugger>
+      <PreBuild/>
+      <PostBuild/>
+      <CustomBuild Enabled="no">
+        <RebuildCommand/>
+        <CleanCommand/>
+        <BuildCommand/>
+        <PreprocessFileCommand/>
+        <SingleFileCommand/>
+        <MakefileGenerationCommand/>
+        <ThirdPartyToolName>None</ThirdPartyToolName>
+        <WorkingDirectory/>
+      </CustomBuild>
+      <AdditionalRules>
+        <CustomPostBuild/>
+        <CustomPreBuild/>
+      </AdditionalRules>
+      <Completion EnableCpp11="no">
+        <ClangCmpFlagsC/>
+        <ClangCmpFlags/>
+        <ClangPP/>
+        <SearchPaths/>
+      </Completion>
+    </Configuration>
+    <Configuration Name="Release" CompilerType="gnu g++" DebuggerType="GNU gdb debugger" Type="Executable" BuildCmpWithGlobalSettings="append" BuildLnkWithGlobalSettings="append" BuildResWithGlobalSettings="append">
+      <Compiler Options="-O2;-Wall;$(shell wx-config --cflags)" C_Options="-O2;-Wall" Required="yes" PreCompiledHeader="" PCHInCommandLine="no" UseDifferentPCHFlags="no" PCHFlags="">
+        <IncludePath Value="."/>
+        <IncludePath Value="D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib"/>
+        <IncludePath Value="D:\Projects\Radio\fdmdv2\build\codelite\hamlib-win32-1.2.15.3\include"/>
+      </Compiler>
+      <Linker Options="$(shell wx-config --libs);-mwindows" Required="yes"/>
+      <ResourceCompiler Options="$(shell wx-config --rcflags)" Required="no"/>
+      <General OutputFile="$(IntermediateDirectory)/$(ProjectName)" IntermediateDirectory="./Release" Command="./$(ProjectName)" CommandArguments="" UseSeparateDebugArgs="no" DebugArguments="" WorkingDirectory="$(IntermediateDirectory)" PauseExecWhenProcTerminates="no"/>
+      <Environment EnvVarSetName="&lt;Use Defaults&gt;" DbgSetName="&lt;Use Defaults&gt;">
+        <![CDATA[]]>
+      </Environment>
+      <Debugger IsRemote="no" RemoteHostName="" RemoteHostPort="" DebuggerPath="">
+        <PostConnectCommands/>
+        <StartupCommands/>
+      </Debugger>
+      <PreBuild/>
+      <PostBuild/>
+      <CustomBuild Enabled="no">
+        <RebuildCommand/>
+        <CleanCommand/>
+        <BuildCommand/>
+        <PreprocessFileCommand/>
+        <SingleFileCommand/>
+        <MakefileGenerationCommand/>
+        <ThirdPartyToolName>None</ThirdPartyToolName>
+        <WorkingDirectory/>
+      </CustomBuild>
+      <AdditionalRules>
+        <CustomPostBuild/>
+        <CustomPreBuild/>
+      </AdditionalRules>
+      <Completion EnableCpp11="no">
+        <ClangCmpFlagsC/>
+        <ClangCmpFlags/>
+        <ClangPP/>
+        <SearchPaths/>
+      </Completion>
+    </Configuration>
+  </Settings>
+  <VirtualDirectory Name="rig_ctrl">
+    <File Name="dlg_rig_ctrl.h"/>
+    <File Name="dlg_rig_ctrl.cpp"/>
+  </VirtualDirectory>
+  <VirtualDirectory Name="wxcrafter">
+    <VirtualDirectory Name="XRC">
+      <File Name="wxcrafter.xrc"/>
+    </VirtualDirectory>
+  </VirtualDirectory>
+</CodeLite_Project>
diff --git a/fdmdv2/build/codelite/hamlib_trial/hamlib_trial.txt b/fdmdv2/build/codelite/hamlib_trial/hamlib_trial.txt
new file mode 100644 (file)
index 0000000..2ade1a7
--- /dev/null
@@ -0,0 +1 @@
+./Release/main.o ./Release/MainFrame.o ./Release/wxcrafter.o ./Release/wxcrafter_bitmaps.o ./Release/win_resources.rc.o ./Release/dlg_rig_ctrl.o   \r
diff --git a/fdmdv2/build/codelite/hamlib_trial/main.cpp b/fdmdv2/build/codelite/hamlib_trial/main.cpp
new file mode 100644 (file)
index 0000000..56eb165
--- /dev/null
@@ -0,0 +1,24 @@
+#include "main.h"
+#include "MainFrame.h"
+
+IMPLEMENT_APP(MainApp)
+
+bool MainApp::OnInit()
+{
+    // Add the common image handlers
+    wxImage::AddHandler( new wxPNGHandler );
+    wxImage::AddHandler( new wxJPEGHandler );
+
+    SetVendorName(wxT("CODEC2-Project"));
+    SetAppName(wxT("Hamlib test"));
+
+    wxConfig *pConfig = new wxConfig();
+    wxFileConfig *pFConfig = new wxFileConfig(wxT("visiWidgits"), wxT("WWR Development"), wxT("visiWidgits.conf"), wxT("visiWidgits.conf"),  wxCONFIG_USE_LOCAL_FILE | wxCONFIG_USE_RELATIVE_PATH);
+    pConfig->Set(pFConfig);
+    pConfig->SetRecordDefaults();
+
+
+    MainFrame *mainFrame = new MainFrame(NULL);
+    SetTopWindow(mainFrame);
+    return GetTopWindow()->Show();
+}
diff --git a/fdmdv2/build/codelite/hamlib_trial/main.h b/fdmdv2/build/codelite/hamlib_trial/main.h
new file mode 100644 (file)
index 0000000..424bde9
--- /dev/null
@@ -0,0 +1,62 @@
+//==========================================================================
+// Name:            main.h
+//
+// Purpose:         Inclusions and constants for the entire visiWidgets program.
+// Created:         Mar. 01, 2013
+// Authors:         David Witten
+//
+// License:
+//
+//  You should have received a copy of the GNU General Public License
+//  along with this program; if not, see <http://www.gnu.org/licenses/>.
+//
+//==========================================================================
+#ifndef __HAMLIBTRIAL_MAIN__
+#define __HAMLIBTRIAL_MAIN__
+
+#include <wx/wx.h>
+#include <wx/aui/framemanager.h>
+#include <wx/app.h>
+#include <wx/event.h>
+#include "wx/file.h"
+#include "wx/filename.h"
+#include "wx/config.h"
+#include <wx/fileconf.h>
+#include <wx/image.h>
+
+#include "MainFrame.h"
+
+#include "rig.h"
+#include "rig_dll.h"
+#include "riglist.h"
+#include "rotator.h"
+#include "rotlist.h"
+
+#if defined(__WINDOWS__)
+#undef wxUSE_CONFIG_NATIVE
+#endif
+
+//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=
+// Class MainApp
+//
+// @class $(Name)
+// @author $(User)
+// @date $(Date)
+// @file $(CurrentFileName).$(CurrentFileExt)
+// @brief
+//
+//-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=
+// Define the MainApp
+class MainApp : public wxApp
+{
+public:
+    MainApp() {}
+    virtual ~MainApp() {}
+
+    virtual bool OnInit();
+};
+
+DECLARE_APP(MainApp)
+//IMPLEMENT_APP(MainApp)
+
+#endif //__HAMLIBTRIAL_MAIN__
diff --git a/fdmdv2/build/codelite/hamlib_trial/win_resources.rc b/fdmdv2/build/codelite/hamlib_trial/win_resources.rc
new file mode 100644 (file)
index 0000000..fa70c15
--- /dev/null
@@ -0,0 +1,2 @@
+#include "wx/msw/wx.rc"\r
+1 24 "wx/msw/wx.manifest"\r
diff --git a/fdmdv2/build/codelite/hamlib_trial/wxcrafter.cpp b/fdmdv2/build/codelite/hamlib_trial/wxcrafter.cpp
new file mode 100644 (file)
index 0000000..dcbd62d
--- /dev/null
@@ -0,0 +1,505 @@
+//////////////////////////////////////////////////////////////////////
+// This file was auto-generated by codelite's wxCrafter Plugin
+// Do not modify this file by hand!
+//////////////////////////////////////////////////////////////////////
+
+#include "wxcrafter.h"
+
+
+// Declare the bitmap loading function
+extern void wxC9ED9InitBitmapResources();
+
+static bool bBitmapLoaded = false;
+
+
+MainFrameBaseClass::MainFrameBaseClass(wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style)
+    : wxFrame(parent, id, title, pos, size, style)
+{
+    if ( !bBitmapLoaded ) {
+        // We need to initialise the default bitmap handler
+        wxXmlResource::Get()->AddHandler(new wxBitmapXmlHandler);
+        wxC9ED9InitBitmapResources();
+        bBitmapLoaded = true;
+    }
+    
+    wxBoxSizer* boxSizer1 = new wxBoxSizer(wxVERTICAL);
+    this->SetSizer(boxSizer1);
+    
+    m_mainPanel = new wxPanel(this, wxID_ANY, wxDefaultPosition, wxSize(-1,-1), wxTAB_TRAVERSAL);
+    
+    boxSizer1->Add(m_mainPanel, 1, wxEXPAND, 5);
+    
+    wxBoxSizer* boxSizer33 = new wxBoxSizer(wxVERTICAL);
+    m_mainPanel->SetSizer(boxSizer33);
+    
+    m_menuBar = new wxMenuBar(0);
+    this->SetMenuBar(m_menuBar);
+    
+    m_mbFile = new wxMenu();
+    m_menuBar->Append(m_mbFile, _("File"));
+    
+    m_mbiNew = new wxMenuItem(m_mbFile, wxID_NEW, _("New"), wxT(""), wxITEM_NORMAL);
+    m_mbFile->Append(m_mbiNew);
+    
+    m_mbiOpen = new wxMenuItem(m_mbFile, wxID_OPEN, _("Open"), wxT(""), wxITEM_NORMAL);
+    m_mbFile->Append(m_mbiOpen);
+    
+    m_mbiSave = new wxMenuItem(m_mbFile, wxID_SAVE, _("Save"), wxT(""), wxITEM_NORMAL);
+    m_mbFile->Append(m_mbiSave);
+    
+    m_mbiSaveAs = new wxMenuItem(m_mbFile, wxID_SAVEAS, _("Save As"), wxT(""), wxITEM_NORMAL);
+    m_mbFile->Append(m_mbiSaveAs);
+    
+    m_mbFile->AppendSeparator();
+    
+    m_mbiExit = new wxMenuItem(m_mbFile, wxID_EXIT, _("Exit    Alt-X"), _("Quit"), wxITEM_NORMAL);
+    m_mbFile->Append(m_mbiExit);
+    
+    m_mbTools = new wxMenu();
+    m_menuBar->Append(m_mbTools, _("Tools"));
+    
+    m_mbiPrefs = new wxMenuItem(m_mbTools, wxID_PREFERENCES, _("Preferences"), wxT(""), wxITEM_NORMAL);
+    m_mbTools->Append(m_mbiPrefs);
+    
+    m_mbHelp = new wxMenu();
+    m_menuBar->Append(m_mbHelp, _("Help"));
+    
+    m_menuItem9 = new wxMenuItem(m_mbHelp, wxID_ABOUT, _("About..."), wxT(""), wxITEM_NORMAL);
+    m_mbHelp->Append(m_menuItem9);
+    
+    m_mainToolbar = this->CreateToolBar(wxTB_FLAT, wxID_ANY);
+    m_mainToolbar->SetToolBitmapSize(wxSize(16,16));
+    
+    m_mainToolbar->AddTool(wxID_NEW, _("New"), wxXmlResource::Get()->LoadBitmap(wxT("placeholder16")), wxNullBitmap, wxITEM_NORMAL, _("New"), _("New"), NULL);
+    
+    m_mainToolbar->AddTool(wxID_OPEN, _("Tool Label"), wxXmlResource::Get()->LoadBitmap(wxT("placeholder16")), wxNullBitmap, wxITEM_NORMAL, _("Open"), _("Open"), NULL);
+    m_mainToolbar->Realize();
+    
+    
+    SetSizeHints(500,300);
+    if ( GetSizer() ) {
+         GetSizer()->Fit(this);
+    }
+    Centre(wxBOTH);
+    // Connect events
+    m_mainPanel->Connect(wxEVT_SIZE, wxSizeEventHandler(MainFrameBaseClass::OnSize), NULL, this);
+    this->Connect(m_mbiExit->GetId(), wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(MainFrameBaseClass::OnExit), NULL, this);
+    this->Connect(m_mbiPrefs->GetId(), wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(MainFrameBaseClass::OnToolsPrefs), NULL, this);
+    this->Connect(m_menuItem9->GetId(), wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(MainFrameBaseClass::OnAbout), NULL, this);
+    this->Connect(wxID_NEW, wxEVT_COMMAND_TOOL_CLICKED, wxCommandEventHandler(MainFrameBaseClass::OnNew), NULL, this);
+    this->Connect(wxID_OPEN, wxEVT_COMMAND_TOOL_CLICKED, wxCommandEventHandler(MainFrameBaseClass::OnOpen), NULL, this);
+    
+}
+
+MainFrameBaseClass::~MainFrameBaseClass()
+{
+    m_mainPanel->Disconnect(wxEVT_SIZE, wxSizeEventHandler(MainFrameBaseClass::OnSize), NULL, this);
+    this->Disconnect(m_mbiExit->GetId(), wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(MainFrameBaseClass::OnExit), NULL, this);
+    this->Disconnect(m_mbiPrefs->GetId(), wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(MainFrameBaseClass::OnToolsPrefs), NULL, this);
+    this->Disconnect(m_menuItem9->GetId(), wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(MainFrameBaseClass::OnAbout), NULL, this);
+    this->Disconnect(wxID_NEW, wxEVT_COMMAND_TOOL_CLICKED, wxCommandEventHandler(MainFrameBaseClass::OnNew), NULL, this);
+    this->Disconnect(wxID_OPEN, wxEVT_COMMAND_TOOL_CLICKED, wxCommandEventHandler(MainFrameBaseClass::OnOpen), NULL, this);
+    
+}
+
+DlgRigCtrlBase::DlgRigCtrlBase(wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style)
+    : wxDialog(parent, id, title, pos, size, style)
+{
+    if ( !bBitmapLoaded ) {
+        // We need to initialise the default bitmap handler
+        wxXmlResource::Get()->AddHandler(new wxBitmapXmlHandler);
+        wxC9ED9InitBitmapResources();
+        bBitmapLoaded = true;
+    }
+    
+    wxBoxSizer* boxSizer51 = new wxBoxSizer(wxVERTICAL);
+    this->SetSizer(boxSizer51);
+    
+    m_notebook53 = new wxNotebook(this, wxID_ANY, wxDefaultPosition, wxSize(-1, -1), wxBK_DEFAULT);
+    
+    boxSizer51->Add(m_notebook53, 1, wxALL|wxEXPAND, 2);
+    
+    m_panelHDWPTT = new wxPanel(m_notebook53, wxID_ANY, wxDefaultPosition, wxSize(-1,-1), wxTAB_TRAVERSAL);
+    m_panelHDWPTT->SetToolTip(_("Hardware Push-to-Talk"));
+    m_notebook53->AddPage(m_panelHDWPTT, _("Hardware PTT"), true);
+    
+    wxFlexGridSizer* flexGridSizer135 = new wxFlexGridSizer(  3, 1, 0, 0);
+    flexGridSizer135->SetFlexibleDirection( wxBOTH );
+    flexGridSizer135->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED );
+    flexGridSizer135->AddGrowableCol(1);
+    flexGridSizer135->AddGrowableRow(3);
+    m_panelHDWPTT->SetSizer(flexGridSizer135);
+    
+    wxStaticBoxSizer* staticBoxSizer169 = new wxStaticBoxSizer( new wxStaticBox(m_panelHDWPTT, wxID_ANY, wxT("")), wxVERTICAL);
+    
+    flexGridSizer135->Add(staticBoxSizer169, 0, wxALL|wxEXPAND, 2);
+    
+    m_checkBox7537 = new wxCheckBox(m_panelHDWPTT, wxID_ANY, _("PTT tone on right audio channel"), wxDefaultPosition, wxSize(-1,-1), 0);
+    m_checkBox7537->SetValue(false);
+    
+    staticBoxSizer169->Add(m_checkBox7537, 1, wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL, 2);
+    
+    wxGridSizer* gridSizer159 = new wxGridSizer(  1, 1, 0, 0);
+    
+    flexGridSizer135->Add(gridSizer159, 0, wxALL|wxALIGN_LEFT|wxALIGN_TOP, 2);
+    
+    wxStaticBoxSizer* staticBoxSizer157 = new wxStaticBoxSizer( new wxStaticBox(m_panelHDWPTT, wxID_ANY, _("h/w ptt device pin")), wxHORIZONTAL);
+    
+    gridSizer159->Add(staticBoxSizer157, 0, wxALL|wxEXPAND|wxALIGN_TOP, 2);
+    
+    wxBoxSizer* boxSizer175 = new wxBoxSizer(wxVERTICAL);
+    
+    staticBoxSizer157->Add(boxSizer175, 1, wxALL, 2);
+    
+    m_checkBox9112 = new wxCheckBox(m_panelHDWPTT, wxID_ANY, _("Use separate PTT device pin"), wxDefaultPosition, wxSize(-1,-1), 0);
+    m_checkBox9112->SetValue(false);
+    
+    boxSizer175->Add(m_checkBox9112, 0, wxALL|wxALIGN_TOP, 2);
+    
+    m_staticText173 = new wxStaticText(m_panelHDWPTT, wxID_ANY, _("Device:"), wxDefaultPosition, wxSize(-1,-1), 0);
+    
+    boxSizer175->Add(m_staticText173, 0, wxALL, 5);
+    
+    wxArrayString m_comboBox9313Arr;
+    m_comboBox9313 = new wxComboBox(m_panelHDWPTT, wxID_ANY, wxT(""), wxDefaultPosition, wxSize(-1,-1), m_comboBox9313Arr, 0);
+    
+    boxSizer175->Add(m_comboBox9313, 0, wxALL, 2);
+    
+    wxBoxSizer* boxSizer171 = new wxBoxSizer(wxHORIZONTAL);
+    
+    staticBoxSizer157->Add(boxSizer171, 1, wxALL, 2);
+    
+    wxBoxSizer* boxSizer12714 = new wxBoxSizer(wxVERTICAL);
+    
+    boxSizer171->Add(boxSizer12714, 1, wxALL|wxALIGN_CENTER_HORIZONTAL, 2);
+    
+    wxArrayString m_radioBox10115Arr;
+    m_radioBox10115Arr.Add(wxT("Normal (V-)"));
+    m_radioBox10115Arr.Add(wxT("Inverted (V+)"));
+    m_radioBox10115 = new wxRadioBox(m_panelHDWPTT, wxID_ANY, _("Use RTS"), wxDefaultPosition, wxSize(-1,-1), m_radioBox10115Arr, 2, wxRA_SPECIFY_COLS);
+    m_radioBox10115->SetSelection(0);
+    
+    boxSizer12714->Add(m_radioBox10115, 1, wxALL|wxALIGN_CENTER_HORIZONTAL, 2);
+    
+    wxArrayString m_radioBox10316Arr;
+    m_radioBox10316Arr.Add(wxT("Normal (V-)"));
+    m_radioBox10316Arr.Add(wxT("Inverted (V+)"));
+    m_radioBox10316 = new wxRadioBox(m_panelHDWPTT, wxID_ANY, _("Use DTR"), wxDefaultPosition, wxSize(-1,-1), m_radioBox10316Arr, 2, wxRA_SPECIFY_COLS);
+    m_radioBox10316->SetSelection(0);
+    
+    boxSizer12714->Add(m_radioBox10316, 1, wxALL|wxALIGN_CENTER_HORIZONTAL, 2);
+    
+    wxBoxSizer* boxSizer13118 = new wxBoxSizer(wxHORIZONTAL);
+    
+    boxSizer12714->Add(boxSizer13118, 0, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 2);
+    
+    m_button11319 = new wxButton(m_panelHDWPTT, wxID_ANY, _("Initialize"), wxDefaultPosition, wxSize(-1,-1), 0);
+    
+    boxSizer13118->Add(m_button11319, 1, wxALL, 2);
+    
+    wxStaticBoxSizer* staticBoxSizer79420 = new wxStaticBoxSizer( new wxStaticBox(m_panelHDWPTT, wxID_ANY, _("PTT delay for all CAT/PTT types")), wxHORIZONTAL);
+    
+    flexGridSizer135->Add(staticBoxSizer79420, 0, wxALL|wxEXPAND|wxALIGN_LEFT, 2);
+    
+    m_staticText177 = new wxStaticText(m_panelHDWPTT, wxID_ANY, _("Start of xmit delay"), wxDefaultPosition, wxSize(-1,-1), 0);
+    
+    staticBoxSizer79420->Add(m_staticText177, 0, wxALL|wxALIGN_CENTER_VERTICAL, 2);
+    
+    m_slider10721 = new wxSlider(m_panelHDWPTT, wxID_ANY, 50, 0, 100, wxDefaultPosition, wxSize(-1,-1), wxSL_HORIZONTAL);
+    
+    staticBoxSizer79420->Add(m_slider10721, 1, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 2);
+    
+    m_staticText179 = new wxStaticText(m_panelHDWPTT, wxID_ANY, _("End of xmit delay:"), wxDefaultPosition, wxSize(-1,-1), 0);
+    
+    staticBoxSizer79420->Add(m_staticText179, 0, wxALL|wxALIGN_CENTER_VERTICAL, 2);
+    
+    m_slider10922 = new wxSlider(m_panelHDWPTT, wxID_ANY, 50, 0, 100, wxDefaultPosition, wxSize(-1,-1), wxSL_HORIZONTAL);
+    
+    staticBoxSizer79420->Add(m_slider10922, 0, wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL, 2);
+    
+    m_panelRIGCat = new wxPanel(m_notebook53, wxID_ANY, wxDefaultPosition, wxSize(-1,-1), wxTAB_TRAVERSAL);
+    m_panelRIGCat->SetToolTip(_("RigCat"));
+    m_notebook53->AddPage(m_panelRIGCat, _("RigCAT"), false);
+    
+    wxBoxSizer* boxSizer67 = new wxBoxSizer(wxVERTICAL);
+    m_panelRIGCat->SetSizer(boxSizer67);
+    
+    m_radioButton185 = new wxRadioButton(m_panelRIGCat, wxID_ANY, _("Use RigCAT"), wxDefaultPosition, wxSize(-1,-1), 0);
+    m_radioButton185->SetValue(1);
+    
+    boxSizer67->Add(m_radioButton185, 0, wxALL|wxALIGN_CENTER_HORIZONTAL, 2);
+    
+    wxStaticBoxSizer* staticBoxSizer183 = new wxStaticBoxSizer( new wxStaticBox(m_panelRIGCat, wxID_ANY, wxT("")), wxVERTICAL);
+    
+    boxSizer67->Add(staticBoxSizer183, 1, wxALL|wxALIGN_TOP, 2);
+    
+    wxFlexGridSizer* flexGridSizer187 = new wxFlexGridSizer(  1, 1, 0, 0);
+    flexGridSizer187->SetFlexibleDirection( wxBOTH );
+    flexGridSizer187->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED );
+    flexGridSizer187->AddGrowableCol(1);
+    flexGridSizer187->AddGrowableRow(1);
+    
+    staticBoxSizer183->Add(flexGridSizer187, 0, wxALL, 2);
+    
+    wxFlexGridSizer* flexGridSizer204 = new wxFlexGridSizer(  3, 4, 0, 0);
+    flexGridSizer204->SetFlexibleDirection( wxBOTH );
+    flexGridSizer204->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED );
+    
+    flexGridSizer187->Add(flexGridSizer204, 1, wxALL|wxEXPAND, 2);
+    
+    wxBoxSizer* boxSizer193 = new wxBoxSizer(wxHORIZONTAL);
+    
+    flexGridSizer204->Add(boxSizer193, 1, wxALL|wxEXPAND|wxALIGN_CENTER_VERTICAL, 2);
+    
+    m_staticText189 = new wxStaticText(m_panelRIGCat, wxID_ANY, _("File:"), wxDefaultPosition, wxSize(-1,-1), 0);
+    
+    boxSizer193->Add(m_staticText189, 0, wxALL|wxALIGN_CENTER_VERTICAL, 2);
+    
+    m_textCtrl191 = new wxTextCtrl(m_panelRIGCat, wxID_ANY, wxT(""), wxDefaultPosition, wxSize(-1,-1), 0);
+    
+    boxSizer193->Add(m_textCtrl191, 0, wxALL|wxALIGN_CENTER_VERTICAL, 2);
+    
+    wxBoxSizer* boxSizer206 = new wxBoxSizer(wxVERTICAL);
+    
+    flexGridSizer204->Add(boxSizer206, 1, wxALL|wxEXPAND, 5);
+    
+    m_button208 = new wxButton(m_panelRIGCat, wxID_ANY, _("Open"), wxDefaultPosition, wxSize(-1,-1), 0);
+    
+    boxSizer206->Add(m_button208, 0, wxALL|wxALIGN_CENTER_VERTICAL, 2);
+    
+    wxBoxSizer* boxSizer19329 = new wxBoxSizer(wxHORIZONTAL);
+    
+    flexGridSizer204->Add(boxSizer19329, 1, wxALL|wxEXPAND|wxALIGN_CENTER_VERTICAL, 2);
+    
+    m_staticText18930 = new wxStaticText(m_panelRIGCat, wxID_ANY, _("Device:"), wxDefaultPosition, wxSize(-1,-1), 0);
+    
+    boxSizer19329->Add(m_staticText18930, 0, wxALL|wxALIGN_CENTER_VERTICAL, 2);
+    
+    wxArrayString m_comboBox218Arr;
+    m_comboBox218 = new wxComboBox(m_panelRIGCat, wxID_ANY, wxT(""), wxDefaultPosition, wxSize(-1,-1), m_comboBox218Arr, 0);
+    
+    boxSizer19329->Add(m_comboBox218, 0, wxALL|wxALIGN_CENTER_VERTICAL, 5);
+    
+    wxFlexGridSizer* flexGridSizer222 = new wxFlexGridSizer(  1, 3, 0, 0);
+    flexGridSizer222->SetFlexibleDirection( wxBOTH );
+    flexGridSizer222->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED );
+    flexGridSizer222->AddGrowableCol(2);
+    
+    staticBoxSizer183->Add(flexGridSizer222, 0, wxALL, 2);
+    
+    wxBoxSizer* boxSizer19326 = new wxBoxSizer(wxHORIZONTAL);
+    
+    flexGridSizer222->Add(boxSizer19326, 1, wxALL|wxEXPAND, 2);
+    
+    m_staticText18927 = new wxStaticText(m_panelRIGCat, wxID_ANY, _("Retries:"), wxDefaultPosition, wxSize(-1,-1), 0);
+    
+    boxSizer19326->Add(m_staticText18927, 0, wxALL|wxALIGN_CENTER_VERTICAL, 2);
+    
+    m_textCtrl19128 = new wxTextCtrl(m_panelRIGCat, wxID_ANY, wxT(""), wxDefaultPosition, wxSize(-1,-1), 0);
+    
+    boxSizer19326->Add(m_textCtrl19128, 1, wxALL|wxALIGN_CENTER_VERTICAL, 2);
+    
+    wxBoxSizer* boxSizer19323 = new wxBoxSizer(wxHORIZONTAL);
+    
+    flexGridSizer222->Add(boxSizer19323, 1, wxALL|wxEXPAND, 2);
+    
+    m_staticText18924 = new wxStaticText(m_panelRIGCat, wxID_ANY, _("Retry Interval:"), wxDefaultPosition, wxSize(-1,-1), 0);
+    
+    boxSizer19323->Add(m_staticText18924, 0, wxALL|wxALIGN_CENTER_VERTICAL, 2);
+    
+    m_textCtrl19125 = new wxTextCtrl(m_panelRIGCat, wxID_ANY, wxT(""), wxDefaultPosition, wxSize(-1,-1), 0);
+    
+    boxSizer19323->Add(m_textCtrl19125, 1, wxALL|wxALIGN_CENTER_VERTICAL, 2);
+    
+    wxBoxSizer* boxSizer1932954 = new wxBoxSizer(wxHORIZONTAL);
+    
+    flexGridSizer222->Add(boxSizer1932954, 1, wxALL|wxEXPAND, 2);
+    
+    m_staticText1893055 = new wxStaticText(m_panelRIGCat, wxID_ANY, _("Baud Rate:"), wxDefaultPosition, wxSize(-1,-1), 0);
+    
+    boxSizer1932954->Add(m_staticText1893055, 0, wxALL|wxALIGN_CENTER_VERTICAL, 2);
+    
+    wxArrayString m_comboBaudArr;
+    m_comboBaudArr.Add(wxT("300"));
+    m_comboBaudArr.Add(wxT("600"));
+    m_comboBaudArr.Add(wxT("1200"));
+    m_comboBaudArr.Add(wxT("2400"));
+    m_comboBaudArr.Add(wxT("9600"));
+    m_comboBaudArr.Add(wxT("19200"));
+    m_comboBaudArr.Add(wxT("38400"));
+    m_comboBaudArr.Add(wxT("56800"));
+    m_comboBaud = new wxComboBox(m_panelRIGCat, wxID_ANY, wxT(""), wxDefaultPosition, wxSize(-1,-1), m_comboBaudArr, 0);
+    
+    boxSizer1932954->Add(m_comboBaud, 1, wxALL|wxALIGN_CENTER_VERTICAL, 2);
+    
+    wxFlexGridSizer* flexGridSizer18747 = new wxFlexGridSizer(  1, 1, 0, 0);
+    flexGridSizer18747->SetFlexibleDirection( wxBOTH );
+    flexGridSizer18747->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED );
+    flexGridSizer18747->AddGrowableCol(1);
+    
+    staticBoxSizer183->Add(flexGridSizer18747, 0, wxALL|wxEXPAND, 2);
+    
+    wxFlexGridSizer* flexGridSizer20448 = new wxFlexGridSizer(  1, 3, 0, 0);
+    flexGridSizer20448->SetFlexibleDirection( wxBOTH );
+    flexGridSizer20448->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED );
+    flexGridSizer20448->AddGrowableCol(3);
+    flexGridSizer20448->AddGrowableRow(1);
+    
+    flexGridSizer18747->Add(flexGridSizer20448, 1, wxALL, 2);
+    
+    wxBoxSizer* boxSizer19349 = new wxBoxSizer(wxHORIZONTAL);
+    
+    flexGridSizer20448->Add(boxSizer19349, 1, wxALL|wxEXPAND|wxALIGN_CENTER_VERTICAL, 2);
+    
+    m_staticText18950 = new wxStaticText(m_panelRIGCat, wxID_ANY, _("Write Delay (ms):"), wxDefaultPosition, wxSize(-1,-1), 0);
+    
+    boxSizer19349->Add(m_staticText18950, 0, wxALL|wxALIGN_CENTER_VERTICAL, 2);
+    
+    m_textCtrl19151 = new wxTextCtrl(m_panelRIGCat, wxID_ANY, wxT(""), wxDefaultPosition, wxSize(-1,-1), 0);
+    
+    boxSizer19349->Add(m_textCtrl19151, 0, wxALL|wxALIGN_CENTER_VERTICAL, 2);
+    
+    wxBoxSizer* boxSizer298 = new wxBoxSizer(wxHORIZONTAL);
+    
+    flexGridSizer20448->Add(boxSizer298, 1, wxALL|wxEXPAND, 2);
+    
+    m_staticText298 = new wxStaticText(m_panelRIGCat, wxID_ANY, _("Stop Bits:"), wxDefaultPosition, wxSize(-1,-1), 0);
+    
+    boxSizer298->Add(m_staticText298, 0, wxALL, 2);
+    
+    m_sliderStopBits = new wxSlider(m_panelRIGCat, wxID_ANY, 0, 0, 2, wxDefaultPosition, wxSize(-1,-1), wxSL_HORIZONTAL);
+    
+    boxSizer298->Add(m_sliderStopBits, 0, wxALL, 5);
+    
+    wxFlexGridSizer* flexGridSizer224 = new wxFlexGridSizer(  1, 4, 0, 0);
+    flexGridSizer224->SetFlexibleDirection( wxBOTH );
+    flexGridSizer224->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED );
+    flexGridSizer224->AddGrowableCol(4);
+    flexGridSizer224->AddGrowableRow(1);
+    
+    staticBoxSizer183->Add(flexGridSizer224, 0, wxALL|wxEXPAND, 2);
+    
+    flexGridSizer224->Add(0, 0, 1, wxALL|wxEXPAND, 2);
+    
+    m_checkBox236 = new wxCheckBox(m_panelRIGCat, wxID_ANY, _("My CheckBox"), wxDefaultPosition, wxSize(-1,-1), 0);
+    m_checkBox236->SetValue(false);
+    
+    flexGridSizer224->Add(m_checkBox236, 0, wxALL|wxEXPAND, 1);
+    
+    flexGridSizer224->Add(0, 0, 1, wxALL|wxEXPAND, 2);
+    
+    m_checkBox238 = new wxCheckBox(m_panelRIGCat, wxID_ANY, _("My CheckBox"), wxDefaultPosition, wxSize(-1,-1), 0);
+    m_checkBox238->SetValue(false);
+    
+    flexGridSizer224->Add(m_checkBox238, 1, wxALL|wxEXPAND, 2);
+    
+    wxFlexGridSizer* flexGridSizer22432 = new wxFlexGridSizer(  1, 4, 0, 0);
+    flexGridSizer22432->SetFlexibleDirection( wxBOTH );
+    flexGridSizer22432->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED );
+    flexGridSizer22432->AddGrowableCol(4);
+    flexGridSizer22432->AddGrowableRow(1);
+    
+    staticBoxSizer183->Add(flexGridSizer22432, 0, wxALL|wxEXPAND, 2);
+    
+    flexGridSizer22432->Add(0, 0, 0, wxALL, 2);
+    
+    m_checkBox23634 = new wxCheckBox(m_panelRIGCat, wxID_ANY, _("My CheckBox"), wxDefaultPosition, wxSize(-1,-1), 0);
+    m_checkBox23634->SetValue(false);
+    
+    flexGridSizer22432->Add(m_checkBox23634, 0, wxALL, 2);
+    
+    flexGridSizer22432->Add(0, 0, 0, wxALL, 2);
+    
+    m_checkBox23836 = new wxCheckBox(m_panelRIGCat, wxID_ANY, _("My CheckBox"), wxDefaultPosition, wxSize(-1,-1), 0);
+    m_checkBox23836->SetValue(false);
+    
+    flexGridSizer22432->Add(m_checkBox23836, 0, wxALL, 2);
+    
+    wxFlexGridSizer* flexGridSizer22437 = new wxFlexGridSizer(  1, 4, 0, 0);
+    flexGridSizer22437->SetFlexibleDirection( wxBOTH );
+    flexGridSizer22437->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED );
+    flexGridSizer22437->AddGrowableCol(4);
+    flexGridSizer22437->AddGrowableRow(1);
+    
+    staticBoxSizer183->Add(flexGridSizer22437, 0, wxALL|wxEXPAND, 2);
+    
+    flexGridSizer22437->Add(0, 0, 1, wxALL|wxEXPAND, 2);
+    
+    m_checkBox23639 = new wxCheckBox(m_panelRIGCat, wxID_ANY, _("My CheckBox"), wxDefaultPosition, wxSize(-1,-1), 0);
+    m_checkBox23639->SetValue(false);
+    
+    flexGridSizer22437->Add(m_checkBox23639, 1, wxALL|wxEXPAND, 2);
+    
+    flexGridSizer22437->Add(0, 0, 1, wxALL|wxEXPAND, 2);
+    
+    m_checkBox23841 = new wxCheckBox(m_panelRIGCat, wxID_ANY, _("My CheckBox"), wxDefaultPosition, wxSize(-1,-1), 0);
+    m_checkBox23841->SetValue(false);
+    
+    flexGridSizer22437->Add(m_checkBox23841, 1, wxALL|wxEXPAND, 2);
+    
+    wxFlexGridSizer* flexGridSizer22442 = new wxFlexGridSizer(  1, 4, 0, 0);
+    flexGridSizer22442->SetFlexibleDirection( wxBOTH );
+    flexGridSizer22442->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_SPECIFIED );
+    flexGridSizer22442->AddGrowableCol(4);
+    flexGridSizer22442->AddGrowableRow(1);
+    
+    staticBoxSizer183->Add(flexGridSizer22442, 0, wxALL|wxEXPAND, 2);
+    
+    flexGridSizer22442->Add(0, 0, 0, wxALL, 2);
+    
+    m_checkBox23644 = new wxCheckBox(m_panelRIGCat, wxID_ANY, _("My CheckBox"), wxDefaultPosition, wxSize(-1,-1), 0);
+    m_checkBox23644->SetValue(false);
+    
+    flexGridSizer22442->Add(m_checkBox23644, 0, wxALL, 2);
+    
+    flexGridSizer22442->Add(0, 0, 0, wxALL, 2);
+    
+    m_checkBox23846 = new wxCheckBox(m_panelRIGCat, wxID_ANY, _("My CheckBox"), wxDefaultPosition, wxSize(-1,-1), 0);
+    m_checkBox23846->SetValue(false);
+    
+    flexGridSizer22442->Add(m_checkBox23846, 0, wxALL, 2);
+    
+    m_panelHAMLib = new wxPanel(m_notebook53, wxID_ANY, wxDefaultPosition, wxSize(-1,-1), wxTAB_TRAVERSAL);
+    m_panelHAMLib->SetToolTip(_("Hamlib Configuration"));
+    m_notebook53->AddPage(m_panelHAMLib, _("Hamlib"), false);
+    
+    wxStaticBoxSizer* staticBoxSizer296 = new wxStaticBoxSizer( new wxStaticBox(m_panelHAMLib, wxID_ANY, _("My Label")), wxVERTICAL);
+    m_panelHAMLib->SetSizer(staticBoxSizer296);
+    
+    m_panelMemMap = new wxPanel(m_notebook53, wxID_ANY, wxDefaultPosition, wxSize(-1,-1), wxTAB_TRAVERSAL);
+    m_panelMemMap->SetToolTip(_("Memory Mapped control"));
+    m_notebook53->AddPage(m_panelMemMap, _("MemMap"), false);
+    
+    wxStaticBoxSizer* staticBoxSizer294 = new wxStaticBoxSizer( new wxStaticBox(m_panelMemMap, wxID_ANY, _("My Label")), wxVERTICAL);
+    m_panelMemMap->SetSizer(staticBoxSizer294);
+    
+    m_panelXMLRPC = new wxPanel(m_notebook53, wxID_ANY, wxDefaultPosition, wxSize(-1,-1), wxTAB_TRAVERSAL);
+    m_panelXMLRPC->SetToolTip(_("XML-RPC control"));
+    m_notebook53->AddPage(m_panelXMLRPC, _("XML-RPC"), false);
+    
+    wxStaticBoxSizer* staticBoxSizer85 = new wxStaticBoxSizer( new wxStaticBox(m_panelXMLRPC, wxID_ANY, _("My Label")), wxVERTICAL);
+    m_panelXMLRPC->SetSizer(staticBoxSizer85);
+    
+    m_stdBtnSizer155 = new wxStdDialogButtonSizer();
+    
+    boxSizer51->Add(m_stdBtnSizer155, 0, wxALL|wxALIGN_RIGHT|wxALIGN_BOTTOM, 2);
+    
+    m_button165 = new wxButton(this, wxID_APPLY, wxT(""), wxDefaultPosition, wxSize(-1, -1), 0);
+    m_stdBtnSizer155->AddButton(m_button165);
+    
+    m_button167 = new wxButton(this, wxID_OK, wxT(""), wxDefaultPosition, wxSize(-1, -1), 0);
+    m_button167->SetDefault();
+    m_stdBtnSizer155->AddButton(m_button167);
+    m_stdBtnSizer155->Realize();
+    
+    
+    SetSizeHints(450,300);
+    if ( GetSizer() ) {
+         GetSizer()->Fit(this);
+    }
+    Centre(wxBOTH);
+}
+
+DlgRigCtrlBase::~DlgRigCtrlBase()
+{
+}
diff --git a/fdmdv2/build/codelite/hamlib_trial/wxcrafter.h b/fdmdv2/build/codelite/hamlib_trial/wxcrafter.h
new file mode 100644 (file)
index 0000000..fd32389
--- /dev/null
@@ -0,0 +1,118 @@
+//////////////////////////////////////////////////////////////////////
+// This file was auto-generated by codelite's wxCrafter Plugin
+// Do not modify this file by hand!
+//////////////////////////////////////////////////////////////////////
+
+#ifndef WXCRAFTER_BASE_CLASSES_H
+#define WXCRAFTER_BASE_CLASSES_H
+
+#include <wx/settings.h>
+#include <wx/xrc/xmlres.h>
+#include <wx/xrc/xh_bmp.h>
+#include <wx/frame.h>
+#include <wx/sizer.h>
+#include <wx/panel.h>
+#include <wx/menu.h>
+#include <wx/toolbar.h>
+#include <wx/dialog.h>
+#include <wx/notebook.h>
+#include <wx/imaglist.h>
+#include <wx/statbox.h>
+#include <wx/checkbox.h>
+#include <wx/stattext.h>
+#include <wx/combobox.h>
+#include <wx/arrstr.h>
+#include <wx/radiobox.h>
+#include <wx/button.h>
+#include <wx/slider.h>
+#include <wx/radiobut.h>
+#include <wx/textctrl.h>
+
+class MainFrameBaseClass : public wxFrame
+{
+protected:
+    wxPanel* m_mainPanel;
+    wxMenuBar* m_menuBar;
+    wxMenu* m_mbFile;
+    wxMenuItem* m_mbiNew;
+    wxMenuItem* m_mbiOpen;
+    wxMenuItem* m_mbiSave;
+    wxMenuItem* m_mbiSaveAs;
+    wxMenuItem* m_menuItem21;
+    wxMenuItem* m_mbiExit;
+    wxMenu* m_mbTools;
+    wxMenuItem* m_mbiPrefs;
+    wxMenu* m_mbHelp;
+    wxMenuItem* m_menuItem9;
+    wxToolBar* m_mainToolbar;
+
+protected:
+    virtual void OnSize(wxSizeEvent& event) { event.Skip(); }
+    virtual void OnExit(wxCommandEvent& event) { event.Skip(); }
+    virtual void OnToolsPrefs(wxCommandEvent& event) { event.Skip(); }
+    virtual void OnAbout(wxCommandEvent& event) { event.Skip(); }
+    virtual void OnNew(wxCommandEvent& event) { event.Skip(); }
+    virtual void OnOpen(wxCommandEvent& event) { event.Skip(); }
+
+public:
+    MainFrameBaseClass(wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("topFrame"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize(500,300), long style = wxCAPTION|wxRESIZE_BORDER|wxMAXIMIZE_BOX|wxMINIMIZE_BOX|wxSYSTEM_MENU|wxCLOSE_BOX);
+    virtual ~MainFrameBaseClass();
+};
+
+
+class DlgRigCtrlBase : public wxDialog
+{
+protected:
+    wxNotebook* m_notebook53;
+    wxPanel* m_panelHDWPTT;
+    wxCheckBox* m_checkBox7537;
+    wxCheckBox* m_checkBox9112;
+    wxStaticText* m_staticText173;
+    wxComboBox* m_comboBox9313;
+    wxRadioBox* m_radioBox10115;
+    wxRadioBox* m_radioBox10316;
+    wxButton* m_button11319;
+    wxStaticText* m_staticText177;
+    wxSlider* m_slider10721;
+    wxStaticText* m_staticText179;
+    wxSlider* m_slider10922;
+    wxPanel* m_panelRIGCat;
+    wxRadioButton* m_radioButton185;
+    wxStaticText* m_staticText189;
+    wxTextCtrl* m_textCtrl191;
+    wxButton* m_button208;
+    wxStaticText* m_staticText18930;
+    wxComboBox* m_comboBox218;
+    wxStaticText* m_staticText18927;
+    wxTextCtrl* m_textCtrl19128;
+    wxStaticText* m_staticText18924;
+    wxTextCtrl* m_textCtrl19125;
+    wxStaticText* m_staticText1893055;
+    wxComboBox* m_comboBaud;
+    wxStaticText* m_staticText18950;
+    wxTextCtrl* m_textCtrl19151;
+    wxStaticText* m_staticText298;
+    wxSlider* m_sliderStopBits;
+    wxCheckBox* m_checkBox236;
+    wxCheckBox* m_checkBox238;
+    wxCheckBox* m_checkBox23634;
+    wxCheckBox* m_checkBox23836;
+    wxCheckBox* m_checkBox23639;
+    wxCheckBox* m_checkBox23841;
+    wxCheckBox* m_checkBox23644;
+    wxCheckBox* m_checkBox23846;
+    wxPanel* m_panelHAMLib;
+    wxPanel* m_panelMemMap;
+    wxPanel* m_panelXMLRPC;
+    wxStdDialogButtonSizer* m_stdBtnSizer155;
+    wxButton* m_button165;
+    wxButton* m_button167;
+
+protected:
+
+public:
+    DlgRigCtrlBase(wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("Rig Control"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize(450,300), long style = wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER|wxCLOSE_BOX);
+    virtual ~DlgRigCtrlBase();
+};
+
+#endif
diff --git a/fdmdv2/build/codelite/hamlib_trial/wxcrafter.wxcp b/fdmdv2/build/codelite/hamlib_trial/wxcrafter.wxcp
new file mode 100644 (file)
index 0000000..a28d04b
--- /dev/null
@@ -0,0 +1,6467 @@
+{
+       "metadata":     {
+               "m_generatedFilesDir":  "",
+               "m_objCounter": 361,
+               "m_includeFiles":       [],
+               "m_bitmapFunction":     "wxC9ED9InitBitmapResources",
+               "m_bitmapsFile":        "wxcrafter_bitmaps.cpp",
+               "m_GenerateCodeTypes":  3,
+               "m_outputFileName":     "",
+               "m_templateClasses":    []
+       },
+       "windows":      [{
+                       "m_type":       4402,
+                       "proportion":   0,
+                       "border":       5,
+                       "gbSpan":       "1,1",
+                       "gbPosition":   "0,0",
+                       "m_styles":     ["wxCAPTION", "wxRESIZE_BORDER", "wxMAXIMIZE_BOX", "wxMINIMIZE_BOX", "wxSYSTEM_MENU", "wxCLOSE_BOX"],
+                       "m_sizerFlags": ["wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                       "m_properties": [{
+                                       "type": "string",
+                                       "m_label":      "Size:",
+                                       "m_value":      "500,300"
+                               }, {
+                                       "type": "string",
+                                       "m_label":      "Minimum Size:",
+                                       "m_value":      "-1,-1"
+                               }, {
+                                       "type": "string",
+                                       "m_label":      "Name:",
+                                       "m_value":      "MainFrameBaseClass"
+                               }, {
+                                       "type": "multi-string",
+                                       "m_label":      "Tooltip:",
+                                       "m_value":      ""
+                               }, {
+                                       "type": "colour",
+                                       "m_label":      "Bg Colour:",
+                                       "colour":       "<Default>"
+                               }, {
+                                       "type": "colour",
+                                       "m_label":      "Fg Colour:",
+                                       "colour":       "<Default>"
+                               }, {
+                                       "type": "font",
+                                       "m_label":      "Font:",
+                                       "m_value":      ""
+                               }, {
+                                       "type": "bool",
+                                       "m_label":      "Hidden",
+                                       "m_value":      false
+                               }, {
+                                       "type": "bool",
+                                       "m_label":      "Disabled",
+                                       "m_value":      false
+                               }, {
+                                       "type": "bool",
+                                       "m_label":      "Focused",
+                                       "m_value":      false
+                               }, {
+                                       "type": "string",
+                                       "m_label":      "Class Name:",
+                                       "m_value":      ""
+                               }, {
+                                       "type": "string",
+                                       "m_label":      "Include File:",
+                                       "m_value":      ""
+                               }, {
+                                       "type": "string",
+                                       "m_label":      "Title:",
+                                       "m_value":      "topFrame"
+                               }, {
+                                       "type": "virtualFolderPicker",
+                                       "m_label":      "Virtual Folder:",
+                                       "m_path":       ""
+                               }, {
+                                       "type": "choice",
+                                       "m_label":      "Centre:",
+                                       "m_selection":  1,
+                                       "m_options":    ["", "wxBOTH", "wxVERTICAL", "wxHORIZONTAL"]
+                               }, {
+                                       "type": "string",
+                                       "m_label":      "File:",
+                                       "m_value":      "MainFrame"
+                               }, {
+                                       "type": "string",
+                                       "m_label":      "Inherited Class",
+                                       "m_value":      "MainFrame"
+                               }, {
+                                       "type": "string",
+                                       "m_label":      "Class Decorator",
+                                       "m_value":      ""
+                               }],
+                       "m_events":     [],
+                       "m_children":   [{
+                                       "m_type":       4401,
+                                       "proportion":   0,
+                                       "border":       5,
+                                       "gbSpan":       "1,1",
+                                       "gbPosition":   "0,0",
+                                       "m_styles":     [],
+                                       "m_sizerFlags": ["wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                       "m_properties": [{
+                                                       "type": "string",
+                                                       "m_label":      "Name:",
+                                                       "m_value":      "boxSizer1"
+                                               }, {
+                                                       "type": "choice",
+                                                       "m_label":      "Orientation:",
+                                                       "m_selection":  0,
+                                                       "m_options":    ["wxVERTICAL", "wxHORIZONTAL"]
+                                               }],
+                                       "m_events":     [],
+                                       "m_children":   [{
+                                                       "m_type":       4408,
+                                                       "proportion":   1,
+                                                       "border":       5,
+                                                       "gbSpan":       "1,1",
+                                                       "gbPosition":   "0,0",
+                                                       "m_styles":     ["wxTAB_TRAVERSAL"],
+                                                       "m_sizerFlags": ["wxEXPAND"],
+                                                       "m_properties": [{
+                                                                       "type": "winid",
+                                                                       "m_label":      "ID:",
+                                                                       "m_winid":      "wxID_ANY"
+                                                               }, {
+                                                                       "type": "string",
+                                                                       "m_label":      "Size:",
+                                                                       "m_value":      "-1,-1"
+                                                               }, {
+                                                                       "type": "string",
+                                                                       "m_label":      "Minimum Size:",
+                                                                       "m_value":      "-1,-1"
+                                                               }, {
+                                                                       "type": "string",
+                                                                       "m_label":      "Name:",
+                                                                       "m_value":      "m_mainPanel"
+                                                               }, {
+                                                                       "type": "multi-string",
+                                                                       "m_label":      "Tooltip:",
+                                                                       "m_value":      ""
+                                                               }, {
+                                                                       "type": "colour",
+                                                                       "m_label":      "Bg Colour:",
+                                                                       "colour":       "<Default>"
+                                                               }, {
+                                                                       "type": "colour",
+                                                                       "m_label":      "Fg Colour:",
+                                                                       "colour":       "<Default>"
+                                                               }, {
+                                                                       "type": "font",
+                                                                       "m_label":      "Font:",
+                                                                       "m_value":      ""
+                                                               }, {
+                                                                       "type": "bool",
+                                                                       "m_label":      "Hidden",
+                                                                       "m_value":      false
+                                                               }, {
+                                                                       "type": "bool",
+                                                                       "m_label":      "Disabled",
+                                                                       "m_value":      false
+                                                               }, {
+                                                                       "type": "bool",
+                                                                       "m_label":      "Focused",
+                                                                       "m_value":      false
+                                                               }, {
+                                                                       "type": "string",
+                                                                       "m_label":      "Class Name:",
+                                                                       "m_value":      ""
+                                                               }, {
+                                                                       "type": "string",
+                                                                       "m_label":      "Include File:",
+                                                                       "m_value":      ""
+                                                               }],
+                                                       "m_events":     [{
+                                                                       "m_eventName":  "wxEVT_SIZE",
+                                                                       "m_eventClass": "wxSizeEvent",
+                                                                       "m_eventHandler":       "wxSizeEventHandler",
+                                                                       "m_functionNameAndSignature":   "OnSize(wxSizeEvent& event)",
+                                                                       "m_description":        "Process a wxEVT_SIZE event"
+                                                               }],
+                                                       "m_children":   [{
+                                                                       "m_type":       4401,
+                                                                       "proportion":   1,
+                                                                       "border":       5,
+                                                                       "gbSpan":       "1,1",
+                                                                       "gbPosition":   "0,0",
+                                                                       "m_styles":     [],
+                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                       "m_properties": [{
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Name:",
+                                                                                       "m_value":      "boxSizer33"
+                                                                               }, {
+                                                                                       "type": "choice",
+                                                                                       "m_label":      "Orientation:",
+                                                                                       "m_selection":  0,
+                                                                                       "m_options":    ["wxVERTICAL", "wxHORIZONTAL"]
+                                                                               }],
+                                                                       "m_events":     [],
+                                                                       "m_children":   []
+                                                               }]
+                                               }]
+                               }, {
+                                       "m_type":       4457,
+                                       "proportion":   0,
+                                       "border":       5,
+                                       "gbSpan":       "1,1",
+                                       "gbPosition":   "0,0",
+                                       "m_styles":     [],
+                                       "m_sizerFlags": ["wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                       "m_properties": [{
+                                                       "type": "winid",
+                                                       "m_label":      "ID:",
+                                                       "m_winid":      "wxID_ANY"
+                                               }, {
+                                                       "type": "string",
+                                                       "m_label":      "Size:",
+                                                       "m_value":      "-1,-1"
+                                               }, {
+                                                       "type": "string",
+                                                       "m_label":      "Minimum Size:",
+                                                       "m_value":      "-1,-1"
+                                               }, {
+                                                       "type": "string",
+                                                       "m_label":      "Name:",
+                                                       "m_value":      "m_menuBar"
+                                               }, {
+                                                       "type": "multi-string",
+                                                       "m_label":      "Tooltip:",
+                                                       "m_value":      ""
+                                               }, {
+                                                       "type": "colour",
+                                                       "m_label":      "Bg Colour:",
+                                                       "colour":       "<Default>"
+                                               }, {
+                                                       "type": "colour",
+                                                       "m_label":      "Fg Colour:",
+                                                       "colour":       "<Default>"
+                                               }, {
+                                                       "type": "font",
+                                                       "m_label":      "Font:",
+                                                       "m_value":      ""
+                                               }, {
+                                                       "type": "bool",
+                                                       "m_label":      "Hidden",
+                                                       "m_value":      false
+                                               }, {
+                                                       "type": "bool",
+                                                       "m_label":      "Disabled",
+                                                       "m_value":      false
+                                               }, {
+                                                       "type": "bool",
+                                                       "m_label":      "Focused",
+                                                       "m_value":      false
+                                               }, {
+                                                       "type": "string",
+                                                       "m_label":      "Class Name:",
+                                                       "m_value":      ""
+                                               }, {
+                                                       "type": "string",
+                                                       "m_label":      "Include File:",
+                                                       "m_value":      ""
+                                               }],
+                                       "m_events":     [],
+                                       "m_children":   [{
+                                                       "m_type":       4458,
+                                                       "proportion":   0,
+                                                       "border":       5,
+                                                       "gbSpan":       "1,1",
+                                                       "gbPosition":   "0,0",
+                                                       "m_styles":     [],
+                                                       "m_sizerFlags": ["wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                       "m_properties": [{
+                                                                       "type": "string",
+                                                                       "m_label":      "Name:",
+                                                                       "m_value":      "m_mbFile"
+                                                               }, {
+                                                                       "type": "string",
+                                                                       "m_label":      "Label:",
+                                                                       "m_value":      "File"
+                                                               }],
+                                                       "m_events":     [],
+                                                       "m_children":   [{
+                                                                       "m_type":       4459,
+                                                                       "proportion":   0,
+                                                                       "border":       5,
+                                                                       "gbSpan":       "1,1",
+                                                                       "gbPosition":   "0,0",
+                                                                       "m_styles":     [],
+                                                                       "m_sizerFlags": [],
+                                                                       "m_properties": [{
+                                                                                       "type": "winid",
+                                                                                       "m_label":      "ID:",
+                                                                                       "m_winid":      "wxID_NEW"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Name:",
+                                                                                       "m_value":      "m_mbiNew"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Label:",
+                                                                                       "m_value":      "New"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Shortcut:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Help String:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "filePicker",
+                                                                                       "m_label":      "Bitmap File:",
+                                                                                       "m_path":       ""
+                                                                               }, {
+                                                                                       "type": "choice",
+                                                                                       "m_label":      "Kind:",
+                                                                                       "m_selection":  0,
+                                                                                       "m_options":    ["normal", "checkable", "radio", "separator"]
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Checked",
+                                                                                       "m_value":      false
+                                                                               }],
+                                                                       "m_events":     [],
+                                                                       "m_children":   []
+                                                               }, {
+                                                                       "m_type":       4459,
+                                                                       "proportion":   0,
+                                                                       "border":       5,
+                                                                       "gbSpan":       "1,1",
+                                                                       "gbPosition":   "0,0",
+                                                                       "m_styles":     [],
+                                                                       "m_sizerFlags": [],
+                                                                       "m_properties": [{
+                                                                                       "type": "winid",
+                                                                                       "m_label":      "ID:",
+                                                                                       "m_winid":      "wxID_OPEN"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Name:",
+                                                                                       "m_value":      "m_mbiOpen"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Label:",
+                                                                                       "m_value":      "Open"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Shortcut:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Help String:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "filePicker",
+                                                                                       "m_label":      "Bitmap File:",
+                                                                                       "m_path":       ""
+                                                                               }, {
+                                                                                       "type": "choice",
+                                                                                       "m_label":      "Kind:",
+                                                                                       "m_selection":  0,
+                                                                                       "m_options":    ["normal", "checkable", "radio", "separator"]
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Checked",
+                                                                                       "m_value":      false
+                                                                               }],
+                                                                       "m_events":     [],
+                                                                       "m_children":   []
+                                                               }, {
+                                                                       "m_type":       4459,
+                                                                       "proportion":   0,
+                                                                       "border":       5,
+                                                                       "gbSpan":       "1,1",
+                                                                       "gbPosition":   "0,0",
+                                                                       "m_styles":     [],
+                                                                       "m_sizerFlags": [],
+                                                                       "m_properties": [{
+                                                                                       "type": "winid",
+                                                                                       "m_label":      "ID:",
+                                                                                       "m_winid":      "wxID_SAVE"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Name:",
+                                                                                       "m_value":      "m_mbiSave"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Label:",
+                                                                                       "m_value":      "Save"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Shortcut:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Help String:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "filePicker",
+                                                                                       "m_label":      "Bitmap File:",
+                                                                                       "m_path":       ""
+                                                                               }, {
+                                                                                       "type": "choice",
+                                                                                       "m_label":      "Kind:",
+                                                                                       "m_selection":  0,
+                                                                                       "m_options":    ["normal", "checkable", "radio", "separator"]
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Checked",
+                                                                                       "m_value":      false
+                                                                               }],
+                                                                       "m_events":     [],
+                                                                       "m_children":   []
+                                                               }, {
+                                                                       "m_type":       4459,
+                                                                       "proportion":   0,
+                                                                       "border":       5,
+                                                                       "gbSpan":       "1,1",
+                                                                       "gbPosition":   "0,0",
+                                                                       "m_styles":     [],
+                                                                       "m_sizerFlags": [],
+                                                                       "m_properties": [{
+                                                                                       "type": "winid",
+                                                                                       "m_label":      "ID:",
+                                                                                       "m_winid":      "wxID_SAVEAS"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Name:",
+                                                                                       "m_value":      "m_mbiSaveAs"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Label:",
+                                                                                       "m_value":      "Save As"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Shortcut:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Help String:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "filePicker",
+                                                                                       "m_label":      "Bitmap File:",
+                                                                                       "m_path":       ""
+                                                                               }, {
+                                                                                       "type": "choice",
+                                                                                       "m_label":      "Kind:",
+                                                                                       "m_selection":  0,
+                                                                                       "m_options":    ["normal", "checkable", "radio", "separator"]
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Checked",
+                                                                                       "m_value":      false
+                                                                               }],
+                                                                       "m_events":     [],
+                                                                       "m_children":   []
+                                                               }, {
+                                                                       "m_type":       4459,
+                                                                       "proportion":   0,
+                                                                       "border":       5,
+                                                                       "gbSpan":       "1,1",
+                                                                       "gbPosition":   "0,0",
+                                                                       "m_styles":     [],
+                                                                       "m_sizerFlags": [],
+                                                                       "m_properties": [{
+                                                                                       "type": "winid",
+                                                                                       "m_label":      "ID:",
+                                                                                       "m_winid":      "wxID_ANY"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Name:",
+                                                                                       "m_value":      "m_menuItem21"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Label:",
+                                                                                       "m_value":      "Item7"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Shortcut:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Help String:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "filePicker",
+                                                                                       "m_label":      "Bitmap File:",
+                                                                                       "m_path":       ""
+                                                                               }, {
+                                                                                       "type": "choice",
+                                                                                       "m_label":      "Kind:",
+                                                                                       "m_selection":  3,
+                                                                                       "m_options":    ["normal", "checkable", "radio", "separator"]
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Checked",
+                                                                                       "m_value":      false
+                                                                               }],
+                                                                       "m_events":     [],
+                                                                       "m_children":   []
+                                                               }, {
+                                                                       "m_type":       4459,
+                                                                       "proportion":   0,
+                                                                       "border":       5,
+                                                                       "gbSpan":       "1,1",
+                                                                       "gbPosition":   "0,0",
+                                                                       "m_styles":     [],
+                                                                       "m_sizerFlags": [],
+                                                                       "m_properties": [{
+                                                                                       "type": "winid",
+                                                                                       "m_label":      "ID:",
+                                                                                       "m_winid":      "wxID_EXIT"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Name:",
+                                                                                       "m_value":      "m_mbiExit"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Label:",
+                                                                                       "m_value":      "Exit"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Shortcut:",
+                                                                                       "m_value":      "Alt-X"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Help String:",
+                                                                                       "m_value":      "Quit"
+                                                                               }, {
+                                                                                       "type": "filePicker",
+                                                                                       "m_label":      "Bitmap File:",
+                                                                                       "m_path":       ""
+                                                                               }, {
+                                                                                       "type": "choice",
+                                                                                       "m_label":      "Kind:",
+                                                                                       "m_selection":  0,
+                                                                                       "m_options":    ["normal", "checkable", "radio", "separator"]
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Checked",
+                                                                                       "m_value":      false
+                                                                               }],
+                                                                       "m_events":     [{
+                                                                                       "m_eventName":  "wxEVT_COMMAND_MENU_SELECTED",
+                                                                                       "m_eventClass": "wxCommandEvent",
+                                                                                       "m_eventHandler":       "wxCommandEventHandler",
+                                                                                       "m_functionNameAndSignature":   "OnExit(wxCommandEvent& event)",
+                                                                                       "m_description":        "Menu item has been clicked"
+                                                                               }],
+                                                                       "m_children":   []
+                                                               }]
+                                               }, {
+                                                       "m_type":       4458,
+                                                       "proportion":   0,
+                                                       "border":       5,
+                                                       "gbSpan":       "1,1",
+                                                       "gbPosition":   "0,0",
+                                                       "m_styles":     [],
+                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                       "m_properties": [{
+                                                                       "type": "string",
+                                                                       "m_label":      "Name:",
+                                                                       "m_value":      "m_mbTools"
+                                                               }, {
+                                                                       "type": "string",
+                                                                       "m_label":      "Label:",
+                                                                       "m_value":      "Tools"
+                                                               }],
+                                                       "m_events":     [],
+                                                       "m_children":   [{
+                                                                       "m_type":       4459,
+                                                                       "proportion":   0,
+                                                                       "border":       5,
+                                                                       "gbSpan":       "1,1",
+                                                                       "gbPosition":   "0,0",
+                                                                       "m_styles":     [],
+                                                                       "m_sizerFlags": [],
+                                                                       "m_properties": [{
+                                                                                       "type": "winid",
+                                                                                       "m_label":      "ID:",
+                                                                                       "m_winid":      "wxID_PREFERENCES"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Name:",
+                                                                                       "m_value":      "m_mbiPrefs"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Label:",
+                                                                                       "m_value":      "Preferences"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Shortcut:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Help String:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "filePicker",
+                                                                                       "m_label":      "Bitmap File:",
+                                                                                       "m_path":       ""
+                                                                               }, {
+                                                                                       "type": "choice",
+                                                                                       "m_label":      "Kind:",
+                                                                                       "m_selection":  0,
+                                                                                       "m_options":    ["normal", "checkable", "radio", "separator"]
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Checked",
+                                                                                       "m_value":      false
+                                                                               }],
+                                                                       "m_events":     [{
+                                                                                       "m_eventName":  "wxEVT_COMMAND_MENU_SELECTED",
+                                                                                       "m_eventClass": "wxCommandEvent",
+                                                                                       "m_eventHandler":       "wxCommandEventHandler",
+                                                                                       "m_functionNameAndSignature":   "OnToolsPrefs(wxCommandEvent& event)",
+                                                                                       "m_description":        "Menu item has been clicked"
+                                                                               }],
+                                                                       "m_children":   []
+                                                               }]
+                                               }, {
+                                                       "m_type":       4458,
+                                                       "proportion":   0,
+                                                       "border":       5,
+                                                       "gbSpan":       "1,1",
+                                                       "gbPosition":   "0,0",
+                                                       "m_styles":     [],
+                                                       "m_sizerFlags": ["wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                       "m_properties": [{
+                                                                       "type": "string",
+                                                                       "m_label":      "Name:",
+                                                                       "m_value":      "m_mbHelp"
+                                                               }, {
+                                                                       "type": "string",
+                                                                       "m_label":      "Label:",
+                                                                       "m_value":      "Help"
+                                                               }],
+                                                       "m_events":     [],
+                                                       "m_children":   [{
+                                                                       "m_type":       4459,
+                                                                       "proportion":   0,
+                                                                       "border":       5,
+                                                                       "gbSpan":       "1,1",
+                                                                       "gbPosition":   "0,0",
+                                                                       "m_styles":     [],
+                                                                       "m_sizerFlags": [],
+                                                                       "m_properties": [{
+                                                                                       "type": "winid",
+                                                                                       "m_label":      "ID:",
+                                                                                       "m_winid":      "wxID_ABOUT"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Name:",
+                                                                                       "m_value":      "m_menuItem9"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Label:",
+                                                                                       "m_value":      "About..."
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Shortcut:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Help String:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "filePicker",
+                                                                                       "m_label":      "Bitmap File:",
+                                                                                       "m_path":       ""
+                                                                               }, {
+                                                                                       "type": "choice",
+                                                                                       "m_label":      "Kind:",
+                                                                                       "m_selection":  0,
+                                                                                       "m_options":    ["normal", "checkable", "radio", "separator"]
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Checked",
+                                                                                       "m_value":      false
+                                                                               }],
+                                                                       "m_events":     [{
+                                                                                       "m_eventName":  "wxEVT_COMMAND_MENU_SELECTED",
+                                                                                       "m_eventClass": "wxCommandEvent",
+                                                                                       "m_eventHandler":       "wxCommandEventHandler",
+                                                                                       "m_functionNameAndSignature":   "OnAbout(wxCommandEvent& event)",
+                                                                                       "m_description":        "Menu item has been clicked"
+                                                                               }],
+                                                                       "m_children":   []
+                                                               }]
+                                               }]
+                               }, {
+                                       "m_type":       4461,
+                                       "proportion":   0,
+                                       "border":       5,
+                                       "gbSpan":       "1,1",
+                                       "gbPosition":   "0,0",
+                                       "m_styles":     ["wxTB_FLAT"],
+                                       "m_sizerFlags": ["wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                       "m_properties": [{
+                                                       "type": "winid",
+                                                       "m_label":      "ID:",
+                                                       "m_winid":      "wxID_ANY"
+                                               }, {
+                                                       "type": "string",
+                                                       "m_label":      "Size:",
+                                                       "m_value":      "-1,-1"
+                                               }, {
+                                                       "type": "string",
+                                                       "m_label":      "Name:",
+                                                       "m_value":      "m_mainToolbar"
+                                               }, {
+                                                       "type": "string",
+                                                       "m_label":      "Tooltip:",
+                                                       "m_value":      ""
+                                               }, {
+                                                       "type": "string",
+                                                       "m_label":      "Bitmap Size:",
+                                                       "m_value":      "16,16"
+                                               }, {
+                                                       "type": "string",
+                                                       "m_label":      "Margins:",
+                                                       "m_value":      "-1,-1"
+                                               }, {
+                                                       "type": "string",
+                                                       "m_label":      "Padding:",
+                                                       "m_value":      "1"
+                                               }, {
+                                                       "type": "string",
+                                                       "m_label":      "Separator Size:",
+                                                       "m_value":      "5"
+                                               }],
+                                       "m_events":     [],
+                                       "m_children":   [{
+                                                       "m_type":       4462,
+                                                       "proportion":   0,
+                                                       "border":       5,
+                                                       "gbSpan":       "1,1",
+                                                       "gbPosition":   "0,0",
+                                                       "m_styles":     [],
+                                                       "m_sizerFlags": [],
+                                                       "m_properties": [{
+                                                                       "type": "winid",
+                                                                       "m_label":      "ID:",
+                                                                       "m_winid":      "wxID_NEW"
+                                                               }, {
+                                                                       "type": "string",
+                                                                       "m_label":      "Name:",
+                                                                       "m_value":      "m_tbiNew"
+                                                               }, {
+                                                                       "type": "string",
+                                                                       "m_label":      "Label:",
+                                                                       "m_value":      "New"
+                                                               }, {
+                                                                       "type": "multi-string",
+                                                                       "m_label":      "Tooltip:",
+                                                                       "m_value":      "New"
+                                                               }, {
+                                                                       "type": "string",
+                                                                       "m_label":      "Help String:",
+                                                                       "m_value":      "New"
+                                                               }, {
+                                                                       "type": "filePicker",
+                                                                       "m_label":      "Bitmap File:",
+                                                                       "m_path":       "C:\\Users\\wittend\\AppData\\Local\\Temp\\placeholder16.png"
+                                                               }, {
+                                                                       "type": "filePicker",
+                                                                       "m_label":      "Disabled-Bitmap File",
+                                                                       "m_path":       ""
+                                                               }, {
+                                                                       "type": "choice",
+                                                                       "m_label":      "Kind:",
+                                                                       "m_selection":  0,
+                                                                       "m_options":    ["normal", "checkable", "radio", "separator"]
+                                                               }],
+                                                       "m_events":     [{
+                                                                       "m_eventName":  "wxEVT_COMMAND_TOOL_CLICKED",
+                                                                       "m_eventClass": "wxCommandEvent",
+                                                                       "m_eventHandler":       "wxCommandEventHandler",
+                                                                       "m_functionNameAndSignature":   "OnNew(wxCommandEvent& event)",
+                                                                       "m_description":        "Process a wxEVT_COMMAND_TOOL_CLICKED event (a synonym for wxEVT_COMMAND_MENU_SELECTED). Pass the id of the tool"
+                                                               }],
+                                                       "m_children":   []
+                                               }, {
+                                                       "m_type":       4462,
+                                                       "proportion":   0,
+                                                       "border":       5,
+                                                       "gbSpan":       "1,1",
+                                                       "gbPosition":   "0,0",
+                                                       "m_styles":     [],
+                                                       "m_sizerFlags": [],
+                                                       "m_properties": [{
+                                                                       "type": "winid",
+                                                                       "m_label":      "ID:",
+                                                                       "m_winid":      "wxID_OPEN"
+                                                               }, {
+                                                                       "type": "string",
+                                                                       "m_label":      "Name:",
+                                                                       "m_value":      "m_rbiOpen"
+                                                               }, {
+                                                                       "type": "string",
+                                                                       "m_label":      "Label:",
+                                                                       "m_value":      "Tool Label"
+                                                               }, {
+                                                                       "type": "multi-string",
+                                                                       "m_label":      "Tooltip:",
+                                                                       "m_value":      "Open"
+                                                               }, {
+                                                                       "type": "string",
+                                                                       "m_label":      "Help String:",
+                                                                       "m_value":      "Open"
+                                                               }, {
+                                                                       "type": "filePicker",
+                                                                       "m_label":      "Bitmap File:",
+                                                                       "m_path":       "C:\\Users\\wittend\\AppData\\Local\\Temp\\placeholder16.png"
+                                                               }, {
+                                                                       "type": "filePicker",
+                                                                       "m_label":      "Disabled-Bitmap File",
+                                                                       "m_path":       ""
+                                                               }, {
+                                                                       "type": "choice",
+                                                                       "m_label":      "Kind:",
+                                                                       "m_selection":  0,
+                                                                       "m_options":    ["normal", "checkable", "radio", "separator"]
+                                                               }],
+                                                       "m_events":     [{
+                                                                       "m_eventName":  "wxEVT_COMMAND_TOOL_CLICKED",
+                                                                       "m_eventClass": "wxCommandEvent",
+                                                                       "m_eventHandler":       "wxCommandEventHandler",
+                                                                       "m_functionNameAndSignature":   "OnOpen(wxCommandEvent& event)",
+                                                                       "m_description":        "Process a wxEVT_COMMAND_TOOL_CLICKED event (a synonym for wxEVT_COMMAND_MENU_SELECTED). Pass the id of the tool"
+                                                               }],
+                                                       "m_children":   []
+                                               }]
+                               }]
+               }, {
+                       "m_type":       4421,
+                       "proportion":   0,
+                       "border":       5,
+                       "gbSpan":       "1,1",
+                       "gbPosition":   "0,0",
+                       "m_styles":     ["wxDEFAULT_DIALOG_STYLE", "wxRESIZE_BORDER", "wxCLOSE_BOX"],
+                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                       "m_properties": [{
+                                       "type": "string",
+                                       "m_label":      "Size:",
+                                       "m_value":      "450,300"
+                               }, {
+                                       "type": "string",
+                                       "m_label":      "Minimum Size:",
+                                       "m_value":      "-1,-1"
+                               }, {
+                                       "type": "string",
+                                       "m_label":      "Name:",
+                                       "m_value":      "DlgRigCtrlBase"
+                               }, {
+                                       "type": "multi-string",
+                                       "m_label":      "Tooltip:",
+                                       "m_value":      ""
+                               }, {
+                                       "type": "colour",
+                                       "m_label":      "Bg Colour:",
+                                       "colour":       "<Default>"
+                               }, {
+                                       "type": "colour",
+                                       "m_label":      "Fg Colour:",
+                                       "colour":       "<Default>"
+                               }, {
+                                       "type": "font",
+                                       "m_label":      "Font:",
+                                       "m_value":      ""
+                               }, {
+                                       "type": "bool",
+                                       "m_label":      "Hidden",
+                                       "m_value":      false
+                               }, {
+                                       "type": "bool",
+                                       "m_label":      "Disabled",
+                                       "m_value":      false
+                               }, {
+                                       "type": "bool",
+                                       "m_label":      "Focused",
+                                       "m_value":      false
+                               }, {
+                                       "type": "string",
+                                       "m_label":      "Class Name:",
+                                       "m_value":      ""
+                               }, {
+                                       "type": "string",
+                                       "m_label":      "Include File:",
+                                       "m_value":      ""
+                               }, {
+                                       "type": "string",
+                                       "m_label":      "Title:",
+                                       "m_value":      "Rig Control"
+                               }, {
+                                       "type": "virtualFolderPicker",
+                                       "m_label":      "Virtual Folder:",
+                                       "m_path":       "hamlib_trial:rig_ctrl"
+                               }, {
+                                       "type": "choice",
+                                       "m_label":      "Centre:",
+                                       "m_selection":  1,
+                                       "m_options":    ["", "wxBOTH", "wxVERTICAL", "wxHORIZONTAL"]
+                               }, {
+                                       "type": "string",
+                                       "m_label":      "File:",
+                                       "m_value":      "dlg_rig_ctrl"
+                               }, {
+                                       "type": "string",
+                                       "m_label":      "Inherited Class",
+                                       "m_value":      "DialogRigCtrl"
+                               }, {
+                                       "type": "string",
+                                       "m_label":      "Class Decorator",
+                                       "m_value":      ""
+                               }],
+                       "m_events":     [],
+                       "m_children":   [{
+                                       "m_type":       4401,
+                                       "proportion":   1,
+                                       "border":       5,
+                                       "gbSpan":       "1,1",
+                                       "gbPosition":   "0,0",
+                                       "m_styles":     [],
+                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                       "m_properties": [{
+                                                       "type": "string",
+                                                       "m_label":      "Name:",
+                                                       "m_value":      "boxSizer51"
+                                               }, {
+                                                       "type": "choice",
+                                                       "m_label":      "Orientation:",
+                                                       "m_selection":  0,
+                                                       "m_options":    ["wxVERTICAL", "wxHORIZONTAL"]
+                                               }],
+                                       "m_events":     [],
+                                       "m_children":   [{
+                                                       "m_type":       4442,
+                                                       "proportion":   1,
+                                                       "border":       2,
+                                                       "gbSpan":       "1,1",
+                                                       "gbPosition":   "0,0",
+                                                       "m_styles":     ["wxBK_DEFAULT"],
+                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                       "m_properties": [{
+                                                                       "type": "winid",
+                                                                       "m_label":      "ID:",
+                                                                       "m_winid":      "wxID_ANY"
+                                                               }, {
+                                                                       "type": "string",
+                                                                       "m_label":      "Size:",
+                                                                       "m_value":      "-1, -1"
+                                                               }, {
+                                                                       "type": "string",
+                                                                       "m_label":      "Minimum Size:",
+                                                                       "m_value":      "-1,-1"
+                                                               }, {
+                                                                       "type": "string",
+                                                                       "m_label":      "Name:",
+                                                                       "m_value":      "m_notebook53"
+                                                               }, {
+                                                                       "type": "multi-string",
+                                                                       "m_label":      "Tooltip:",
+                                                                       "m_value":      ""
+                                                               }, {
+                                                                       "type": "colour",
+                                                                       "m_label":      "Bg Colour:",
+                                                                       "colour":       "<Default>"
+                                                               }, {
+                                                                       "type": "colour",
+                                                                       "m_label":      "Fg Colour:",
+                                                                       "colour":       "<Default>"
+                                                               }, {
+                                                                       "type": "font",
+                                                                       "m_label":      "Font:",
+                                                                       "m_value":      ""
+                                                               }, {
+                                                                       "type": "bool",
+                                                                       "m_label":      "Hidden",
+                                                                       "m_value":      false
+                                                               }, {
+                                                                       "type": "bool",
+                                                                       "m_label":      "Disabled",
+                                                                       "m_value":      false
+                                                               }, {
+                                                                       "type": "bool",
+                                                                       "m_label":      "Focused",
+                                                                       "m_value":      false
+                                                               }, {
+                                                                       "type": "string",
+                                                                       "m_label":      "Class Name:",
+                                                                       "m_value":      ""
+                                                               }, {
+                                                                       "type": "string",
+                                                                       "m_label":      "Include File:",
+                                                                       "m_value":      ""
+                                                               }],
+                                                       "m_events":     [],
+                                                       "m_children":   [{
+                                                                       "m_type":       4441,
+                                                                       "proportion":   0,
+                                                                       "border":       5,
+                                                                       "gbSpan":       "1,1",
+                                                                       "gbPosition":   "0,0",
+                                                                       "m_styles":     ["wxTAB_TRAVERSAL"],
+                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                       "m_properties": [{
+                                                                                       "type": "winid",
+                                                                                       "m_label":      "ID:",
+                                                                                       "m_winid":      "wxID_ANY"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Size:",
+                                                                                       "m_value":      "-1,-1"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Minimum Size:",
+                                                                                       "m_value":      "-1,-1"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Name:",
+                                                                                       "m_value":      "m_panelHDWPTT"
+                                                                               }, {
+                                                                                       "type": "multi-string",
+                                                                                       "m_label":      "Tooltip:",
+                                                                                       "m_value":      "Hardware Push-to-Talk"
+                                                                               }, {
+                                                                                       "type": "colour",
+                                                                                       "m_label":      "Bg Colour:",
+                                                                                       "colour":       "<Default>"
+                                                                               }, {
+                                                                                       "type": "colour",
+                                                                                       "m_label":      "Fg Colour:",
+                                                                                       "colour":       "<Default>"
+                                                                               }, {
+                                                                                       "type": "font",
+                                                                                       "m_label":      "Font:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Hidden",
+                                                                                       "m_value":      false
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Disabled",
+                                                                                       "m_value":      false
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Focused",
+                                                                                       "m_value":      false
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Class Name:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Include File:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Label:",
+                                                                                       "m_value":      "Hardware PTT"
+                                                                               }, {
+                                                                                       "type": "filePicker",
+                                                                                       "m_label":      "Bitmap File:",
+                                                                                       "m_path":       ""
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Selected",
+                                                                                       "m_value":      true
+                                                                               }],
+                                                                       "m_events":     [],
+                                                                       "m_children":   [{
+                                                                                       "m_type":       4403,
+                                                                                       "proportion":   1,
+                                                                                       "border":       5,
+                                                                                       "gbSpan":       "1,1",
+                                                                                       "gbPosition":   "0,0",
+                                                                                       "m_styles":     [],
+                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                       "m_properties": [{
+                                                                                                       "type": "string",
+                                                                                                       "m_label":      "Name:",
+                                                                                                       "m_value":      "flexGridSizer135"
+                                                                                               }, {
+                                                                                                       "type": "string",
+                                                                                                       "m_label":      "# Columns:",
+                                                                                                       "m_value":      "1"
+                                                                                               }, {
+                                                                                                       "type": "string",
+                                                                                                       "m_label":      "# Rows:",
+                                                                                                       "m_value":      "3"
+                                                                                               }, {
+                                                                                                       "type": "string",
+                                                                                                       "m_label":      "Growable columns:",
+                                                                                                       "m_value":      "1"
+                                                                                               }, {
+                                                                                                       "type": "string",
+                                                                                                       "m_label":      "Growable rows:",
+                                                                                                       "m_value":      "3"
+                                                                                               }, {
+                                                                                                       "type": "string",
+                                                                                                       "m_label":      "Horizontal gap:",
+                                                                                                       "m_value":      "0"
+                                                                                               }, {
+                                                                                                       "type": "string",
+                                                                                                       "m_label":      "Vertical gap:",
+                                                                                                       "m_value":      "0"
+                                                                                               }],
+                                                                                       "m_events":     [],
+                                                                                       "m_children":   [{
+                                                                                                       "m_type":       4449,
+                                                                                                       "proportion":   0,
+                                                                                                       "border":       2,
+                                                                                                       "gbSpan":       "1,1",
+                                                                                                       "gbPosition":   "0,0",
+                                                                                                       "m_styles":     [],
+                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                       "m_properties": [{
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Name:",
+                                                                                                                       "m_value":      "staticBoxSizer169"
+                                                                                                               }, {
+                                                                                                                       "type": "choice",
+                                                                                                                       "m_label":      "Orientation:",
+                                                                                                                       "m_selection":  0,
+                                                                                                                       "m_options":    ["Vertical", "Horizontal"]
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Label:",
+                                                                                                                       "m_value":      ""
+                                                                                                               }],
+                                                                                                       "m_events":     [],
+                                                                                                       "m_children":   [{
+                                                                                                                       "m_type":       4415,
+                                                                                                                       "proportion":   1,
+                                                                                                                       "border":       2,
+                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                       "m_styles":     [],
+                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxALIGN_LEFT", "wxALIGN_CENTER_VERTICAL"],
+                                                                                                                       "m_properties": [{
+                                                                                                                                       "type": "winid",
+                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                       "m_value":      "m_checkBox7537"
+                                                                                                                               }, {
+                                                                                                                                       "type": "multi-string",
+                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                       "m_value":      ""
+                                                                                                                               }, {
+                                                                                                                                       "type": "colour",
+                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                       "colour":       "<Default>"
+                                                                                                                               }, {
+                                                                                                                                       "type": "colour",
+                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                       "colour":       "<Default>"
+                                                                                                                               }, {
+                                                                                                                                       "type": "font",
+                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                       "m_value":      ""
+                                                                                                                               }, {
+                                                                                                                                       "type": "bool",
+                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                       "m_value":      false
+                                                                                                                               }, {
+                                                                                                                                       "type": "bool",
+                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                       "m_value":      false
+                                                                                                                               }, {
+                                                                                                                                       "type": "bool",
+                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                       "m_value":      false
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                       "m_value":      ""
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                       "m_value":      ""
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                       "m_value":      "PTT tone on right audio channel"
+                                                                                                                               }, {
+                                                                                                                                       "type": "bool",
+                                                                                                                                       "m_label":      "Value:",
+                                                                                                                                       "m_value":      false
+                                                                                                                               }],
+                                                                                                                       "m_events":     [],
+                                                                                                                       "m_children":   []
+                                                                                                               }]
+                                                                                               }, {
+                                                                                                       "m_type":       4452,
+                                                                                                       "proportion":   0,
+                                                                                                       "border":       2,
+                                                                                                       "gbSpan":       "1,1",
+                                                                                                       "gbPosition":   "0,0",
+                                                                                                       "m_styles":     [],
+                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxALIGN_LEFT", "wxALIGN_TOP"],
+                                                                                                       "m_properties": [{
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Name:",
+                                                                                                                       "m_value":      "gridSizer159"
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "# Columns:",
+                                                                                                                       "m_value":      "1"
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "# Rows:",
+                                                                                                                       "m_value":      "1"
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Horizontal gap:",
+                                                                                                                       "m_value":      "0"
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Vertical gap:",
+                                                                                                                       "m_value":      "0"
+                                                                                                               }],
+                                                                                                       "m_events":     [],
+                                                                                                       "m_children":   [{
+                                                                                                                       "m_type":       4449,
+                                                                                                                       "proportion":   0,
+                                                                                                                       "border":       2,
+                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                       "m_styles":     [],
+                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND", "wxALIGN_TOP"],
+                                                                                                                       "m_properties": [{
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                       "m_value":      "staticBoxSizer157"
+                                                                                                                               }, {
+                                                                                                                                       "type": "choice",
+                                                                                                                                       "m_label":      "Orientation:",
+                                                                                                                                       "m_selection":  1,
+                                                                                                                                       "m_options":    ["Vertical", "Horizontal"]
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                       "m_value":      "h/w ptt device pin"
+                                                                                                                               }],
+                                                                                                                       "m_events":     [],
+                                                                                                                       "m_children":   [{
+                                                                                                                                       "m_type":       4401,
+                                                                                                                                       "proportion":   1,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "boxSizer175"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "choice",
+                                                                                                                                                       "m_label":      "Orientation:",
+                                                                                                                                                       "m_selection":  0,
+                                                                                                                                                       "m_options":    ["wxVERTICAL", "wxHORIZONTAL"]
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   [{
+                                                                                                                                                       "m_type":       4415,
+                                                                                                                                                       "proportion":   0,
+                                                                                                                                                       "border":       2,
+                                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                                       "m_styles":     [],
+                                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxALIGN_TOP"],
+                                                                                                                                                       "m_properties": [{
+                                                                                                                                                                       "type": "winid",
+                                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                                       "m_value":      "m_checkBox9112"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "font",
+                                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                                       "m_value":      false
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                                       "m_value":      false
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                                       "m_value":      false
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                                       "m_value":      "Use separate PTT device pin"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                       "m_label":      "Value:",
+                                                                                                                                                                       "m_value":      false
+                                                                                                                                                               }],
+                                                                                                                                                       "m_events":     [],
+                                                                                                                                                       "m_children":   []
+                                                                                                                                               }, {
+                                                                                                                                                       "m_type":       4405,
+                                                                                                                                                       "proportion":   0,
+                                                                                                                                                       "border":       5,
+                                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                                       "m_styles":     [],
+                                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                                       "m_properties": [{
+                                                                                                                                                                       "type": "winid",
+                                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                                       "m_value":      "m_staticText173"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "font",
+                                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                                       "m_value":      false
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                                       "m_value":      false
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                                       "m_value":      false
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                                       "m_value":      "Device:"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Wrap:",
+                                                                                                                                                                       "m_value":      "-1"
+                                                                                                                                                               }],
+                                                                                                                                                       "m_events":     [],
+                                                                                                                                                       "m_children":   []
+                                                                                                                                               }, {
+                                                                                                                                                       "m_type":       4410,
+                                                                                                                                                       "proportion":   0,
+                                                                                                                                                       "border":       2,
+                                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                                       "m_styles":     [],
+                                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                                       "m_properties": [{
+                                                                                                                                                                       "type": "winid",
+                                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                                       "m_value":      "m_comboBox9313"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "font",
+                                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                                       "m_value":      false
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                                       "m_value":      false
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                                       "m_value":      false
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                       "m_label":      "ComboBox Choices:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Selection:",
+                                                                                                                                                                       "m_value":      "-1"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Value:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }],
+                                                                                                                                                       "m_events":     [],
+                                                                                                                                                       "m_children":   []
+                                                                                                                                               }]
+                                                                                                                               }, {
+                                                                                                                                       "m_type":       4401,
+                                                                                                                                       "proportion":   1,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "boxSizer171"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "choice",
+                                                                                                                                                       "m_label":      "Orientation:",
+                                                                                                                                                       "m_selection":  1,
+                                                                                                                                                       "m_options":    ["wxVERTICAL", "wxHORIZONTAL"]
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   [{
+                                                                                                                                                       "m_type":       4401,
+                                                                                                                                                       "proportion":   1,
+                                                                                                                                                       "border":       2,
+                                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                                       "m_styles":     [],
+                                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxALIGN_CENTER_HORIZONTAL"],
+                                                                                                                                                       "m_properties": [{
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                                       "m_value":      "boxSizer12714"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "choice",
+                                                                                                                                                                       "m_label":      "Orientation:",
+                                                                                                                                                                       "m_selection":  0,
+                                                                                                                                                                       "m_options":    ["wxVERTICAL", "wxHORIZONTAL"]
+                                                                                                                                                               }],
+                                                                                                                                                       "m_events":     [],
+                                                                                                                                                       "m_children":   [{
+                                                                                                                                                                       "m_type":       4416,
+                                                                                                                                                                       "proportion":   1,
+                                                                                                                                                                       "border":       2,
+                                                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                                                       "m_styles":     ["wxRA_SPECIFY_COLS"],
+                                                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxALIGN_CENTER_HORIZONTAL"],
+                                                                                                                                                                       "m_properties": [{
+                                                                                                                                                                                       "type": "winid",
+                                                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                                                       "m_value":      "m_radioBox10115"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "font",
+                                                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                                                       "m_value":      "Use RTS"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                                       "m_label":      "Choices:",
+                                                                                                                                                                                       "m_value":      "Normal (V-);Inverted (V+)"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Selection:",
+                                                                                                                                                                                       "m_value":      "0"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Major Dimension:",
+                                                                                                                                                                                       "m_value":      "2"
+                                                                                                                                                                               }],
+                                                                                                                                                                       "m_events":     [],
+                                                                                                                                                                       "m_children":   []
+                                                                                                                                                               }, {
+                                                                                                                                                                       "m_type":       4416,
+                                                                                                                                                                       "proportion":   1,
+                                                                                                                                                                       "border":       2,
+                                                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                                                       "m_styles":     ["wxRA_SPECIFY_COLS"],
+                                                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxALIGN_CENTER_HORIZONTAL"],
+                                                                                                                                                                       "m_properties": [{
+                                                                                                                                                                                       "type": "winid",
+                                                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                                                       "m_value":      "m_radioBox10316"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "font",
+                                                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                                                       "m_value":      "Use DTR"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                                       "m_label":      "Choices:",
+                                                                                                                                                                                       "m_value":      "Normal (V-);Inverted (V+)"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Selection:",
+                                                                                                                                                                                       "m_value":      "0"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Major Dimension:",
+                                                                                                                                                                                       "m_value":      "2"
+                                                                                                                                                                               }],
+                                                                                                                                                                       "m_events":     [],
+                                                                                                                                                                       "m_children":   []
+                                                                                                                                                               }, {
+                                                                                                                                                                       "m_type":       4401,
+                                                                                                                                                                       "proportion":   0,
+                                                                                                                                                                       "border":       2,
+                                                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                                                       "m_styles":     [],
+                                                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxALIGN_CENTER_HORIZONTAL", "wxALIGN_CENTER_VERTICAL"],
+                                                                                                                                                                       "m_properties": [{
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                                                       "m_value":      "boxSizer13118"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "choice",
+                                                                                                                                                                                       "m_label":      "Orientation:",
+                                                                                                                                                                                       "m_selection":  1,
+                                                                                                                                                                                       "m_options":    ["wxVERTICAL", "wxHORIZONTAL"]
+                                                                                                                                                                               }],
+                                                                                                                                                                       "m_events":     [],
+                                                                                                                                                                       "m_children":   [{
+                                                                                                                                                                                       "m_type":       4400,
+                                                                                                                                                                                       "proportion":   1,
+                                                                                                                                                                                       "border":       2,
+                                                                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                                                                       "m_styles":     [],
+                                                                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                                                                       "m_properties": [{
+                                                                                                                                                                                                       "type": "winid",
+                                                                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                                                                               }, {
+                                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                                                               }, {
+                                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                                                               }, {
+                                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                                                                       "m_value":      "m_button11319"
+                                                                                                                                                                                               }, {
+                                                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                                               }, {
+                                                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                                                               }, {
+                                                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                                                               }, {
+                                                                                                                                                                                                       "type": "font",
+                                                                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                                               }, {
+                                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                                               }, {
+                                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                                               }, {
+                                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                                               }, {
+                                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                                               }, {
+                                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                                               }, {
+                                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                                                                       "m_value":      "Initialize"
+                                                                                                                                                                                               }, {
+                                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                                       "m_label":      "Default Button",
+                                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                                               }, {
+                                                                                                                                                                                                       "type": "filePicker",
+                                                                                                                                                                                                       "m_label":      "Bitmap File:",
+                                                                                                                                                                                                       "m_path":       ""
+                                                                                                                                                                                               }, {
+                                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                                       "m_label":      "Margins:",
+                                                                                                                                                                                                       "m_value":      "2,2"
+                                                                                                                                                                                               }],
+                                                                                                                                                                                       "m_events":     [],
+                                                                                                                                                                                       "m_children":   []
+                                                                                                                                                                               }]
+                                                                                                                                                               }]
+                                                                                                                                               }]
+                                                                                                                               }]
+                                                                                                               }]
+                                                                                               }, {
+                                                                                                       "m_type":       4449,
+                                                                                                       "proportion":   0,
+                                                                                                       "border":       2,
+                                                                                                       "gbSpan":       "1,1",
+                                                                                                       "gbPosition":   "0,0",
+                                                                                                       "m_styles":     [],
+                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND", "wxALIGN_LEFT"],
+                                                                                                       "m_properties": [{
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Name:",
+                                                                                                                       "m_value":      "staticBoxSizer79420"
+                                                                                                               }, {
+                                                                                                                       "type": "choice",
+                                                                                                                       "m_label":      "Orientation:",
+                                                                                                                       "m_selection":  1,
+                                                                                                                       "m_options":    ["Vertical", "Horizontal"]
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Label:",
+                                                                                                                       "m_value":      "PTT delay for all CAT/PTT types"
+                                                                                                               }],
+                                                                                                       "m_events":     [],
+                                                                                                       "m_children":   [{
+                                                                                                                       "m_type":       4405,
+                                                                                                                       "proportion":   0,
+                                                                                                                       "border":       2,
+                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                       "m_styles":     [],
+                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxALIGN_CENTER_VERTICAL"],
+                                                                                                                       "m_properties": [{
+                                                                                                                                       "type": "winid",
+                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                       "m_value":      "m_staticText177"
+                                                                                                                               }, {
+                                                                                                                                       "type": "multi-string",
+                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                       "m_value":      ""
+                                                                                                                               }, {
+                                                                                                                                       "type": "colour",
+                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                       "colour":       "<Default>"
+                                                                                                                               }, {
+                                                                                                                                       "type": "colour",
+                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                       "colour":       "<Default>"
+                                                                                                                               }, {
+                                                                                                                                       "type": "font",
+                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                       "m_value":      ""
+                                                                                                                               }, {
+                                                                                                                                       "type": "bool",
+                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                       "m_value":      false
+                                                                                                                               }, {
+                                                                                                                                       "type": "bool",
+                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                       "m_value":      false
+                                                                                                                               }, {
+                                                                                                                                       "type": "bool",
+                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                       "m_value":      false
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                       "m_value":      ""
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                       "m_value":      ""
+                                                                                                                               }, {
+                                                                                                                                       "type": "multi-string",
+                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                       "m_value":      "Start of xmit delay"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Wrap:",
+                                                                                                                                       "m_value":      "-1"
+                                                                                                                               }],
+                                                                                                                       "m_events":     [],
+                                                                                                                       "m_children":   []
+                                                                                                               }, {
+                                                                                                                       "m_type":       4419,
+                                                                                                                       "proportion":   1,
+                                                                                                                       "border":       2,
+                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                       "m_styles":     ["wxSL_HORIZONTAL"],
+                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxALIGN_CENTER_HORIZONTAL", "wxALIGN_CENTER_VERTICAL"],
+                                                                                                                       "m_properties": [{
+                                                                                                                                       "type": "winid",
+                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                       "m_value":      "m_slider10721"
+                                                                                                                               }, {
+                                                                                                                                       "type": "multi-string",
+                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                       "m_value":      ""
+                                                                                                                               }, {
+                                                                                                                                       "type": "colour",
+                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                       "colour":       "<Default>"
+                                                                                                                               }, {
+                                                                                                                                       "type": "colour",
+                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                       "colour":       "<Default>"
+                                                                                                                               }, {
+                                                                                                                                       "type": "font",
+                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                       "m_value":      ""
+                                                                                                                               }, {
+                                                                                                                                       "type": "bool",
+                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                       "m_value":      false
+                                                                                                                               }, {
+                                                                                                                                       "type": "bool",
+                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                       "m_value":      false
+                                                                                                                               }, {
+                                                                                                                                       "type": "bool",
+                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                       "m_value":      false
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                       "m_value":      ""
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                       "m_value":      ""
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Value:",
+                                                                                                                                       "m_value":      "50"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Min value:",
+                                                                                                                                       "m_value":      "0"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Max value:",
+                                                                                                                                       "m_value":      "100"
+                                                                                                                               }],
+                                                                                                                       "m_events":     [],
+                                                                                                                       "m_children":   []
+                                                                                                               }, {
+                                                                                                                       "m_type":       4405,
+                                                                                                                       "proportion":   0,
+                                                                                                                       "border":       2,
+                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                       "m_styles":     [],
+                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxALIGN_CENTER_VERTICAL"],
+                                                                                                                       "m_properties": [{
+                                                                                                                                       "type": "winid",
+                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                       "m_value":      "m_staticText179"
+                                                                                                                               }, {
+                                                                                                                                       "type": "multi-string",
+                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                       "m_value":      ""
+                                                                                                                               }, {
+                                                                                                                                       "type": "colour",
+                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                       "colour":       "<Default>"
+                                                                                                                               }, {
+                                                                                                                                       "type": "colour",
+                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                       "colour":       "<Default>"
+                                                                                                                               }, {
+                                                                                                                                       "type": "font",
+                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                       "m_value":      ""
+                                                                                                                               }, {
+                                                                                                                                       "type": "bool",
+                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                       "m_value":      false
+                                                                                                                               }, {
+                                                                                                                                       "type": "bool",
+                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                       "m_value":      false
+                                                                                                                               }, {
+                                                                                                                                       "type": "bool",
+                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                       "m_value":      false
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                       "m_value":      ""
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                       "m_value":      ""
+                                                                                                                               }, {
+                                                                                                                                       "type": "multi-string",
+                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                       "m_value":      "End of xmit delay:"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Wrap:",
+                                                                                                                                       "m_value":      "-1"
+                                                                                                                               }],
+                                                                                                                       "m_events":     [],
+                                                                                                                       "m_children":   []
+                                                                                                               }, {
+                                                                                                                       "m_type":       4419,
+                                                                                                                       "proportion":   0,
+                                                                                                                       "border":       2,
+                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                       "m_styles":     ["wxSL_HORIZONTAL"],
+                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxALIGN_CENTER_HORIZONTAL", "wxALIGN_CENTER_VERTICAL"],
+                                                                                                                       "m_properties": [{
+                                                                                                                                       "type": "winid",
+                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                       "m_value":      "m_slider10922"
+                                                                                                                               }, {
+                                                                                                                                       "type": "multi-string",
+                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                       "m_value":      ""
+                                                                                                                               }, {
+                                                                                                                                       "type": "colour",
+                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                       "colour":       "<Default>"
+                                                                                                                               }, {
+                                                                                                                                       "type": "colour",
+                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                       "colour":       "<Default>"
+                                                                                                                               }, {
+                                                                                                                                       "type": "font",
+                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                       "m_value":      ""
+                                                                                                                               }, {
+                                                                                                                                       "type": "bool",
+                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                       "m_value":      false
+                                                                                                                               }, {
+                                                                                                                                       "type": "bool",
+                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                       "m_value":      false
+                                                                                                                               }, {
+                                                                                                                                       "type": "bool",
+                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                       "m_value":      false
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                       "m_value":      ""
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                       "m_value":      ""
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Value:",
+                                                                                                                                       "m_value":      "50"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Min value:",
+                                                                                                                                       "m_value":      "0"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Max value:",
+                                                                                                                                       "m_value":      "100"
+                                                                                                                               }],
+                                                                                                                       "m_events":     [],
+                                                                                                                       "m_children":   []
+                                                                                                               }]
+                                                                                               }]
+                                                                               }]
+                                                               }, {
+                                                                       "m_type":       4441,
+                                                                       "proportion":   0,
+                                                                       "border":       5,
+                                                                       "gbSpan":       "1,1",
+                                                                       "gbPosition":   "0,0",
+                                                                       "m_styles":     ["wxTAB_TRAVERSAL"],
+                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                       "m_properties": [{
+                                                                                       "type": "winid",
+                                                                                       "m_label":      "ID:",
+                                                                                       "m_winid":      "wxID_ANY"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Size:",
+                                                                                       "m_value":      "-1,-1"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Minimum Size:",
+                                                                                       "m_value":      "-1,-1"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Name:",
+                                                                                       "m_value":      "m_panelRIGCat"
+                                                                               }, {
+                                                                                       "type": "multi-string",
+                                                                                       "m_label":      "Tooltip:",
+                                                                                       "m_value":      "RigCat"
+                                                                               }, {
+                                                                                       "type": "colour",
+                                                                                       "m_label":      "Bg Colour:",
+                                                                                       "colour":       "<Default>"
+                                                                               }, {
+                                                                                       "type": "colour",
+                                                                                       "m_label":      "Fg Colour:",
+                                                                                       "colour":       "<Default>"
+                                                                               }, {
+                                                                                       "type": "font",
+                                                                                       "m_label":      "Font:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Hidden",
+                                                                                       "m_value":      false
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Disabled",
+                                                                                       "m_value":      false
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Focused",
+                                                                                       "m_value":      false
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Class Name:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Include File:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Label:",
+                                                                                       "m_value":      "RigCAT"
+                                                                               }, {
+                                                                                       "type": "filePicker",
+                                                                                       "m_label":      "Bitmap File:",
+                                                                                       "m_path":       ""
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Selected",
+                                                                                       "m_value":      false
+                                                                               }],
+                                                                       "m_events":     [],
+                                                                       "m_children":   [{
+                                                                                       "m_type":       4401,
+                                                                                       "proportion":   1,
+                                                                                       "border":       5,
+                                                                                       "gbSpan":       "1,1",
+                                                                                       "gbPosition":   "0,0",
+                                                                                       "m_styles":     [],
+                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                       "m_properties": [{
+                                                                                                       "type": "string",
+                                                                                                       "m_label":      "Name:",
+                                                                                                       "m_value":      "boxSizer67"
+                                                                                               }, {
+                                                                                                       "type": "choice",
+                                                                                                       "m_label":      "Orientation:",
+                                                                                                       "m_selection":  0,
+                                                                                                       "m_options":    ["wxVERTICAL", "wxHORIZONTAL"]
+                                                                                               }],
+                                                                                       "m_events":     [],
+                                                                                       "m_children":   [{
+                                                                                                       "m_type":       4417,
+                                                                                                       "proportion":   0,
+                                                                                                       "border":       2,
+                                                                                                       "gbSpan":       "1,1",
+                                                                                                       "gbPosition":   "0,0",
+                                                                                                       "m_styles":     [],
+                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxALIGN_CENTER_HORIZONTAL"],
+                                                                                                       "m_properties": [{
+                                                                                                                       "type": "winid",
+                                                                                                                       "m_label":      "ID:",
+                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Size:",
+                                                                                                                       "m_value":      "-1,-1"
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                       "m_value":      "-1,-1"
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Name:",
+                                                                                                                       "m_value":      "m_radioButton185"
+                                                                                                               }, {
+                                                                                                                       "type": "multi-string",
+                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                       "m_value":      ""
+                                                                                                               }, {
+                                                                                                                       "type": "colour",
+                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                       "colour":       "<Default>"
+                                                                                                               }, {
+                                                                                                                       "type": "colour",
+                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                       "colour":       "<Default>"
+                                                                                                               }, {
+                                                                                                                       "type": "font",
+                                                                                                                       "m_label":      "Font:",
+                                                                                                                       "m_value":      ""
+                                                                                                               }, {
+                                                                                                                       "type": "bool",
+                                                                                                                       "m_label":      "Hidden",
+                                                                                                                       "m_value":      false
+                                                                                                               }, {
+                                                                                                                       "type": "bool",
+                                                                                                                       "m_label":      "Disabled",
+                                                                                                                       "m_value":      false
+                                                                                                               }, {
+                                                                                                                       "type": "bool",
+                                                                                                                       "m_label":      "Focused",
+                                                                                                                       "m_value":      false
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                       "m_value":      ""
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Include File:",
+                                                                                                                       "m_value":      ""
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Label:",
+                                                                                                                       "m_value":      "Use RigCAT"
+                                                                                                               }, {
+                                                                                                                       "type": "bool",
+                                                                                                                       "m_label":      "Value:",
+                                                                                                                       "m_value":      true
+                                                                                                               }],
+                                                                                                       "m_events":     [],
+                                                                                                       "m_children":   []
+                                                                                               }, {
+                                                                                                       "m_type":       4449,
+                                                                                                       "proportion":   1,
+                                                                                                       "border":       2,
+                                                                                                       "gbSpan":       "1,1",
+                                                                                                       "gbPosition":   "0,0",
+                                                                                                       "m_styles":     [],
+                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND", "wxALIGN_TOP"],
+                                                                                                       "m_properties": [{
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Name:",
+                                                                                                                       "m_value":      "staticBoxSizer183"
+                                                                                                               }, {
+                                                                                                                       "type": "choice",
+                                                                                                                       "m_label":      "Orientation:",
+                                                                                                                       "m_selection":  0,
+                                                                                                                       "m_options":    ["Vertical", "Horizontal"]
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Label:",
+                                                                                                                       "m_value":      ""
+                                                                                                               }],
+                                                                                                       "m_events":     [],
+                                                                                                       "m_children":   [{
+                                                                                                                       "m_type":       4403,
+                                                                                                                       "proportion":   0,
+                                                                                                                       "border":       2,
+                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                       "m_styles":     [],
+                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                       "m_properties": [{
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                       "m_value":      "flexGridSizer187"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "# Columns:",
+                                                                                                                                       "m_value":      "1"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "# Rows:",
+                                                                                                                                       "m_value":      "1"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Growable columns:",
+                                                                                                                                       "m_value":      "1"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Growable rows:",
+                                                                                                                                       "m_value":      "1"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Horizontal gap:",
+                                                                                                                                       "m_value":      "0"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Vertical gap:",
+                                                                                                                                       "m_value":      "0"
+                                                                                                                               }],
+                                                                                                                       "m_events":     [],
+                                                                                                                       "m_children":   [{
+                                                                                                                                       "m_type":       4403,
+                                                                                                                                       "proportion":   1,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "flexGridSizer204"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "# Columns:",
+                                                                                                                                                       "m_value":      "4"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "# Rows:",
+                                                                                                                                                       "m_value":      "3"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Growable columns:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Growable rows:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Horizontal gap:",
+                                                                                                                                                       "m_value":      "0"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Vertical gap:",
+                                                                                                                                                       "m_value":      "0"
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   [{
+                                                                                                                                                       "m_type":       4401,
+                                                                                                                                                       "proportion":   1,
+                                                                                                                                                       "border":       2,
+                                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                                       "m_styles":     [],
+                                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND", "wxALIGN_CENTER_VERTICAL"],
+                                                                                                                                                       "m_properties": [{
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                                       "m_value":      "boxSizer193"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "choice",
+                                                                                                                                                                       "m_label":      "Orientation:",
+                                                                                                                                                                       "m_selection":  1,
+                                                                                                                                                                       "m_options":    ["wxVERTICAL", "wxHORIZONTAL"]
+                                                                                                                                                               }],
+                                                                                                                                                       "m_events":     [],
+                                                                                                                                                       "m_children":   [{
+                                                                                                                                                                       "m_type":       4405,
+                                                                                                                                                                       "proportion":   0,
+                                                                                                                                                                       "border":       2,
+                                                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                                                       "m_styles":     [],
+                                                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxALIGN_CENTER_VERTICAL"],
+                                                                                                                                                                       "m_properties": [{
+                                                                                                                                                                                       "type": "winid",
+                                                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                                                       "m_value":      "m_staticText189"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "font",
+                                                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                                                       "m_value":      "File:"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Wrap:",
+                                                                                                                                                                                       "m_value":      "-1"
+                                                                                                                                                                               }],
+                                                                                                                                                                       "m_events":     [],
+                                                                                                                                                                       "m_children":   []
+                                                                                                                                                               }, {
+                                                                                                                                                                       "m_type":       4406,
+                                                                                                                                                                       "proportion":   0,
+                                                                                                                                                                       "border":       2,
+                                                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                                                       "m_styles":     [],
+                                                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxALIGN_CENTER_VERTICAL"],
+                                                                                                                                                                       "m_properties": [{
+                                                                                                                                                                                       "type": "winid",
+                                                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                                                       "m_value":      "m_textCtrl191"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "font",
+                                                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Value:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Max Length:",
+                                                                                                                                                                                       "m_value":      "0"
+                                                                                                                                                                               }],
+                                                                                                                                                                       "m_events":     [],
+                                                                                                                                                                       "m_children":   []
+                                                                                                                                                               }]
+                                                                                                                                               }, {
+                                                                                                                                                       "m_type":       4401,
+                                                                                                                                                       "proportion":   1,
+                                                                                                                                                       "border":       5,
+                                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                                       "m_styles":     [],
+                                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                                                                       "m_properties": [{
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                                       "m_value":      "boxSizer206"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "choice",
+                                                                                                                                                                       "m_label":      "Orientation:",
+                                                                                                                                                                       "m_selection":  0,
+                                                                                                                                                                       "m_options":    ["wxVERTICAL", "wxHORIZONTAL"]
+                                                                                                                                                               }],
+                                                                                                                                                       "m_events":     [],
+                                                                                                                                                       "m_children":   [{
+                                                                                                                                                                       "m_type":       4400,
+                                                                                                                                                                       "proportion":   0,
+                                                                                                                                                                       "border":       2,
+                                                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                                                       "m_styles":     [],
+                                                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxALIGN_CENTER_VERTICAL"],
+                                                                                                                                                                       "m_properties": [{
+                                                                                                                                                                                       "type": "winid",
+                                                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                                                       "m_value":      "m_button208"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "font",
+                                                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                                                       "m_value":      "Open"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Default Button",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "filePicker",
+                                                                                                                                                                                       "m_label":      "Bitmap File:",
+                                                                                                                                                                                       "m_path":       ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Margins:",
+                                                                                                                                                                                       "m_value":      "2,2"
+                                                                                                                                                                               }],
+                                                                                                                                                                       "m_events":     [],
+                                                                                                                                                                       "m_children":   []
+                                                                                                                                                               }]
+                                                                                                                                               }, {
+                                                                                                                                                       "m_type":       4401,
+                                                                                                                                                       "proportion":   1,
+                                                                                                                                                       "border":       2,
+                                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                                       "m_styles":     [],
+                                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND", "wxALIGN_CENTER_VERTICAL"],
+                                                                                                                                                       "m_properties": [{
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                                       "m_value":      "boxSizer19329"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "choice",
+                                                                                                                                                                       "m_label":      "Orientation:",
+                                                                                                                                                                       "m_selection":  1,
+                                                                                                                                                                       "m_options":    ["wxVERTICAL", "wxHORIZONTAL"]
+                                                                                                                                                               }],
+                                                                                                                                                       "m_events":     [],
+                                                                                                                                                       "m_children":   [{
+                                                                                                                                                                       "m_type":       4405,
+                                                                                                                                                                       "proportion":   0,
+                                                                                                                                                                       "border":       2,
+                                                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                                                       "m_styles":     [],
+                                                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxALIGN_CENTER_VERTICAL"],
+                                                                                                                                                                       "m_properties": [{
+                                                                                                                                                                                       "type": "winid",
+                                                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                                                       "m_value":      "m_staticText18930"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "font",
+                                                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                                                       "m_value":      "Device:"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Wrap:",
+                                                                                                                                                                                       "m_value":      "-1"
+                                                                                                                                                                               }],
+                                                                                                                                                                       "m_events":     [],
+                                                                                                                                                                       "m_children":   []
+                                                                                                                                                               }, {
+                                                                                                                                                                       "m_type":       4410,
+                                                                                                                                                                       "proportion":   0,
+                                                                                                                                                                       "border":       5,
+                                                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                                                       "m_styles":     [],
+                                                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxALIGN_CENTER_VERTICAL"],
+                                                                                                                                                                       "m_properties": [{
+                                                                                                                                                                                       "type": "winid",
+                                                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                                                       "m_value":      "m_comboBox218"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "font",
+                                                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                                       "m_label":      "ComboBox Choices:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Selection:",
+                                                                                                                                                                                       "m_value":      "-1"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Value:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }],
+                                                                                                                                                                       "m_events":     [],
+                                                                                                                                                                       "m_children":   []
+                                                                                                                                                               }]
+                                                                                                                                               }]
+                                                                                                                               }]
+                                                                                                               }, {
+                                                                                                                       "m_type":       4403,
+                                                                                                                       "proportion":   0,
+                                                                                                                       "border":       2,
+                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                       "m_styles":     [],
+                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                       "m_properties": [{
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                       "m_value":      "flexGridSizer222"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "# Columns:",
+                                                                                                                                       "m_value":      "3"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "# Rows:",
+                                                                                                                                       "m_value":      "1"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Growable columns:",
+                                                                                                                                       "m_value":      "2"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Growable rows:",
+                                                                                                                                       "m_value":      ""
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Horizontal gap:",
+                                                                                                                                       "m_value":      "0"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Vertical gap:",
+                                                                                                                                       "m_value":      "0"
+                                                                                                                               }],
+                                                                                                                       "m_events":     [],
+                                                                                                                       "m_children":   [{
+                                                                                                                                       "m_type":       4401,
+                                                                                                                                       "proportion":   1,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "boxSizer19326"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "choice",
+                                                                                                                                                       "m_label":      "Orientation:",
+                                                                                                                                                       "m_selection":  1,
+                                                                                                                                                       "m_options":    ["wxVERTICAL", "wxHORIZONTAL"]
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   [{
+                                                                                                                                                       "m_type":       4405,
+                                                                                                                                                       "proportion":   0,
+                                                                                                                                                       "border":       2,
+                                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                                       "m_styles":     [],
+                                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxALIGN_CENTER_VERTICAL"],
+                                                                                                                                                       "m_properties": [{
+                                                                                                                                                                       "type": "winid",
+                                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                                       "m_value":      "m_staticText18927"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "font",
+                                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                                       "m_value":      false
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                                       "m_value":      false
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                                       "m_value":      false
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                                       "m_value":      "Retries:"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Wrap:",
+                                                                                                                                                                       "m_value":      "-1"
+                                                                                                                                                               }],
+                                                                                                                                                       "m_events":     [],
+                                                                                                                                                       "m_children":   []
+                                                                                                                                               }, {
+                                                                                                                                                       "m_type":       4406,
+                                                                                                                                                       "proportion":   1,
+                                                                                                                                                       "border":       2,
+                                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                                       "m_styles":     [],
+                                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxALIGN_CENTER_VERTICAL"],
+                                                                                                                                                       "m_properties": [{
+                                                                                                                                                                       "type": "winid",
+                                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                                       "m_value":      "m_textCtrl19128"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "font",
+                                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                                       "m_value":      false
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                                       "m_value":      false
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                                       "m_value":      false
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Value:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Max Length:",
+                                                                                                                                                                       "m_value":      "0"
+                                                                                                                                                               }],
+                                                                                                                                                       "m_events":     [],
+                                                                                                                                                       "m_children":   []
+                                                                                                                                               }]
+                                                                                                                               }, {
+                                                                                                                                       "m_type":       4401,
+                                                                                                                                       "proportion":   1,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "boxSizer19323"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "choice",
+                                                                                                                                                       "m_label":      "Orientation:",
+                                                                                                                                                       "m_selection":  1,
+                                                                                                                                                       "m_options":    ["wxVERTICAL", "wxHORIZONTAL"]
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   [{
+                                                                                                                                                       "m_type":       4405,
+                                                                                                                                                       "proportion":   0,
+                                                                                                                                                       "border":       2,
+                                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                                       "m_styles":     [],
+                                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxALIGN_CENTER_VERTICAL"],
+                                                                                                                                                       "m_properties": [{
+                                                                                                                                                                       "type": "winid",
+                                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                                       "m_value":      "m_staticText18924"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "font",
+                                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                                       "m_value":      false
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                                       "m_value":      false
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                                       "m_value":      false
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                                       "m_value":      "Retry Interval:"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Wrap:",
+                                                                                                                                                                       "m_value":      "-1"
+                                                                                                                                                               }],
+                                                                                                                                                       "m_events":     [],
+                                                                                                                                                       "m_children":   []
+                                                                                                                                               }, {
+                                                                                                                                                       "m_type":       4406,
+                                                                                                                                                       "proportion":   1,
+                                                                                                                                                       "border":       2,
+                                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                                       "m_styles":     [],
+                                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxALIGN_CENTER_VERTICAL"],
+                                                                                                                                                       "m_properties": [{
+                                                                                                                                                                       "type": "winid",
+                                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                                       "m_value":      "m_textCtrl19125"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "font",
+                                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                                       "m_value":      false
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                                       "m_value":      false
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                                       "m_value":      false
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Value:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Max Length:",
+                                                                                                                                                                       "m_value":      "0"
+                                                                                                                                                               }],
+                                                                                                                                                       "m_events":     [],
+                                                                                                                                                       "m_children":   []
+                                                                                                                                               }]
+                                                                                                                               }, {
+                                                                                                                                       "m_type":       4401,
+                                                                                                                                       "proportion":   1,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "boxSizer1932954"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "choice",
+                                                                                                                                                       "m_label":      "Orientation:",
+                                                                                                                                                       "m_selection":  1,
+                                                                                                                                                       "m_options":    ["wxVERTICAL", "wxHORIZONTAL"]
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   [{
+                                                                                                                                                       "m_type":       4405,
+                                                                                                                                                       "proportion":   0,
+                                                                                                                                                       "border":       2,
+                                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                                       "m_styles":     [],
+                                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxALIGN_CENTER_VERTICAL"],
+                                                                                                                                                       "m_properties": [{
+                                                                                                                                                                       "type": "winid",
+                                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                                       "m_value":      "m_staticText1893055"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "font",
+                                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                                       "m_value":      false
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                                       "m_value":      false
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                                       "m_value":      false
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                                       "m_value":      "Baud Rate:"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Wrap:",
+                                                                                                                                                                       "m_value":      "-1"
+                                                                                                                                                               }],
+                                                                                                                                                       "m_events":     [],
+                                                                                                                                                       "m_children":   []
+                                                                                                                                               }, {
+                                                                                                                                                       "m_type":       4410,
+                                                                                                                                                       "proportion":   1,
+                                                                                                                                                       "border":       2,
+                                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                                       "m_styles":     [],
+                                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxALIGN_CENTER_VERTICAL"],
+                                                                                                                                                       "m_properties": [{
+                                                                                                                                                                       "type": "winid",
+                                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                                       "m_value":      "m_comboBaud"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "font",
+                                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                                       "m_value":      false
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                                       "m_value":      false
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                                       "m_value":      false
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                       "m_label":      "ComboBox Choices:",
+                                                                                                                                                                       "m_value":      "300\\n600\\n1200\\n2400\\n9600\\n19200\\n38400\\n56800\\n"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Selection:",
+                                                                                                                                                                       "m_value":      "-1"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Value:",
+                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                               }],
+                                                                                                                                                       "m_events":     [],
+                                                                                                                                                       "m_children":   []
+                                                                                                                                               }]
+                                                                                                                               }]
+                                                                                                               }, {
+                                                                                                                       "m_type":       4403,
+                                                                                                                       "proportion":   0,
+                                                                                                                       "border":       2,
+                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                       "m_styles":     [],
+                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                                       "m_properties": [{
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                       "m_value":      "flexGridSizer18747"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "# Columns:",
+                                                                                                                                       "m_value":      "1"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "# Rows:",
+                                                                                                                                       "m_value":      "1"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Growable columns:",
+                                                                                                                                       "m_value":      "1"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Growable rows:",
+                                                                                                                                       "m_value":      ""
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Horizontal gap:",
+                                                                                                                                       "m_value":      "0"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Vertical gap:",
+                                                                                                                                       "m_value":      "0"
+                                                                                                                               }],
+                                                                                                                       "m_events":     [],
+                                                                                                                       "m_children":   [{
+                                                                                                                                       "m_type":       4403,
+                                                                                                                                       "proportion":   1,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "flexGridSizer20448"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "# Columns:",
+                                                                                                                                                       "m_value":      "3"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "# Rows:",
+                                                                                                                                                       "m_value":      "1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Growable columns:",
+                                                                                                                                                       "m_value":      "3"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Growable rows:",
+                                                                                                                                                       "m_value":      "1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Horizontal gap:",
+                                                                                                                                                       "m_value":      "0"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Vertical gap:",
+                                                                                                                                                       "m_value":      "0"
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   [{
+                                                                                                                                                       "m_type":       4401,
+                                                                                                                                                       "proportion":   1,
+                                                                                                                                                       "border":       2,
+                                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                                       "m_styles":     [],
+                                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND", "wxALIGN_CENTER_VERTICAL"],
+                                                                                                                                                       "m_properties": [{
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                                       "m_value":      "boxSizer19349"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "choice",
+                                                                                                                                                                       "m_label":      "Orientation:",
+                                                                                                                                                                       "m_selection":  1,
+                                                                                                                                                                       "m_options":    ["wxVERTICAL", "wxHORIZONTAL"]
+                                                                                                                                                               }],
+                                                                                                                                                       "m_events":     [],
+                                                                                                                                                       "m_children":   [{
+                                                                                                                                                                       "m_type":       4405,
+                                                                                                                                                                       "proportion":   0,
+                                                                                                                                                                       "border":       2,
+                                                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                                                       "m_styles":     [],
+                                                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxALIGN_CENTER_VERTICAL"],
+                                                                                                                                                                       "m_properties": [{
+                                                                                                                                                                                       "type": "winid",
+                                                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                                                       "m_value":      "m_staticText18950"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "font",
+                                                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                                                       "m_value":      "Write Delay (ms):"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Wrap:",
+                                                                                                                                                                                       "m_value":      "-1"
+                                                                                                                                                                               }],
+                                                                                                                                                                       "m_events":     [],
+                                                                                                                                                                       "m_children":   []
+                                                                                                                                                               }, {
+                                                                                                                                                                       "m_type":       4406,
+                                                                                                                                                                       "proportion":   0,
+                                                                                                                                                                       "border":       2,
+                                                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                                                       "m_styles":     [],
+                                                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxALIGN_CENTER_VERTICAL"],
+                                                                                                                                                                       "m_properties": [{
+                                                                                                                                                                                       "type": "winid",
+                                                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                                                       "m_value":      "m_textCtrl19151"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "font",
+                                                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Value:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Max Length:",
+                                                                                                                                                                                       "m_value":      "0"
+                                                                                                                                                                               }],
+                                                                                                                                                                       "m_events":     [],
+                                                                                                                                                                       "m_children":   []
+                                                                                                                                                               }]
+                                                                                                                                               }, {
+                                                                                                                                                       "m_type":       4401,
+                                                                                                                                                       "proportion":   1,
+                                                                                                                                                       "border":       2,
+                                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                                       "m_styles":     [],
+                                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                                                                       "m_properties": [{
+                                                                                                                                                                       "type": "string",
+                                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                                       "m_value":      "boxSizer298"
+                                                                                                                                                               }, {
+                                                                                                                                                                       "type": "choice",
+                                                                                                                                                                       "m_label":      "Orientation:",
+                                                                                                                                                                       "m_selection":  1,
+                                                                                                                                                                       "m_options":    ["wxVERTICAL", "wxHORIZONTAL"]
+                                                                                                                                                               }],
+                                                                                                                                                       "m_events":     [],
+                                                                                                                                                       "m_children":   [{
+                                                                                                                                                                       "m_type":       4405,
+                                                                                                                                                                       "proportion":   0,
+                                                                                                                                                                       "border":       2,
+                                                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                                                       "m_styles":     [],
+                                                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                                                       "m_properties": [{
+                                                                                                                                                                                       "type": "winid",
+                                                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                                                       "m_value":      "m_staticText298"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "font",
+                                                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                                                       "m_value":      "Stop Bits:"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Wrap:",
+                                                                                                                                                                                       "m_value":      "-1"
+                                                                                                                                                                               }],
+                                                                                                                                                                       "m_events":     [],
+                                                                                                                                                                       "m_children":   []
+                                                                                                                                                               }, {
+                                                                                                                                                                       "m_type":       4419,
+                                                                                                                                                                       "proportion":   0,
+                                                                                                                                                                       "border":       5,
+                                                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                                                       "m_styles":     ["wxSL_HORIZONTAL"],
+                                                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                                                       "m_properties": [{
+                                                                                                                                                                                       "type": "winid",
+                                                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                                                       "m_value":      "m_sliderStopBits"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "colour",
+                                                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "font",
+                                                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "bool",
+                                                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                                                       "m_value":      false
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                                                       "m_value":      ""
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Value:",
+                                                                                                                                                                                       "m_value":      "0"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Min value:",
+                                                                                                                                                                                       "m_value":      "0"
+                                                                                                                                                                               }, {
+                                                                                                                                                                                       "type": "string",
+                                                                                                                                                                                       "m_label":      "Max value:",
+                                                                                                                                                                                       "m_value":      "2"
+                                                                                                                                                                               }],
+                                                                                                                                                                       "m_events":     [],
+                                                                                                                                                                       "m_children":   []
+                                                                                                                                                               }]
+                                                                                                                                               }]
+                                                                                                                               }]
+                                                                                                               }, {
+                                                                                                                       "m_type":       4403,
+                                                                                                                       "proportion":   0,
+                                                                                                                       "border":       2,
+                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                       "m_styles":     [],
+                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                                       "m_properties": [{
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                       "m_value":      "flexGridSizer224"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "# Columns:",
+                                                                                                                                       "m_value":      "4"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "# Rows:",
+                                                                                                                                       "m_value":      "1"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Growable columns:",
+                                                                                                                                       "m_value":      "4"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Growable rows:",
+                                                                                                                                       "m_value":      "1"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Horizontal gap:",
+                                                                                                                                       "m_value":      "0"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Vertical gap:",
+                                                                                                                                       "m_value":      "0"
+                                                                                                                               }],
+                                                                                                                       "m_events":     [],
+                                                                                                                       "m_children":   [{
+                                                                                                                                       "m_type":       4454,
+                                                                                                                                       "proportion":   1,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "Spacer234"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "0,0"
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }, {
+                                                                                                                                       "m_type":       4415,
+                                                                                                                                       "proportion":   0,
+                                                                                                                                       "border":       1,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "winid",
+                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "m_checkBox236"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "font",
+                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                       "m_value":      "My CheckBox"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Value:",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }, {
+                                                                                                                                       "m_type":       4454,
+                                                                                                                                       "proportion":   1,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "Spacer240"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "0,0"
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }, {
+                                                                                                                                       "m_type":       4415,
+                                                                                                                                       "proportion":   1,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "winid",
+                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "m_checkBox238"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "font",
+                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                       "m_value":      "My CheckBox"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Value:",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }]
+                                                                                                               }, {
+                                                                                                                       "m_type":       4403,
+                                                                                                                       "proportion":   0,
+                                                                                                                       "border":       2,
+                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                       "m_styles":     [],
+                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                                       "m_properties": [{
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                       "m_value":      "flexGridSizer22432"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "# Columns:",
+                                                                                                                                       "m_value":      "4"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "# Rows:",
+                                                                                                                                       "m_value":      "1"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Growable columns:",
+                                                                                                                                       "m_value":      "4"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Growable rows:",
+                                                                                                                                       "m_value":      "1"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Horizontal gap:",
+                                                                                                                                       "m_value":      "0"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Vertical gap:",
+                                                                                                                                       "m_value":      "0"
+                                                                                                                               }],
+                                                                                                                       "m_events":     [],
+                                                                                                                       "m_children":   [{
+                                                                                                                                       "m_type":       4454,
+                                                                                                                                       "proportion":   0,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "Spacer23433"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "0,0"
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }, {
+                                                                                                                                       "m_type":       4415,
+                                                                                                                                       "proportion":   0,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "winid",
+                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "m_checkBox23634"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "font",
+                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                       "m_value":      "My CheckBox"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Value:",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }, {
+                                                                                                                                       "m_type":       4454,
+                                                                                                                                       "proportion":   0,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "Spacer24035"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "0,0"
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }, {
+                                                                                                                                       "m_type":       4415,
+                                                                                                                                       "proportion":   0,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "winid",
+                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "m_checkBox23836"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "font",
+                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                       "m_value":      "My CheckBox"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Value:",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }]
+                                                                                                               }, {
+                                                                                                                       "m_type":       4403,
+                                                                                                                       "proportion":   0,
+                                                                                                                       "border":       2,
+                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                       "m_styles":     [],
+                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                                       "m_properties": [{
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                       "m_value":      "flexGridSizer22437"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "# Columns:",
+                                                                                                                                       "m_value":      "4"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "# Rows:",
+                                                                                                                                       "m_value":      "1"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Growable columns:",
+                                                                                                                                       "m_value":      "4"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Growable rows:",
+                                                                                                                                       "m_value":      "1"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Horizontal gap:",
+                                                                                                                                       "m_value":      "0"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Vertical gap:",
+                                                                                                                                       "m_value":      "0"
+                                                                                                                               }],
+                                                                                                                       "m_events":     [],
+                                                                                                                       "m_children":   [{
+                                                                                                                                       "m_type":       4454,
+                                                                                                                                       "proportion":   1,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "Spacer23438"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "0,0"
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }, {
+                                                                                                                                       "m_type":       4415,
+                                                                                                                                       "proportion":   1,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "winid",
+                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "m_checkBox23639"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "font",
+                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                       "m_value":      "My CheckBox"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Value:",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }, {
+                                                                                                                                       "m_type":       4454,
+                                                                                                                                       "proportion":   1,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "Spacer24040"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "0,0"
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }, {
+                                                                                                                                       "m_type":       4415,
+                                                                                                                                       "proportion":   1,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "winid",
+                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "m_checkBox23841"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "font",
+                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                       "m_value":      "My CheckBox"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Value:",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }]
+                                                                                                               }, {
+                                                                                                                       "m_type":       4403,
+                                                                                                                       "proportion":   0,
+                                                                                                                       "border":       2,
+                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                       "m_styles":     [],
+                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                                       "m_properties": [{
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                       "m_value":      "flexGridSizer22442"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "# Columns:",
+                                                                                                                                       "m_value":      "4"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "# Rows:",
+                                                                                                                                       "m_value":      "1"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Growable columns:",
+                                                                                                                                       "m_value":      "4"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Growable rows:",
+                                                                                                                                       "m_value":      "1"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Horizontal gap:",
+                                                                                                                                       "m_value":      "0"
+                                                                                                                               }, {
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Vertical gap:",
+                                                                                                                                       "m_value":      "0"
+                                                                                                                               }],
+                                                                                                                       "m_events":     [],
+                                                                                                                       "m_children":   [{
+                                                                                                                                       "m_type":       4454,
+                                                                                                                                       "proportion":   0,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "Spacer23443"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "0,0"
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }, {
+                                                                                                                                       "m_type":       4415,
+                                                                                                                                       "proportion":   0,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "winid",
+                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "m_checkBox23644"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "font",
+                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                       "m_value":      "My CheckBox"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Value:",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }, {
+                                                                                                                                       "m_type":       4454,
+                                                                                                                                       "proportion":   0,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "Spacer24045"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "0,0"
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }, {
+                                                                                                                                       "m_type":       4415,
+                                                                                                                                       "proportion":   0,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "winid",
+                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "m_checkBox23846"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "font",
+                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                       "m_value":      "My CheckBox"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Value:",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }]
+                                                                                                               }]
+                                                                                               }]
+                                                                               }]
+                                                               }, {
+                                                                       "m_type":       4441,
+                                                                       "proportion":   0,
+                                                                       "border":       5,
+                                                                       "gbSpan":       "1,1",
+                                                                       "gbPosition":   "0,0",
+                                                                       "m_styles":     ["wxTAB_TRAVERSAL"],
+                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                       "m_properties": [{
+                                                                                       "type": "winid",
+                                                                                       "m_label":      "ID:",
+                                                                                       "m_winid":      "wxID_ANY"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Size:",
+                                                                                       "m_value":      "-1,-1"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Minimum Size:",
+                                                                                       "m_value":      "-1,-1"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Name:",
+                                                                                       "m_value":      "m_panelHAMLib"
+                                                                               }, {
+                                                                                       "type": "multi-string",
+                                                                                       "m_label":      "Tooltip:",
+                                                                                       "m_value":      "Hamlib Configuration"
+                                                                               }, {
+                                                                                       "type": "colour",
+                                                                                       "m_label":      "Bg Colour:",
+                                                                                       "colour":       "<Default>"
+                                                                               }, {
+                                                                                       "type": "colour",
+                                                                                       "m_label":      "Fg Colour:",
+                                                                                       "colour":       "<Default>"
+                                                                               }, {
+                                                                                       "type": "font",
+                                                                                       "m_label":      "Font:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Hidden",
+                                                                                       "m_value":      false
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Disabled",
+                                                                                       "m_value":      false
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Focused",
+                                                                                       "m_value":      false
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Class Name:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Include File:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Label:",
+                                                                                       "m_value":      "HAMlib"
+                                                                               }, {
+                                                                                       "type": "filePicker",
+                                                                                       "m_label":      "Bitmap File:",
+                                                                                       "m_path":       ""
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Selected",
+                                                                                       "m_value":      false
+                                                                               }],
+                                                                       "m_events":     [],
+                                                                       "m_children":   [{
+                                                                                       "m_type":       4449,
+                                                                                       "proportion":   1,
+                                                                                       "border":       5,
+                                                                                       "gbSpan":       "1,1",
+                                                                                       "gbPosition":   "0,0",
+                                                                                       "m_styles":     [],
+                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                       "m_properties": [{
+                                                                                                       "type": "string",
+                                                                                                       "m_label":      "Name:",
+                                                                                                       "m_value":      "staticBoxSizer296"
+                                                                                               }, {
+                                                                                                       "type": "choice",
+                                                                                                       "m_label":      "Orientation:",
+                                                                                                       "m_selection":  0,
+                                                                                                       "m_options":    ["Vertical", "Horizontal"]
+                                                                                               }, {
+                                                                                                       "type": "string",
+                                                                                                       "m_label":      "Label:",
+                                                                                                       "m_value":      ""
+                                                                                               }],
+                                                                                       "m_events":     [],
+                                                                                       "m_children":   [{
+                                                                                                       "m_type":       4403,
+                                                                                                       "proportion":   1,
+                                                                                                       "border":       2,
+                                                                                                       "gbSpan":       "1,1",
+                                                                                                       "gbPosition":   "0,0",
+                                                                                                       "m_styles":     [],
+                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                       "m_properties": [{
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Name:",
+                                                                                                                       "m_value":      "flexGridSizer316"
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "# Columns:",
+                                                                                                                       "m_value":      "2"
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "# Rows:",
+                                                                                                                       "m_value":      "1"
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Growable columns:",
+                                                                                                                       "m_value":      "2"
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Growable rows:",
+                                                                                                                       "m_value":      "1"
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Horizontal gap:",
+                                                                                                                       "m_value":      "0"
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Vertical gap:",
+                                                                                                                       "m_value":      "0"
+                                                                                                               }],
+                                                                                                       "m_events":     [],
+                                                                                                       "m_children":   [{
+                                                                                                                       "m_type":       4401,
+                                                                                                                       "proportion":   1,
+                                                                                                                       "border":       2,
+                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                       "m_styles":     [],
+                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                                       "m_properties": [{
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                       "m_value":      "boxSizer302"
+                                                                                                                               }, {
+                                                                                                                                       "type": "choice",
+                                                                                                                                       "m_label":      "Orientation:",
+                                                                                                                                       "m_selection":  1,
+                                                                                                                                       "m_options":    ["wxVERTICAL", "wxHORIZONTAL"]
+                                                                                                                               }],
+                                                                                                                       "m_events":     [],
+                                                                                                                       "m_children":   [{
+                                                                                                                                       "m_type":       4405,
+                                                                                                                                       "proportion":   0,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "winid",
+                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "m_staticText304"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "font",
+                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                       "m_value":      "Rig:"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Wrap:",
+                                                                                                                                                       "m_value":      "-1"
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }, {
+                                                                                                                                       "m_type":       4406,
+                                                                                                                                       "proportion":   0,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "winid",
+                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "m_textCtrl306"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "font",
+                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Value:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Max Length:",
+                                                                                                                                                       "m_value":      "0"
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }]
+                                                                                                               }, {
+                                                                                                                       "m_type":       4401,
+                                                                                                                       "proportion":   1,
+                                                                                                                       "border":       2,
+                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                       "m_styles":     [],
+                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                                       "m_properties": [{
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                       "m_value":      "boxSizer312"
+                                                                                                                               }, {
+                                                                                                                                       "type": "choice",
+                                                                                                                                       "m_label":      "Orientation:",
+                                                                                                                                       "m_selection":  1,
+                                                                                                                                       "m_options":    ["wxVERTICAL", "wxHORIZONTAL"]
+                                                                                                                               }],
+                                                                                                                       "m_events":     [],
+                                                                                                                       "m_children":   [{
+                                                                                                                                       "m_type":       4405,
+                                                                                                                                       "proportion":   0,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "winid",
+                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "m_staticText308"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "font",
+                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                       "m_value":      "Device:"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Wrap:",
+                                                                                                                                                       "m_value":      "-1"
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }, {
+                                                                                                                                       "m_type":       4410,
+                                                                                                                                       "proportion":   0,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "winid",
+                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "m_comboBox314"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "font",
+                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "ComboBox Choices:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Selection:",
+                                                                                                                                                       "m_value":      "-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Value:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }]
+                                                                                                               }]
+                                                                                               }, {
+                                                                                                       "m_type":       4403,
+                                                                                                       "proportion":   1,
+                                                                                                       "border":       2,
+                                                                                                       "gbSpan":       "1,1",
+                                                                                                       "gbPosition":   "0,0",
+                                                                                                       "m_styles":     [],
+                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                       "m_properties": [{
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Name:",
+                                                                                                                       "m_value":      "flexGridSizer318"
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "# Columns:",
+                                                                                                                       "m_value":      "3"
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "# Rows:",
+                                                                                                                       "m_value":      "1"
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Growable columns:",
+                                                                                                                       "m_value":      "3"
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Growable rows:",
+                                                                                                                       "m_value":      "1"
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Horizontal gap:",
+                                                                                                                       "m_value":      "0"
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Vertical gap:",
+                                                                                                                       "m_value":      "0"
+                                                                                                               }],
+                                                                                                       "m_events":     [],
+                                                                                                       "m_children":   [{
+                                                                                                                       "m_type":       4401,
+                                                                                                                       "proportion":   1,
+                                                                                                                       "border":       2,
+                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                       "m_styles":     [],
+                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                                       "m_properties": [{
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                       "m_value":      "boxSizer320"
+                                                                                                                               }, {
+                                                                                                                                       "type": "choice",
+                                                                                                                                       "m_label":      "Orientation:",
+                                                                                                                                       "m_selection":  1,
+                                                                                                                                       "m_options":    ["wxVERTICAL", "wxHORIZONTAL"]
+                                                                                                                               }],
+                                                                                                                       "m_events":     [],
+                                                                                                                       "m_children":   [{
+                                                                                                                                       "m_type":       4405,
+                                                                                                                                       "proportion":   1,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "winid",
+                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "m_staticText326"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "font",
+                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                       "m_value":      "Retries:"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Wrap:",
+                                                                                                                                                       "m_value":      "-1"
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }, {
+                                                                                                                                       "m_type":       4406,
+                                                                                                                                       "proportion":   1,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "winid",
+                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "m_textCtrl328"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "font",
+                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Value:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Max Length:",
+                                                                                                                                                       "m_value":      "0"
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }]
+                                                                                                               }, {
+                                                                                                                       "m_type":       4401,
+                                                                                                                       "proportion":   1,
+                                                                                                                       "border":       2,
+                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                       "m_styles":     [],
+                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                                       "m_properties": [{
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                       "m_value":      "boxSizer32057"
+                                                                                                                               }, {
+                                                                                                                                       "type": "choice",
+                                                                                                                                       "m_label":      "Orientation:",
+                                                                                                                                       "m_selection":  1,
+                                                                                                                                       "m_options":    ["wxVERTICAL", "wxHORIZONTAL"]
+                                                                                                                               }],
+                                                                                                                       "m_events":     [],
+                                                                                                                       "m_children":   [{
+                                                                                                                                       "m_type":       4405,
+                                                                                                                                       "proportion":   1,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "winid",
+                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "m_staticText32658"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "font",
+                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                       "m_value":      "Retry Interval:"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Wrap:",
+                                                                                                                                                       "m_value":      "-1"
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }, {
+                                                                                                                                       "m_type":       4406,
+                                                                                                                                       "proportion":   1,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "winid",
+                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "m_textCtrl32859"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "font",
+                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Value:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Max Length:",
+                                                                                                                                                       "m_value":      "0"
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }]
+                                                                                                               }, {
+                                                                                                                       "m_type":       4401,
+                                                                                                                       "proportion":   1,
+                                                                                                                       "border":       2,
+                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                       "m_styles":     [],
+                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                                       "m_properties": [{
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                       "m_value":      "boxSizer32060"
+                                                                                                                               }, {
+                                                                                                                                       "type": "choice",
+                                                                                                                                       "m_label":      "Orientation:",
+                                                                                                                                       "m_selection":  1,
+                                                                                                                                       "m_options":    ["wxVERTICAL", "wxHORIZONTAL"]
+                                                                                                                               }],
+                                                                                                                       "m_events":     [],
+                                                                                                                       "m_children":   [{
+                                                                                                                                       "m_type":       4405,
+                                                                                                                                       "proportion":   1,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "winid",
+                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "m_staticText32661"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "font",
+                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                       "m_value":      "Baud Rate:"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Wrap:",
+                                                                                                                                                       "m_value":      "-1"
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }, {
+                                                                                                                                       "m_type":       4410,
+                                                                                                                                       "proportion":   1,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "winid",
+                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "m_comboBox339"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "font",
+                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "ComboBox Choices:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Selection:",
+                                                                                                                                                       "m_value":      "-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Value:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }]
+                                                                                                               }]
+                                                                                               }, {
+                                                                                                       "m_type":       4403,
+                                                                                                       "proportion":   1,
+                                                                                                       "border":       2,
+                                                                                                       "gbSpan":       "1,1",
+                                                                                                       "gbPosition":   "0,0",
+                                                                                                       "m_styles":     [],
+                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                       "m_properties": [{
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Name:",
+                                                                                                                       "m_value":      "flexGridSizer31863"
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "# Columns:",
+                                                                                                                       "m_value":      "3"
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "# Rows:",
+                                                                                                                       "m_value":      "1"
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Growable columns:",
+                                                                                                                       "m_value":      "3"
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Growable rows:",
+                                                                                                                       "m_value":      "1"
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Horizontal gap:",
+                                                                                                                       "m_value":      "0"
+                                                                                                               }, {
+                                                                                                                       "type": "string",
+                                                                                                                       "m_label":      "Vertical gap:",
+                                                                                                                       "m_value":      "0"
+                                                                                                               }],
+                                                                                                       "m_events":     [],
+                                                                                                       "m_children":   [{
+                                                                                                                       "m_type":       4401,
+                                                                                                                       "proportion":   1,
+                                                                                                                       "border":       2,
+                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                       "m_styles":     [],
+                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                                       "m_properties": [{
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                       "m_value":      "boxSizer32064"
+                                                                                                                               }, {
+                                                                                                                                       "type": "choice",
+                                                                                                                                       "m_label":      "Orientation:",
+                                                                                                                                       "m_selection":  1,
+                                                                                                                                       "m_options":    ["wxVERTICAL", "wxHORIZONTAL"]
+                                                                                                                               }],
+                                                                                                                       "m_events":     [],
+                                                                                                                       "m_children":   [{
+                                                                                                                                       "m_type":       4405,
+                                                                                                                                       "proportion":   1,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "winid",
+                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "m_staticText32665"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "font",
+                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                       "m_value":      "Write Delay:"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Wrap:",
+                                                                                                                                                       "m_value":      "-1"
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }, {
+                                                                                                                                       "m_type":       4406,
+                                                                                                                                       "proportion":   1,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "winid",
+                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "m_textCtrl32866"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "font",
+                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Value:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Max Length:",
+                                                                                                                                                       "m_value":      "0"
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }]
+                                                                                                               }, {
+                                                                                                                       "m_type":       4401,
+                                                                                                                       "proportion":   1,
+                                                                                                                       "border":       2,
+                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                       "m_styles":     [],
+                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                                       "m_properties": [{
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                       "m_value":      "boxSizer3205767"
+                                                                                                                               }, {
+                                                                                                                                       "type": "choice",
+                                                                                                                                       "m_label":      "Orientation:",
+                                                                                                                                       "m_selection":  1,
+                                                                                                                                       "m_options":    ["wxVERTICAL", "wxHORIZONTAL"]
+                                                                                                                               }],
+                                                                                                                       "m_events":     [],
+                                                                                                                       "m_children":   [{
+                                                                                                                                       "m_type":       4405,
+                                                                                                                                       "proportion":   1,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "winid",
+                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "m_staticText3265868"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "font",
+                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                       "m_value":      "Post Write Delay:"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Wrap:",
+                                                                                                                                                       "m_value":      "-1"
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }, {
+                                                                                                                                       "m_type":       4406,
+                                                                                                                                       "proportion":   1,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "winid",
+                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "m_textCtrl3285969"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "font",
+                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Value:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Max Length:",
+                                                                                                                                                       "m_value":      "0"
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }]
+                                                                                                               }, {
+                                                                                                                       "m_type":       4401,
+                                                                                                                       "proportion":   1,
+                                                                                                                       "border":       2,
+                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                       "m_styles":     [],
+                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                                                       "m_properties": [{
+                                                                                                                                       "type": "string",
+                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                       "m_value":      "boxSizer3206070"
+                                                                                                                               }, {
+                                                                                                                                       "type": "choice",
+                                                                                                                                       "m_label":      "Orientation:",
+                                                                                                                                       "m_selection":  1,
+                                                                                                                                       "m_options":    ["wxVERTICAL", "wxHORIZONTAL"]
+                                                                                                                               }],
+                                                                                                                       "m_events":     [],
+                                                                                                                       "m_children":   [{
+                                                                                                                                       "m_type":       4405,
+                                                                                                                                       "proportion":   1,
+                                                                                                                                       "border":       2,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     [],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "winid",
+                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "m_staticText3266171"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "font",
+                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Label:",
+                                                                                                                                                       "m_value":      "Stop bits:"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Wrap:",
+                                                                                                                                                       "m_value":      "-1"
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }, {
+                                                                                                                                       "m_type":       4419,
+                                                                                                                                       "proportion":   0,
+                                                                                                                                       "border":       5,
+                                                                                                                                       "gbSpan":       "1,1",
+                                                                                                                                       "gbPosition":   "0,0",
+                                                                                                                                       "m_styles":     ["wxSL_HORIZONTAL"],
+                                                                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                                                                                       "m_properties": [{
+                                                                                                                                                       "type": "winid",
+                                                                                                                                                       "m_label":      "ID:",
+                                                                                                                                                       "m_winid":      "wxID_ANY"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Minimum Size:",
+                                                                                                                                                       "m_value":      "-1,-1"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Name:",
+                                                                                                                                                       "m_value":      "m_slider361"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "multi-string",
+                                                                                                                                                       "m_label":      "Tooltip:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Bg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "colour",
+                                                                                                                                                       "m_label":      "Fg Colour:",
+                                                                                                                                                       "colour":       "<Default>"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "font",
+                                                                                                                                                       "m_label":      "Font:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Hidden",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Disabled",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "bool",
+                                                                                                                                                       "m_label":      "Focused",
+                                                                                                                                                       "m_value":      false
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Class Name:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Include File:",
+                                                                                                                                                       "m_value":      ""
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Value:",
+                                                                                                                                                       "m_value":      "0"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Min value:",
+                                                                                                                                                       "m_value":      "0"
+                                                                                                                                               }, {
+                                                                                                                                                       "type": "string",
+                                                                                                                                                       "m_label":      "Max value:",
+                                                                                                                                                       "m_value":      "2"
+                                                                                                                                               }],
+                                                                                                                                       "m_events":     [],
+                                                                                                                                       "m_children":   []
+                                                                                                                               }]
+                                                                                                               }]
+                                                                                               }]
+                                                                               }]
+                                                               }, {
+                                                                       "m_type":       4441,
+                                                                       "proportion":   0,
+                                                                       "border":       5,
+                                                                       "gbSpan":       "1,1",
+                                                                       "gbPosition":   "0,0",
+                                                                       "m_styles":     ["wxTAB_TRAVERSAL"],
+                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                       "m_properties": [{
+                                                                                       "type": "winid",
+                                                                                       "m_label":      "ID:",
+                                                                                       "m_winid":      "wxID_ANY"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Size:",
+                                                                                       "m_value":      "-1,-1"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Minimum Size:",
+                                                                                       "m_value":      "-1,-1"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Name:",
+                                                                                       "m_value":      "m_panelMemMap"
+                                                                               }, {
+                                                                                       "type": "multi-string",
+                                                                                       "m_label":      "Tooltip:",
+                                                                                       "m_value":      "Memory Mapped control"
+                                                                               }, {
+                                                                                       "type": "colour",
+                                                                                       "m_label":      "Bg Colour:",
+                                                                                       "colour":       "<Default>"
+                                                                               }, {
+                                                                                       "type": "colour",
+                                                                                       "m_label":      "Fg Colour:",
+                                                                                       "colour":       "<Default>"
+                                                                               }, {
+                                                                                       "type": "font",
+                                                                                       "m_label":      "Font:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Hidden",
+                                                                                       "m_value":      false
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Disabled",
+                                                                                       "m_value":      false
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Focused",
+                                                                                       "m_value":      false
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Class Name:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Include File:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Label:",
+                                                                                       "m_value":      "MemMap"
+                                                                               }, {
+                                                                                       "type": "filePicker",
+                                                                                       "m_label":      "Bitmap File:",
+                                                                                       "m_path":       ""
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Selected",
+                                                                                       "m_value":      false
+                                                                               }],
+                                                                       "m_events":     [],
+                                                                       "m_children":   [{
+                                                                                       "m_type":       4449,
+                                                                                       "proportion":   1,
+                                                                                       "border":       5,
+                                                                                       "gbSpan":       "1,1",
+                                                                                       "gbPosition":   "0,0",
+                                                                                       "m_styles":     [],
+                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                       "m_properties": [{
+                                                                                                       "type": "string",
+                                                                                                       "m_label":      "Name:",
+                                                                                                       "m_value":      "staticBoxSizer294"
+                                                                                               }, {
+                                                                                                       "type": "choice",
+                                                                                                       "m_label":      "Orientation:",
+                                                                                                       "m_selection":  0,
+                                                                                                       "m_options":    ["Vertical", "Horizontal"]
+                                                                                               }, {
+                                                                                                       "type": "string",
+                                                                                                       "m_label":      "Label:",
+                                                                                                       "m_value":      ""
+                                                                                               }],
+                                                                                       "m_events":     [],
+                                                                                       "m_children":   []
+                                                                               }]
+                                                               }, {
+                                                                       "m_type":       4441,
+                                                                       "proportion":   0,
+                                                                       "border":       5,
+                                                                       "gbSpan":       "1,1",
+                                                                       "gbPosition":   "0,0",
+                                                                       "m_styles":     ["wxTAB_TRAVERSAL"],
+                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                       "m_properties": [{
+                                                                                       "type": "winid",
+                                                                                       "m_label":      "ID:",
+                                                                                       "m_winid":      "wxID_ANY"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Size:",
+                                                                                       "m_value":      "-1,-1"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Minimum Size:",
+                                                                                       "m_value":      "-1,-1"
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Name:",
+                                                                                       "m_value":      "m_panelXMLRPC"
+                                                                               }, {
+                                                                                       "type": "multi-string",
+                                                                                       "m_label":      "Tooltip:",
+                                                                                       "m_value":      "XML-RPC control"
+                                                                               }, {
+                                                                                       "type": "colour",
+                                                                                       "m_label":      "Bg Colour:",
+                                                                                       "colour":       "<Default>"
+                                                                               }, {
+                                                                                       "type": "colour",
+                                                                                       "m_label":      "Fg Colour:",
+                                                                                       "colour":       "<Default>"
+                                                                               }, {
+                                                                                       "type": "font",
+                                                                                       "m_label":      "Font:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Hidden",
+                                                                                       "m_value":      false
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Disabled",
+                                                                                       "m_value":      false
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Focused",
+                                                                                       "m_value":      false
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Class Name:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Include File:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Label:",
+                                                                                       "m_value":      "XML-RPC"
+                                                                               }, {
+                                                                                       "type": "filePicker",
+                                                                                       "m_label":      "Bitmap File:",
+                                                                                       "m_path":       ""
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Selected",
+                                                                                       "m_value":      false
+                                                                               }],
+                                                                       "m_events":     [],
+                                                                       "m_children":   [{
+                                                                                       "m_type":       4449,
+                                                                                       "proportion":   1,
+                                                                                       "border":       5,
+                                                                                       "gbSpan":       "1,1",
+                                                                                       "gbPosition":   "0,0",
+                                                                                       "m_styles":     [],
+                                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxEXPAND"],
+                                                                                       "m_properties": [{
+                                                                                                       "type": "string",
+                                                                                                       "m_label":      "Name:",
+                                                                                                       "m_value":      "staticBoxSizer85"
+                                                                                               }, {
+                                                                                                       "type": "choice",
+                                                                                                       "m_label":      "Orientation:",
+                                                                                                       "m_selection":  0,
+                                                                                                       "m_options":    ["Vertical", "Horizontal"]
+                                                                                               }, {
+                                                                                                       "type": "string",
+                                                                                                       "m_label":      "Label:",
+                                                                                                       "m_value":      ""
+                                                                                               }],
+                                                                                       "m_events":     [],
+                                                                                       "m_children":   []
+                                                                               }]
+                                                               }]
+                                               }, {
+                                                       "m_type":       4467,
+                                                       "proportion":   0,
+                                                       "border":       2,
+                                                       "gbSpan":       "1,1",
+                                                       "gbPosition":   "0,0",
+                                                       "m_styles":     [],
+                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM", "wxALIGN_RIGHT", "wxALIGN_BOTTOM"],
+                                                       "m_properties": [{
+                                                                       "type": "winid",
+                                                                       "m_label":      "ID:",
+                                                                       "m_winid":      "wxID_ANY"
+                                                               }, {
+                                                                       "type": "string",
+                                                                       "m_label":      "Size:",
+                                                                       "m_value":      "-1,-1"
+                                                               }, {
+                                                                       "type": "string",
+                                                                       "m_label":      "Minimum Size:",
+                                                                       "m_value":      "-1,-1"
+                                                               }, {
+                                                                       "type": "string",
+                                                                       "m_label":      "Name:",
+                                                                       "m_value":      "m_stdBtnSizer155"
+                                                               }, {
+                                                                       "type": "multi-string",
+                                                                       "m_label":      "Tooltip:",
+                                                                       "m_value":      ""
+                                                               }, {
+                                                                       "type": "colour",
+                                                                       "m_label":      "Bg Colour:",
+                                                                       "colour":       "<Default>"
+                                                               }, {
+                                                                       "type": "colour",
+                                                                       "m_label":      "Fg Colour:",
+                                                                       "colour":       "<Default>"
+                                                               }, {
+                                                                       "type": "font",
+                                                                       "m_label":      "Font:",
+                                                                       "m_value":      ""
+                                                               }, {
+                                                                       "type": "bool",
+                                                                       "m_label":      "Hidden",
+                                                                       "m_value":      false
+                                                               }, {
+                                                                       "type": "bool",
+                                                                       "m_label":      "Disabled",
+                                                                       "m_value":      false
+                                                               }, {
+                                                                       "type": "bool",
+                                                                       "m_label":      "Focused",
+                                                                       "m_value":      false
+                                                               }, {
+                                                                       "type": "string",
+                                                                       "m_label":      "Class Name:",
+                                                                       "m_value":      ""
+                                                               }, {
+                                                                       "type": "string",
+                                                                       "m_label":      "Include File:",
+                                                                       "m_value":      ""
+                                                               }],
+                                                       "m_events":     [],
+                                                       "m_children":   [{
+                                                                       "m_type":       4468,
+                                                                       "proportion":   0,
+                                                                       "border":       5,
+                                                                       "gbSpan":       "1,1",
+                                                                       "gbPosition":   "0,0",
+                                                                       "m_styles":     [],
+                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                       "m_properties": [{
+                                                                                       "type": "choice",
+                                                                                       "m_label":      "ID:",
+                                                                                       "m_selection":  3,
+                                                                                       "m_options":    ["wxID_OK", "wxID_YES", "wxID_SAVE", "wxID_APPLY", "wxID_CLOSE", "wxID_NO", "wxID_CANCEL", "wxID_HELP", "wxID_CONTEXT_HELP"]
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Name:",
+                                                                                       "m_value":      "m_button165"
+                                                                               }, {
+                                                                                       "type": "multi-string",
+                                                                                       "m_label":      "Tooltip:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Default Button",
+                                                                                       "m_value":      false
+                                                                               }],
+                                                                       "m_events":     [],
+                                                                       "m_children":   []
+                                                               }, {
+                                                                       "m_type":       4468,
+                                                                       "proportion":   0,
+                                                                       "border":       5,
+                                                                       "gbSpan":       "1,1",
+                                                                       "gbPosition":   "0,0",
+                                                                       "m_styles":     [],
+                                                                       "m_sizerFlags": ["wxALL", "wxLEFT", "wxRIGHT", "wxTOP", "wxBOTTOM"],
+                                                                       "m_properties": [{
+                                                                                       "type": "choice",
+                                                                                       "m_label":      "ID:",
+                                                                                       "m_selection":  0,
+                                                                                       "m_options":    ["wxID_OK", "wxID_YES", "wxID_SAVE", "wxID_APPLY", "wxID_CLOSE", "wxID_NO", "wxID_CANCEL", "wxID_HELP", "wxID_CONTEXT_HELP"]
+                                                                               }, {
+                                                                                       "type": "string",
+                                                                                       "m_label":      "Name:",
+                                                                                       "m_value":      "m_button167"
+                                                                               }, {
+                                                                                       "type": "multi-string",
+                                                                                       "m_label":      "Tooltip:",
+                                                                                       "m_value":      ""
+                                                                               }, {
+                                                                                       "type": "bool",
+                                                                                       "m_label":      "Default Button",
+                                                                                       "m_value":      true
+                                                                               }],
+                                                                       "m_events":     [],
+                                                                       "m_children":   []
+                                                               }]
+                                               }]
+                               }]
+               }]
+}
\ No newline at end of file
diff --git a/fdmdv2/build/codelite/hamlib_trial/wxcrafter.xrc b/fdmdv2/build/codelite/hamlib_trial/wxcrafter.xrc
new file mode 100644 (file)
index 0000000..a38179b
--- /dev/null
@@ -0,0 +1,822 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<resource xmlns="http://www.wxwindows.org/wxxrc" version="2.3.0.1">
+  <object class="wxFrame" name="MainFrameBaseClass">
+    <title>topFrame</title>
+    <centered>1</centered>
+    <style>wxCAPTION|wxRESIZE_BORDER|wxMAXIMIZE_BOX|wxMINIMIZE_BOX|wxSYSTEM_MENU|wxCLOSE_BOX</style>
+    <size>500,300</size>
+    <object class="wxBoxSizer">
+      <orient>wxVERTICAL</orient>
+      <object class="sizeritem">
+        <flag>wxEXPAND</flag>
+        <border>5</border>
+        <option>1</option>
+        <object class="wxPanel" name="m_mainPanel">
+          <style>wxTAB_TRAVERSAL</style>
+          <object class="wxBoxSizer">
+            <orient>wxVERTICAL</orient>
+          </object>
+        </object>
+      </object>
+    </object>
+    <object class="wxMenuBar" name="m_menuBar">
+      <style/>
+      <object class="wxMenu" name="m_mbFile">
+        <label>File</label>
+        <style/>
+        <object class="wxMenuItem" name="m_mbiNew">
+          <label>New</label>
+          <accel/>
+        </object>
+        <object class="wxMenuItem" name="m_mbiOpen">
+          <label>Open</label>
+          <accel/>
+        </object>
+        <object class="wxMenuItem" name="m_mbiSave">
+          <label>Save</label>
+          <accel/>
+        </object>
+        <object class="wxMenuItem" name="m_mbiSaveAs">
+          <label>Save As</label>
+          <accel/>
+        </object>
+        <object class="separator"/>
+        <object class="wxMenuItem" name="m_mbiExit">
+          <label>Exit</label>
+          <accel>Alt-X</accel>
+        </object>
+      </object>
+      <object class="wxMenu" name="m_mbTools">
+        <label>Tools</label>
+        <style/>
+        <object class="wxMenuItem" name="m_mbiPrefs">
+          <label>Preferences</label>
+          <accel/>
+        </object>
+      </object>
+      <object class="wxMenu" name="m_mbHelp">
+        <label>Help</label>
+        <style/>
+        <object class="wxMenuItem" name="m_menuItem9">
+          <label>About...</label>
+          <accel/>
+        </object>
+      </object>
+    </object>
+    <object class="wxToolBar" name="m_mainToolbar">
+      <style>wxTB_FLAT</style>
+      <bitmapsize>16,16</bitmapsize>
+      <object class="tool" name="m_tbiNew">
+        <label>New</label>
+        <tooltip>New</tooltip>
+        <longhelp>New</longhelp>
+        <bitmap>C:/Users/wittend/AppData/Local/Temp/placeholder16.png</bitmap>
+      </object>
+      <object class="tool" name="m_rbiOpen">
+        <label>Tool Label</label>
+        <tooltip>Open</tooltip>
+        <longhelp>Open</longhelp>
+        <bitmap>C:/Users/wittend/AppData/Local/Temp/placeholder16.png</bitmap>
+      </object>
+    </object>
+  </object>
+  <object class="wxDialog" name="DlgRigCtrlBase">
+    <title>Rig Control</title>
+    <centered>1</centered>
+    <style>wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER|wxCLOSE_BOX</style>
+    <size>450,300</size>
+    <object class="wxBoxSizer">
+      <orient>wxVERTICAL</orient>
+      <object class="sizeritem">
+        <flag>wxALL|wxEXPAND</flag>
+        <border>2</border>
+        <option>1</option>
+        <object class="wxNotebook" name="m_notebook53">
+          <style>wxBK_DEFAULT</style>
+          <object class="notebookpage">
+            <label>Hardware PTT</label>
+            <selected>1</selected>
+            <object class="wxPanel" name="m_panelHDWPTT">
+              <style>wxTAB_TRAVERSAL</style>
+              <tooltip>Hardware Push-to-Talk</tooltip>
+              <object class="wxFlexGridSizer">
+                <cols>1</cols>
+                <rows>3</rows>
+                <vgap>0</vgap>
+                <hgap>0</hgap>
+                <growablecols>1</growablecols>
+                <growablerows>3</growablerows>
+                <object class="sizeritem" name="staticBoxSizer169">
+                  <flag>wxALL|wxEXPAND</flag>
+                  <border>2</border>
+                  <object class="wxStaticBoxSizer" name="staticBoxSizer169">
+                    <sizeritem>
+                      <object class="spacer"/>
+                    </sizeritem>
+                    <orient>wxVERTICAL</orient>
+                    <label/>
+                    <object class="sizeritem">
+                      <flag>wxALL|wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL</flag>
+                      <border>2</border>
+                      <option>1</option>
+                      <object class="wxCheckBox" name="m_checkBox7537">
+                        <style/>
+                        <label>PTT tone on right audio channel</label>
+                        <checked>0</checked>
+                      </object>
+                    </object>
+                  </object>
+                </object>
+                <object class="sizeritem" name="gridSizer159">
+                  <flag>wxALL|wxALIGN_LEFT|wxALIGN_TOP</flag>
+                  <border>2</border>
+                  <object class="wxGridSizer">
+                    <cols>1</cols>
+                    <rows>1</rows>
+                    <vgap>0</vgap>
+                    <hgap>0</hgap>
+                    <object class="sizeritem" name="staticBoxSizer157">
+                      <flag>wxALL|wxEXPAND|wxALIGN_TOP</flag>
+                      <border>2</border>
+                      <object class="wxStaticBoxSizer" name="staticBoxSizer157">
+                        <sizeritem>
+                          <object class="spacer"/>
+                        </sizeritem>
+                        <orient>wxHORIZONTAL</orient>
+                        <label>h/w ptt device pin</label>
+                        <object class="sizeritem" name="boxSizer175">
+                          <flag>wxALL</flag>
+                          <border>2</border>
+                          <option>1</option>
+                          <object class="wxBoxSizer">
+                            <orient>wxVERTICAL</orient>
+                            <object class="sizeritem">
+                              <flag>wxALL|wxALIGN_TOP</flag>
+                              <border>2</border>
+                              <object class="wxCheckBox" name="m_checkBox9112">
+                                <style/>
+                                <label>Use separate PTT device pin</label>
+                                <checked>0</checked>
+                              </object>
+                            </object>
+                            <object class="sizeritem">
+                              <flag>wxALL</flag>
+                              <border>5</border>
+                              <object class="wxStaticText" name="m_staticText173">
+                                <label>Device:</label>
+                                <style/>
+                              </object>
+                            </object>
+                            <object class="sizeritem">
+                              <flag>wxALL</flag>
+                              <border>2</border>
+                              <object class="wxComboBox" name="m_comboBox9313">
+                                <style/>
+                                <selection>-1</selection>
+                                <content/>
+                              </object>
+                            </object>
+                          </object>
+                        </object>
+                        <object class="sizeritem" name="boxSizer171">
+                          <flag>wxALL</flag>
+                          <border>2</border>
+                          <option>1</option>
+                          <object class="wxBoxSizer">
+                            <orient>wxHORIZONTAL</orient>
+                            <object class="sizeritem" name="boxSizer12714">
+                              <flag>wxALL|wxALIGN_CENTER_HORIZONTAL</flag>
+                              <border>2</border>
+                              <option>1</option>
+                              <object class="wxBoxSizer">
+                                <orient>wxVERTICAL</orient>
+                                <object class="sizeritem">
+                                  <flag>wxALL|wxALIGN_CENTER_HORIZONTAL</flag>
+                                  <border>2</border>
+                                  <option>1</option>
+                                  <object class="wxRadioBox" name="m_radioBox10115">
+                                    <label>Use RTS</label>
+                                    <style>wxRA_SPECIFY_COLS</style>
+                                    <dimension>2</dimension>
+                                    <selection>0</selection>
+                                    <content>
+                                      <item>Normal (V-)</item>
+                                      <item>Inverted (V+)</item>
+                                    </content>
+                                  </object>
+                                </object>
+                                <object class="sizeritem">
+                                  <flag>wxALL|wxALIGN_CENTER_HORIZONTAL</flag>
+                                  <border>2</border>
+                                  <option>1</option>
+                                  <object class="wxRadioBox" name="m_radioBox10316">
+                                    <label>Use DTR</label>
+                                    <style>wxRA_SPECIFY_COLS</style>
+                                    <dimension>2</dimension>
+                                    <selection>0</selection>
+                                    <content>
+                                      <item>Normal (V-)</item>
+                                      <item>Inverted (V+)</item>
+                                    </content>
+                                  </object>
+                                </object>
+                                <object class="sizeritem" name="boxSizer13118">
+                                  <flag>wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL</flag>
+                                  <border>2</border>
+                                  <object class="wxBoxSizer">
+                                    <orient>wxHORIZONTAL</orient>
+                                    <object class="sizeritem">
+                                      <flag>wxALL</flag>
+                                      <border>2</border>
+                                      <option>1</option>
+                                      <object class="wxButton" name="m_button11319">
+                                        <label>Initialize</label>
+                                        <style/>
+                                        <default>0</default>
+                                      </object>
+                                    </object>
+                                  </object>
+                                </object>
+                              </object>
+                            </object>
+                          </object>
+                        </object>
+                      </object>
+                    </object>
+                  </object>
+                </object>
+                <object class="sizeritem" name="staticBoxSizer79420">
+                  <flag>wxALL|wxEXPAND|wxALIGN_LEFT</flag>
+                  <border>2</border>
+                  <object class="wxStaticBoxSizer" name="staticBoxSizer79420">
+                    <sizeritem>
+                      <object class="spacer"/>
+                    </sizeritem>
+                    <orient>wxHORIZONTAL</orient>
+                    <label>PTT delay for all CAT/PTT types</label>
+                    <object class="sizeritem">
+                      <flag>wxALL|wxALIGN_CENTER_VERTICAL</flag>
+                      <border>2</border>
+                      <object class="wxStaticText" name="m_staticText177">
+                        <label>Start of xmit delay</label>
+                        <style/>
+                      </object>
+                    </object>
+                    <object class="sizeritem">
+                      <flag>wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL</flag>
+                      <border>2</border>
+                      <option>1</option>
+                      <object class="wxSlider" name="m_slider10721">
+                        <style>wxSL_HORIZONTAL</style>
+                        <min>0</min>
+                        <max>100</max>
+                        <value>50</value>
+                      </object>
+                    </object>
+                    <object class="sizeritem">
+                      <flag>wxALL|wxALIGN_CENTER_VERTICAL</flag>
+                      <border>2</border>
+                      <object class="wxStaticText" name="m_staticText179">
+                        <label>End of xmit delay:</label>
+                        <style/>
+                      </object>
+                    </object>
+                    <object class="sizeritem">
+                      <flag>wxALL|wxALIGN_CENTER_HORIZONTAL|wxALIGN_CENTER_VERTICAL</flag>
+                      <border>2</border>
+                      <object class="wxSlider" name="m_slider10922">
+                        <style>wxSL_HORIZONTAL</style>
+                        <min>0</min>
+                        <max>100</max>
+                        <value>50</value>
+                      </object>
+                    </object>
+                  </object>
+                </object>
+              </object>
+            </object>
+          </object>
+          <object class="notebookpage">
+            <label>RigCAT</label>
+            <selected>0</selected>
+            <object class="wxPanel" name="m_panelRIGCat">
+              <style>wxTAB_TRAVERSAL</style>
+              <tooltip>RigCat</tooltip>
+              <object class="wxBoxSizer">
+                <orient>wxVERTICAL</orient>
+                <object class="sizeritem">
+                  <flag>wxALL|wxALIGN_CENTER_HORIZONTAL</flag>
+                  <border>2</border>
+                  <object class="wxRadioButton" name="m_radioButton185">
+                    <style/>
+                    <label>Use RigCAT</label>
+                    <value>1</value>
+                  </object>
+                </object>
+                <object class="sizeritem" name="staticBoxSizer183">
+                  <flag>wxALL|wxALIGN_TOP</flag>
+                  <border>2</border>
+                  <option>1</option>
+                  <object class="wxStaticBoxSizer" name="staticBoxSizer183">
+                    <sizeritem>
+                      <object class="spacer"/>
+                    </sizeritem>
+                    <orient>wxVERTICAL</orient>
+                    <label/>
+                    <object class="sizeritem" name="flexGridSizer187">
+                      <flag>wxALL</flag>
+                      <border>2</border>
+                      <object class="wxFlexGridSizer">
+                        <cols>1</cols>
+                        <rows>1</rows>
+                        <vgap>0</vgap>
+                        <hgap>0</hgap>
+                        <growablecols>1</growablecols>
+                        <growablerows>1</growablerows>
+                        <object class="sizeritem" name="flexGridSizer204">
+                          <flag>wxALL|wxEXPAND</flag>
+                          <border>2</border>
+                          <option>1</option>
+                          <object class="wxFlexGridSizer">
+                            <cols>4</cols>
+                            <rows>3</rows>
+                            <vgap>0</vgap>
+                            <hgap>0</hgap>
+                            <growablecols/>
+                            <growablerows/>
+                            <object class="sizeritem" name="boxSizer193">
+                              <flag>wxALL|wxEXPAND|wxALIGN_CENTER_VERTICAL</flag>
+                              <border>2</border>
+                              <option>1</option>
+                              <object class="wxBoxSizer">
+                                <orient>wxHORIZONTAL</orient>
+                                <object class="sizeritem">
+                                  <flag>wxALL|wxALIGN_CENTER_VERTICAL</flag>
+                                  <border>2</border>
+                                  <object class="wxStaticText" name="m_staticText189">
+                                    <label>File:</label>
+                                    <style/>
+                                  </object>
+                                </object>
+                                <object class="sizeritem">
+                                  <flag>wxALL|wxALIGN_CENTER_VERTICAL</flag>
+                                  <border>2</border>
+                                  <object class="wxTextCtrl" name="m_textCtrl191">
+                                    <style/>
+                                  </object>
+                                </object>
+                              </object>
+                            </object>
+                            <object class="sizeritem" name="boxSizer206">
+                              <flag>wxALL|wxEXPAND</flag>
+                              <border>5</border>
+                              <option>1</option>
+                              <object class="wxBoxSizer">
+                                <orient>wxVERTICAL</orient>
+                                <object class="sizeritem">
+                                  <flag>wxALL|wxALIGN_CENTER_VERTICAL</flag>
+                                  <border>2</border>
+                                  <object class="wxButton" name="m_button208">
+                                    <label>Open</label>
+                                    <style/>
+                                    <default>0</default>
+                                  </object>
+                                </object>
+                              </object>
+                            </object>
+                            <object class="sizeritem" name="boxSizer19329">
+                              <flag>wxALL|wxEXPAND|wxALIGN_CENTER_VERTICAL</flag>
+                              <border>2</border>
+                              <option>1</option>
+                              <object class="wxBoxSizer">
+                                <orient>wxHORIZONTAL</orient>
+                                <object class="sizeritem">
+                                  <flag>wxALL|wxALIGN_CENTER_VERTICAL</flag>
+                                  <border>2</border>
+                                  <object class="wxStaticText" name="m_staticText18930">
+                                    <label>Device:</label>
+                                    <style/>
+                                  </object>
+                                </object>
+                                <object class="sizeritem">
+                                  <flag>wxALL|wxALIGN_CENTER_VERTICAL</flag>
+                                  <border>5</border>
+                                  <object class="wxComboBox" name="m_comboBox218">
+                                    <style/>
+                                    <selection>-1</selection>
+                                    <content/>
+                                  </object>
+                                </object>
+                              </object>
+                            </object>
+                          </object>
+                        </object>
+                      </object>
+                    </object>
+                    <object class="sizeritem" name="flexGridSizer222">
+                      <flag>wxALL</flag>
+                      <border>2</border>
+                      <object class="wxFlexGridSizer">
+                        <cols>3</cols>
+                        <rows>1</rows>
+                        <vgap>0</vgap>
+                        <hgap>0</hgap>
+                        <growablecols>2</growablecols>
+                        <growablerows/>
+                        <object class="sizeritem" name="boxSizer19326">
+                          <flag>wxALL|wxEXPAND</flag>
+                          <border>2</border>
+                          <option>1</option>
+                          <object class="wxBoxSizer">
+                            <orient>wxHORIZONTAL</orient>
+                            <object class="sizeritem">
+                              <flag>wxALL|wxALIGN_CENTER_VERTICAL</flag>
+                              <border>2</border>
+                              <object class="wxStaticText" name="m_staticText18927">
+                                <label>Retries:</label>
+                                <style/>
+                              </object>
+                            </object>
+                            <object class="sizeritem">
+                              <flag>wxALL|wxALIGN_CENTER_VERTICAL</flag>
+                              <border>2</border>
+                              <option>1</option>
+                              <object class="wxTextCtrl" name="m_textCtrl19128">
+                                <style/>
+                              </object>
+                            </object>
+                          </object>
+                        </object>
+                        <object class="sizeritem" name="boxSizer19323">
+                          <flag>wxALL|wxEXPAND</flag>
+                          <border>2</border>
+                          <option>1</option>
+                          <object class="wxBoxSizer">
+                            <orient>wxHORIZONTAL</orient>
+                            <object class="sizeritem">
+                              <flag>wxALL|wxALIGN_CENTER_VERTICAL</flag>
+                              <border>2</border>
+                              <object class="wxStaticText" name="m_staticText18924">
+                                <label>Retry Interval:</label>
+                                <style/>
+                              </object>
+                            </object>
+                            <object class="sizeritem">
+                              <flag>wxALL|wxALIGN_CENTER_VERTICAL</flag>
+                              <border>2</border>
+                              <option>1</option>
+                              <object class="wxTextCtrl" name="m_textCtrl19125">
+                                <style/>
+                              </object>
+                            </object>
+                          </object>
+                        </object>
+                        <object class="sizeritem" name="boxSizer1932954">
+                          <flag>wxALL|wxEXPAND</flag>
+                          <border>2</border>
+                          <option>1</option>
+                          <object class="wxBoxSizer">
+                            <orient>wxHORIZONTAL</orient>
+                            <object class="sizeritem">
+                              <flag>wxALL|wxALIGN_CENTER_VERTICAL</flag>
+                              <border>2</border>
+                              <object class="wxStaticText" name="m_staticText1893055">
+                                <label>Baud Rate:</label>
+                                <style/>
+                              </object>
+                            </object>
+                            <object class="sizeritem">
+                              <flag>wxALL|wxALIGN_CENTER_VERTICAL</flag>
+                              <border>2</border>
+                              <option>1</option>
+                              <object class="wxComboBox" name="m_comboBaud">
+                                <style/>
+                                <selection>-1</selection>
+                                <content>
+                                  <item>300</item>
+                                  <item>600</item>
+                                  <item>1200</item>
+                                  <item>2400</item>
+                                  <item>9600</item>
+                                  <item>19200</item>
+                                  <item>38400</item>
+                                  <item>56800</item>
+                                </content>
+                              </object>
+                            </object>
+                          </object>
+                        </object>
+                      </object>
+                    </object>
+                    <object class="sizeritem" name="flexGridSizer18747">
+                      <flag>wxALL|wxEXPAND</flag>
+                      <border>2</border>
+                      <object class="wxFlexGridSizer">
+                        <cols>1</cols>
+                        <rows>1</rows>
+                        <vgap>0</vgap>
+                        <hgap>0</hgap>
+                        <growablecols>1</growablecols>
+                        <growablerows/>
+                        <object class="sizeritem" name="flexGridSizer20448">
+                          <flag>wxALL</flag>
+                          <border>2</border>
+                          <option>1</option>
+                          <object class="wxFlexGridSizer">
+                            <cols>3</cols>
+                            <rows>1</rows>
+                            <vgap>0</vgap>
+                            <hgap>0</hgap>
+                            <growablecols>3</growablecols>
+                            <growablerows>1</growablerows>
+                            <object class="sizeritem" name="boxSizer19349">
+                              <flag>wxALL|wxEXPAND|wxALIGN_CENTER_VERTICAL</flag>
+                              <border>2</border>
+                              <option>1</option>
+                              <object class="wxBoxSizer">
+                                <orient>wxHORIZONTAL</orient>
+                                <object class="sizeritem">
+                                  <flag>wxALL|wxALIGN_CENTER_VERTICAL</flag>
+                                  <border>2</border>
+                                  <object class="wxStaticText" name="m_staticText18950">
+                                    <label>Write Delay (ms):</label>
+                                    <style/>
+                                  </object>
+                                </object>
+                                <object class="sizeritem">
+                                  <flag>wxALL|wxALIGN_CENTER_VERTICAL</flag>
+                                  <border>2</border>
+                                  <object class="wxTextCtrl" name="m_textCtrl19151">
+                                    <style/>
+                                  </object>
+                                </object>
+                              </object>
+                            </object>
+                            <object class="sizeritem" name="boxSizer298">
+                              <flag>wxALL|wxEXPAND</flag>
+                              <border>2</border>
+                              <option>1</option>
+                              <object class="wxBoxSizer">
+                                <orient>wxHORIZONTAL</orient>
+                                <object class="sizeritem">
+                                  <flag>wxALL</flag>
+                                  <border>2</border>
+                                  <object class="wxStaticText" name="m_staticText298">
+                                    <label>Stop Bits:</label>
+                                    <style/>
+                                  </object>
+                                </object>
+                                <object class="sizeritem">
+                                  <flag>wxALL</flag>
+                                  <border>5</border>
+                                  <object class="wxSlider" name="m_sliderStopBits">
+                                    <style>wxSL_HORIZONTAL</style>
+                                    <min>0</min>
+                                    <max>2</max>
+                                    <value>0</value>
+                                  </object>
+                                </object>
+                              </object>
+                            </object>
+                          </object>
+                        </object>
+                      </object>
+                    </object>
+                    <object class="sizeritem" name="flexGridSizer224">
+                      <flag>wxALL|wxEXPAND</flag>
+                      <border>2</border>
+                      <object class="wxFlexGridSizer">
+                        <cols>4</cols>
+                        <rows>1</rows>
+                        <vgap>0</vgap>
+                        <hgap>0</hgap>
+                        <growablecols>4</growablecols>
+                        <growablerows>1</growablerows>
+                        <object class="spacer" name="Spacer234">
+                          <flag>wxALL|wxEXPAND</flag>
+                          <border>2</border>
+                          <option>1</option>
+                        </object>
+                        <object class="sizeritem">
+                          <flag>wxALL|wxEXPAND</flag>
+                          <border>1</border>
+                          <object class="wxCheckBox" name="m_checkBox236">
+                            <style/>
+                            <label>My CheckBox</label>
+                            <checked>0</checked>
+                          </object>
+                        </object>
+                        <object class="spacer" name="Spacer240">
+                          <flag>wxALL|wxEXPAND</flag>
+                          <border>2</border>
+                          <option>1</option>
+                        </object>
+                        <object class="sizeritem">
+                          <flag>wxALL|wxEXPAND</flag>
+                          <border>2</border>
+                          <option>1</option>
+                          <object class="wxCheckBox" name="m_checkBox238">
+                            <style/>
+                            <label>My CheckBox</label>
+                            <checked>0</checked>
+                          </object>
+                        </object>
+                      </object>
+                    </object>
+                    <object class="sizeritem" name="flexGridSizer22432">
+                      <flag>wxALL|wxEXPAND</flag>
+                      <border>2</border>
+                      <object class="wxFlexGridSizer">
+                        <cols>4</cols>
+                        <rows>1</rows>
+                        <vgap>0</vgap>
+                        <hgap>0</hgap>
+                        <growablecols>4</growablecols>
+                        <growablerows>1</growablerows>
+                        <object class="spacer" name="Spacer23433">
+                          <flag>wxALL</flag>
+                          <border>2</border>
+                        </object>
+                        <object class="sizeritem">
+                          <flag>wxALL</flag>
+                          <border>2</border>
+                          <object class="wxCheckBox" name="m_checkBox23634">
+                            <style/>
+                            <label>My CheckBox</label>
+                            <checked>0</checked>
+                          </object>
+                        </object>
+                        <object class="spacer" name="Spacer24035">
+                          <flag>wxALL</flag>
+                          <border>2</border>
+                        </object>
+                        <object class="sizeritem">
+                          <flag>wxALL</flag>
+                          <border>2</border>
+                          <object class="wxCheckBox" name="m_checkBox23836">
+                            <style/>
+                            <label>My CheckBox</label>
+                            <checked>0</checked>
+                          </object>
+                        </object>
+                      </object>
+                    </object>
+                    <object class="sizeritem" name="flexGridSizer22437">
+                      <flag>wxALL|wxEXPAND</flag>
+                      <border>2</border>
+                      <object class="wxFlexGridSizer">
+                        <cols>4</cols>
+                        <rows>1</rows>
+                        <vgap>0</vgap>
+                        <hgap>0</hgap>
+                        <growablecols>4</growablecols>
+                        <growablerows>1</growablerows>
+                        <object class="spacer" name="Spacer23438">
+                          <flag>wxALL|wxEXPAND</flag>
+                          <border>2</border>
+                          <option>1</option>
+                        </object>
+                        <object class="sizeritem">
+                          <flag>wxALL|wxEXPAND</flag>
+                          <border>2</border>
+                          <option>1</option>
+                          <object class="wxCheckBox" name="m_checkBox23639">
+                            <style/>
+                            <label>My CheckBox</label>
+                            <checked>0</checked>
+                          </object>
+                        </object>
+                        <object class="spacer" name="Spacer24040">
+                          <flag>wxALL|wxEXPAND</flag>
+                          <border>2</border>
+                          <option>1</option>
+                        </object>
+                        <object class="sizeritem">
+                          <flag>wxALL|wxEXPAND</flag>
+                          <border>2</border>
+                          <option>1</option>
+                          <object class="wxCheckBox" name="m_checkBox23841">
+                            <style/>
+                            <label>My CheckBox</label>
+                            <checked>0</checked>
+                          </object>
+                        </object>
+                      </object>
+                    </object>
+                    <object class="sizeritem" name="flexGridSizer22442">
+                      <flag>wxALL|wxEXPAND</flag>
+                      <border>2</border>
+                      <object class="wxFlexGridSizer">
+                        <cols>4</cols>
+                        <rows>1</rows>
+                        <vgap>0</vgap>
+                        <hgap>0</hgap>
+                        <growablecols>4</growablecols>
+                        <growablerows>1</growablerows>
+                        <object class="spacer" name="Spacer23443">
+                          <flag>wxALL</flag>
+                          <border>2</border>
+                        </object>
+                        <object class="sizeritem">
+                          <flag>wxALL</flag>
+                          <border>2</border>
+                          <object class="wxCheckBox" name="m_checkBox23644">
+                            <style/>
+                            <label>My CheckBox</label>
+                            <checked>0</checked>
+                          </object>
+                        </object>
+                        <object class="spacer" name="Spacer24045">
+                          <flag>wxALL</flag>
+                          <border>2</border>
+                        </object>
+                        <object class="sizeritem">
+                          <flag>wxALL</flag>
+                          <border>2</border>
+                          <object class="wxCheckBox" name="m_checkBox23846">
+                            <style/>
+                            <label>My CheckBox</label>
+                            <checked>0</checked>
+                          </object>
+                        </object>
+                      </object>
+                    </object>
+                  </object>
+                </object>
+              </object>
+            </object>
+          </object>
+          <object class="notebookpage">
+            <label>Hamlib</label>
+            <selected>0</selected>
+            <object class="wxPanel" name="m_panelHAMLib">
+              <style>wxTAB_TRAVERSAL</style>
+              <tooltip>Hamlib Configuration</tooltip>
+              <object class="wxStaticBoxSizer" name="staticBoxSizer296">
+                <sizeritem>
+                  <object class="spacer"/>
+                </sizeritem>
+                <orient>wxVERTICAL</orient>
+                <label>My Label</label>
+              </object>
+            </object>
+          </object>
+          <object class="notebookpage">
+            <label>MemMap</label>
+            <selected>0</selected>
+            <object class="wxPanel" name="m_panelMemMap">
+              <style>wxTAB_TRAVERSAL</style>
+              <tooltip>Memory Mapped control</tooltip>
+              <object class="wxStaticBoxSizer" name="staticBoxSizer294">
+                <sizeritem>
+                  <object class="spacer"/>
+                </sizeritem>
+                <orient>wxVERTICAL</orient>
+                <label>My Label</label>
+              </object>
+            </object>
+          </object>
+          <object class="notebookpage">
+            <label>XML-RPC</label>
+            <selected>0</selected>
+            <object class="wxPanel" name="m_panelXMLRPC">
+              <style>wxTAB_TRAVERSAL</style>
+              <tooltip>XML-RPC control</tooltip>
+              <object class="wxStaticBoxSizer" name="staticBoxSizer85">
+                <sizeritem>
+                  <object class="spacer"/>
+                </sizeritem>
+                <orient>wxVERTICAL</orient>
+                <label>My Label</label>
+              </object>
+            </object>
+          </object>
+        </object>
+      </object>
+      <object class="sizeritem">
+        <flag>wxALL|wxALIGN_RIGHT|wxALIGN_BOTTOM</flag>
+        <border>2</border>
+        <object class="wxStdDialogButtonSizer" name="m_stdBtnSizer155">
+          <object class="button">
+            <object class="wxButton" name="wxID_APPLY">
+              <label/>
+              <style/>
+              <bg/>
+              <fg/>
+              <default>0</default>
+            </object>
+          </object>
+          <object class="button">
+            <object class="wxButton" name="wxID_OK">
+              <label/>
+              <style/>
+              <bg/>
+              <fg/>
+              <default>1</default>
+            </object>
+          </object>
+        </object>
+      </object>
+    </object>
+  </object>
+</resource>
diff --git a/fdmdv2/build/codelite/hamlib_trial/wxcrafter_bitmaps.cpp b/fdmdv2/build/codelite/hamlib_trial/wxcrafter_bitmaps.cpp
new file mode 100644 (file)
index 0000000..6d25c24
--- /dev/null
@@ -0,0 +1,95 @@
+//\r
+// This file was automatically generated by wxrc, do not edit by hand.\r
+//\r
+\r
+#include <wx/wxprec.h>\r
+\r
+#ifdef __BORLANDC__\r
+    #pragma hdrstop\r
+#endif\r
+\r
+#include <wx/filesys.h>\r
+#include <wx/fs_mem.h>\r
+#include <wx/xrc/xmlres.h>\r
+#include <wx/xrc/xh_all.h>\r
+\r
+#if wxCHECK_VERSION(2,8,5) && wxABI_VERSION >= 20805\r
+    #define XRC_ADD_FILE(name, data, size, mime) \\r
+        wxMemoryFSHandler::AddFileWithMimeType(name, data, size, mime)\r
+#else\r
+    #define XRC_ADD_FILE(name, data, size, mime) \\r
+        wxMemoryFSHandler::AddFile(name, data, size)\r
+#endif\r
+\r
+static size_t xml_res_size_0 = 741;\r
+static unsigned char xml_res_file_0[] = {\r
+137,80,78,71,13,10,26,10,0,0,0,13,73,72,68,82,0,0,0,16,0,0,0,16,8,6,0,0,\r
+0,31,243,255,97,0,0,0,4,115,66,73,84,8,8,8,8,124,8,100,136,0,0,2,156,73,\r
+68,65,84,56,141,173,147,75,72,84,81,24,199,127,231,220,235,220,235,45,199,\r
+49,197,80,163,135,129,137,61,160,162,54,45,34,132,176,22,150,72,26,97,20,\r
+18,68,181,200,144,158,180,41,122,16,34,4,81,4,165,161,133,88,17,145,16,\r
+84,84,27,193,160,168,133,76,81,19,77,106,62,26,31,89,51,57,227,157,185,\r
+143,22,87,210,86,110,250,195,225,28,248,56,191,255,247,253,15,71,48,67,\r
+67,13,53,115,50,28,251,146,227,184,181,2,55,29,119,170,32,192,69,36,164,\r
+20,205,49,169,28,207,59,122,103,130,233,146,167,95,23,119,93,21,138,60,\r
+168,173,219,64,90,81,9,34,175,128,127,0,67,3,164,66,239,49,223,116,225,\r
+218,206,181,204,147,109,135,254,2,126,156,171,106,215,10,139,170,141,242,\r
+74,80,4,36,250,33,21,1,41,61,128,237,128,111,62,232,11,192,113,137,119,\r
+60,192,12,135,238,206,59,125,111,167,24,57,91,117,222,151,95,112,202,191,\r
+167,22,98,131,48,17,2,203,34,210,209,205,216,171,48,8,200,45,45,38,103,\r
+235,74,176,28,152,187,12,50,242,137,182,52,147,28,28,184,32,237,100,170,\r
+222,95,81,9,241,97,72,244,128,106,16,31,156,100,180,243,51,37,183,14,176,\r
+244,216,54,190,61,14,130,158,9,170,1,241,30,136,15,227,175,168,196,78,165,\r
+234,165,80,125,26,1,63,164,126,130,98,128,212,49,138,151,176,188,233,48,\r
+184,26,74,90,58,129,128,14,82,7,37,221,131,164,126,66,192,15,73,71,83,29,\r
+203,241,146,80,124,120,169,9,16,2,55,97,243,245,76,11,137,190,97,150,223,\r
+57,13,147,73,80,37,184,46,40,26,72,176,108,7,53,249,59,158,36,26,243,161,\r
+231,128,57,238,49,164,68,248,85,10,27,235,189,16,19,38,8,1,210,245,204,\r
+180,44,248,21,195,182,157,164,12,199,204,219,145,214,54,208,3,144,158,237,\r
+181,168,232,196,63,245,19,172,168,35,184,189,206,115,84,116,72,51,192,200,\r
+6,61,64,164,181,141,112,212,188,45,128,130,215,251,74,155,23,173,91,189,\r
+57,119,111,13,72,1,142,5,10,160,168,83,207,104,3,210,27,211,182,25,110,\r
+106,165,247,205,187,103,235,111,190,168,85,128,216,141,119,95,187,182,248,\r
+213,108,247,227,231,85,89,155,202,64,73,3,105,0,6,160,131,52,176,127,140,\r
+18,237,236,98,232,218,13,194,161,222,251,27,110,189,60,2,244,77,89,16,126,\r
+61,48,214,180,162,162,188,6,178,137,190,125,74,111,67,35,154,161,33,164,\r
+4,1,54,152,223,77,235,209,254,39,111,175,132,70,126,247,1,125,51,191,1,\r
+31,142,86,95,119,156,47,110,228,225,101,55,184,123,163,91,182,56,111,51,\r
+176,118,198,90,13,44,244,102,153,150,0,8,238,216,225,19,153,81,211,181,\r
+44,198,38,147,207,55,182,119,158,0,186,129,20,179,72,204,216,215,76,157,\r
+199,129,240,108,23,255,155,254,0,55,116,2,121,97,65,188,6,0,0,0,0,73,69,\r
+78,68,174,66,96,130};\r
+\r
+static size_t xml_res_size_1 = 252;\r
+static unsigned char xml_res_file_1[] = {\r
+60,63,120,109,108,32,118,101,114,115,105,111,110,61,34,49,46,48,34,32,101,\r
+110,99,111,100,105,110,103,61,34,85,84,70,45,56,34,63,62,10,60,114,101,\r
+115,111,117,114,99,101,32,120,109,108,110,115,61,34,104,116,116,112,58,\r
+47,47,119,119,119,46,119,120,119,105,110,100,111,119,115,46,111,114,103,\r
+47,119,120,120,114,99,34,32,118,101,114,115,105,111,110,61,34,50,46,51,\r
+46,48,46,49,34,62,10,32,32,60,111,98,106,101,99,116,32,99,108,97,115,115,\r
+61,34,119,120,66,105,116,109,97,112,34,32,110,97,109,101,61,34,112,108,\r
+97,99,101,104,111,108,100,101,114,49,54,34,62,119,120,99,114,97,102,116,\r
+101,114,95,98,105,116,109,97,112,115,46,99,112,112,36,67,95,95,85,115,101,\r
+114,115,95,119,105,116,116,101,110,100,95,65,112,112,68,97,116,97,95,76,\r
+111,99,97,108,95,84,101,109,112,95,112,108,97,99,101,104,111,108,100,101,\r
+114,49,54,46,112,110,103,60,47,111,98,106,101,99,116,62,10,60,47,114,101,\r
+115,111,117,114,99,101,62,10};\r
+\r
+void wxC9ED9InitBitmapResources()\r
+{\r
+\r
+    // Check for memory FS. If not present, load the handler:\r
+    {\r
+        wxMemoryFSHandler::AddFile(wxT("XRC_resource/dummy_file"), wxT("dummy one"));\r
+        wxFileSystem fsys;\r
+        wxFSFile *f = fsys.OpenFile(wxT("memory:XRC_resource/dummy_file"));\r
+        wxMemoryFSHandler::RemoveFile(wxT("XRC_resource/dummy_file"));\r
+        if (f) delete f;\r
+        else wxFileSystem::AddHandler(new wxMemoryFSHandlerBase);\r
+    }\r
+\r
+    XRC_ADD_FILE(wxT("XRC_resource/wxcrafter_bitmaps.cpp$C__Users_wittend_AppData_Local_Temp_placeholder16.png"), xml_res_file_0, xml_res_size_0, wxT("image/png"));\r
+    XRC_ADD_FILE(wxT("XRC_resource/wxcrafter_bitmaps.cpp$._wxcrafter_bitmaps.xrc"), xml_res_file_1, xml_res_size_1, wxT("text/xml"));\r
+    wxXmlResource::Get()->Load(wxT("memory:XRC_resource/wxcrafter_bitmaps.cpp$._wxcrafter_bitmaps.xrc"));\r
+}\r
diff --git a/fdmdv2/build/codelite/hamlib_trial/wxcrafter_bitmaps.xrc b/fdmdv2/build/codelite/hamlib_trial/wxcrafter_bitmaps.xrc
new file mode 100644 (file)
index 0000000..8627bff
--- /dev/null
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<resource xmlns="http://www.wxwindows.org/wxxrc" version="2.3.0.1">
+  <object class="wxBitmap" name="placeholder16">C:\Users\wittend\AppData\Local\Temp\placeholder16.png</object>
+</resource>
diff --git a/fdmdv2/build/codelite/libPortCtrl/Debug/.d b/fdmdv2/build/codelite/libPortCtrl/Debug/.d
new file mode 100644 (file)
index 0000000..950b468
--- /dev/null
@@ -0,0 +1 @@
+"" \r
diff --git a/fdmdv2/build/codelite/libPortCtrl/Release/.d b/fdmdv2/build/codelite/libPortCtrl/Release/.d
new file mode 100644 (file)
index 0000000..950b468
--- /dev/null
@@ -0,0 +1 @@
+"" \r
diff --git a/fdmdv2/build/codelite/libPortCtrl/freedv_osx_port.patch b/fdmdv2/build/codelite/libPortCtrl/freedv_osx_port.patch
new file mode 100644 (file)
index 0000000..c34f2b3
--- /dev/null
@@ -0,0 +1,774 @@
+Index: src/Makefile.linux
+===================================================================
+--- src/Makefile.linux (revision 1152)
++++ src/Makefile.linux (working copy)
+@@ -36,12 +36,6 @@
+ SOX_INC=-I$(SOX)/src/
+ SOX_LIB=$(SOX)/src/.libs/libsox.a
+-# CTB ---------------------------------------------------
+-
+-CTB=libctb-0.16
+-CTB_INC=-I$(CTB)/include
+-CTB_LIB=$(CTB)/lib/libctb-0.16.a
+-
+ # if libasound is available, PortAudio will be using it, so we will
+ # need to add it to freedv link line.  To test if it is present, we try
+ # to link a small C program with -lasound
+@@ -50,8 +44,8 @@
+ # FreeDV ------------------------------------------------
+-CPP_FLAGS = -D_NO_AUTOTOOLS_ $(WX_CPPFLAGS) $(PORTAUDIO_INC) $(CODEC2_INC) $(SOX_INC) $(CTB_INC) -I. -g -Wall -O3 -DSVN_REVISION=\"$(SVN_REVISION)\"
+-FREEDV_LIBS = $(WX_LIBS) $(PORTAUDIO_LIB) $(CODEC2_LIB) $(SOX_LIB) $(CTB_LIB) -lm -lpthread -lsndfile -lsamplerate $(LIBASOUND)
++CPP_FLAGS = -D_NO_AUTOTOOLS_ $(WX_CPPFLAGS) $(PORTAUDIO_INC) $(CODEC2_INC) $(SOX_INC) -I. -g -Wall -O3 -DSVN_REVISION=\"$(SVN_REVISION)\"
++FREEDV_LIBS = $(WX_LIBS) $(PORTAUDIO_LIB) $(CODEC2_LIB) $(SOX_LIB) -lm -lpthread -lsndfile -lsamplerate $(LIBASOUND)
+ OBJS = topFrame.o \
+ fdmdv2_main.o \
+@@ -65,11 +59,12 @@
+ dlg_comports.o \
+ dlg_filter.o \
+ varicode.o \
+-sox_biquad.o
++sox_biquad.o \
++serialport.o
+-HDRS = ../version.h dlg_about.h dlg_audiooptions.h dlg_comports.h dlg_filter.h fdmdv2_main.h fdmdv2_defines.h fdmdv2_plot.h fdmdv2_plot_scalar.h fdmdv2_plot_waterfall_linux.h fdmdv2_plot_scatter.h fdmdv2_plot_spectrum.h fdmdv2_pa_wrapper.h topFrame.h varicode.h
++HDRS = ../version.h dlg_about.h dlg_audiooptions.h dlg_comports.h dlg_filter.h fdmdv2_main.h fdmdv2_defines.h fdmdv2_plot.h fdmdv2_plot_scalar.h fdmdv2_plot_waterfall_linux.h fdmdv2_plot_scatter.h fdmdv2_plot_spectrum.h fdmdv2_pa_wrapper.h topFrame.h varicode.h serialport.h
+-all: $(WXWIDGETS)/.built $(PORTAUDIO)/.built $(CODEC2)/.built $(SOX)/.built $(CTB)/.built freedv
++all: $(WXWIDGETS)/.built $(PORTAUDIO)/.built $(CODEC2)/.built $(SOX)/.built freedv
+ freedv: $(OBJS) 
+       g++ -o freedv $(OBJS) $(CPP_FLAGS) $(FREEDV_LIBS)
+@@ -81,7 +76,7 @@
+       rm -f *.o fdmdv2 
+ clean-lib:
+-      rm -Rf $(WXWIDGETS) $(PORTAUDIO) $(CODEC2) $(SOX) $(CTB)  
++      rm -Rf $(WXWIDGETS) $(PORTAUDIO) $(CODEC2) $(SOX) 
+       rm -f *.o fdmdv2 
+ # wxWidgets ---------------------------------------------------------
+@@ -126,14 +121,3 @@
+        
+ $(SOX).tar.bz2:
+       wget http://downloads.sourceforge.net/project/sox/sox/14.4.0/sox-14.4.0.tar.bz2
+-
+-# CTB -------------------------------------------------------------
+-
+-$(CTB)/.built: $(CTB)
+-      cd $(CTB)/build && make && touch ../.built
+-               
+-$(CTB) : $(CTB).tar.gz
+-      tar xvzf $(CTB).tar.gz
+-       
+-$(CTB).tar.gz:
+-      wget https://iftools.com/download/ctb/0.16/libctb-0.16.tar.gz
+Index: src/Makefile.linux.dmw
+===================================================================
+--- src/Makefile.linux.dmw     (revision 1152)
++++ src/Makefile.linux.dmw     (working copy)
+@@ -36,7 +36,8 @@
+ dlg_comports.o \
+ dlg_filter.o \
+ varicode.o \
+-sox_biquad.o
++sox_biquad.o \
++serialport.o
+ all: fdmdv2
+@@ -44,7 +45,7 @@
+ fdmdv2: $(OBJS) fdmdv2_main.h
+       g++ -o fdmdv2 $(OBJS) $(CPP_FLAGS) $(LIBS)
+-fdmdv2_main.h: ../version.h fdmdv2_defines.h fdmdv2_plot.h fdmdv2_plot_scalar.h fdmdv2_plot_waterfall_linux.h fdmdv2_plot_scatter.h fdmdv2_plot_spectrum.h fdmdv2_pa_wrapper.h dlg_about.h dlg_audiooptions.h dlg_comports.h dlg_options.h
++fdmdv2_main.h: ../version.h fdmdv2_defines.h fdmdv2_plot.h fdmdv2_plot_scalar.h fdmdv2_plot_waterfall_linux.h fdmdv2_plot_scatter.h fdmdv2_plot_spectrum.h fdmdv2_pa_wrapper.h dlg_about.h dlg_audiooptions.h dlg_comports.h dlg_options.h serialport.h
+ %.o: %.cpp
+       g++ $(CPP_FLAGS) -c $< -o $@
+Index: src/Makefile.osx
+===================================================================
+--- src/Makefile.osx   (revision 0)
++++ src/Makefile.osx   (working copy)
+@@ -0,0 +1,76 @@
++# src/Makefile.osx
++# Mooneer Salem 28 Dec 2012
++#
++# Makefile for OSX - assumes MacPorts for some libraries and builds the others locally.
++# Note: dependencies must be installed with universal binary support due to the use of Carbon by portaudio and others.
++#       (Carbon is officially deprecated by Apple and does not have 64-bit support.)
++#
++# $ sudo port install wxWidgets30 +aui +universal portaudio +universal sox +universal libsndfile +universal libsamplerate +universal
++# $ make -f Makefile.osx
++
++SVN_REVISION=$(shell svnversion)
++MACPORTS_FOLDER=/opt/local
++
++# Codec 2 -----------------------------------------------
++
++CODEC2=codec2-dev
++CODEC2_INC=-I$(CODEC2)/src
++CODEC2_LIB=$(CODEC2)/src/.libs/libcodec2.a
++
++# FreeDV ------------------------------------------------
++
++CPP_FLAGS = -D_NO_AUTOTOOLS_ -I$(MACPORTS_FOLDER)/include -arch i386 `wx-config --cppflags` $(CODEC2_INC) -I. -g -Wall -O3 -DSVN_REVISION=\"$(SVN_REVISION)\"
++FREEDV_LIBS = -arch i386 -L$(MACPORTS_FOLDER)/lib `wx-config --libs all` -lportaudio $(CODEC2_LIB) -lm -lpthread -lsndfile -lsamplerate -lsox
++
++OBJS = topFrame.o \
++fdmdv2_main.o \
++fdmdv2_plot.o \
++fdmdv2_plot_scalar.o \
++fdmdv2_plot_scatter.o \
++fdmdv2_plot_spectrum.o \
++fdmdv2_plot_waterfall_linux.o \
++fdmdv2_pa_wrapper.o \
++dlg_audiooptions.o \
++dlg_comports.o \
++dlg_filter.o \
++varicode.o \
++sox_biquad.o \
++serialport.o
++
++HDRS = ../version.h dlg_about.h dlg_audiooptions.h dlg_comports.h dlg_filter.h fdmdv2_main.h fdmdv2_defines.h fdmdv2_plot.h fdmdv2_plot_scalar.h fdmdv2_plot_waterfall_linux.h fdmdv2_plot_scatter.h fdmdv2_plot_spectrum.h fdmdv2_pa_wrapper.h topFrame.h varicode.h serialport.h
++
++all: $(CODEC2)/.built freedv FreeDV.app
++
++freedv: $(OBJS)
++      g++ -o freedv $(OBJS) $(CPP_FLAGS) $(FREEDV_LIBS)
++
++FreeDV.app: info.plist freedv
++      -mkdir -p $@/Contents/MacOS
++      -mkdir -p $@/Contents/Resources/English.lproj
++      cp info.plist $@/Contents
++      echo -n "APPL????" > $@/Contents/PkgInfo
++      cp freedv $@/Contents/MacOS/FreeDV
++      
++%.o: %.cpp $(HDRS)
++      g++ $(CPP_FLAGS) -c $< -o $@
++
++sox_biquad.o: sox_biquad.c
++      gcc $(CPP_FLAGS) -c sox_biquad.c -o sox_biquad.o
++
++varicode.o: varicode.c
++      cc $(CPP_FLAGS) -c varicode.c -o varicode.o
++
++clean:
++      rm -f *.o fdmdv2 
++      rm -rf FreeDV.app/
++      
++clean-lib: clean
++      rm -Rf $(CODEC2)
++ 
++# Codec 2 ----------------------------------------------------------
++
++$(CODEC2)/.built: $(CODEC2)
++      cd $(CODEC2) && CPPFLAGS="-arch i386" LDFLAGS="-arch i386" ./configure && make && touch .built
++
++$(CODEC2):
++      svn co https://freetel.svn.sourceforge.net/svnroot/freetel/codec2-dev
+\ No newline at end of file
+Index: src/Makefile.win32
+===================================================================
+--- src/Makefile.win32 (revision 1152)
++++ src/Makefile.win32 (working copy)
+@@ -16,7 +16,7 @@
+ CODEC2_LIB=$(CODEC2_PATH)/src/.libs/libcodec2.a
+ CPP_FLAGS = -D_NO_AUTOTOOLS_ -I$(INCLUDE_PATH) $(WX_CPPFLAGS) -I$(CODEC2_INC) -I../extern/include -g -Wall -DSVN_REVISION=\"$(SVN_REVISION)\"
+-LIBS = $(WX_LIBS) $(CODEC2_LIB) -lm -lportaudiocpp -lportaudio -lpthread -lsndfile -lsamplerate -lctb-0.16 -lsox
++LIBS = $(WX_LIBS) $(CODEC2_LIB) -lm -lportaudiocpp -lportaudio -lpthread -lsndfile -lsamplerate -lsox
+ OBJS = topFrame.o \
+ fdmdv2_main.o \
+@@ -30,9 +30,10 @@
+ dlg_comports.o \
+ dlg_filter.o \
+ varicode.o \
+-sox_biquad.o
++sox_biquad.o \
++serialport.o
+-HDRS = ../version.h dlg_audiooptions.h dlg_comports.h dlg_filter.h fdmdv2_main.h fdmdv2_defines.h fdmdv2_plot.h fdmdv2_plot_scalar.h fdmdv2_plot_waterfall_linux.h fdmdv2_plot_scatter.h fdmdv2_plot_spectrum.h fdmdv2_pa_wrapper.h topFrame.h dlg_audiooptions.h topFrame.h varicode.h
++HDRS = ../version.h dlg_audiooptions.h dlg_comports.h dlg_filter.h fdmdv2_main.h fdmdv2_defines.h fdmdv2_plot.h fdmdv2_plot_scalar.h fdmdv2_plot_waterfall_linux.h fdmdv2_plot_scatter.h fdmdv2_plot_spectrum.h fdmdv2_pa_wrapper.h topFrame.h dlg_audiooptions.h topFrame.h varicode.h serialport.h
+ all: freedv
+Index: src/Makefile.win32.dmw
+===================================================================
+--- src/Makefile.win32.dmw     (revision 1152)
++++ src/Makefile.win32.dmw     (working copy)
+@@ -40,10 +40,11 @@
+ dlg_comports.o \
+ dlg_filter.o \
+ varicode.o \
+-sox_biquad.o
++sox_biquad.o \
++serialport.o
+-HDRS = ../version.h fdmdv2_main.h fdmdv2_defines.h fdmdv2_plot.h fdmdv2_plot_scalar.h fdmdv2_plot_waterfall_linux.h fdmdv2_plot_scatter.h fdmdv2_plot_spectrum.h fdmdv2_pa_wrapper.h topFrame.h dlg_audiooptions.h
++HDRS = ../version.h fdmdv2_main.h fdmdv2_defines.h fdmdv2_plot.h fdmdv2_plot_scalar.h fdmdv2_plot_waterfall_linux.h fdmdv2_plot_scatter.h fdmdv2_plot_spectrum.h fdmdv2_pa_wrapper.h topFrame.h dlg_audiooptions.h serialport.h
+ all: freedv
+Index: src/dlg_comports.cpp
+===================================================================
+--- src/dlg_comports.cpp       (revision 1152)
++++ src/dlg_comports.cpp       (working copy)
+@@ -21,7 +21,6 @@
+ //==========================================================================
+ #include "dlg_comports.h"
+ #include "fdmdv2_main.h"
+-#include <wx/msw/registry.h>
+ #include <sstream>
+ //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=--=-=-=-=
+@@ -62,8 +61,9 @@
+     wxArrayString m_listCtrlPortsArr;
+     m_listCtrlPorts = new wxListBox(this, wxID_ANY, wxDefaultPosition, wxSize(-1,45), m_listCtrlPortsArr, wxLB_SINGLE | wxLB_SORT);
+     staticBoxSizer31->Add(m_listCtrlPorts, 1, wxALIGN_CENTER, 0);
+-#endif
+-#ifdef __WXGTK__
++#else
++/*#endif
++#ifdef __WXGTK__*/
+     wxBoxSizer* bSizer83;
+     bSizer83 = new wxBoxSizer(wxHORIZONTAL);
+Index: src/fdmdv2_main.cpp
+===================================================================
+--- src/fdmdv2_main.cpp        (revision 1152)
++++ src/fdmdv2_main.cpp        (working copy)
+@@ -163,7 +163,6 @@
+ {
+     m_zoom              = 1.;
+     m_serialPort        = NULL;
+-    m_device            = NULL;
+     
+     tools->AppendSeparator();
+     wxMenuItem* m_menuItemToolsConfigDelete;
+@@ -857,22 +856,22 @@
+             {
+                 if(wxGetApp().m_boolRTSPos) // RTS asserted HIGH
+                 {
+-                    m_serialPort->SetLineState(ctb::LinestateRts);
++                    m_serialPort->setRTS(true);
+                 }
+                 else                        // RTS asserted LOW
+                 {
+-                    m_serialPort->ClrLineState(ctb::LinestateRts);
++                    m_serialPort->setRTS(false);
+                 }
+             }
+             else                            // Use DTR
+             {
+                 if(wxGetApp().m_boolDTRPos) // DTR asserted HIGH
+                 {
+-                    m_serialPort->SetLineState(ctb::LinestateDtr);
++                    m_serialPort->setDTR(true);
+                 }
+                 else                        // DTR asserted LOW
+                 {
+-                    m_serialPort->ClrLineState(ctb::LinestateDtr);
++                    m_serialPort->setDTR(false);
+                 }
+             }
+         } 
+@@ -882,22 +881,22 @@
+             {
+                 if(wxGetApp().m_boolRTSPos) // RTS cleared LOW
+                 {
+-                    m_serialPort->ClrLineState(ctb::LinestateRts);
++                    m_serialPort->setRTS(false);
+                 }
+                 else                        // RTS cleared HIGH
+                 {
+-                    m_serialPort->SetLineState(ctb::LinestateRts);
++                    m_serialPort->setRTS(true);
+                 }
+             }
+             else                            // Use DTR
+             {
+                 if(wxGetApp().m_boolDTRPos) // DTR cleared LOW
+                 {
+-                    m_serialPort->ClrLineState(ctb::LinestateDtr);
++                    m_serialPort->setDTR(false);
+                 }
+                 else                        // DTR cleared HIGH
+                 {
+-                    m_serialPort->SetLineState(ctb::LinestateDtr);
++                    m_serialPort->setDTR(true);
+                 }
+             }
+         } 
+@@ -1351,13 +1350,15 @@
+ {
+     wxUnusedVar(event);
+     int rv = 0;
+-    int  iLineState  = 0;
++    bool rtsEnabled = false;
++    bool dtrEnabled = false;
+     //bool bPTTEnabled = m_btnTogPTT->IsEnabled();
+     //bool bPTTState   = m_btnTogPTT->GetValue();
+     if(m_serialPort != NULL)
+     {
+-        int iLineState   = m_serialPort->GetLineState();
++        rtsEnabled = m_serialPort->getRTS();
++        dtrEnabled = m_serialPort->getDTR();
+         CloseSerialPort();
+     }
+     ComPortsDlg *dlg = new ComPortsDlg(NULL);
+@@ -1372,21 +1373,21 @@
+         SetupSerialPort();
+         if(m_serialPort != NULL)
+         {
+-            if(iLineState | ctb::LinestateRts)
++            if(rtsEnabled)
+             {
+-                m_serialPort->SetLineState(ctb::LinestateRts);
++                m_serialPort->setRTS(true);
+             }
+             else
+             {
+-                m_serialPort->ClrLineState(ctb::LinestateRts);
++                m_serialPort->setRTS(false);
+             }
+-            if(iLineState | ctb::LinestateDtr)
++            if(dtrEnabled)
+             {
+-                m_serialPort->SetLineState(ctb::LinestateDtr);
++                m_serialPort->setDTR(true);
+             }
+             else
+             {
+-                m_serialPort->ClrLineState(ctb::LinestateDtr);
++                m_serialPort->setDTR(false);
+             }
+         // m_btnTogPTT->Enable(bPTTEnabled);
+         // m_btnTogPTT->SetValue(bPTTState);
+@@ -2631,26 +2632,25 @@
+     if(!wxGetApp().m_strRigCtrlPort.IsEmpty())
+     {
+         wxString protocol = wxGetApp().m_strRigCtrlDatabits + wxGetApp().m_strRigCtrlParity + wxGetApp().m_strRigCtrlStopbits;
+-        m_serialPort = new ctb::SerialPort();
+-        if(m_serialPort->Open(wxGetApp().m_strRigCtrlPort.c_str(), baudrate, protocol.c_str(), ctb::SerialPort::NoFlowControl ) >= 0 ) 
++        m_serialPort = new SerialPort(wxGetApp().m_strRigCtrlPort.ToAscii().data());
++        if(m_serialPort->open(/*baudrate, protocol.c_str()*/ ) >= 0 ) 
+         {
+-            m_device = m_serialPort;
+             //  always start with PTT cleared
+             if(wxGetApp().m_boolRTSPos) // RTS cleared LOW
+             {
+-                m_serialPort->ClrLineState(ctb::LinestateRts);
++                m_serialPort->setRTS(false);
+             }
+             else                        // RTS cleared HIGH
+             {
+-                m_serialPort->SetLineState(ctb::LinestateRts);
++                m_serialPort->setRTS(true);
+             }
+             if(wxGetApp().m_boolDTRPos) // DTR cleared LOW
+             {
+-                m_serialPort->ClrLineState(ctb::LinestateDtr);
++                m_serialPort->setDTR(false);
+             }
+             else                        // DTR cleared HIGH
+             {
+-                m_serialPort->SetLineState(ctb::LinestateDtr);
++                m_serialPort->setDTR(true);
+             }
+             //m_btnTogPTT->Enable(true);
+             m_btnTogPTT->SetValue(false);
+@@ -2658,7 +2658,6 @@
+         else
+         {
+             m_serialPort = NULL;
+-            m_device     = NULL;
+             //m_btnTogPTT->Disable();
+         }
+     }
+@@ -2675,11 +2674,10 @@
+ //----------------------------------------------------------------
+ void MainFrame::CloseSerialPort(void)
+ {
+-    if((m_serialPort != NULL) && m_serialPort->IsOpen())
++    if((m_serialPort != NULL) && m_serialPort->isOpen())
+     {
+-        m_serialPort->Close();
++        m_serialPort->close();
+         m_serialPort = NULL;
+-        m_device     = NULL; 
+         //m_btnTogPTT->SetLabel(wxT("PTT"));
+         //m_btnTogPTT->Enable(false);
+     }
+Index: src/fdmdv2_main.h
+===================================================================
+--- src/fdmdv2_main.h  (revision 1152)
++++ src/fdmdv2_main.h  (working copy)
+@@ -55,10 +55,7 @@
+ #include "codec2_fdmdv.h"
+ #include "codec2_fifo.h"
+-#include "ctb-0.16/ctb.h"
+-#include "ctb-0.16/portscan.h"
+-#include "ctb-0.16/serportx.h"
+-#include "ctb-0.16/serport.h"
++#include "serialport.h"
+ #include "topFrame.h"
+ #include "dlg_comports.h"
+@@ -353,8 +350,7 @@
+     protected:
+-        ctb::IOBase*            m_device;
+-        ctb::SerialPort*        m_serialPort;
++        SerialPort*             m_serialPort;
+         void setsnrBeta(bool snrSlow);
+Index: src/info.plist
+===================================================================
+--- src/info.plist     (revision 0)
++++ src/info.plist     (working copy)
+@@ -0,0 +1,34 @@
++<?xml version="1.0" encoding="UTF-8"?>
++<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
++<plist version="1.0">
++<dict>
++      <key>CFBundleDevelopmentRegion</key>
++      <string>en</string>
++      <key>CFBundleExecutable</key>
++      <string>freedv</string>
++      <key>CFBundleIconFile</key>
++      <string></string>
++      <key>CFBundleIdentifier</key>
++      <string>org.freedv.freedv</string>
++      <key>CFBundleInfoDictionaryVersion</key>
++      <string>6.0</string>
++      <key>CFBundleName</key>
++      <string>FreeDV</string>
++      <key>CFBundlePackageType</key>
++      <string>APPL</string>
++      <key>CFBundleShortVersionString</key>
++      <string>1.0</string>
++      <key>CFBundleSignature</key>
++      <string>????</string>
++      <key>CFBundleVersion</key>
++      <string>1</string>
++      <key>LSMinimumSystemVersion</key>
++      <string>10.5</string>
++      <key>NSHumanReadableCopyright</key>
++      <string>Copyright © 2012 FreeDV. All rights reserved.</string>
++      <!--<key>NSMainNibFile</key>
++      <string>MainMenu</string>-->
++      <key>NSPrincipalClass</key>
++      <string>NSApplication</string>
++</dict>
++</plist>
+\ No newline at end of file
+Index: src/serialport.cpp
+===================================================================
+--- src/serialport.cpp (revision 0)
++++ src/serialport.cpp (working copy)
+@@ -0,0 +1,207 @@
++//==========================================================================
++// Name:            serialport.cpp
++//
++// Purpose:         Serial port management.
++// Created:         Dec. 28, 2012
++// Authors:         Mooneer Salem
++// 
++// License:
++//
++//  This program is free software; you can redistribute it and/or modify
++//  it under the terms of the GNU General License version 2.1,
++//  as published by the Free Software Foundation.  This program is
++//  distributed in the hope that it will be useful, but WITHOUT ANY
++//  WARRANTY; without even the implied warranty of MERCHANTABILITY or
++//  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
++//  License for more details.
++//
++//  You should have received a copy of the GNU General License
++//  along with this program; if not, see <http://www.gnu.org/licenses/>.
++//
++//==========================================================================
++
++#ifndef WIN32
++#include <fcntl.h>
++#include <termios.h>
++#include <unistd.h>
++#include <sys/ioctl.h>
++#endif // !WIN32
++
++#include "serialport.h"
++
++#define ERROR_CONDITION (-1)
++#ifdef WIN32
++#define INVALID_FILE_DESCRIPTOR (INVALID_HANDLE_VALUE)
++#else
++#define INVALID_FILE_DESCRIPTOR (-1)
++#endif // WIN32
++
++SerialPort::SerialPort(const std::string &portName)
++    : _portName(portName)
++    , _fileDescriptor(INVALID_FILE_DESCRIPTOR)
++#ifdef WIN32
++    , _rtsEnabled(false)
++    , _dtrEnabled(false)
++#endif // WIN32
++{
++    // No action here until open() is called.
++}
++
++SerialPort::~SerialPort()
++{
++    // Close serial port if needed.
++    if (isOpen())
++    {
++        close();
++    }
++}
++
++#ifndef WIN32
++static int posixGetModemControlBits(const int fileDescriptor)
++{
++    int modemControlBits = 0;
++    
++    if (ioctl(fileDescriptor, TIOCMGET, &modemControlBits) == 0)
++    {
++        return modemControlBits;
++    }
++    else
++    {
++        return ERROR_CONDITION;
++    }
++}
++
++static int posixSetModemControlBits(const int fileDescriptor, int modemControlBits)
++{
++    if (ioctl(fileDescriptor, TIOCMSET, &modemControlBits) == 0)
++    {
++        return modemControlBits;
++    }
++    else
++    {
++        return ERROR_CONDITION;
++    }
++}
++#endif // !WIN32
++
++bool SerialPort::getRTS() const
++{
++#ifdef WIN32
++    // No way to get DTR/RTS directly from Windows, so we have to
++    // grab what the caller put in during a previous set*() call.
++    return _rtsEnabled;
++#else
++    int tmpbits = posixGetModemControlBits(_fileDescriptor);
++    if (tmpbits != ERROR_CONDITION)
++    {
++        return tmpbits & TIOCM_RTS;
++    }
++    else
++    {
++        return ERROR_CONDITION;
++    }
++#endif // WIN32
++}
++
++void SerialPort::setRTS(const bool newRTS)
++{
++#ifdef WIN32
++    if (newRTS)
++    {
++        EscapeCommFunction(_fileDescriptor, SETRTS);
++    }
++    else
++    {
++        EscapeCommFunction(_fileDescriptor, CLRRTS);
++    }
++    _rtsEnabled = newRTS;
++#else
++    int tmpbits = posixGetModemControlBits(_fileDescriptor);
++    if (tmpbits != ERROR_CONDITION)
++    {
++        if (newRTS) tmpbits |= TIOCM_RTS;
++        else tmpbits &= ~TIOCM_RTS;
++        posixSetModemControlBits(_fileDescriptor, tmpbits);
++    }
++#endif // WIN32
++}
++    
++bool SerialPort::getDTR() const
++{
++#ifdef WIN32
++    // No way to get DTR/RTS directly from Windows, so we have to
++    // grab what the caller put in during a previous set*() call.
++    return _dtrEnabled;
++#else
++    int tmpbits = posixGetModemControlBits(_fileDescriptor);
++    if (tmpbits != ERROR_CONDITION)
++    {
++        return tmpbits & TIOCM_DTR;
++    }
++    else
++    {
++        return ERROR_CONDITION;
++    }
++#endif // WIN32
++}
++
++void SerialPort::setDTR(const bool newDTR)
++{
++#ifdef WIN32
++    if (newDTR)
++    {
++        EscapeCommFunction(_fileDescriptor, SETDTR);
++    }
++    else
++    {
++        EscapeCommFunction(_fileDescriptor, CLRDTR);
++    }
++    _dtrEnabled = newDTR;
++#else
++    int tmpbits = posixGetModemControlBits(_fileDescriptor);
++    if (tmpbits != ERROR_CONDITION)
++    {
++        if (newDTR) tmpbits |= TIOCM_DTR;
++        else tmpbits &= ~TIOCM_DTR;
++        posixSetModemControlBits(_fileDescriptor, tmpbits);
++    }
++#endif // WIN32
++}
++    
++int SerialPort::open()
++{
++#ifdef WIN32
++    TCHAR portName[32];
++    _stprintf_s(portName, sizeof(portName)/sizeof(TCHAR), _T("\\\\.\\%s"), _portName.c_str());
++    
++    _fileDescriptor = CreateFile(
++        portName, 
++        GENERIC_READ | GENERIC_WRITE,
++        0, 
++        0, 
++        OPEN_EXISTING, 
++        FILE_FLAG_OVERLAPPED, 
++        0);
++#else
++    _fileDescriptor = ::open(_portName.c_str(), O_RDWR);
++#endif // WIN32
++
++    return (int)_fileDescriptor;
++}
++
++int SerialPort::close()
++{
++#ifdef WIN32
++    int rv = CloseHandle(_fileDescriptor);
++#else
++    int rv = ::close(_fileDescriptor);
++#endif // WIN32
++
++    _fileDescriptor = INVALID_FILE_DESCRIPTOR;
++    return rv;
++}
++    
++bool SerialPort::isOpen() const
++{
++    return _fileDescriptor != INVALID_FILE_DESCRIPTOR;
++}
+\ No newline at end of file
+Index: src/serialport.h
+===================================================================
+--- src/serialport.h   (revision 0)
++++ src/serialport.h   (working copy)
+@@ -0,0 +1,81 @@
++//==========================================================================
++// Name:            serialport.h
++//
++// Purpose:         Serial port management.
++// Created:         Dec. 28, 2012
++// Authors:         Mooneer Salem
++// 
++// License:
++//
++//  This program is free software; you can redistribute it and/or modify
++//  it under the terms of the GNU General License version 2.1,
++//  as published by the Free Software Foundation.  This program is
++//  distributed in the hope that it will be useful, but WITHOUT ANY
++//  WARRANTY; without even the implied warranty of MERCHANTABILITY or
++//  FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
++//  License for more details.
++//
++//  You should have received a copy of the GNU General License
++//  along with this program; if not, see <http://www.gnu.org/licenses/>.
++//
++//==========================================================================
++
++#ifndef SERIAL_PORT_H
++#define SERIAL_PORT_H
++
++#ifdef WIN32
++#include <windows.h>
++#endif // WIN32
++
++#include <string>
++
++enum SerialPortParity
++{
++    NONE,
++    EVEN,
++    ODD
++};
++
++// Quick and dirty serial port class that supports the minimum necessary to
++// do PTT (for now). Can be extended later (send/receive data for CAT control, 
++// for example).
++class SerialPort
++{
++public:
++    // portName is a path to the serial port, in one of the following formats:
++    // OSX: /dev/tty.*
++    // Linux: /dev/ttyS*
++    // Windows: COM*:
++    SerialPort(const std::string &portName);
++    virtual ~SerialPort();
++    
++    bool getRTS() const;
++    void setRTS(const bool newRTS);
++    
++    bool getDTR() const;
++    void setDTR(const bool newDTR);
++    
++    int open();
++    int close();
++    
++    bool isOpen() const;
++    
++private:
++    const std::string _portName;
++    
++#ifdef WIN32
++    HANDLE _fileDescriptor;
++    
++    bool _rtsEnabled;
++    bool _dtrEnabled;
++#else
++    int _fileDescriptor;
++#endif // WIN32
++        
++    // Object should not be copied since there can be only one handle open
++    // per serial port. An attempt to use the copy constructor here, even
++    // implicitly, will result in a compile error due to the declaration below.
++    SerialPort(const SerialPort&);
++};
++
++#endif // SERIAL_PORT_H
+\ No newline at end of file
diff --git a/fdmdv2/build/codelite/libPortCtrl/libPortCtrl.mk b/fdmdv2/build/codelite/libPortCtrl/libPortCtrl.mk
new file mode 100644 (file)
index 0000000..fd5c6a2
--- /dev/null
@@ -0,0 +1,103 @@
+##\r
+## Auto Generated makefile by CodeLite IDE\r
+## any manual changes will be erased      \r
+##\r
+## Release\r
+ProjectName            :=libPortCtrl\r
+ConfigurationName      :=Release\r
+WorkspacePath          := "D:\Projects\Radio\fdmdv2\build\codelite"\r
+ProjectPath            := "D:\Projects\Radio\fdmdv2\build\codelite\libPortCtrl"\r
+IntermediateDirectory  :=./Release\r
+OutDir                 := $(IntermediateDirectory)\r
+CurrentFileName        :=\r
+CurrentFilePath        :=\r
+CurrentFileFullPath    :=\r
+User                   :=wittend\r
+Date                   :=3/22/2013\r
+CodeLitePath           :="D:\bin\CodeLite"\r
+LinkerName             :=g++\r
+SharedObjectLinkerName :=g++ -shared -fPIC\r
+ObjectSuffix           :=.o\r
+DependSuffix           :=.o.d\r
+PreprocessSuffix       :=.o.i\r
+DebugSwitch            :=-gstab\r
+IncludeSwitch          :=-I\r
+LibrarySwitch          :=-l\r
+OutputSwitch           :=-o \r
+LibraryPathSwitch      :=-L\r
+PreprocessorSwitch     :=-D\r
+SourceSwitch           :=-c \r
+OutputFile             :=$(IntermediateDirectory)/lib$(ProjectName).a\r
+Preprocessors          :=\r
+ObjectSwitch           :=-o \r
+ArchiveOutputSwitch    := \r
+PreprocessOnlySwitch   :=-E \r
+ObjectsFileList        :="libPortCtrl.txt"\r
+PCHCompileFlags        :=\r
+MakeDirCommand         :=makedir\r
+RcCmpOptions           := \r
+RcCompilerName         :=windres\r
+LinkOptions            :=  \r
+IncludePath            :=  $(IncludeSwitch). $(IncludeSwitch). \r
+IncludePCH             := \r
+RcIncludePath          := \r
+Libs                   := \r
+ArLibs                 :=  \r
+LibPath                := $(LibraryPathSwitch). \r
+\r
+##\r
+## Common variables\r
+## AR, CXX, CC, CXXFLAGS and CFLAGS can be overriden using an environment variables\r
+##\r
+AR       := ar rcus\r
+CXX      := g++\r
+CC       := gcc\r
+CXXFLAGS :=    -DSVN_REVISION=\"1221\"  $(Preprocessors)\r
+CFLAGS   :=    -DSVN_REVISION=\"1221\"  $(Preprocessors)\r
+\r
+\r
+##\r
+## User defined environment variables\r
+##\r
+CodeLiteDir:=D:\bin\CodeLite\r
+WXWIN:=D:\bin\wxWidgets-2.9.4\r
+PATH:=$(WXWIN)\lib\gcc_dll;$(PATH)\r
+WXCFG:=gcc_dll\mswu\r
+UNIT_TEST_PP_SRC_DIR:=D:\bin\UnitTest++1.3\r
+\r
+\r
+Objects=\r
+\r
+##\r
+## Main Build Targets \r
+##\r
+.PHONY: all clean PreBuild PrePreBuild PostBuild\r
+all: $(IntermediateDirectory) $(OutputFile)\r
+\r
+$(OutputFile): $(Objects)\r
+       @$(MakeDirCommand) $(@D)\r
+       @echo "" > $(IntermediateDirectory)/.d\r
+       $(AR) $(ArchiveOutputSwitch)$(OutputFile) @$(ObjectsFileList) $(ArLibs)\r
+       @$(MakeDirCommand) "D:\Projects\Radio\fdmdv2\build\codelite/.build-release"\r
+       @echo rebuilt > "D:\Projects\Radio\fdmdv2\build\codelite/.build-release/libPortCtrl"\r
+\r
+./Release:\r
+       @$(MakeDirCommand) "./Release"\r
+\r
+PreBuild:\r
+\r
+\r
+##\r
+## Objects\r
+##\r
+\r
+-include $(IntermediateDirectory)/*$(DependSuffix)\r
+##\r
+## Clean\r
+##\r
+clean:\r
+       $(RM) $(OutputFile)\r
+       $(RM) $(OutputFile)\r
+       $(RM) "../.build-release/libPortCtrl"\r
+\r
+\r
diff --git a/fdmdv2/build/codelite/libPortCtrl/libPortCtrl.project b/fdmdv2/build/codelite/libPortCtrl/libPortCtrl.project
new file mode 100644 (file)
index 0000000..8338fe1
--- /dev/null
@@ -0,0 +1,94 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<CodeLite_Project Name="libPortCtrl" InternalType="Library">
+  <Description/>
+  <Dependencies/>
+  <Settings Type="Static Library">
+    <GlobalSettings>
+      <Compiler Options="" C_Options="">
+        <IncludePath Value="."/>
+      </Compiler>
+      <Linker Options="">
+        <LibraryPath Value="."/>
+      </Linker>
+      <ResourceCompiler Options=""/>
+    </GlobalSettings>
+    <Configuration Name="Debug" CompilerType="gnu g++" DebuggerType="GNU gdb debugger" Type="" BuildCmpWithGlobalSettings="append" BuildLnkWithGlobalSettings="append" BuildResWithGlobalSettings="append">
+      <Compiler Options="-g" C_Options="-g" Required="yes" PreCompiledHeader="" PCHInCommandLine="no" UseDifferentPCHFlags="no" PCHFlags="">
+        <IncludePath Value="."/>
+      </Compiler>
+      <Linker Options="" Required="yes"/>
+      <ResourceCompiler Options="" Required="no"/>
+      <General OutputFile="$(IntermediateDirectory)/lib$(ProjectName).a" IntermediateDirectory="./Debug" Command="" CommandArguments="" UseSeparateDebugArgs="no" DebugArguments="" WorkingDirectory="$(IntermediateDirectory)" PauseExecWhenProcTerminates="yes"/>
+      <Environment EnvVarSetName="&lt;Use Defaults&gt;" DbgSetName="&lt;Use Defaults&gt;">
+        <![CDATA[]]>
+      </Environment>
+      <Debugger IsRemote="no" RemoteHostName="" RemoteHostPort="" DebuggerPath="">
+        <PostConnectCommands/>
+        <StartupCommands/>
+      </Debugger>
+      <PreBuild/>
+      <PostBuild/>
+      <CustomBuild Enabled="no">
+        <RebuildCommand/>
+        <CleanCommand/>
+        <BuildCommand/>
+        <PreprocessFileCommand/>
+        <SingleFileCommand/>
+        <MakefileGenerationCommand/>
+        <ThirdPartyToolName/>
+        <WorkingDirectory/>
+      </CustomBuild>
+      <AdditionalRules>
+        <CustomPostBuild/>
+        <CustomPreBuild/>
+      </AdditionalRules>
+      <Completion EnableCpp11="no">
+        <ClangCmpFlagsC/>
+        <ClangCmpFlags/>
+        <ClangPP/>
+        <SearchPaths/>
+      </Completion>
+    </Configuration>
+    <Configuration Name="Release" CompilerType="gnu g++" DebuggerType="GNU gdb debugger" Type="" BuildCmpWithGlobalSettings="append" BuildLnkWithGlobalSettings="append" BuildResWithGlobalSettings="append">
+      <Compiler Options="" C_Options="" Required="yes" PreCompiledHeader="" PCHInCommandLine="no" UseDifferentPCHFlags="no" PCHFlags="">
+        <IncludePath Value="."/>
+      </Compiler>
+      <Linker Options="" Required="yes"/>
+      <ResourceCompiler Options="" Required="no"/>
+      <General OutputFile="$(IntermediateDirectory)/lib$(ProjectName).a" IntermediateDirectory="./Release" Command="" CommandArguments="" UseSeparateDebugArgs="no" DebugArguments="" WorkingDirectory="$(IntermediateDirectory)" PauseExecWhenProcTerminates="yes"/>
+      <Environment EnvVarSetName="&lt;Use Defaults&gt;" DbgSetName="&lt;Use Defaults&gt;">
+        <![CDATA[]]>
+      </Environment>
+      <Debugger IsRemote="no" RemoteHostName="" RemoteHostPort="" DebuggerPath="">
+        <PostConnectCommands/>
+        <StartupCommands/>
+      </Debugger>
+      <PreBuild/>
+      <PostBuild/>
+      <CustomBuild Enabled="no">
+        <RebuildCommand/>
+        <CleanCommand/>
+        <BuildCommand/>
+        <PreprocessFileCommand/>
+        <SingleFileCommand/>
+        <MakefileGenerationCommand/>
+        <ThirdPartyToolName/>
+        <WorkingDirectory/>
+      </CustomBuild>
+      <AdditionalRules>
+        <CustomPostBuild/>
+        <CustomPreBuild/>
+      </AdditionalRules>
+      <Completion EnableCpp11="no">
+        <ClangCmpFlagsC/>
+        <ClangCmpFlags/>
+        <ClangPP/>
+        <SearchPaths/>
+      </Completion>
+    </Configuration>
+  </Settings>
+  <VirtualDirectory Name="src"/>
+  <VirtualDirectory Name="include"/>
+  <Dependencies Name="Debug"/>
+  <Dependencies Name="Release"/>
+</CodeLite_Project>
diff --git a/fdmdv2/build/codelite/libPortCtrl/libPortCtrl.txt b/fdmdv2/build/codelite/libPortCtrl/libPortCtrl.txt
new file mode 100644 (file)
index 0000000..e3f4898
--- /dev/null
@@ -0,0 +1 @@
+ECHO is off.\r