From: wittend99 Date: Tue, 26 Mar 2013 15:53:46 +0000 (+0000) Subject: git-svn-id: https://svn.code.sf.net/p/freetel/code@1231 01035d8c-6547-0410-b346-abe4f... X-Git-Url: http://git.whiteaudio.com/gitweb/?a=commitdiff_plain;h=138332c70e9371e376c181d6fb34833114246fb0;p=freetel-svn-tracking.git git-svn-id: https://svn.code.sf.net/p/freetel/code@1231 01035d8c-6547-0410-b346-abe4f91aad63 --- diff --git a/fdmdv2/build/codelite/hamlib_trial/MainFrame.cpp b/fdmdv2/build/codelite/hamlib_trial/MainFrame.cpp new file mode 100644 index 00000000..c0fae92d --- /dev/null +++ b/fdmdv2/build/codelite/hamlib_trial/MainFrame.cpp @@ -0,0 +1,80 @@ +#include "main.h" +#include "MainFrame.h" +#include +#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 index 00000000..2797db0d --- /dev/null +++ b/fdmdv2/build/codelite/hamlib_trial/MainFrame.h @@ -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 index 00000000..950b4681 --- /dev/null +++ b/fdmdv2/build/codelite/hamlib_trial/Release/.d @@ -0,0 +1 @@ +"" 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 index 00000000..a3f41c38 --- /dev/null +++ b/fdmdv2/build/codelite/hamlib_trial/Release/MainFrame.o.d @@ -0,0 +1,795 @@ +Release/MainFrame.o: MainFrame.cpp main.h \ + D:\bin\wxWidgets-2.9.4\include/wx/wx.h \ + D:\bin\wxWidgets-2.9.4\include/wx/defs.h \ + D:\bin\wxWidgets-2.9.4\include/wx/platform.h \ + D:\bin\wxWidgets-2.9.4\lib\gcc_dll\mswu/wx/setup.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/libraries.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/gccpriv.h \ + D:\bin\wxWidgets-2.9.4\include/wx/chkconf.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/chkconf.h \ + D:\bin\wxWidgets-2.9.4\include/wx/version.h \ + D:\bin\wxWidgets-2.9.4\include/wx/cpp.h \ + D:\bin\wxWidgets-2.9.4\include/wx/dlimpexp.h \ + D:\bin\wxWidgets-2.9.4\include/wx/debug.h \ + D:\bin\wxWidgets-2.9.4\include/wx/chartype.h \ + D:\bin\wxWidgets-2.9.4\include/wx/windowid.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/winundef.h \ + D:\bin\wxWidgets-2.9.4\include/wx/features.h \ + D:\bin\wxWidgets-2.9.4\include/wx/object.h \ + D:\bin\wxWidgets-2.9.4\include/wx/memory.h \ + D:\bin\wxWidgets-2.9.4\include/wx/string.h \ + D:\bin\wxWidgets-2.9.4\include/wx/wxcrtbase.h \ + D:\bin\wxWidgets-2.9.4\include/wx/strvararg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/strconv.h \ + D:\bin\wxWidgets-2.9.4\include/wx/buffer.h \ + D:\bin\wxWidgets-2.9.4\include/wx/fontenc.h \ + D:\bin\wxWidgets-2.9.4\include/wx/unichar.h \ + D:\bin\wxWidgets-2.9.4\include/wx/stringimpl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/beforestd.h \ + D:\bin\wxWidgets-2.9.4\include/wx/afterstd.h \ + D:\bin\wxWidgets-2.9.4\include/wx/stringops.h \ + D:\bin\wxWidgets-2.9.4\include/wx/iosfwrap.h \ + D:\bin\wxWidgets-2.9.4\include/wx/crt.h \ + D:\bin\wxWidgets-2.9.4\include/wx/wxcrt.h \ + D:\bin\wxWidgets-2.9.4\include/wx/wxcrtvararg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msgout.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xti.h \ + D:\bin\wxWidgets-2.9.4\include/wx/rtti.h \ + D:\bin\wxWidgets-2.9.4\include/wx/flags.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xti2.h \ + D:\bin\wxWidgets-2.9.4\include/wx/dynarray.h \ + D:\bin\wxWidgets-2.9.4\include/wx/list.h \ + D:\bin\wxWidgets-2.9.4\include/wx/hash.h \ + D:\bin\wxWidgets-2.9.4\include/wx/hashmap.h \ + D:\bin\wxWidgets-2.9.4\include/wx/arrstr.h \ + D:\bin\wxWidgets-2.9.4\include/wx/intl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/translation.h \ + D:\bin\wxWidgets-2.9.4\include/wx/language.h \ + D:\bin\wxWidgets-2.9.4\include/wx/scopedptr.h \ + D:\bin\wxWidgets-2.9.4\include/wx/checkeddelete.h \ + D:\bin\wxWidgets-2.9.4\include/wx/log.h \ + D:\bin\wxWidgets-2.9.4\include/wx/thread.h \ + D:\bin\wxWidgets-2.9.4\include/wx/generic/logg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/event.h \ + D:\bin\wxWidgets-2.9.4\include/wx/clntdata.h \ + D:\bin\wxWidgets-2.9.4\include/wx/gdicmn.h \ + D:\bin\wxWidgets-2.9.4\include/wx/math.h \ + D:\bin\wxWidgets-2.9.4\include/wx/cursor.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/cursor.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/gdiimage.h \ + D:\bin\wxWidgets-2.9.4\include/wx/gdiobj.h \ + D:\bin\wxWidgets-2.9.4\include/wx/utils.h \ + D:\bin\wxWidgets-2.9.4\include/wx/filefn.h \ + D:\bin\wxWidgets-2.9.4\include/wx/versioninfo.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/implicitconversion.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/if.h \ + D:\bin\wxWidgets-2.9.4\include/wx/mousestate.h \ + D:\bin\wxWidgets-2.9.4\include/wx/kbdstate.h \ + D:\bin\wxWidgets-2.9.4\include/wx/longlong.h \ + D:\bin\wxWidgets-2.9.4\include/wx/platinfo.h \ + D:\bin\wxWidgets-2.9.4\include/wx/tracker.h \ + D:\bin\wxWidgets-2.9.4\include/wx/typeinfo.h \ + D:\bin\wxWidgets-2.9.4\include/wx/any.h \ + D:\bin\wxWidgets-2.9.4\include/wx/datetime.h \ + D:\bin\wxWidgets-2.9.4\include/wx/anystr.h \ + D:\bin\wxWidgets-2.9.4\include/wx/variant.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/convertible.h \ + D:\bin\wxWidgets-2.9.4\include/wx/app.h \ + D:\bin\wxWidgets-2.9.4\include/wx/eventfilter.h \ + D:\bin\wxWidgets-2.9.4\include/wx/build.h \ + D:\bin\wxWidgets-2.9.4\include/wx/cmdargs.h \ + D:\bin\wxWidgets-2.9.4\include/wx/init.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/init.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/wrapwin.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/app.h \ + D:\bin\wxWidgets-2.9.4\include/wx/icon.h \ + D:\bin\wxWidgets-2.9.4\include/wx/iconloc.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/icon.h \ + D:\bin\wxWidgets-2.9.4\include/wx/stream.h \ + D:\bin\wxWidgets-2.9.4\include/wx/stopwatch.h \ + D:\bin\wxWidgets-2.9.4\include/wx/time.h \ + D:\bin\wxWidgets-2.9.4\include/wx/timer.h \ + D:\bin\wxWidgets-2.9.4\include/wx/module.h \ + D:\bin\wxWidgets-2.9.4\include/wx/window.h \ + D:\bin\wxWidgets-2.9.4\include/wx/font.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/font.h \ + D:\bin\wxWidgets-2.9.4\include/wx/colour.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/colour.h \ + D:\bin\wxWidgets-2.9.4\include/wx/region.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/region.h \ + D:\bin\wxWidgets-2.9.4\include/wx/validate.h \ + D:\bin\wxWidgets-2.9.4\include/wx/palette.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/palette.h \ + D:\bin\wxWidgets-2.9.4\include/wx/accel.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/accel.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/window.h \ + D:\bin\wxWidgets-2.9.4\include/wx/settings.h \ + D:\bin\wxWidgets-2.9.4\include/wx/containr.h \ + D:\bin\wxWidgets-2.9.4\include/wx/panel.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/panel.h \ + D:\bin\wxWidgets-2.9.4\include/wx/toplevel.h \ + D:\bin\wxWidgets-2.9.4\include/wx/nonownedwnd.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/nonownedwnd.h \ + D:\bin\wxWidgets-2.9.4\include/wx/iconbndl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/weakref.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/int2type.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/toplevel.h \ + D:\bin\wxWidgets-2.9.4\include/wx/frame.h \ + D:\bin\wxWidgets-2.9.4\include/wx/statusbr.h \ + D:\bin\wxWidgets-2.9.4\include/wx/control.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/control.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/statusbar.h \ + D:\bin\wxWidgets-2.9.4\include/wx/vector.h \ + D:\bin\wxWidgets-2.9.4\include/wx/scopeguard.h \ + D:\bin\wxWidgets-2.9.4\include/wx/except.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/movable.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/pod.h \ + D:\bin\wxWidgets-2.9.4\include/wx/tooltip.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/tooltip.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/frame.h \ + D:\bin\wxWidgets-2.9.4\include/wx/bitmap.h \ + D:\bin\wxWidgets-2.9.4\include/wx/image.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagbmp.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagpng.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imaggif.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagpcx.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagjpeg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagtga.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagtiff.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagpnm.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagxpm.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagiff.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/bitmap.h \ + D:\bin\wxWidgets-2.9.4\include/wx/dc.h \ + D:\bin\wxWidgets-2.9.4\include/wx/brush.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/brush.h \ + D:\bin\wxWidgets-2.9.4\include/wx/pen.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/pen.h \ + D:\bin\wxWidgets-2.9.4\include/wx/affinematrix2d.h \ + D:\bin\wxWidgets-2.9.4\include/wx/affinematrix2dbase.h \ + D:\bin\wxWidgets-2.9.4\include/wx/geometry.h \ + D:\bin\wxWidgets-2.9.4\include/wx/dcclient.h \ + D:\bin\wxWidgets-2.9.4\include/wx/dcmemory.h \ + D:\bin\wxWidgets-2.9.4\include/wx/dcprint.h \ + D:\bin\wxWidgets-2.9.4\include/wx/dcscreen.h \ + D:\bin\wxWidgets-2.9.4\include/wx/button.h \ + D:\bin\wxWidgets-2.9.4\include/wx/anybutton.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/anybutton.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/button.h \ + D:\bin\wxWidgets-2.9.4\include/wx/menuitem.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/menuitem.h \ + D:\bin\wxWidgets-2.9.4\include/wx/ownerdrw.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/ownerdrw.h \ + D:\bin\wxWidgets-2.9.4\include/wx/menu.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/menu.h \ + D:\bin\wxWidgets-2.9.4\include/wx/dialog.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/dialog.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msgdlg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/stockitem.h \ + D:\bin\wxWidgets-2.9.4\include/wx/generic/msgdlgg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/msgdlg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/dataobj.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/ole/dataform.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/ole/dataobj.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/ole/dataobj2.h \ + D:\bin\wxWidgets-2.9.4\include/wx/ctrlsub.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/ctrlsub.h \ + D:\bin\wxWidgets-2.9.4\include/wx/bmpbuttn.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/bmpbuttn.h \ + D:\bin\wxWidgets-2.9.4\include/wx/checkbox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/checkbox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/checklst.h \ + D:\bin\wxWidgets-2.9.4\include/wx/listbox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/listbox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/checklst.h \ + D:\bin\wxWidgets-2.9.4\include/wx/choice.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/choice.h \ + D:\bin\wxWidgets-2.9.4\include/wx/scrolbar.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/scrolbar.h \ + D:\bin\wxWidgets-2.9.4\include/wx/stattext.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/stattext.h \ + D:\bin\wxWidgets-2.9.4\include/wx/statbmp.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/statbmp.h \ + D:\bin\wxWidgets-2.9.4\include/wx/statbox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/statbox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/radiobox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/radiobox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/radiobut.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/radiobut.h \ + D:\bin\wxWidgets-2.9.4\include/wx/textctrl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/textentry.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/textentry.h \ + D:\bin\wxWidgets-2.9.4\include/wx/ioswrap.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/textctrl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/slider.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/slider.h \ + D:\bin\wxWidgets-2.9.4\include/wx/gauge.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/gauge.h \ + D:\bin\wxWidgets-2.9.4\include/wx/scrolwin.h \ + D:\bin\wxWidgets-2.9.4\include/wx/generic/scrolwin.h \ + D:\bin\wxWidgets-2.9.4\include/wx/dirdlg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/dirdlg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/toolbar.h \ + D:\bin\wxWidgets-2.9.4\include/wx/tbarbase.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/toolbar.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imaglist.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/imaglist.h \ + D:\bin\wxWidgets-2.9.4\include/wx/combobox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/combobox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/layout.h \ + D:\bin\wxWidgets-2.9.4\include/wx/sizer.h \ + D:\bin\wxWidgets-2.9.4\include/wx/choicdlg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/generic/choicdgg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/textdlg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/generic/textdlgg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/valtext.h \ + D:\bin\wxWidgets-2.9.4\include/wx/filedlg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/filedlg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/mdi.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/mdi.h \ + D:\bin\wxWidgets-2.9.4\include/wx/aui/framemanager.h \ + D:\bin\wxWidgets-2.9.4\include/wx/file.h \ + D:\bin\wxWidgets-2.9.4\include/wx/filename.h \ + D:\bin\wxWidgets-2.9.4\include/wx/config.h \ + D:\bin\wxWidgets-2.9.4\include/wx/confbase.h \ + D:\bin\wxWidgets-2.9.4\include/wx/base64.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/regconf.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/registry.h \ + D:\bin\wxWidgets-2.9.4\include/wx/fileconf.h \ + D:\bin\wxWidgets-2.9.4\include/wx/textfile.h \ + D:\bin\wxWidgets-2.9.4\include/wx/textbuf.h \ + D:\bin\wxWidgets-2.9.4\include/wx/convauto.h MainFrame.h wxcrafter.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xmlres.h \ + D:\bin\wxWidgets-2.9.4\include/wx/filesys.h \ + D:\bin\wxWidgets-2.9.4\include/wx/artprov.h \ + D:\bin\wxWidgets-2.9.4\include/wx/animate.h \ + D:\bin\wxWidgets-2.9.4\include/wx/animdecod.h \ + D:\bin\wxWidgets-2.9.4\include/wx/generic/animate.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xml/xml.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bmp.h \ + D:\bin\wxWidgets-2.9.4\include/wx/notebook.h \ + D:\bin\wxWidgets-2.9.4\include/wx/bookctrl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/withimages.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/notebook.h \ + D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/rig.h \ + D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/riglist.h \ + D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/rig_dll.h \ + D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/rig_dll.h \ + D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/riglist.h \ + D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/rotator.h \ + D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/rig.h \ + D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/rotlist.h \ + D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/rotlist.h \ + D:\bin\wxWidgets-2.9.4\include/wx/aboutdlg.h dlg_rig_ctrl.h + +main.h: + +D:\bin\wxWidgets-2.9.4\include/wx/wx.h: + +D:\bin\wxWidgets-2.9.4\include/wx/defs.h: + +D:\bin\wxWidgets-2.9.4\include/wx/platform.h: + +D:\bin\wxWidgets-2.9.4\lib\gcc_dll\mswu/wx/setup.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/libraries.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/gccpriv.h: + +D:\bin\wxWidgets-2.9.4\include/wx/chkconf.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/chkconf.h: + +D:\bin\wxWidgets-2.9.4\include/wx/version.h: + +D:\bin\wxWidgets-2.9.4\include/wx/cpp.h: + +D:\bin\wxWidgets-2.9.4\include/wx/dlimpexp.h: + +D:\bin\wxWidgets-2.9.4\include/wx/debug.h: + +D:\bin\wxWidgets-2.9.4\include/wx/chartype.h: + +D:\bin\wxWidgets-2.9.4\include/wx/windowid.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/winundef.h: + +D:\bin\wxWidgets-2.9.4\include/wx/features.h: + +D:\bin\wxWidgets-2.9.4\include/wx/object.h: + +D:\bin\wxWidgets-2.9.4\include/wx/memory.h: + +D:\bin\wxWidgets-2.9.4\include/wx/string.h: + +D:\bin\wxWidgets-2.9.4\include/wx/wxcrtbase.h: + +D:\bin\wxWidgets-2.9.4\include/wx/strvararg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/strconv.h: + +D:\bin\wxWidgets-2.9.4\include/wx/buffer.h: + +D:\bin\wxWidgets-2.9.4\include/wx/fontenc.h: + +D:\bin\wxWidgets-2.9.4\include/wx/unichar.h: + +D:\bin\wxWidgets-2.9.4\include/wx/stringimpl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/beforestd.h: + +D:\bin\wxWidgets-2.9.4\include/wx/afterstd.h: + +D:\bin\wxWidgets-2.9.4\include/wx/stringops.h: + +D:\bin\wxWidgets-2.9.4\include/wx/iosfwrap.h: + +D:\bin\wxWidgets-2.9.4\include/wx/crt.h: + +D:\bin\wxWidgets-2.9.4\include/wx/wxcrt.h: + +D:\bin\wxWidgets-2.9.4\include/wx/wxcrtvararg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msgout.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xti.h: + +D:\bin\wxWidgets-2.9.4\include/wx/rtti.h: + +D:\bin\wxWidgets-2.9.4\include/wx/flags.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xti2.h: + +D:\bin\wxWidgets-2.9.4\include/wx/dynarray.h: + +D:\bin\wxWidgets-2.9.4\include/wx/list.h: + +D:\bin\wxWidgets-2.9.4\include/wx/hash.h: + +D:\bin\wxWidgets-2.9.4\include/wx/hashmap.h: + +D:\bin\wxWidgets-2.9.4\include/wx/arrstr.h: + +D:\bin\wxWidgets-2.9.4\include/wx/intl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/translation.h: + +D:\bin\wxWidgets-2.9.4\include/wx/language.h: + +D:\bin\wxWidgets-2.9.4\include/wx/scopedptr.h: + +D:\bin\wxWidgets-2.9.4\include/wx/checkeddelete.h: + +D:\bin\wxWidgets-2.9.4\include/wx/log.h: + +D:\bin\wxWidgets-2.9.4\include/wx/thread.h: + +D:\bin\wxWidgets-2.9.4\include/wx/generic/logg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/event.h: + +D:\bin\wxWidgets-2.9.4\include/wx/clntdata.h: + +D:\bin\wxWidgets-2.9.4\include/wx/gdicmn.h: + +D:\bin\wxWidgets-2.9.4\include/wx/math.h: + +D:\bin\wxWidgets-2.9.4\include/wx/cursor.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/cursor.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/gdiimage.h: + +D:\bin\wxWidgets-2.9.4\include/wx/gdiobj.h: + +D:\bin\wxWidgets-2.9.4\include/wx/utils.h: + +D:\bin\wxWidgets-2.9.4\include/wx/filefn.h: + +D:\bin\wxWidgets-2.9.4\include/wx/versioninfo.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/implicitconversion.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/if.h: + +D:\bin\wxWidgets-2.9.4\include/wx/mousestate.h: + +D:\bin\wxWidgets-2.9.4\include/wx/kbdstate.h: + +D:\bin\wxWidgets-2.9.4\include/wx/longlong.h: + +D:\bin\wxWidgets-2.9.4\include/wx/platinfo.h: + +D:\bin\wxWidgets-2.9.4\include/wx/tracker.h: + +D:\bin\wxWidgets-2.9.4\include/wx/typeinfo.h: + +D:\bin\wxWidgets-2.9.4\include/wx/any.h: + +D:\bin\wxWidgets-2.9.4\include/wx/datetime.h: + +D:\bin\wxWidgets-2.9.4\include/wx/anystr.h: + +D:\bin\wxWidgets-2.9.4\include/wx/variant.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/convertible.h: + +D:\bin\wxWidgets-2.9.4\include/wx/app.h: + +D:\bin\wxWidgets-2.9.4\include/wx/eventfilter.h: + +D:\bin\wxWidgets-2.9.4\include/wx/build.h: + +D:\bin\wxWidgets-2.9.4\include/wx/cmdargs.h: + +D:\bin\wxWidgets-2.9.4\include/wx/init.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/init.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/wrapwin.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/app.h: + +D:\bin\wxWidgets-2.9.4\include/wx/icon.h: + +D:\bin\wxWidgets-2.9.4\include/wx/iconloc.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/icon.h: + +D:\bin\wxWidgets-2.9.4\include/wx/stream.h: + +D:\bin\wxWidgets-2.9.4\include/wx/stopwatch.h: + +D:\bin\wxWidgets-2.9.4\include/wx/time.h: + +D:\bin\wxWidgets-2.9.4\include/wx/timer.h: + +D:\bin\wxWidgets-2.9.4\include/wx/module.h: + +D:\bin\wxWidgets-2.9.4\include/wx/window.h: + +D:\bin\wxWidgets-2.9.4\include/wx/font.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/font.h: + +D:\bin\wxWidgets-2.9.4\include/wx/colour.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/colour.h: + +D:\bin\wxWidgets-2.9.4\include/wx/region.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/region.h: + +D:\bin\wxWidgets-2.9.4\include/wx/validate.h: + +D:\bin\wxWidgets-2.9.4\include/wx/palette.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/palette.h: + +D:\bin\wxWidgets-2.9.4\include/wx/accel.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/accel.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/window.h: + +D:\bin\wxWidgets-2.9.4\include/wx/settings.h: + +D:\bin\wxWidgets-2.9.4\include/wx/containr.h: + +D:\bin\wxWidgets-2.9.4\include/wx/panel.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/panel.h: + +D:\bin\wxWidgets-2.9.4\include/wx/toplevel.h: + +D:\bin\wxWidgets-2.9.4\include/wx/nonownedwnd.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/nonownedwnd.h: + +D:\bin\wxWidgets-2.9.4\include/wx/iconbndl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/weakref.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/int2type.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/toplevel.h: + +D:\bin\wxWidgets-2.9.4\include/wx/frame.h: + +D:\bin\wxWidgets-2.9.4\include/wx/statusbr.h: + +D:\bin\wxWidgets-2.9.4\include/wx/control.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/control.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/statusbar.h: + +D:\bin\wxWidgets-2.9.4\include/wx/vector.h: + +D:\bin\wxWidgets-2.9.4\include/wx/scopeguard.h: + +D:\bin\wxWidgets-2.9.4\include/wx/except.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/movable.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/pod.h: + +D:\bin\wxWidgets-2.9.4\include/wx/tooltip.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/tooltip.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/frame.h: + +D:\bin\wxWidgets-2.9.4\include/wx/bitmap.h: + +D:\bin\wxWidgets-2.9.4\include/wx/image.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagbmp.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagpng.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imaggif.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagpcx.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagjpeg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagtga.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagtiff.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagpnm.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagxpm.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagiff.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/bitmap.h: + +D:\bin\wxWidgets-2.9.4\include/wx/dc.h: + +D:\bin\wxWidgets-2.9.4\include/wx/brush.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/brush.h: + +D:\bin\wxWidgets-2.9.4\include/wx/pen.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/pen.h: + +D:\bin\wxWidgets-2.9.4\include/wx/affinematrix2d.h: + +D:\bin\wxWidgets-2.9.4\include/wx/affinematrix2dbase.h: + +D:\bin\wxWidgets-2.9.4\include/wx/geometry.h: + +D:\bin\wxWidgets-2.9.4\include/wx/dcclient.h: + +D:\bin\wxWidgets-2.9.4\include/wx/dcmemory.h: + +D:\bin\wxWidgets-2.9.4\include/wx/dcprint.h: + +D:\bin\wxWidgets-2.9.4\include/wx/dcscreen.h: + +D:\bin\wxWidgets-2.9.4\include/wx/button.h: + +D:\bin\wxWidgets-2.9.4\include/wx/anybutton.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/anybutton.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/button.h: + +D:\bin\wxWidgets-2.9.4\include/wx/menuitem.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/menuitem.h: + +D:\bin\wxWidgets-2.9.4\include/wx/ownerdrw.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/ownerdrw.h: + +D:\bin\wxWidgets-2.9.4\include/wx/menu.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/menu.h: + +D:\bin\wxWidgets-2.9.4\include/wx/dialog.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/dialog.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msgdlg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/stockitem.h: + +D:\bin\wxWidgets-2.9.4\include/wx/generic/msgdlgg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/msgdlg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/dataobj.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/ole/dataform.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/ole/dataobj.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/ole/dataobj2.h: + +D:\bin\wxWidgets-2.9.4\include/wx/ctrlsub.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/ctrlsub.h: + +D:\bin\wxWidgets-2.9.4\include/wx/bmpbuttn.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/bmpbuttn.h: + +D:\bin\wxWidgets-2.9.4\include/wx/checkbox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/checkbox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/checklst.h: + +D:\bin\wxWidgets-2.9.4\include/wx/listbox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/listbox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/checklst.h: + +D:\bin\wxWidgets-2.9.4\include/wx/choice.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/choice.h: + +D:\bin\wxWidgets-2.9.4\include/wx/scrolbar.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/scrolbar.h: + +D:\bin\wxWidgets-2.9.4\include/wx/stattext.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/stattext.h: + +D:\bin\wxWidgets-2.9.4\include/wx/statbmp.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/statbmp.h: + +D:\bin\wxWidgets-2.9.4\include/wx/statbox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/statbox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/radiobox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/radiobox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/radiobut.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/radiobut.h: + +D:\bin\wxWidgets-2.9.4\include/wx/textctrl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/textentry.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/textentry.h: + +D:\bin\wxWidgets-2.9.4\include/wx/ioswrap.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/textctrl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/slider.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/slider.h: + +D:\bin\wxWidgets-2.9.4\include/wx/gauge.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/gauge.h: + +D:\bin\wxWidgets-2.9.4\include/wx/scrolwin.h: + +D:\bin\wxWidgets-2.9.4\include/wx/generic/scrolwin.h: + +D:\bin\wxWidgets-2.9.4\include/wx/dirdlg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/dirdlg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/toolbar.h: + +D:\bin\wxWidgets-2.9.4\include/wx/tbarbase.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/toolbar.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imaglist.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/imaglist.h: + +D:\bin\wxWidgets-2.9.4\include/wx/combobox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/combobox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/layout.h: + +D:\bin\wxWidgets-2.9.4\include/wx/sizer.h: + +D:\bin\wxWidgets-2.9.4\include/wx/choicdlg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/generic/choicdgg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/textdlg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/generic/textdlgg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/valtext.h: + +D:\bin\wxWidgets-2.9.4\include/wx/filedlg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/filedlg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/mdi.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/mdi.h: + +D:\bin\wxWidgets-2.9.4\include/wx/aui/framemanager.h: + +D:\bin\wxWidgets-2.9.4\include/wx/file.h: + +D:\bin\wxWidgets-2.9.4\include/wx/filename.h: + +D:\bin\wxWidgets-2.9.4\include/wx/config.h: + +D:\bin\wxWidgets-2.9.4\include/wx/confbase.h: + +D:\bin\wxWidgets-2.9.4\include/wx/base64.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/regconf.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/registry.h: + +D:\bin\wxWidgets-2.9.4\include/wx/fileconf.h: + +D:\bin\wxWidgets-2.9.4\include/wx/textfile.h: + +D:\bin\wxWidgets-2.9.4\include/wx/textbuf.h: + +D:\bin\wxWidgets-2.9.4\include/wx/convauto.h: + +MainFrame.h: + +wxcrafter.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xmlres.h: + +D:\bin\wxWidgets-2.9.4\include/wx/filesys.h: + +D:\bin\wxWidgets-2.9.4\include/wx/artprov.h: + +D:\bin\wxWidgets-2.9.4\include/wx/animate.h: + +D:\bin\wxWidgets-2.9.4\include/wx/animdecod.h: + +D:\bin\wxWidgets-2.9.4\include/wx/generic/animate.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xml/xml.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bmp.h: + +D:\bin\wxWidgets-2.9.4\include/wx/notebook.h: + +D:\bin\wxWidgets-2.9.4\include/wx/bookctrl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/withimages.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/notebook.h: + +D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/rig.h: + +D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/riglist.h: + +D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/rig_dll.h: + +D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/rig_dll.h: + +D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/riglist.h: + +D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/rotator.h: + +D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/rig.h: + +D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/rotlist.h: + +D:/Projects/Radio/fdmdv2/build/codelite/hamlib-win32-1.2.15.3/include/hamlib/rotlist.h: + +D:\bin\wxWidgets-2.9.4\include/wx/aboutdlg.h: + +dlg_rig_ctrl.h: 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 index 00000000..a708d264 --- /dev/null +++ b/fdmdv2/build/codelite/hamlib_trial/Release/dlg_rig_ctrl.o.d @@ -0,0 +1,554 @@ +Release/dlg_rig_ctrl.o: dlg_rig_ctrl.cpp dlg_rig_ctrl.h wxcrafter.h \ + D:\bin\wxWidgets-2.9.4\include/wx/settings.h \ + D:\bin\wxWidgets-2.9.4\include/wx/colour.h \ + D:\bin\wxWidgets-2.9.4\include/wx/defs.h \ + D:\bin\wxWidgets-2.9.4\include/wx/platform.h \ + D:\bin\wxWidgets-2.9.4\lib\gcc_dll\mswu/wx/setup.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/libraries.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/gccpriv.h \ + D:\bin\wxWidgets-2.9.4\include/wx/chkconf.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/chkconf.h \ + D:\bin\wxWidgets-2.9.4\include/wx/version.h \ + D:\bin\wxWidgets-2.9.4\include/wx/cpp.h \ + D:\bin\wxWidgets-2.9.4\include/wx/dlimpexp.h \ + D:\bin\wxWidgets-2.9.4\include/wx/debug.h \ + D:\bin\wxWidgets-2.9.4\include/wx/chartype.h \ + D:\bin\wxWidgets-2.9.4\include/wx/windowid.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/winundef.h \ + D:\bin\wxWidgets-2.9.4\include/wx/features.h \ + D:\bin\wxWidgets-2.9.4\include/wx/gdiobj.h \ + D:\bin\wxWidgets-2.9.4\include/wx/object.h \ + D:\bin\wxWidgets-2.9.4\include/wx/memory.h \ + D:\bin\wxWidgets-2.9.4\include/wx/string.h \ + D:\bin\wxWidgets-2.9.4\include/wx/wxcrtbase.h \ + D:\bin\wxWidgets-2.9.4\include/wx/strvararg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/strconv.h \ + D:\bin\wxWidgets-2.9.4\include/wx/buffer.h \ + D:\bin\wxWidgets-2.9.4\include/wx/fontenc.h \ + D:\bin\wxWidgets-2.9.4\include/wx/unichar.h \ + D:\bin\wxWidgets-2.9.4\include/wx/stringimpl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/beforestd.h \ + D:\bin\wxWidgets-2.9.4\include/wx/afterstd.h \ + D:\bin\wxWidgets-2.9.4\include/wx/stringops.h \ + D:\bin\wxWidgets-2.9.4\include/wx/iosfwrap.h \ + D:\bin\wxWidgets-2.9.4\include/wx/crt.h \ + D:\bin\wxWidgets-2.9.4\include/wx/wxcrt.h \ + D:\bin\wxWidgets-2.9.4\include/wx/wxcrtvararg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msgout.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xti.h \ + D:\bin\wxWidgets-2.9.4\include/wx/rtti.h \ + D:\bin\wxWidgets-2.9.4\include/wx/flags.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xti2.h \ + D:\bin\wxWidgets-2.9.4\include/wx/variant.h \ + D:\bin\wxWidgets-2.9.4\include/wx/arrstr.h \ + D:\bin\wxWidgets-2.9.4\include/wx/list.h \ + D:\bin\wxWidgets-2.9.4\include/wx/longlong.h \ + D:\bin\wxWidgets-2.9.4\include/wx/datetime.h \ + D:\bin\wxWidgets-2.9.4\include/wx/anystr.h \ + D:\bin\wxWidgets-2.9.4\include/wx/dynarray.h \ + D:\bin\wxWidgets-2.9.4\include/wx/any.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/if.h \ + D:\bin\wxWidgets-2.9.4\include/wx/typeinfo.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/colour.h \ + D:\bin\wxWidgets-2.9.4\include/wx/font.h \ + D:\bin\wxWidgets-2.9.4\include/wx/gdicmn.h \ + D:\bin\wxWidgets-2.9.4\include/wx/hashmap.h \ + D:\bin\wxWidgets-2.9.4\include/wx/math.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/font.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xmlres.h \ + D:\bin\wxWidgets-2.9.4\include/wx/filesys.h \ + D:\bin\wxWidgets-2.9.4\include/wx/stream.h \ + D:\bin\wxWidgets-2.9.4\include/wx/filefn.h \ + D:\bin\wxWidgets-2.9.4\include/wx/filename.h \ + D:\bin\wxWidgets-2.9.4\include/wx/intl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/translation.h \ + D:\bin\wxWidgets-2.9.4\include/wx/language.h \ + D:\bin\wxWidgets-2.9.4\include/wx/scopedptr.h \ + D:\bin\wxWidgets-2.9.4\include/wx/checkeddelete.h \ + D:\bin\wxWidgets-2.9.4\include/wx/file.h \ + D:\bin\wxWidgets-2.9.4\include/wx/bitmap.h \ + D:\bin\wxWidgets-2.9.4\include/wx/image.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagbmp.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagpng.h \ + D:\bin\wxWidgets-2.9.4\include/wx/versioninfo.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imaggif.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagpcx.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagjpeg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagtga.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagtiff.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagpnm.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagxpm.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagiff.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/bitmap.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/gdiimage.h \ + D:\bin\wxWidgets-2.9.4\include/wx/palette.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/palette.h \ + D:\bin\wxWidgets-2.9.4\include/wx/icon.h \ + D:\bin\wxWidgets-2.9.4\include/wx/iconloc.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/icon.h \ + D:\bin\wxWidgets-2.9.4\include/wx/artprov.h \ + D:\bin\wxWidgets-2.9.4\include/wx/iconbndl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/animate.h \ + D:\bin\wxWidgets-2.9.4\include/wx/animdecod.h \ + D:\bin\wxWidgets-2.9.4\include/wx/log.h \ + D:\bin\wxWidgets-2.9.4\include/wx/thread.h \ + D:\bin\wxWidgets-2.9.4\include/wx/generic/logg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/control.h \ + D:\bin\wxWidgets-2.9.4\include/wx/window.h \ + D:\bin\wxWidgets-2.9.4\include/wx/event.h \ + D:\bin\wxWidgets-2.9.4\include/wx/clntdata.h \ + D:\bin\wxWidgets-2.9.4\include/wx/cursor.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/cursor.h \ + D:\bin\wxWidgets-2.9.4\include/wx/utils.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/implicitconversion.h \ + D:\bin\wxWidgets-2.9.4\include/wx/mousestate.h \ + D:\bin\wxWidgets-2.9.4\include/wx/kbdstate.h \ + D:\bin\wxWidgets-2.9.4\include/wx/platinfo.h \ + D:\bin\wxWidgets-2.9.4\include/wx/tracker.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/convertible.h \ + D:\bin\wxWidgets-2.9.4\include/wx/region.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/region.h \ + D:\bin\wxWidgets-2.9.4\include/wx/validate.h \ + D:\bin\wxWidgets-2.9.4\include/wx/accel.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/accel.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/window.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/control.h \ + D:\bin\wxWidgets-2.9.4\include/wx/timer.h \ + D:\bin\wxWidgets-2.9.4\include/wx/stopwatch.h \ + D:\bin\wxWidgets-2.9.4\include/wx/time.h \ + D:\bin\wxWidgets-2.9.4\include/wx/generic/animate.h \ + D:\bin\wxWidgets-2.9.4\include/wx/vector.h \ + D:\bin\wxWidgets-2.9.4\include/wx/scopeguard.h \ + D:\bin\wxWidgets-2.9.4\include/wx/except.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/movable.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/pod.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xml/xml.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bmp.h \ + D:\bin\wxWidgets-2.9.4\include/wx/frame.h \ + D:\bin\wxWidgets-2.9.4\include/wx/toplevel.h \ + D:\bin\wxWidgets-2.9.4\include/wx/nonownedwnd.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/nonownedwnd.h \ + D:\bin\wxWidgets-2.9.4\include/wx/containr.h \ + D:\bin\wxWidgets-2.9.4\include/wx/weakref.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/int2type.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/toplevel.h \ + D:\bin\wxWidgets-2.9.4\include/wx/statusbr.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/statusbar.h \ + D:\bin\wxWidgets-2.9.4\include/wx/tooltip.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/tooltip.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/frame.h \ + D:\bin\wxWidgets-2.9.4\include/wx/sizer.h \ + D:\bin\wxWidgets-2.9.4\include/wx/panel.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/panel.h \ + D:\bin\wxWidgets-2.9.4\include/wx/menu.h \ + D:\bin\wxWidgets-2.9.4\include/wx/menuitem.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/menuitem.h \ + D:\bin\wxWidgets-2.9.4\include/wx/ownerdrw.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/ownerdrw.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/menu.h \ + D:\bin\wxWidgets-2.9.4\include/wx/toolbar.h \ + D:\bin\wxWidgets-2.9.4\include/wx/tbarbase.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/toolbar.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imaglist.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/imaglist.h \ + D:\bin\wxWidgets-2.9.4\include/wx/dialog.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/dialog.h \ + D:\bin\wxWidgets-2.9.4\include/wx/notebook.h \ + D:\bin\wxWidgets-2.9.4\include/wx/bookctrl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/withimages.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/notebook.h \ + D:\bin\wxWidgets-2.9.4\include/wx/statbox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/statbox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/checkbox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/checkbox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/stattext.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/stattext.h \ + D:\bin\wxWidgets-2.9.4\include/wx/combobox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/textctrl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/textentry.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/textentry.h \ + D:\bin\wxWidgets-2.9.4\include/wx/ioswrap.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/textctrl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/ctrlsub.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/ctrlsub.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/combobox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/choice.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/choice.h \ + D:\bin\wxWidgets-2.9.4\include/wx/radiobox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/radiobox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/button.h \ + D:\bin\wxWidgets-2.9.4\include/wx/anybutton.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/anybutton.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/button.h \ + D:\bin\wxWidgets-2.9.4\include/wx/slider.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/slider.h + +dlg_rig_ctrl.h: + +wxcrafter.h: + +D:\bin\wxWidgets-2.9.4\include/wx/settings.h: + +D:\bin\wxWidgets-2.9.4\include/wx/colour.h: + +D:\bin\wxWidgets-2.9.4\include/wx/defs.h: + +D:\bin\wxWidgets-2.9.4\include/wx/platform.h: + +D:\bin\wxWidgets-2.9.4\lib\gcc_dll\mswu/wx/setup.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/libraries.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/gccpriv.h: + +D:\bin\wxWidgets-2.9.4\include/wx/chkconf.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/chkconf.h: + +D:\bin\wxWidgets-2.9.4\include/wx/version.h: + +D:\bin\wxWidgets-2.9.4\include/wx/cpp.h: + +D:\bin\wxWidgets-2.9.4\include/wx/dlimpexp.h: + +D:\bin\wxWidgets-2.9.4\include/wx/debug.h: + +D:\bin\wxWidgets-2.9.4\include/wx/chartype.h: + +D:\bin\wxWidgets-2.9.4\include/wx/windowid.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/winundef.h: + +D:\bin\wxWidgets-2.9.4\include/wx/features.h: + +D:\bin\wxWidgets-2.9.4\include/wx/gdiobj.h: + +D:\bin\wxWidgets-2.9.4\include/wx/object.h: + +D:\bin\wxWidgets-2.9.4\include/wx/memory.h: + +D:\bin\wxWidgets-2.9.4\include/wx/string.h: + +D:\bin\wxWidgets-2.9.4\include/wx/wxcrtbase.h: + +D:\bin\wxWidgets-2.9.4\include/wx/strvararg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/strconv.h: + +D:\bin\wxWidgets-2.9.4\include/wx/buffer.h: + +D:\bin\wxWidgets-2.9.4\include/wx/fontenc.h: + +D:\bin\wxWidgets-2.9.4\include/wx/unichar.h: + +D:\bin\wxWidgets-2.9.4\include/wx/stringimpl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/beforestd.h: + +D:\bin\wxWidgets-2.9.4\include/wx/afterstd.h: + +D:\bin\wxWidgets-2.9.4\include/wx/stringops.h: + +D:\bin\wxWidgets-2.9.4\include/wx/iosfwrap.h: + +D:\bin\wxWidgets-2.9.4\include/wx/crt.h: + +D:\bin\wxWidgets-2.9.4\include/wx/wxcrt.h: + +D:\bin\wxWidgets-2.9.4\include/wx/wxcrtvararg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msgout.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xti.h: + +D:\bin\wxWidgets-2.9.4\include/wx/rtti.h: + +D:\bin\wxWidgets-2.9.4\include/wx/flags.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xti2.h: + +D:\bin\wxWidgets-2.9.4\include/wx/variant.h: + +D:\bin\wxWidgets-2.9.4\include/wx/arrstr.h: + +D:\bin\wxWidgets-2.9.4\include/wx/list.h: + +D:\bin\wxWidgets-2.9.4\include/wx/longlong.h: + +D:\bin\wxWidgets-2.9.4\include/wx/datetime.h: + +D:\bin\wxWidgets-2.9.4\include/wx/anystr.h: + +D:\bin\wxWidgets-2.9.4\include/wx/dynarray.h: + +D:\bin\wxWidgets-2.9.4\include/wx/any.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/if.h: + +D:\bin\wxWidgets-2.9.4\include/wx/typeinfo.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/colour.h: + +D:\bin\wxWidgets-2.9.4\include/wx/font.h: + +D:\bin\wxWidgets-2.9.4\include/wx/gdicmn.h: + +D:\bin\wxWidgets-2.9.4\include/wx/hashmap.h: + +D:\bin\wxWidgets-2.9.4\include/wx/math.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/font.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xmlres.h: + +D:\bin\wxWidgets-2.9.4\include/wx/filesys.h: + +D:\bin\wxWidgets-2.9.4\include/wx/stream.h: + +D:\bin\wxWidgets-2.9.4\include/wx/filefn.h: + +D:\bin\wxWidgets-2.9.4\include/wx/filename.h: + +D:\bin\wxWidgets-2.9.4\include/wx/intl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/translation.h: + +D:\bin\wxWidgets-2.9.4\include/wx/language.h: + +D:\bin\wxWidgets-2.9.4\include/wx/scopedptr.h: + +D:\bin\wxWidgets-2.9.4\include/wx/checkeddelete.h: + +D:\bin\wxWidgets-2.9.4\include/wx/file.h: + +D:\bin\wxWidgets-2.9.4\include/wx/bitmap.h: + +D:\bin\wxWidgets-2.9.4\include/wx/image.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagbmp.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagpng.h: + +D:\bin\wxWidgets-2.9.4\include/wx/versioninfo.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imaggif.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagpcx.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagjpeg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagtga.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagtiff.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagpnm.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagxpm.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagiff.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/bitmap.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/gdiimage.h: + +D:\bin\wxWidgets-2.9.4\include/wx/palette.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/palette.h: + +D:\bin\wxWidgets-2.9.4\include/wx/icon.h: + +D:\bin\wxWidgets-2.9.4\include/wx/iconloc.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/icon.h: + +D:\bin\wxWidgets-2.9.4\include/wx/artprov.h: + +D:\bin\wxWidgets-2.9.4\include/wx/iconbndl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/animate.h: + +D:\bin\wxWidgets-2.9.4\include/wx/animdecod.h: + +D:\bin\wxWidgets-2.9.4\include/wx/log.h: + +D:\bin\wxWidgets-2.9.4\include/wx/thread.h: + +D:\bin\wxWidgets-2.9.4\include/wx/generic/logg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/control.h: + +D:\bin\wxWidgets-2.9.4\include/wx/window.h: + +D:\bin\wxWidgets-2.9.4\include/wx/event.h: + +D:\bin\wxWidgets-2.9.4\include/wx/clntdata.h: + +D:\bin\wxWidgets-2.9.4\include/wx/cursor.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/cursor.h: + +D:\bin\wxWidgets-2.9.4\include/wx/utils.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/implicitconversion.h: + +D:\bin\wxWidgets-2.9.4\include/wx/mousestate.h: + +D:\bin\wxWidgets-2.9.4\include/wx/kbdstate.h: + +D:\bin\wxWidgets-2.9.4\include/wx/platinfo.h: + +D:\bin\wxWidgets-2.9.4\include/wx/tracker.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/convertible.h: + +D:\bin\wxWidgets-2.9.4\include/wx/region.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/region.h: + +D:\bin\wxWidgets-2.9.4\include/wx/validate.h: + +D:\bin\wxWidgets-2.9.4\include/wx/accel.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/accel.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/window.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/control.h: + +D:\bin\wxWidgets-2.9.4\include/wx/timer.h: + +D:\bin\wxWidgets-2.9.4\include/wx/stopwatch.h: + +D:\bin\wxWidgets-2.9.4\include/wx/time.h: + +D:\bin\wxWidgets-2.9.4\include/wx/generic/animate.h: + +D:\bin\wxWidgets-2.9.4\include/wx/vector.h: + +D:\bin\wxWidgets-2.9.4\include/wx/scopeguard.h: + +D:\bin\wxWidgets-2.9.4\include/wx/except.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/movable.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/pod.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xml/xml.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bmp.h: + +D:\bin\wxWidgets-2.9.4\include/wx/frame.h: + +D:\bin\wxWidgets-2.9.4\include/wx/toplevel.h: + +D:\bin\wxWidgets-2.9.4\include/wx/nonownedwnd.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/nonownedwnd.h: + +D:\bin\wxWidgets-2.9.4\include/wx/containr.h: + +D:\bin\wxWidgets-2.9.4\include/wx/weakref.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/int2type.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/toplevel.h: + +D:\bin\wxWidgets-2.9.4\include/wx/statusbr.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/statusbar.h: + +D:\bin\wxWidgets-2.9.4\include/wx/tooltip.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/tooltip.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/frame.h: + +D:\bin\wxWidgets-2.9.4\include/wx/sizer.h: + +D:\bin\wxWidgets-2.9.4\include/wx/panel.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/panel.h: + +D:\bin\wxWidgets-2.9.4\include/wx/menu.h: + +D:\bin\wxWidgets-2.9.4\include/wx/menuitem.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/menuitem.h: + +D:\bin\wxWidgets-2.9.4\include/wx/ownerdrw.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/ownerdrw.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/menu.h: + +D:\bin\wxWidgets-2.9.4\include/wx/toolbar.h: + +D:\bin\wxWidgets-2.9.4\include/wx/tbarbase.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/toolbar.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imaglist.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/imaglist.h: + +D:\bin\wxWidgets-2.9.4\include/wx/dialog.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/dialog.h: + +D:\bin\wxWidgets-2.9.4\include/wx/notebook.h: + +D:\bin\wxWidgets-2.9.4\include/wx/bookctrl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/withimages.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/notebook.h: + +D:\bin\wxWidgets-2.9.4\include/wx/statbox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/statbox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/checkbox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/checkbox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/stattext.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/stattext.h: + +D:\bin\wxWidgets-2.9.4\include/wx/combobox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/textctrl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/textentry.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/textentry.h: + +D:\bin\wxWidgets-2.9.4\include/wx/ioswrap.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/textctrl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/ctrlsub.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/ctrlsub.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/combobox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/choice.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/choice.h: + +D:\bin\wxWidgets-2.9.4\include/wx/radiobox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/radiobox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/button.h: + +D:\bin\wxWidgets-2.9.4\include/wx/anybutton.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/anybutton.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/button.h: + +D:\bin\wxWidgets-2.9.4\include/wx/slider.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/slider.h: 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 index 00000000..0d9dc545 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 index 00000000..e4bbe07b --- /dev/null +++ b/fdmdv2/build/codelite/hamlib_trial/Release/main.o.d @@ -0,0 +1,750 @@ +Release/main.o: main.cpp main.h D:\bin\wxWidgets-2.9.4\include/wx/wx.h \ + D:\bin\wxWidgets-2.9.4\include/wx/defs.h \ + D:\bin\wxWidgets-2.9.4\include/wx/platform.h \ + D:\bin\wxWidgets-2.9.4\lib\gcc_dll\mswu/wx/setup.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/libraries.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/gccpriv.h \ + D:\bin\wxWidgets-2.9.4\include/wx/chkconf.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/chkconf.h \ + D:\bin\wxWidgets-2.9.4\include/wx/version.h \ + D:\bin\wxWidgets-2.9.4\include/wx/cpp.h \ + D:\bin\wxWidgets-2.9.4\include/wx/dlimpexp.h \ + D:\bin\wxWidgets-2.9.4\include/wx/debug.h \ + D:\bin\wxWidgets-2.9.4\include/wx/chartype.h \ + D:\bin\wxWidgets-2.9.4\include/wx/windowid.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/winundef.h \ + D:\bin\wxWidgets-2.9.4\include/wx/features.h \ + D:\bin\wxWidgets-2.9.4\include/wx/object.h \ + D:\bin\wxWidgets-2.9.4\include/wx/memory.h \ + D:\bin\wxWidgets-2.9.4\include/wx/string.h \ + D:\bin\wxWidgets-2.9.4\include/wx/wxcrtbase.h \ + D:\bin\wxWidgets-2.9.4\include/wx/strvararg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/strconv.h \ + D:\bin\wxWidgets-2.9.4\include/wx/buffer.h \ + D:\bin\wxWidgets-2.9.4\include/wx/fontenc.h \ + D:\bin\wxWidgets-2.9.4\include/wx/unichar.h \ + D:\bin\wxWidgets-2.9.4\include/wx/stringimpl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/beforestd.h \ + D:\bin\wxWidgets-2.9.4\include/wx/afterstd.h \ + D:\bin\wxWidgets-2.9.4\include/wx/stringops.h \ + D:\bin\wxWidgets-2.9.4\include/wx/iosfwrap.h \ + D:\bin\wxWidgets-2.9.4\include/wx/crt.h \ + D:\bin\wxWidgets-2.9.4\include/wx/wxcrt.h \ + D:\bin\wxWidgets-2.9.4\include/wx/wxcrtvararg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msgout.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xti.h \ + D:\bin\wxWidgets-2.9.4\include/wx/rtti.h \ + D:\bin\wxWidgets-2.9.4\include/wx/flags.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xti2.h \ + D:\bin\wxWidgets-2.9.4\include/wx/dynarray.h \ + D:\bin\wxWidgets-2.9.4\include/wx/list.h \ + D:\bin\wxWidgets-2.9.4\include/wx/hash.h \ + D:\bin\wxWidgets-2.9.4\include/wx/hashmap.h \ + D:\bin\wxWidgets-2.9.4\include/wx/arrstr.h \ + D:\bin\wxWidgets-2.9.4\include/wx/intl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/translation.h \ + D:\bin\wxWidgets-2.9.4\include/wx/language.h \ + D:\bin\wxWidgets-2.9.4\include/wx/scopedptr.h \ + D:\bin\wxWidgets-2.9.4\include/wx/checkeddelete.h \ + D:\bin\wxWidgets-2.9.4\include/wx/log.h \ + D:\bin\wxWidgets-2.9.4\include/wx/thread.h \ + D:\bin\wxWidgets-2.9.4\include/wx/generic/logg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/event.h \ + D:\bin\wxWidgets-2.9.4\include/wx/clntdata.h \ + D:\bin\wxWidgets-2.9.4\include/wx/gdicmn.h \ + D:\bin\wxWidgets-2.9.4\include/wx/math.h \ + D:\bin\wxWidgets-2.9.4\include/wx/cursor.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/cursor.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/gdiimage.h \ + D:\bin\wxWidgets-2.9.4\include/wx/gdiobj.h \ + D:\bin\wxWidgets-2.9.4\include/wx/utils.h \ + D:\bin\wxWidgets-2.9.4\include/wx/filefn.h \ + D:\bin\wxWidgets-2.9.4\include/wx/versioninfo.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/implicitconversion.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/if.h \ + D:\bin\wxWidgets-2.9.4\include/wx/mousestate.h \ + D:\bin\wxWidgets-2.9.4\include/wx/kbdstate.h \ + D:\bin\wxWidgets-2.9.4\include/wx/longlong.h \ + D:\bin\wxWidgets-2.9.4\include/wx/platinfo.h \ + D:\bin\wxWidgets-2.9.4\include/wx/tracker.h \ + D:\bin\wxWidgets-2.9.4\include/wx/typeinfo.h \ + D:\bin\wxWidgets-2.9.4\include/wx/any.h \ + D:\bin\wxWidgets-2.9.4\include/wx/datetime.h \ + D:\bin\wxWidgets-2.9.4\include/wx/anystr.h \ + D:\bin\wxWidgets-2.9.4\include/wx/variant.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/convertible.h \ + D:\bin\wxWidgets-2.9.4\include/wx/app.h \ + D:\bin\wxWidgets-2.9.4\include/wx/eventfilter.h \ + D:\bin\wxWidgets-2.9.4\include/wx/build.h \ + D:\bin\wxWidgets-2.9.4\include/wx/cmdargs.h \ + D:\bin\wxWidgets-2.9.4\include/wx/init.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/init.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/wrapwin.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/app.h \ + D:\bin\wxWidgets-2.9.4\include/wx/icon.h \ + D:\bin\wxWidgets-2.9.4\include/wx/iconloc.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/icon.h \ + D:\bin\wxWidgets-2.9.4\include/wx/stream.h \ + D:\bin\wxWidgets-2.9.4\include/wx/stopwatch.h \ + D:\bin\wxWidgets-2.9.4\include/wx/time.h \ + D:\bin\wxWidgets-2.9.4\include/wx/timer.h \ + D:\bin\wxWidgets-2.9.4\include/wx/module.h \ + D:\bin\wxWidgets-2.9.4\include/wx/window.h \ + D:\bin\wxWidgets-2.9.4\include/wx/font.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/font.h \ + D:\bin\wxWidgets-2.9.4\include/wx/colour.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/colour.h \ + D:\bin\wxWidgets-2.9.4\include/wx/region.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/region.h \ + D:\bin\wxWidgets-2.9.4\include/wx/validate.h \ + D:\bin\wxWidgets-2.9.4\include/wx/palette.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/palette.h \ + D:\bin\wxWidgets-2.9.4\include/wx/accel.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/accel.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/window.h \ + D:\bin\wxWidgets-2.9.4\include/wx/settings.h \ + D:\bin\wxWidgets-2.9.4\include/wx/containr.h \ + D:\bin\wxWidgets-2.9.4\include/wx/panel.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/panel.h \ + D:\bin\wxWidgets-2.9.4\include/wx/toplevel.h \ + D:\bin\wxWidgets-2.9.4\include/wx/nonownedwnd.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/nonownedwnd.h \ + D:\bin\wxWidgets-2.9.4\include/wx/iconbndl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/weakref.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/int2type.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/toplevel.h \ + D:\bin\wxWidgets-2.9.4\include/wx/frame.h \ + D:\bin\wxWidgets-2.9.4\include/wx/statusbr.h \ + D:\bin\wxWidgets-2.9.4\include/wx/control.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/control.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/statusbar.h \ + D:\bin\wxWidgets-2.9.4\include/wx/vector.h \ + D:\bin\wxWidgets-2.9.4\include/wx/scopeguard.h \ + D:\bin\wxWidgets-2.9.4\include/wx/except.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/movable.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/pod.h \ + D:\bin\wxWidgets-2.9.4\include/wx/tooltip.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/tooltip.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/frame.h \ + D:\bin\wxWidgets-2.9.4\include/wx/bitmap.h \ + D:\bin\wxWidgets-2.9.4\include/wx/image.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagbmp.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagpng.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imaggif.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagpcx.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagjpeg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagtga.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagtiff.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagpnm.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagxpm.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagiff.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/bitmap.h \ + D:\bin\wxWidgets-2.9.4\include/wx/dc.h \ + D:\bin\wxWidgets-2.9.4\include/wx/brush.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/brush.h \ + D:\bin\wxWidgets-2.9.4\include/wx/pen.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/pen.h \ + D:\bin\wxWidgets-2.9.4\include/wx/affinematrix2d.h \ + D:\bin\wxWidgets-2.9.4\include/wx/affinematrix2dbase.h \ + D:\bin\wxWidgets-2.9.4\include/wx/geometry.h \ + D:\bin\wxWidgets-2.9.4\include/wx/dcclient.h \ + D:\bin\wxWidgets-2.9.4\include/wx/dcmemory.h \ + D:\bin\wxWidgets-2.9.4\include/wx/dcprint.h \ + D:\bin\wxWidgets-2.9.4\include/wx/dcscreen.h \ + D:\bin\wxWidgets-2.9.4\include/wx/button.h \ + D:\bin\wxWidgets-2.9.4\include/wx/anybutton.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/anybutton.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/button.h \ + D:\bin\wxWidgets-2.9.4\include/wx/menuitem.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/menuitem.h \ + D:\bin\wxWidgets-2.9.4\include/wx/ownerdrw.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/ownerdrw.h \ + D:\bin\wxWidgets-2.9.4\include/wx/menu.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/menu.h \ + D:\bin\wxWidgets-2.9.4\include/wx/dialog.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/dialog.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msgdlg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/stockitem.h \ + D:\bin\wxWidgets-2.9.4\include/wx/generic/msgdlgg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/msgdlg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/dataobj.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/ole/dataform.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/ole/dataobj.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/ole/dataobj2.h \ + D:\bin\wxWidgets-2.9.4\include/wx/ctrlsub.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/ctrlsub.h \ + D:\bin\wxWidgets-2.9.4\include/wx/bmpbuttn.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/bmpbuttn.h \ + D:\bin\wxWidgets-2.9.4\include/wx/checkbox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/checkbox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/checklst.h \ + D:\bin\wxWidgets-2.9.4\include/wx/listbox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/listbox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/checklst.h \ + D:\bin\wxWidgets-2.9.4\include/wx/choice.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/choice.h \ + D:\bin\wxWidgets-2.9.4\include/wx/scrolbar.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/scrolbar.h \ + D:\bin\wxWidgets-2.9.4\include/wx/stattext.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/stattext.h \ + D:\bin\wxWidgets-2.9.4\include/wx/statbmp.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/statbmp.h \ + D:\bin\wxWidgets-2.9.4\include/wx/statbox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/statbox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/radiobox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/radiobox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/radiobut.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/radiobut.h \ + D:\bin\wxWidgets-2.9.4\include/wx/textctrl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/textentry.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/textentry.h \ + D:\bin\wxWidgets-2.9.4\include/wx/ioswrap.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/textctrl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/slider.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/slider.h \ + D:\bin\wxWidgets-2.9.4\include/wx/gauge.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/gauge.h \ + D:\bin\wxWidgets-2.9.4\include/wx/scrolwin.h \ + D:\bin\wxWidgets-2.9.4\include/wx/generic/scrolwin.h \ + D:\bin\wxWidgets-2.9.4\include/wx/dirdlg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/dirdlg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/toolbar.h \ + D:\bin\wxWidgets-2.9.4\include/wx/tbarbase.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/toolbar.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imaglist.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/imaglist.h \ + D:\bin\wxWidgets-2.9.4\include/wx/combobox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/combobox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/layout.h \ + D:\bin\wxWidgets-2.9.4\include/wx/sizer.h \ + D:\bin\wxWidgets-2.9.4\include/wx/choicdlg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/generic/choicdgg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/textdlg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/generic/textdlgg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/valtext.h \ + D:\bin\wxWidgets-2.9.4\include/wx/filedlg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/filedlg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/mdi.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/mdi.h \ + D:\bin\wxWidgets-2.9.4\include/wx/aui/framemanager.h \ + D:\bin\wxWidgets-2.9.4\include/wx/file.h \ + D:\bin\wxWidgets-2.9.4\include/wx/filename.h \ + D:\bin\wxWidgets-2.9.4\include/wx/config.h \ + D:\bin\wxWidgets-2.9.4\include/wx/confbase.h \ + D:\bin\wxWidgets-2.9.4\include/wx/base64.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/regconf.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/registry.h \ + D:\bin\wxWidgets-2.9.4\include/wx/fileconf.h \ + D:\bin\wxWidgets-2.9.4\include/wx/textfile.h \ + D:\bin\wxWidgets-2.9.4\include/wx/textbuf.h \ + D:\bin\wxWidgets-2.9.4\include/wx/convauto.h MainFrame.h wxcrafter.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xmlres.h \ + D:\bin\wxWidgets-2.9.4\include/wx/filesys.h \ + D:\bin\wxWidgets-2.9.4\include/wx/artprov.h \ + D:\bin\wxWidgets-2.9.4\include/wx/animate.h \ + D:\bin\wxWidgets-2.9.4\include/wx/animdecod.h \ + D:\bin\wxWidgets-2.9.4\include/wx/generic/animate.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xml/xml.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bmp.h + +main.h: + +D:\bin\wxWidgets-2.9.4\include/wx/wx.h: + +D:\bin\wxWidgets-2.9.4\include/wx/defs.h: + +D:\bin\wxWidgets-2.9.4\include/wx/platform.h: + +D:\bin\wxWidgets-2.9.4\lib\gcc_dll\mswu/wx/setup.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/libraries.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/gccpriv.h: + +D:\bin\wxWidgets-2.9.4\include/wx/chkconf.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/chkconf.h: + +D:\bin\wxWidgets-2.9.4\include/wx/version.h: + +D:\bin\wxWidgets-2.9.4\include/wx/cpp.h: + +D:\bin\wxWidgets-2.9.4\include/wx/dlimpexp.h: + +D:\bin\wxWidgets-2.9.4\include/wx/debug.h: + +D:\bin\wxWidgets-2.9.4\include/wx/chartype.h: + +D:\bin\wxWidgets-2.9.4\include/wx/windowid.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/winundef.h: + +D:\bin\wxWidgets-2.9.4\include/wx/features.h: + +D:\bin\wxWidgets-2.9.4\include/wx/object.h: + +D:\bin\wxWidgets-2.9.4\include/wx/memory.h: + +D:\bin\wxWidgets-2.9.4\include/wx/string.h: + +D:\bin\wxWidgets-2.9.4\include/wx/wxcrtbase.h: + +D:\bin\wxWidgets-2.9.4\include/wx/strvararg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/strconv.h: + +D:\bin\wxWidgets-2.9.4\include/wx/buffer.h: + +D:\bin\wxWidgets-2.9.4\include/wx/fontenc.h: + +D:\bin\wxWidgets-2.9.4\include/wx/unichar.h: + +D:\bin\wxWidgets-2.9.4\include/wx/stringimpl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/beforestd.h: + +D:\bin\wxWidgets-2.9.4\include/wx/afterstd.h: + +D:\bin\wxWidgets-2.9.4\include/wx/stringops.h: + +D:\bin\wxWidgets-2.9.4\include/wx/iosfwrap.h: + +D:\bin\wxWidgets-2.9.4\include/wx/crt.h: + +D:\bin\wxWidgets-2.9.4\include/wx/wxcrt.h: + +D:\bin\wxWidgets-2.9.4\include/wx/wxcrtvararg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msgout.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xti.h: + +D:\bin\wxWidgets-2.9.4\include/wx/rtti.h: + +D:\bin\wxWidgets-2.9.4\include/wx/flags.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xti2.h: + +D:\bin\wxWidgets-2.9.4\include/wx/dynarray.h: + +D:\bin\wxWidgets-2.9.4\include/wx/list.h: + +D:\bin\wxWidgets-2.9.4\include/wx/hash.h: + +D:\bin\wxWidgets-2.9.4\include/wx/hashmap.h: + +D:\bin\wxWidgets-2.9.4\include/wx/arrstr.h: + +D:\bin\wxWidgets-2.9.4\include/wx/intl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/translation.h: + +D:\bin\wxWidgets-2.9.4\include/wx/language.h: + +D:\bin\wxWidgets-2.9.4\include/wx/scopedptr.h: + +D:\bin\wxWidgets-2.9.4\include/wx/checkeddelete.h: + +D:\bin\wxWidgets-2.9.4\include/wx/log.h: + +D:\bin\wxWidgets-2.9.4\include/wx/thread.h: + +D:\bin\wxWidgets-2.9.4\include/wx/generic/logg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/event.h: + +D:\bin\wxWidgets-2.9.4\include/wx/clntdata.h: + +D:\bin\wxWidgets-2.9.4\include/wx/gdicmn.h: + +D:\bin\wxWidgets-2.9.4\include/wx/math.h: + +D:\bin\wxWidgets-2.9.4\include/wx/cursor.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/cursor.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/gdiimage.h: + +D:\bin\wxWidgets-2.9.4\include/wx/gdiobj.h: + +D:\bin\wxWidgets-2.9.4\include/wx/utils.h: + +D:\bin\wxWidgets-2.9.4\include/wx/filefn.h: + +D:\bin\wxWidgets-2.9.4\include/wx/versioninfo.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/implicitconversion.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/if.h: + +D:\bin\wxWidgets-2.9.4\include/wx/mousestate.h: + +D:\bin\wxWidgets-2.9.4\include/wx/kbdstate.h: + +D:\bin\wxWidgets-2.9.4\include/wx/longlong.h: + +D:\bin\wxWidgets-2.9.4\include/wx/platinfo.h: + +D:\bin\wxWidgets-2.9.4\include/wx/tracker.h: + +D:\bin\wxWidgets-2.9.4\include/wx/typeinfo.h: + +D:\bin\wxWidgets-2.9.4\include/wx/any.h: + +D:\bin\wxWidgets-2.9.4\include/wx/datetime.h: + +D:\bin\wxWidgets-2.9.4\include/wx/anystr.h: + +D:\bin\wxWidgets-2.9.4\include/wx/variant.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/convertible.h: + +D:\bin\wxWidgets-2.9.4\include/wx/app.h: + +D:\bin\wxWidgets-2.9.4\include/wx/eventfilter.h: + +D:\bin\wxWidgets-2.9.4\include/wx/build.h: + +D:\bin\wxWidgets-2.9.4\include/wx/cmdargs.h: + +D:\bin\wxWidgets-2.9.4\include/wx/init.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/init.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/wrapwin.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/app.h: + +D:\bin\wxWidgets-2.9.4\include/wx/icon.h: + +D:\bin\wxWidgets-2.9.4\include/wx/iconloc.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/icon.h: + +D:\bin\wxWidgets-2.9.4\include/wx/stream.h: + +D:\bin\wxWidgets-2.9.4\include/wx/stopwatch.h: + +D:\bin\wxWidgets-2.9.4\include/wx/time.h: + +D:\bin\wxWidgets-2.9.4\include/wx/timer.h: + +D:\bin\wxWidgets-2.9.4\include/wx/module.h: + +D:\bin\wxWidgets-2.9.4\include/wx/window.h: + +D:\bin\wxWidgets-2.9.4\include/wx/font.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/font.h: + +D:\bin\wxWidgets-2.9.4\include/wx/colour.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/colour.h: + +D:\bin\wxWidgets-2.9.4\include/wx/region.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/region.h: + +D:\bin\wxWidgets-2.9.4\include/wx/validate.h: + +D:\bin\wxWidgets-2.9.4\include/wx/palette.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/palette.h: + +D:\bin\wxWidgets-2.9.4\include/wx/accel.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/accel.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/window.h: + +D:\bin\wxWidgets-2.9.4\include/wx/settings.h: + +D:\bin\wxWidgets-2.9.4\include/wx/containr.h: + +D:\bin\wxWidgets-2.9.4\include/wx/panel.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/panel.h: + +D:\bin\wxWidgets-2.9.4\include/wx/toplevel.h: + +D:\bin\wxWidgets-2.9.4\include/wx/nonownedwnd.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/nonownedwnd.h: + +D:\bin\wxWidgets-2.9.4\include/wx/iconbndl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/weakref.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/int2type.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/toplevel.h: + +D:\bin\wxWidgets-2.9.4\include/wx/frame.h: + +D:\bin\wxWidgets-2.9.4\include/wx/statusbr.h: + +D:\bin\wxWidgets-2.9.4\include/wx/control.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/control.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/statusbar.h: + +D:\bin\wxWidgets-2.9.4\include/wx/vector.h: + +D:\bin\wxWidgets-2.9.4\include/wx/scopeguard.h: + +D:\bin\wxWidgets-2.9.4\include/wx/except.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/movable.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/pod.h: + +D:\bin\wxWidgets-2.9.4\include/wx/tooltip.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/tooltip.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/frame.h: + +D:\bin\wxWidgets-2.9.4\include/wx/bitmap.h: + +D:\bin\wxWidgets-2.9.4\include/wx/image.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagbmp.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagpng.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imaggif.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagpcx.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagjpeg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagtga.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagtiff.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagpnm.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagxpm.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagiff.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/bitmap.h: + +D:\bin\wxWidgets-2.9.4\include/wx/dc.h: + +D:\bin\wxWidgets-2.9.4\include/wx/brush.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/brush.h: + +D:\bin\wxWidgets-2.9.4\include/wx/pen.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/pen.h: + +D:\bin\wxWidgets-2.9.4\include/wx/affinematrix2d.h: + +D:\bin\wxWidgets-2.9.4\include/wx/affinematrix2dbase.h: + +D:\bin\wxWidgets-2.9.4\include/wx/geometry.h: + +D:\bin\wxWidgets-2.9.4\include/wx/dcclient.h: + +D:\bin\wxWidgets-2.9.4\include/wx/dcmemory.h: + +D:\bin\wxWidgets-2.9.4\include/wx/dcprint.h: + +D:\bin\wxWidgets-2.9.4\include/wx/dcscreen.h: + +D:\bin\wxWidgets-2.9.4\include/wx/button.h: + +D:\bin\wxWidgets-2.9.4\include/wx/anybutton.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/anybutton.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/button.h: + +D:\bin\wxWidgets-2.9.4\include/wx/menuitem.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/menuitem.h: + +D:\bin\wxWidgets-2.9.4\include/wx/ownerdrw.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/ownerdrw.h: + +D:\bin\wxWidgets-2.9.4\include/wx/menu.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/menu.h: + +D:\bin\wxWidgets-2.9.4\include/wx/dialog.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/dialog.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msgdlg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/stockitem.h: + +D:\bin\wxWidgets-2.9.4\include/wx/generic/msgdlgg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/msgdlg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/dataobj.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/ole/dataform.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/ole/dataobj.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/ole/dataobj2.h: + +D:\bin\wxWidgets-2.9.4\include/wx/ctrlsub.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/ctrlsub.h: + +D:\bin\wxWidgets-2.9.4\include/wx/bmpbuttn.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/bmpbuttn.h: + +D:\bin\wxWidgets-2.9.4\include/wx/checkbox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/checkbox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/checklst.h: + +D:\bin\wxWidgets-2.9.4\include/wx/listbox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/listbox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/checklst.h: + +D:\bin\wxWidgets-2.9.4\include/wx/choice.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/choice.h: + +D:\bin\wxWidgets-2.9.4\include/wx/scrolbar.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/scrolbar.h: + +D:\bin\wxWidgets-2.9.4\include/wx/stattext.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/stattext.h: + +D:\bin\wxWidgets-2.9.4\include/wx/statbmp.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/statbmp.h: + +D:\bin\wxWidgets-2.9.4\include/wx/statbox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/statbox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/radiobox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/radiobox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/radiobut.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/radiobut.h: + +D:\bin\wxWidgets-2.9.4\include/wx/textctrl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/textentry.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/textentry.h: + +D:\bin\wxWidgets-2.9.4\include/wx/ioswrap.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/textctrl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/slider.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/slider.h: + +D:\bin\wxWidgets-2.9.4\include/wx/gauge.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/gauge.h: + +D:\bin\wxWidgets-2.9.4\include/wx/scrolwin.h: + +D:\bin\wxWidgets-2.9.4\include/wx/generic/scrolwin.h: + +D:\bin\wxWidgets-2.9.4\include/wx/dirdlg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/dirdlg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/toolbar.h: + +D:\bin\wxWidgets-2.9.4\include/wx/tbarbase.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/toolbar.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imaglist.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/imaglist.h: + +D:\bin\wxWidgets-2.9.4\include/wx/combobox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/combobox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/layout.h: + +D:\bin\wxWidgets-2.9.4\include/wx/sizer.h: + +D:\bin\wxWidgets-2.9.4\include/wx/choicdlg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/generic/choicdgg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/textdlg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/generic/textdlgg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/valtext.h: + +D:\bin\wxWidgets-2.9.4\include/wx/filedlg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/filedlg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/mdi.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/mdi.h: + +D:\bin\wxWidgets-2.9.4\include/wx/aui/framemanager.h: + +D:\bin\wxWidgets-2.9.4\include/wx/file.h: + +D:\bin\wxWidgets-2.9.4\include/wx/filename.h: + +D:\bin\wxWidgets-2.9.4\include/wx/config.h: + +D:\bin\wxWidgets-2.9.4\include/wx/confbase.h: + +D:\bin\wxWidgets-2.9.4\include/wx/base64.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/regconf.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/registry.h: + +D:\bin\wxWidgets-2.9.4\include/wx/fileconf.h: + +D:\bin\wxWidgets-2.9.4\include/wx/textfile.h: + +D:\bin\wxWidgets-2.9.4\include/wx/textbuf.h: + +D:\bin\wxWidgets-2.9.4\include/wx/convauto.h: + +MainFrame.h: + +wxcrafter.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xmlres.h: + +D:\bin\wxWidgets-2.9.4\include/wx/filesys.h: + +D:\bin\wxWidgets-2.9.4\include/wx/artprov.h: + +D:\bin\wxWidgets-2.9.4\include/wx/animate.h: + +D:\bin\wxWidgets-2.9.4\include/wx/animdecod.h: + +D:\bin\wxWidgets-2.9.4\include/wx/generic/animate.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xml/xml.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bmp.h: diff --git a/fdmdv2/build/codelite/hamlib_trial/Release/visiWidgits.conf b/fdmdv2/build/codelite/hamlib_trial/Release/visiWidgits.conf new file mode 100644 index 00000000..e2f32707 --- /dev/null +++ b/fdmdv2/build/codelite/hamlib_trial/Release/visiWidgits.conf @@ -0,0 +1,5 @@ +[MainFrame] +top=732 +left=122 +width=732 +height=539 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 index 00000000..83bc10bc --- /dev/null +++ b/fdmdv2/build/codelite/hamlib_trial/Release/wxcrafter.o.d @@ -0,0 +1,558 @@ +Release/wxcrafter.o: wxcrafter.cpp wxcrafter.h \ + D:\bin\wxWidgets-2.9.4\include/wx/settings.h \ + D:\bin\wxWidgets-2.9.4\include/wx/colour.h \ + D:\bin\wxWidgets-2.9.4\include/wx/defs.h \ + D:\bin\wxWidgets-2.9.4\include/wx/platform.h \ + D:\bin\wxWidgets-2.9.4\lib\gcc_dll\mswu/wx/setup.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/libraries.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/gccpriv.h \ + D:\bin\wxWidgets-2.9.4\include/wx/chkconf.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/chkconf.h \ + D:\bin\wxWidgets-2.9.4\include/wx/version.h \ + D:\bin\wxWidgets-2.9.4\include/wx/cpp.h \ + D:\bin\wxWidgets-2.9.4\include/wx/dlimpexp.h \ + D:\bin\wxWidgets-2.9.4\include/wx/debug.h \ + D:\bin\wxWidgets-2.9.4\include/wx/chartype.h \ + D:\bin\wxWidgets-2.9.4\include/wx/windowid.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/winundef.h \ + D:\bin\wxWidgets-2.9.4\include/wx/features.h \ + D:\bin\wxWidgets-2.9.4\include/wx/gdiobj.h \ + D:\bin\wxWidgets-2.9.4\include/wx/object.h \ + D:\bin\wxWidgets-2.9.4\include/wx/memory.h \ + D:\bin\wxWidgets-2.9.4\include/wx/string.h \ + D:\bin\wxWidgets-2.9.4\include/wx/wxcrtbase.h \ + D:\bin\wxWidgets-2.9.4\include/wx/strvararg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/strconv.h \ + D:\bin\wxWidgets-2.9.4\include/wx/buffer.h \ + D:\bin\wxWidgets-2.9.4\include/wx/fontenc.h \ + D:\bin\wxWidgets-2.9.4\include/wx/unichar.h \ + D:\bin\wxWidgets-2.9.4\include/wx/stringimpl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/beforestd.h \ + D:\bin\wxWidgets-2.9.4\include/wx/afterstd.h \ + D:\bin\wxWidgets-2.9.4\include/wx/stringops.h \ + D:\bin\wxWidgets-2.9.4\include/wx/iosfwrap.h \ + D:\bin\wxWidgets-2.9.4\include/wx/crt.h \ + D:\bin\wxWidgets-2.9.4\include/wx/wxcrt.h \ + D:\bin\wxWidgets-2.9.4\include/wx/wxcrtvararg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msgout.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xti.h \ + D:\bin\wxWidgets-2.9.4\include/wx/rtti.h \ + D:\bin\wxWidgets-2.9.4\include/wx/flags.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xti2.h \ + D:\bin\wxWidgets-2.9.4\include/wx/variant.h \ + D:\bin\wxWidgets-2.9.4\include/wx/arrstr.h \ + D:\bin\wxWidgets-2.9.4\include/wx/list.h \ + D:\bin\wxWidgets-2.9.4\include/wx/longlong.h \ + D:\bin\wxWidgets-2.9.4\include/wx/datetime.h \ + D:\bin\wxWidgets-2.9.4\include/wx/anystr.h \ + D:\bin\wxWidgets-2.9.4\include/wx/dynarray.h \ + D:\bin\wxWidgets-2.9.4\include/wx/any.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/if.h \ + D:\bin\wxWidgets-2.9.4\include/wx/typeinfo.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/colour.h \ + D:\bin\wxWidgets-2.9.4\include/wx/font.h \ + D:\bin\wxWidgets-2.9.4\include/wx/gdicmn.h \ + D:\bin\wxWidgets-2.9.4\include/wx/hashmap.h \ + D:\bin\wxWidgets-2.9.4\include/wx/math.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/font.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xmlres.h \ + D:\bin\wxWidgets-2.9.4\include/wx/filesys.h \ + D:\bin\wxWidgets-2.9.4\include/wx/stream.h \ + D:\bin\wxWidgets-2.9.4\include/wx/filefn.h \ + D:\bin\wxWidgets-2.9.4\include/wx/filename.h \ + D:\bin\wxWidgets-2.9.4\include/wx/intl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/translation.h \ + D:\bin\wxWidgets-2.9.4\include/wx/language.h \ + D:\bin\wxWidgets-2.9.4\include/wx/scopedptr.h \ + D:\bin\wxWidgets-2.9.4\include/wx/checkeddelete.h \ + D:\bin\wxWidgets-2.9.4\include/wx/file.h \ + D:\bin\wxWidgets-2.9.4\include/wx/bitmap.h \ + D:\bin\wxWidgets-2.9.4\include/wx/image.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagbmp.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagpng.h \ + D:\bin\wxWidgets-2.9.4\include/wx/versioninfo.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imaggif.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagpcx.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagjpeg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagtga.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagtiff.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagpnm.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagxpm.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagiff.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/bitmap.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/gdiimage.h \ + D:\bin\wxWidgets-2.9.4\include/wx/palette.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/palette.h \ + D:\bin\wxWidgets-2.9.4\include/wx/icon.h \ + D:\bin\wxWidgets-2.9.4\include/wx/iconloc.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/icon.h \ + D:\bin\wxWidgets-2.9.4\include/wx/artprov.h \ + D:\bin\wxWidgets-2.9.4\include/wx/iconbndl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/animate.h \ + D:\bin\wxWidgets-2.9.4\include/wx/animdecod.h \ + D:\bin\wxWidgets-2.9.4\include/wx/log.h \ + D:\bin\wxWidgets-2.9.4\include/wx/thread.h \ + D:\bin\wxWidgets-2.9.4\include/wx/generic/logg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/control.h \ + D:\bin\wxWidgets-2.9.4\include/wx/window.h \ + D:\bin\wxWidgets-2.9.4\include/wx/event.h \ + D:\bin\wxWidgets-2.9.4\include/wx/clntdata.h \ + D:\bin\wxWidgets-2.9.4\include/wx/cursor.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/cursor.h \ + D:\bin\wxWidgets-2.9.4\include/wx/utils.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/implicitconversion.h \ + D:\bin\wxWidgets-2.9.4\include/wx/mousestate.h \ + D:\bin\wxWidgets-2.9.4\include/wx/kbdstate.h \ + D:\bin\wxWidgets-2.9.4\include/wx/platinfo.h \ + D:\bin\wxWidgets-2.9.4\include/wx/tracker.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/convertible.h \ + D:\bin\wxWidgets-2.9.4\include/wx/region.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/region.h \ + D:\bin\wxWidgets-2.9.4\include/wx/validate.h \ + D:\bin\wxWidgets-2.9.4\include/wx/accel.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/accel.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/window.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/control.h \ + D:\bin\wxWidgets-2.9.4\include/wx/timer.h \ + D:\bin\wxWidgets-2.9.4\include/wx/stopwatch.h \ + D:\bin\wxWidgets-2.9.4\include/wx/time.h \ + D:\bin\wxWidgets-2.9.4\include/wx/generic/animate.h \ + D:\bin\wxWidgets-2.9.4\include/wx/vector.h \ + D:\bin\wxWidgets-2.9.4\include/wx/scopeguard.h \ + D:\bin\wxWidgets-2.9.4\include/wx/except.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/movable.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/pod.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xml/xml.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bmp.h \ + D:\bin\wxWidgets-2.9.4\include/wx/frame.h \ + D:\bin\wxWidgets-2.9.4\include/wx/toplevel.h \ + D:\bin\wxWidgets-2.9.4\include/wx/nonownedwnd.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/nonownedwnd.h \ + D:\bin\wxWidgets-2.9.4\include/wx/containr.h \ + D:\bin\wxWidgets-2.9.4\include/wx/weakref.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/int2type.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/toplevel.h \ + D:\bin\wxWidgets-2.9.4\include/wx/statusbr.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/statusbar.h \ + D:\bin\wxWidgets-2.9.4\include/wx/tooltip.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/tooltip.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/frame.h \ + D:\bin\wxWidgets-2.9.4\include/wx/sizer.h \ + D:\bin\wxWidgets-2.9.4\include/wx/panel.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/panel.h \ + D:\bin\wxWidgets-2.9.4\include/wx/menu.h \ + D:\bin\wxWidgets-2.9.4\include/wx/menuitem.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/menuitem.h \ + D:\bin\wxWidgets-2.9.4\include/wx/ownerdrw.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/ownerdrw.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/menu.h \ + D:\bin\wxWidgets-2.9.4\include/wx/toolbar.h \ + D:\bin\wxWidgets-2.9.4\include/wx/tbarbase.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/toolbar.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imaglist.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/imaglist.h \ + D:\bin\wxWidgets-2.9.4\include/wx/dialog.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/dialog.h \ + D:\bin\wxWidgets-2.9.4\include/wx/notebook.h \ + D:\bin\wxWidgets-2.9.4\include/wx/bookctrl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/withimages.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/notebook.h \ + D:\bin\wxWidgets-2.9.4\include/wx/statbox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/statbox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/checkbox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/checkbox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/stattext.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/stattext.h \ + D:\bin\wxWidgets-2.9.4\include/wx/combobox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/textctrl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/textentry.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/textentry.h \ + D:\bin\wxWidgets-2.9.4\include/wx/ioswrap.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/textctrl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/ctrlsub.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/ctrlsub.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/combobox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/choice.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/choice.h \ + D:\bin\wxWidgets-2.9.4\include/wx/radiobox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/radiobox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/button.h \ + D:\bin\wxWidgets-2.9.4\include/wx/anybutton.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/anybutton.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/button.h \ + D:\bin\wxWidgets-2.9.4\include/wx/slider.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/slider.h \ + D:\bin\wxWidgets-2.9.4\include/wx/radiobut.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/radiobut.h + +wxcrafter.h: + +D:\bin\wxWidgets-2.9.4\include/wx/settings.h: + +D:\bin\wxWidgets-2.9.4\include/wx/colour.h: + +D:\bin\wxWidgets-2.9.4\include/wx/defs.h: + +D:\bin\wxWidgets-2.9.4\include/wx/platform.h: + +D:\bin\wxWidgets-2.9.4\lib\gcc_dll\mswu/wx/setup.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/libraries.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/gccpriv.h: + +D:\bin\wxWidgets-2.9.4\include/wx/chkconf.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/chkconf.h: + +D:\bin\wxWidgets-2.9.4\include/wx/version.h: + +D:\bin\wxWidgets-2.9.4\include/wx/cpp.h: + +D:\bin\wxWidgets-2.9.4\include/wx/dlimpexp.h: + +D:\bin\wxWidgets-2.9.4\include/wx/debug.h: + +D:\bin\wxWidgets-2.9.4\include/wx/chartype.h: + +D:\bin\wxWidgets-2.9.4\include/wx/windowid.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/winundef.h: + +D:\bin\wxWidgets-2.9.4\include/wx/features.h: + +D:\bin\wxWidgets-2.9.4\include/wx/gdiobj.h: + +D:\bin\wxWidgets-2.9.4\include/wx/object.h: + +D:\bin\wxWidgets-2.9.4\include/wx/memory.h: + +D:\bin\wxWidgets-2.9.4\include/wx/string.h: + +D:\bin\wxWidgets-2.9.4\include/wx/wxcrtbase.h: + +D:\bin\wxWidgets-2.9.4\include/wx/strvararg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/strconv.h: + +D:\bin\wxWidgets-2.9.4\include/wx/buffer.h: + +D:\bin\wxWidgets-2.9.4\include/wx/fontenc.h: + +D:\bin\wxWidgets-2.9.4\include/wx/unichar.h: + +D:\bin\wxWidgets-2.9.4\include/wx/stringimpl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/beforestd.h: + +D:\bin\wxWidgets-2.9.4\include/wx/afterstd.h: + +D:\bin\wxWidgets-2.9.4\include/wx/stringops.h: + +D:\bin\wxWidgets-2.9.4\include/wx/iosfwrap.h: + +D:\bin\wxWidgets-2.9.4\include/wx/crt.h: + +D:\bin\wxWidgets-2.9.4\include/wx/wxcrt.h: + +D:\bin\wxWidgets-2.9.4\include/wx/wxcrtvararg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msgout.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xti.h: + +D:\bin\wxWidgets-2.9.4\include/wx/rtti.h: + +D:\bin\wxWidgets-2.9.4\include/wx/flags.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xti2.h: + +D:\bin\wxWidgets-2.9.4\include/wx/variant.h: + +D:\bin\wxWidgets-2.9.4\include/wx/arrstr.h: + +D:\bin\wxWidgets-2.9.4\include/wx/list.h: + +D:\bin\wxWidgets-2.9.4\include/wx/longlong.h: + +D:\bin\wxWidgets-2.9.4\include/wx/datetime.h: + +D:\bin\wxWidgets-2.9.4\include/wx/anystr.h: + +D:\bin\wxWidgets-2.9.4\include/wx/dynarray.h: + +D:\bin\wxWidgets-2.9.4\include/wx/any.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/if.h: + +D:\bin\wxWidgets-2.9.4\include/wx/typeinfo.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/colour.h: + +D:\bin\wxWidgets-2.9.4\include/wx/font.h: + +D:\bin\wxWidgets-2.9.4\include/wx/gdicmn.h: + +D:\bin\wxWidgets-2.9.4\include/wx/hashmap.h: + +D:\bin\wxWidgets-2.9.4\include/wx/math.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/font.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xmlres.h: + +D:\bin\wxWidgets-2.9.4\include/wx/filesys.h: + +D:\bin\wxWidgets-2.9.4\include/wx/stream.h: + +D:\bin\wxWidgets-2.9.4\include/wx/filefn.h: + +D:\bin\wxWidgets-2.9.4\include/wx/filename.h: + +D:\bin\wxWidgets-2.9.4\include/wx/intl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/translation.h: + +D:\bin\wxWidgets-2.9.4\include/wx/language.h: + +D:\bin\wxWidgets-2.9.4\include/wx/scopedptr.h: + +D:\bin\wxWidgets-2.9.4\include/wx/checkeddelete.h: + +D:\bin\wxWidgets-2.9.4\include/wx/file.h: + +D:\bin\wxWidgets-2.9.4\include/wx/bitmap.h: + +D:\bin\wxWidgets-2.9.4\include/wx/image.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagbmp.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagpng.h: + +D:\bin\wxWidgets-2.9.4\include/wx/versioninfo.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imaggif.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagpcx.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagjpeg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagtga.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagtiff.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagpnm.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagxpm.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagiff.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/bitmap.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/gdiimage.h: + +D:\bin\wxWidgets-2.9.4\include/wx/palette.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/palette.h: + +D:\bin\wxWidgets-2.9.4\include/wx/icon.h: + +D:\bin\wxWidgets-2.9.4\include/wx/iconloc.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/icon.h: + +D:\bin\wxWidgets-2.9.4\include/wx/artprov.h: + +D:\bin\wxWidgets-2.9.4\include/wx/iconbndl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/animate.h: + +D:\bin\wxWidgets-2.9.4\include/wx/animdecod.h: + +D:\bin\wxWidgets-2.9.4\include/wx/log.h: + +D:\bin\wxWidgets-2.9.4\include/wx/thread.h: + +D:\bin\wxWidgets-2.9.4\include/wx/generic/logg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/control.h: + +D:\bin\wxWidgets-2.9.4\include/wx/window.h: + +D:\bin\wxWidgets-2.9.4\include/wx/event.h: + +D:\bin\wxWidgets-2.9.4\include/wx/clntdata.h: + +D:\bin\wxWidgets-2.9.4\include/wx/cursor.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/cursor.h: + +D:\bin\wxWidgets-2.9.4\include/wx/utils.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/implicitconversion.h: + +D:\bin\wxWidgets-2.9.4\include/wx/mousestate.h: + +D:\bin\wxWidgets-2.9.4\include/wx/kbdstate.h: + +D:\bin\wxWidgets-2.9.4\include/wx/platinfo.h: + +D:\bin\wxWidgets-2.9.4\include/wx/tracker.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/convertible.h: + +D:\bin\wxWidgets-2.9.4\include/wx/region.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/region.h: + +D:\bin\wxWidgets-2.9.4\include/wx/validate.h: + +D:\bin\wxWidgets-2.9.4\include/wx/accel.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/accel.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/window.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/control.h: + +D:\bin\wxWidgets-2.9.4\include/wx/timer.h: + +D:\bin\wxWidgets-2.9.4\include/wx/stopwatch.h: + +D:\bin\wxWidgets-2.9.4\include/wx/time.h: + +D:\bin\wxWidgets-2.9.4\include/wx/generic/animate.h: + +D:\bin\wxWidgets-2.9.4\include/wx/vector.h: + +D:\bin\wxWidgets-2.9.4\include/wx/scopeguard.h: + +D:\bin\wxWidgets-2.9.4\include/wx/except.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/movable.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/pod.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xml/xml.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bmp.h: + +D:\bin\wxWidgets-2.9.4\include/wx/frame.h: + +D:\bin\wxWidgets-2.9.4\include/wx/toplevel.h: + +D:\bin\wxWidgets-2.9.4\include/wx/nonownedwnd.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/nonownedwnd.h: + +D:\bin\wxWidgets-2.9.4\include/wx/containr.h: + +D:\bin\wxWidgets-2.9.4\include/wx/weakref.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/int2type.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/toplevel.h: + +D:\bin\wxWidgets-2.9.4\include/wx/statusbr.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/statusbar.h: + +D:\bin\wxWidgets-2.9.4\include/wx/tooltip.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/tooltip.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/frame.h: + +D:\bin\wxWidgets-2.9.4\include/wx/sizer.h: + +D:\bin\wxWidgets-2.9.4\include/wx/panel.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/panel.h: + +D:\bin\wxWidgets-2.9.4\include/wx/menu.h: + +D:\bin\wxWidgets-2.9.4\include/wx/menuitem.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/menuitem.h: + +D:\bin\wxWidgets-2.9.4\include/wx/ownerdrw.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/ownerdrw.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/menu.h: + +D:\bin\wxWidgets-2.9.4\include/wx/toolbar.h: + +D:\bin\wxWidgets-2.9.4\include/wx/tbarbase.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/toolbar.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imaglist.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/imaglist.h: + +D:\bin\wxWidgets-2.9.4\include/wx/dialog.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/dialog.h: + +D:\bin\wxWidgets-2.9.4\include/wx/notebook.h: + +D:\bin\wxWidgets-2.9.4\include/wx/bookctrl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/withimages.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/notebook.h: + +D:\bin\wxWidgets-2.9.4\include/wx/statbox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/statbox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/checkbox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/checkbox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/stattext.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/stattext.h: + +D:\bin\wxWidgets-2.9.4\include/wx/combobox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/textctrl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/textentry.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/textentry.h: + +D:\bin\wxWidgets-2.9.4\include/wx/ioswrap.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/textctrl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/ctrlsub.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/ctrlsub.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/combobox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/choice.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/choice.h: + +D:\bin\wxWidgets-2.9.4\include/wx/radiobox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/radiobox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/button.h: + +D:\bin\wxWidgets-2.9.4\include/wx/anybutton.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/anybutton.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/button.h: + +D:\bin\wxWidgets-2.9.4\include/wx/slider.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/slider.h: + +D:\bin\wxWidgets-2.9.4\include/wx/radiobut.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/radiobut.h: 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 index 00000000..77420023 --- /dev/null +++ b/fdmdv2/build/codelite/hamlib_trial/Release/wxcrafter_bitmaps.o.d @@ -0,0 +1,574 @@ +Release/wxcrafter_bitmaps.o: wxcrafter_bitmaps.cpp \ + D:\bin\wxWidgets-2.9.4\include/wx/wxprec.h \ + D:\bin\wxWidgets-2.9.4\include/wx/defs.h \ + D:\bin\wxWidgets-2.9.4\include/wx/platform.h \ + D:\bin\wxWidgets-2.9.4\lib\gcc_dll\mswu/wx/setup.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/libraries.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/gccpriv.h \ + D:\bin\wxWidgets-2.9.4\include/wx/chkconf.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/chkconf.h \ + D:\bin\wxWidgets-2.9.4\include/wx/version.h \ + D:\bin\wxWidgets-2.9.4\include/wx/cpp.h \ + D:\bin\wxWidgets-2.9.4\include/wx/dlimpexp.h \ + D:\bin\wxWidgets-2.9.4\include/wx/debug.h \ + D:\bin\wxWidgets-2.9.4\include/wx/chartype.h \ + D:\bin\wxWidgets-2.9.4\include/wx/windowid.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/winundef.h \ + D:\bin\wxWidgets-2.9.4\include/wx/features.h \ + D:\bin\wxWidgets-2.9.4\include/wx/filesys.h \ + D:\bin\wxWidgets-2.9.4\include/wx/stream.h \ + D:\bin\wxWidgets-2.9.4\include/wx/object.h \ + D:\bin\wxWidgets-2.9.4\include/wx/memory.h \ + D:\bin\wxWidgets-2.9.4\include/wx/string.h \ + D:\bin\wxWidgets-2.9.4\include/wx/wxcrtbase.h \ + D:\bin\wxWidgets-2.9.4\include/wx/strvararg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/strconv.h \ + D:\bin\wxWidgets-2.9.4\include/wx/buffer.h \ + D:\bin\wxWidgets-2.9.4\include/wx/fontenc.h \ + D:\bin\wxWidgets-2.9.4\include/wx/unichar.h \ + D:\bin\wxWidgets-2.9.4\include/wx/stringimpl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/beforestd.h \ + D:\bin\wxWidgets-2.9.4\include/wx/afterstd.h \ + D:\bin\wxWidgets-2.9.4\include/wx/stringops.h \ + D:\bin\wxWidgets-2.9.4\include/wx/iosfwrap.h \ + D:\bin\wxWidgets-2.9.4\include/wx/crt.h \ + D:\bin\wxWidgets-2.9.4\include/wx/wxcrt.h \ + D:\bin\wxWidgets-2.9.4\include/wx/wxcrtvararg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msgout.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xti.h \ + D:\bin\wxWidgets-2.9.4\include/wx/rtti.h \ + D:\bin\wxWidgets-2.9.4\include/wx/flags.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xti2.h \ + D:\bin\wxWidgets-2.9.4\include/wx/filefn.h \ + D:\bin\wxWidgets-2.9.4\include/wx/list.h \ + D:\bin\wxWidgets-2.9.4\include/wx/arrstr.h \ + D:\bin\wxWidgets-2.9.4\include/wx/datetime.h \ + D:\bin\wxWidgets-2.9.4\include/wx/longlong.h \ + D:\bin\wxWidgets-2.9.4\include/wx/anystr.h \ + D:\bin\wxWidgets-2.9.4\include/wx/dynarray.h \ + D:\bin\wxWidgets-2.9.4\include/wx/filename.h \ + D:\bin\wxWidgets-2.9.4\include/wx/intl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/translation.h \ + D:\bin\wxWidgets-2.9.4\include/wx/language.h \ + D:\bin\wxWidgets-2.9.4\include/wx/hashmap.h \ + D:\bin\wxWidgets-2.9.4\include/wx/scopedptr.h \ + D:\bin\wxWidgets-2.9.4\include/wx/checkeddelete.h \ + D:\bin\wxWidgets-2.9.4\include/wx/file.h \ + D:\bin\wxWidgets-2.9.4\include/wx/fs_mem.h \ + D:\bin\wxWidgets-2.9.4\include/wx/bitmap.h \ + D:\bin\wxWidgets-2.9.4\include/wx/gdicmn.h \ + D:\bin\wxWidgets-2.9.4\include/wx/math.h \ + D:\bin\wxWidgets-2.9.4\include/wx/colour.h \ + D:\bin\wxWidgets-2.9.4\include/wx/gdiobj.h \ + D:\bin\wxWidgets-2.9.4\include/wx/variant.h \ + D:\bin\wxWidgets-2.9.4\include/wx/any.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/if.h \ + D:\bin\wxWidgets-2.9.4\include/wx/typeinfo.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/colour.h \ + D:\bin\wxWidgets-2.9.4\include/wx/image.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagbmp.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagpng.h \ + D:\bin\wxWidgets-2.9.4\include/wx/versioninfo.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imaggif.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagpcx.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagjpeg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagtga.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagtiff.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagpnm.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagxpm.h \ + D:\bin\wxWidgets-2.9.4\include/wx/imagiff.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/bitmap.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/gdiimage.h \ + D:\bin\wxWidgets-2.9.4\include/wx/palette.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/palette.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xmlres.h \ + D:\bin\wxWidgets-2.9.4\include/wx/icon.h \ + D:\bin\wxWidgets-2.9.4\include/wx/iconloc.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/icon.h \ + D:\bin\wxWidgets-2.9.4\include/wx/artprov.h \ + D:\bin\wxWidgets-2.9.4\include/wx/iconbndl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/animate.h \ + D:\bin\wxWidgets-2.9.4\include/wx/animdecod.h \ + D:\bin\wxWidgets-2.9.4\include/wx/log.h \ + D:\bin\wxWidgets-2.9.4\include/wx/thread.h \ + D:\bin\wxWidgets-2.9.4\include/wx/generic/logg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/control.h \ + D:\bin\wxWidgets-2.9.4\include/wx/window.h \ + D:\bin\wxWidgets-2.9.4\include/wx/event.h \ + D:\bin\wxWidgets-2.9.4\include/wx/clntdata.h \ + D:\bin\wxWidgets-2.9.4\include/wx/cursor.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/cursor.h \ + D:\bin\wxWidgets-2.9.4\include/wx/utils.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/implicitconversion.h \ + D:\bin\wxWidgets-2.9.4\include/wx/mousestate.h \ + D:\bin\wxWidgets-2.9.4\include/wx/kbdstate.h \ + D:\bin\wxWidgets-2.9.4\include/wx/platinfo.h \ + D:\bin\wxWidgets-2.9.4\include/wx/tracker.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/convertible.h \ + D:\bin\wxWidgets-2.9.4\include/wx/font.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/font.h \ + D:\bin\wxWidgets-2.9.4\include/wx/region.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/region.h \ + D:\bin\wxWidgets-2.9.4\include/wx/validate.h \ + D:\bin\wxWidgets-2.9.4\include/wx/accel.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/accel.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/window.h \ + D:\bin\wxWidgets-2.9.4\include/wx/settings.h \ + D:\bin\wxWidgets-2.9.4\include/wx/msw/control.h \ + D:\bin\wxWidgets-2.9.4\include/wx/timer.h \ + D:\bin\wxWidgets-2.9.4\include/wx/stopwatch.h \ + D:\bin\wxWidgets-2.9.4\include/wx/time.h \ + D:\bin\wxWidgets-2.9.4\include/wx/generic/animate.h \ + D:\bin\wxWidgets-2.9.4\include/wx/vector.h \ + D:\bin\wxWidgets-2.9.4\include/wx/scopeguard.h \ + D:\bin\wxWidgets-2.9.4\include/wx/except.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/movable.h \ + D:\bin\wxWidgets-2.9.4\include/wx/meta/pod.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xml/xml.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_all.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_animatctrl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bannerwindow.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bmp.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bmpbt.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bmpcbox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bttn.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_cald.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_chckb.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_chckl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_choic.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_choicbk.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_clrpicker.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_cmdlinkbn.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_collpane.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_combo.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_comboctrl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_datectrl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_dirpicker.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_dlg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_editlbox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_filectrl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_filepicker.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_fontpicker.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_frame.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_gauge.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_gdctl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_grid.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_html.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_htmllbox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_hyperlink.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_listb.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_listc.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_listbk.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_mdi.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_menu.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_notbk.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_odcombo.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_panel.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_propdlg.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_radbt.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_radbx.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_scrol.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_scwin.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_sizer.h \ + D:\bin\wxWidgets-2.9.4\include/wx/sizer.h \ + D:\bin\wxWidgets-2.9.4\include/wx/gbsizer.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_slidr.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_spin.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_split.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_srchctrl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_statbar.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_stbox.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_stbmp.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_sttxt.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_stlin.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_text.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_tglbtn.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_timectrl.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_toolb.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_toolbk.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_tree.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_treebk.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_unkwn.h \ + D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_wizrd.h + +D:\bin\wxWidgets-2.9.4\include/wx/wxprec.h: + +D:\bin\wxWidgets-2.9.4\include/wx/defs.h: + +D:\bin\wxWidgets-2.9.4\include/wx/platform.h: + +D:\bin\wxWidgets-2.9.4\lib\gcc_dll\mswu/wx/setup.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/libraries.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/gccpriv.h: + +D:\bin\wxWidgets-2.9.4\include/wx/chkconf.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/chkconf.h: + +D:\bin\wxWidgets-2.9.4\include/wx/version.h: + +D:\bin\wxWidgets-2.9.4\include/wx/cpp.h: + +D:\bin\wxWidgets-2.9.4\include/wx/dlimpexp.h: + +D:\bin\wxWidgets-2.9.4\include/wx/debug.h: + +D:\bin\wxWidgets-2.9.4\include/wx/chartype.h: + +D:\bin\wxWidgets-2.9.4\include/wx/windowid.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/winundef.h: + +D:\bin\wxWidgets-2.9.4\include/wx/features.h: + +D:\bin\wxWidgets-2.9.4\include/wx/filesys.h: + +D:\bin\wxWidgets-2.9.4\include/wx/stream.h: + +D:\bin\wxWidgets-2.9.4\include/wx/object.h: + +D:\bin\wxWidgets-2.9.4\include/wx/memory.h: + +D:\bin\wxWidgets-2.9.4\include/wx/string.h: + +D:\bin\wxWidgets-2.9.4\include/wx/wxcrtbase.h: + +D:\bin\wxWidgets-2.9.4\include/wx/strvararg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/strconv.h: + +D:\bin\wxWidgets-2.9.4\include/wx/buffer.h: + +D:\bin\wxWidgets-2.9.4\include/wx/fontenc.h: + +D:\bin\wxWidgets-2.9.4\include/wx/unichar.h: + +D:\bin\wxWidgets-2.9.4\include/wx/stringimpl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/beforestd.h: + +D:\bin\wxWidgets-2.9.4\include/wx/afterstd.h: + +D:\bin\wxWidgets-2.9.4\include/wx/stringops.h: + +D:\bin\wxWidgets-2.9.4\include/wx/iosfwrap.h: + +D:\bin\wxWidgets-2.9.4\include/wx/crt.h: + +D:\bin\wxWidgets-2.9.4\include/wx/wxcrt.h: + +D:\bin\wxWidgets-2.9.4\include/wx/wxcrtvararg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msgout.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xti.h: + +D:\bin\wxWidgets-2.9.4\include/wx/rtti.h: + +D:\bin\wxWidgets-2.9.4\include/wx/flags.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xti2.h: + +D:\bin\wxWidgets-2.9.4\include/wx/filefn.h: + +D:\bin\wxWidgets-2.9.4\include/wx/list.h: + +D:\bin\wxWidgets-2.9.4\include/wx/arrstr.h: + +D:\bin\wxWidgets-2.9.4\include/wx/datetime.h: + +D:\bin\wxWidgets-2.9.4\include/wx/longlong.h: + +D:\bin\wxWidgets-2.9.4\include/wx/anystr.h: + +D:\bin\wxWidgets-2.9.4\include/wx/dynarray.h: + +D:\bin\wxWidgets-2.9.4\include/wx/filename.h: + +D:\bin\wxWidgets-2.9.4\include/wx/intl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/translation.h: + +D:\bin\wxWidgets-2.9.4\include/wx/language.h: + +D:\bin\wxWidgets-2.9.4\include/wx/hashmap.h: + +D:\bin\wxWidgets-2.9.4\include/wx/scopedptr.h: + +D:\bin\wxWidgets-2.9.4\include/wx/checkeddelete.h: + +D:\bin\wxWidgets-2.9.4\include/wx/file.h: + +D:\bin\wxWidgets-2.9.4\include/wx/fs_mem.h: + +D:\bin\wxWidgets-2.9.4\include/wx/bitmap.h: + +D:\bin\wxWidgets-2.9.4\include/wx/gdicmn.h: + +D:\bin\wxWidgets-2.9.4\include/wx/math.h: + +D:\bin\wxWidgets-2.9.4\include/wx/colour.h: + +D:\bin\wxWidgets-2.9.4\include/wx/gdiobj.h: + +D:\bin\wxWidgets-2.9.4\include/wx/variant.h: + +D:\bin\wxWidgets-2.9.4\include/wx/any.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/if.h: + +D:\bin\wxWidgets-2.9.4\include/wx/typeinfo.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/colour.h: + +D:\bin\wxWidgets-2.9.4\include/wx/image.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagbmp.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagpng.h: + +D:\bin\wxWidgets-2.9.4\include/wx/versioninfo.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imaggif.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagpcx.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagjpeg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagtga.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagtiff.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagpnm.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagxpm.h: + +D:\bin\wxWidgets-2.9.4\include/wx/imagiff.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/bitmap.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/gdiimage.h: + +D:\bin\wxWidgets-2.9.4\include/wx/palette.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/palette.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xmlres.h: + +D:\bin\wxWidgets-2.9.4\include/wx/icon.h: + +D:\bin\wxWidgets-2.9.4\include/wx/iconloc.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/icon.h: + +D:\bin\wxWidgets-2.9.4\include/wx/artprov.h: + +D:\bin\wxWidgets-2.9.4\include/wx/iconbndl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/animate.h: + +D:\bin\wxWidgets-2.9.4\include/wx/animdecod.h: + +D:\bin\wxWidgets-2.9.4\include/wx/log.h: + +D:\bin\wxWidgets-2.9.4\include/wx/thread.h: + +D:\bin\wxWidgets-2.9.4\include/wx/generic/logg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/control.h: + +D:\bin\wxWidgets-2.9.4\include/wx/window.h: + +D:\bin\wxWidgets-2.9.4\include/wx/event.h: + +D:\bin\wxWidgets-2.9.4\include/wx/clntdata.h: + +D:\bin\wxWidgets-2.9.4\include/wx/cursor.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/cursor.h: + +D:\bin\wxWidgets-2.9.4\include/wx/utils.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/implicitconversion.h: + +D:\bin\wxWidgets-2.9.4\include/wx/mousestate.h: + +D:\bin\wxWidgets-2.9.4\include/wx/kbdstate.h: + +D:\bin\wxWidgets-2.9.4\include/wx/platinfo.h: + +D:\bin\wxWidgets-2.9.4\include/wx/tracker.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/convertible.h: + +D:\bin\wxWidgets-2.9.4\include/wx/font.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/font.h: + +D:\bin\wxWidgets-2.9.4\include/wx/region.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/region.h: + +D:\bin\wxWidgets-2.9.4\include/wx/validate.h: + +D:\bin\wxWidgets-2.9.4\include/wx/accel.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/accel.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/window.h: + +D:\bin\wxWidgets-2.9.4\include/wx/settings.h: + +D:\bin\wxWidgets-2.9.4\include/wx/msw/control.h: + +D:\bin\wxWidgets-2.9.4\include/wx/timer.h: + +D:\bin\wxWidgets-2.9.4\include/wx/stopwatch.h: + +D:\bin\wxWidgets-2.9.4\include/wx/time.h: + +D:\bin\wxWidgets-2.9.4\include/wx/generic/animate.h: + +D:\bin\wxWidgets-2.9.4\include/wx/vector.h: + +D:\bin\wxWidgets-2.9.4\include/wx/scopeguard.h: + +D:\bin\wxWidgets-2.9.4\include/wx/except.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/movable.h: + +D:\bin\wxWidgets-2.9.4\include/wx/meta/pod.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xml/xml.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_all.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_animatctrl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bannerwindow.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bmp.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bmpbt.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bmpcbox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_bttn.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_cald.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_chckb.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_chckl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_choic.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_choicbk.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_clrpicker.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_cmdlinkbn.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_collpane.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_combo.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_comboctrl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_datectrl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_dirpicker.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_dlg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_editlbox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_filectrl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_filepicker.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_fontpicker.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_frame.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_gauge.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_gdctl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_grid.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_html.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_htmllbox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_hyperlink.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_listb.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_listc.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_listbk.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_mdi.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_menu.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_notbk.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_odcombo.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_panel.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_propdlg.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_radbt.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_radbx.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_scrol.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_scwin.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_sizer.h: + +D:\bin\wxWidgets-2.9.4\include/wx/sizer.h: + +D:\bin\wxWidgets-2.9.4\include/wx/gbsizer.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_slidr.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_spin.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_split.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_srchctrl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_statbar.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_stbox.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_stbmp.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_sttxt.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_stlin.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_text.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_tglbtn.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_timectrl.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_toolb.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_toolbk.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_tree.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_treebk.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_unkwn.h: + +D:\bin\wxWidgets-2.9.4\include/wx/xrc/xh_wizrd.h: 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 index 00000000..82ba6657 --- /dev/null +++ b/fdmdv2/build/codelite/hamlib_trial/dlg_rig_ctrl.cpp @@ -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 index 00000000..88f2f887 --- /dev/null +++ b/fdmdv2/build/codelite/hamlib_trial/dlg_rig_ctrl.h @@ -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 index 00000000..c5cffb2f --- /dev/null +++ b/fdmdv2/build/codelite/hamlib_trial/hamlib_trial.mk @@ -0,0 +1,162 @@ +## +## Auto Generated makefile by CodeLite IDE +## any manual changes will be erased +## +## Release +ProjectName :=hamlib_trial +ConfigurationName :=Release +WorkspacePath := "D:\Projects\Radio\fdmdv2\build\codelite" +ProjectPath := "D:\Projects\Radio\fdmdv2\build\codelite\hamlib_trial" +IntermediateDirectory :=./Release +OutDir := $(IntermediateDirectory) +CurrentFileName := +CurrentFilePath := +CurrentFileFullPath := +User :=wittend +Date :=3/25/2013 +CodeLitePath :="D:\bin\CodeLite" +LinkerName :=g++ +SharedObjectLinkerName :=g++ -shared -fPIC +ObjectSuffix :=.o +DependSuffix :=.o.d +PreprocessSuffix :=.o.i +DebugSwitch :=-gstab +IncludeSwitch :=-I +LibrarySwitch :=-l +OutputSwitch :=-o +LibraryPathSwitch :=-L +PreprocessorSwitch :=-D +SourceSwitch :=-c +OutputFile :=$(IntermediateDirectory)/$(ProjectName) +Preprocessors := +ObjectSwitch :=-o +ArchiveOutputSwitch := +PreprocessOnlySwitch :=-E +ObjectsFileList :="hamlib_trial.txt" +PCHCompileFlags := +MakeDirCommand :=makedir +RcCmpOptions := $(shell wx-config --rcflags) +RcCompilerName :=windres +LinkOptions := $(shell wx-config --libs) -mwindows +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 +IncludePCH := +RcIncludePath := +Libs := +ArLibs := +LibPath := $(LibraryPathSwitch). + +## +## Common variables +## AR, CXX, CC, CXXFLAGS and CFLAGS can be overriden using an environment variables +## +AR := ar rcus +CXX := g++ +CC := gcc +CXXFLAGS := -O2 -Wall $(shell wx-config --cflags) -DSVN_REVISION=\"1225\" $(Preprocessors) +CFLAGS := -O2 -Wall -DSVN_REVISION=\"1225\" $(Preprocessors) + + +## +## User defined environment variables +## +CodeLiteDir:=D:\bin\CodeLite +WXWIN:=D:\bin\wxWidgets-2.9.4 +PATH:=$(WXWIN)\lib\gcc_dll;$(PATH) +WXCFG:=gcc_dll\mswu +UNIT_TEST_PP_SRC_DIR:=D:\bin\UnitTest++1.3 +Objects0=$(IntermediateDirectory)/main$(ObjectSuffix) $(IntermediateDirectory)/MainFrame$(ObjectSuffix) $(IntermediateDirectory)/wxcrafter$(ObjectSuffix) $(IntermediateDirectory)/wxcrafter_bitmaps$(ObjectSuffix) $(IntermediateDirectory)/win_resources.rc$(ObjectSuffix) $(IntermediateDirectory)/dlg_rig_ctrl$(ObjectSuffix) + + + +Objects=$(Objects0) + +## +## Main Build Targets +## +.PHONY: all clean PreBuild PrePreBuild PostBuild +all: $(OutputFile) + +$(OutputFile): $(IntermediateDirectory)/.d $(Objects) + @$(MakeDirCommand) $(@D) + @echo "" > $(IntermediateDirectory)/.d + @echo $(Objects0) > $(ObjectsFileList) + $(LinkerName) $(OutputSwitch)$(OutputFile) @$(ObjectsFileList) $(LibPath) $(Libs) $(LinkOptions) + +$(IntermediateDirectory)/.d: + @$(MakeDirCommand) "./Release" + +PreBuild: + + +## +## Objects +## +$(IntermediateDirectory)/main$(ObjectSuffix): main.cpp $(IntermediateDirectory)/main$(DependSuffix) + $(CXX) $(IncludePCH) $(SourceSwitch) "D:/Projects/Radio/fdmdv2/build/codelite/hamlib_trial/main.cpp" $(CXXFLAGS) $(ObjectSwitch)$(IntermediateDirectory)/main$(ObjectSuffix) $(IncludePath) +$(IntermediateDirectory)/main$(DependSuffix): main.cpp + @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) -MG -MP -MT$(IntermediateDirectory)/main$(ObjectSuffix) -MF$(IntermediateDirectory)/main$(DependSuffix) -MM "main.cpp" + +$(IntermediateDirectory)/main$(PreprocessSuffix): main.cpp + @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) $(PreprocessOnlySwitch) $(OutputSwitch) $(IntermediateDirectory)/main$(PreprocessSuffix) "main.cpp" + +$(IntermediateDirectory)/MainFrame$(ObjectSuffix): MainFrame.cpp $(IntermediateDirectory)/MainFrame$(DependSuffix) + $(CXX) $(IncludePCH) $(SourceSwitch) "D:/Projects/Radio/fdmdv2/build/codelite/hamlib_trial/MainFrame.cpp" $(CXXFLAGS) $(ObjectSwitch)$(IntermediateDirectory)/MainFrame$(ObjectSuffix) $(IncludePath) +$(IntermediateDirectory)/MainFrame$(DependSuffix): MainFrame.cpp + @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) -MG -MP -MT$(IntermediateDirectory)/MainFrame$(ObjectSuffix) -MF$(IntermediateDirectory)/MainFrame$(DependSuffix) -MM "MainFrame.cpp" + +$(IntermediateDirectory)/MainFrame$(PreprocessSuffix): MainFrame.cpp + @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) $(PreprocessOnlySwitch) $(OutputSwitch) $(IntermediateDirectory)/MainFrame$(PreprocessSuffix) "MainFrame.cpp" + +$(IntermediateDirectory)/wxcrafter$(ObjectSuffix): wxcrafter.cpp $(IntermediateDirectory)/wxcrafter$(DependSuffix) + $(CXX) $(IncludePCH) $(SourceSwitch) "D:/Projects/Radio/fdmdv2/build/codelite/hamlib_trial/wxcrafter.cpp" $(CXXFLAGS) $(ObjectSwitch)$(IntermediateDirectory)/wxcrafter$(ObjectSuffix) $(IncludePath) +$(IntermediateDirectory)/wxcrafter$(DependSuffix): wxcrafter.cpp + @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) -MG -MP -MT$(IntermediateDirectory)/wxcrafter$(ObjectSuffix) -MF$(IntermediateDirectory)/wxcrafter$(DependSuffix) -MM "wxcrafter.cpp" + +$(IntermediateDirectory)/wxcrafter$(PreprocessSuffix): wxcrafter.cpp + @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) $(PreprocessOnlySwitch) $(OutputSwitch) $(IntermediateDirectory)/wxcrafter$(PreprocessSuffix) "wxcrafter.cpp" + +$(IntermediateDirectory)/wxcrafter_bitmaps$(ObjectSuffix): wxcrafter_bitmaps.cpp $(IntermediateDirectory)/wxcrafter_bitmaps$(DependSuffix) + $(CXX) $(IncludePCH) $(SourceSwitch) "D:/Projects/Radio/fdmdv2/build/codelite/hamlib_trial/wxcrafter_bitmaps.cpp" $(CXXFLAGS) $(ObjectSwitch)$(IntermediateDirectory)/wxcrafter_bitmaps$(ObjectSuffix) $(IncludePath) +$(IntermediateDirectory)/wxcrafter_bitmaps$(DependSuffix): wxcrafter_bitmaps.cpp + @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) -MG -MP -MT$(IntermediateDirectory)/wxcrafter_bitmaps$(ObjectSuffix) -MF$(IntermediateDirectory)/wxcrafter_bitmaps$(DependSuffix) -MM "wxcrafter_bitmaps.cpp" + +$(IntermediateDirectory)/wxcrafter_bitmaps$(PreprocessSuffix): wxcrafter_bitmaps.cpp + @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) $(PreprocessOnlySwitch) $(OutputSwitch) $(IntermediateDirectory)/wxcrafter_bitmaps$(PreprocessSuffix) "wxcrafter_bitmaps.cpp" + +$(IntermediateDirectory)/win_resources.rc$(ObjectSuffix): win_resources.rc + $(RcCompilerName) -i "D:/Projects/Radio/fdmdv2/build/codelite/hamlib_trial/win_resources.rc" $(RcCmpOptions) $(ObjectSwitch)$(IntermediateDirectory)/win_resources.rc$(ObjectSuffix) $(RcIncludePath) +$(IntermediateDirectory)/dlg_rig_ctrl$(ObjectSuffix): dlg_rig_ctrl.cpp $(IntermediateDirectory)/dlg_rig_ctrl$(DependSuffix) + $(CXX) $(IncludePCH) $(SourceSwitch) "D:/Projects/Radio/fdmdv2/build/codelite/hamlib_trial/dlg_rig_ctrl.cpp" $(CXXFLAGS) $(ObjectSwitch)$(IntermediateDirectory)/dlg_rig_ctrl$(ObjectSuffix) $(IncludePath) +$(IntermediateDirectory)/dlg_rig_ctrl$(DependSuffix): dlg_rig_ctrl.cpp + @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) -MG -MP -MT$(IntermediateDirectory)/dlg_rig_ctrl$(ObjectSuffix) -MF$(IntermediateDirectory)/dlg_rig_ctrl$(DependSuffix) -MM "dlg_rig_ctrl.cpp" + +$(IntermediateDirectory)/dlg_rig_ctrl$(PreprocessSuffix): dlg_rig_ctrl.cpp + @$(CXX) $(CXXFLAGS) $(IncludePCH) $(IncludePath) $(PreprocessOnlySwitch) $(OutputSwitch) $(IntermediateDirectory)/dlg_rig_ctrl$(PreprocessSuffix) "dlg_rig_ctrl.cpp" + + +-include $(IntermediateDirectory)/*$(DependSuffix) +## +## Clean +## +clean: + $(RM) $(IntermediateDirectory)/main$(ObjectSuffix) + $(RM) $(IntermediateDirectory)/main$(DependSuffix) + $(RM) $(IntermediateDirectory)/main$(PreprocessSuffix) + $(RM) $(IntermediateDirectory)/MainFrame$(ObjectSuffix) + $(RM) $(IntermediateDirectory)/MainFrame$(DependSuffix) + $(RM) $(IntermediateDirectory)/MainFrame$(PreprocessSuffix) + $(RM) $(IntermediateDirectory)/wxcrafter$(ObjectSuffix) + $(RM) $(IntermediateDirectory)/wxcrafter$(DependSuffix) + $(RM) $(IntermediateDirectory)/wxcrafter$(PreprocessSuffix) + $(RM) $(IntermediateDirectory)/wxcrafter_bitmaps$(ObjectSuffix) + $(RM) $(IntermediateDirectory)/wxcrafter_bitmaps$(DependSuffix) + $(RM) $(IntermediateDirectory)/wxcrafter_bitmaps$(PreprocessSuffix) + $(RM) $(IntermediateDirectory)/win_resources.rc$(ObjectSuffix) + $(RM) $(IntermediateDirectory)/dlg_rig_ctrl$(ObjectSuffix) + $(RM) $(IntermediateDirectory)/dlg_rig_ctrl$(DependSuffix) + $(RM) $(IntermediateDirectory)/dlg_rig_ctrl$(PreprocessSuffix) + $(RM) $(OutputFile) + $(RM) $(OutputFile).exe + $(RM) "../.build-release/hamlib_trial" + + diff --git a/fdmdv2/build/codelite/hamlib_trial/hamlib_trial.project b/fdmdv2/build/codelite/hamlib_trial/hamlib_trial.project new file mode 100644 index 00000000..1217de44 --- /dev/null +++ b/fdmdv2/build/codelite/hamlib_trial/hamlib_trial.project @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + None + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + None + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/fdmdv2/build/codelite/hamlib_trial/hamlib_trial.txt b/fdmdv2/build/codelite/hamlib_trial/hamlib_trial.txt new file mode 100644 index 00000000..2ade1a73 --- /dev/null +++ b/fdmdv2/build/codelite/hamlib_trial/hamlib_trial.txt @@ -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 diff --git a/fdmdv2/build/codelite/hamlib_trial/main.cpp b/fdmdv2/build/codelite/hamlib_trial/main.cpp new file mode 100644 index 00000000..56eb165a --- /dev/null +++ b/fdmdv2/build/codelite/hamlib_trial/main.cpp @@ -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 index 00000000..424bde98 --- /dev/null +++ b/fdmdv2/build/codelite/hamlib_trial/main.h @@ -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 . +// +//========================================================================== +#ifndef __HAMLIBTRIAL_MAIN__ +#define __HAMLIBTRIAL_MAIN__ + +#include +#include +#include +#include +#include "wx/file.h" +#include "wx/filename.h" +#include "wx/config.h" +#include +#include + +#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 index 00000000..fa70c15a --- /dev/null +++ b/fdmdv2/build/codelite/hamlib_trial/win_resources.rc @@ -0,0 +1,2 @@ +#include "wx/msw/wx.rc" +1 24 "wx/msw/wx.manifest" diff --git a/fdmdv2/build/codelite/hamlib_trial/wxcrafter.cpp b/fdmdv2/build/codelite/hamlib_trial/wxcrafter.cpp new file mode 100644 index 00000000..dcbd62de --- /dev/null +++ b/fdmdv2/build/codelite/hamlib_trial/wxcrafter.cpp @@ -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 index 00000000..fd32389e --- /dev/null +++ b/fdmdv2/build/codelite/hamlib_trial/wxcrafter.h @@ -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 +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +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 index 00000000..a28d04ba --- /dev/null +++ b/fdmdv2/build/codelite/hamlib_trial/wxcrafter.wxcp @@ -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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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": "" + }, { + "type": "colour", + "m_label": "Fg Colour:", + "colour": "" + }, { + "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 index 00000000..a38179b1 --- /dev/null +++ b/fdmdv2/build/codelite/hamlib_trial/wxcrafter.xrc @@ -0,0 +1,822 @@ + + + + topFrame + 1 + + 500,300 + + wxVERTICAL + + wxEXPAND + 5 + + + + + wxVERTICAL + + + + + + + 16,16 + + + New + New + C:/Users/wittend/AppData/Local/Temp/placeholder16.png + + + + Open + Open + C:/Users/wittend/AppData/Local/Temp/placeholder16.png + + + + + Rig Control + 1 + + 450,300 + + wxVERTICAL + + wxALL|wxEXPAND + 2 + + + + + + 1 + + + Hardware Push-to-Talk + + 1 + 3 + 0 + 0 + 1 + 3 + + wxALL|wxEXPAND + 2 + + + + + wxVERTICAL + + + + + + 0 + + + RigCat + + wxVERTICAL + + wxALL|wxALIGN_CENTER_HORIZONTAL + 2 + + + 0 + 2 + 0 + + + + + + + + + + wxALL|wxEXPAND + 2 + + 4 + 1 + 0 + 0 + 4 + 1 + + wxALL|wxEXPAND + 2 + + + + wxALL|wxEXPAND + 1 + + + Hamlib Configuration + + + + + wxVERTICAL + + + + + + + 0 + + + Memory Mapped control + + + + + wxVERTICAL + + + + + + + 0 + + + XML-RPC control + + + + + wxVERTICAL + + + + + + + + wxALL|wxALIGN_RIGHT|wxALIGN_BOTTOM + 2 + + + +