commit 52c22f92f33a1061f6fa6366f5543a0ead7533bc Author: Mark Watkins Date: Thu May 26 23:59:21 2011 +1000 Initial commit diff --git a/GUIFrame.cpp b/GUIFrame.cpp new file mode 100644 index 00000000..046da5d7 --- /dev/null +++ b/GUIFrame.cpp @@ -0,0 +1,165 @@ +/////////////////////////////////////////////////////////////////////////// +// C++ code generated with wxFormBuilder (version May 5 2011) +// http://www.wxformbuilder.org/ +// +// PLEASE DO "NOT" EDIT THIS FILE! +/////////////////////////////////////////////////////////////////////////// + +#include "wx/wxprec.h" + +#ifdef __BORLANDC__ +#pragma hdrstop +#endif //__BORLANDC__ + +#ifndef WX_PRECOMP +#include +#endif //WX_PRECOMP + +#include "GUIFrame.h" + +/////////////////////////////////////////////////////////////////////////// + +GUIFrame::GUIFrame( wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos, const wxSize& size, long style ) : wxFrame( parent, id, title, pos, size, style ) +{ + this->SetSizeHints( wxDefaultSize, wxDefaultSize ); + m_mgr.SetManagedWindow(this); + + menubar = new wxMenuBar( 0 ); + FileMenu = new wxMenu(); + wxMenuItem* FileMenuImportSD; + FileMenuImportSD = new wxMenuItem( FileMenu, wxID_ANY, wxString( _("&Import SD") ) , wxEmptyString, wxITEM_NORMAL ); + FileMenu->Append( FileMenuImportSD ); + + wxMenuItem* FileMenuPreferences; + FileMenuPreferences = new wxMenuItem( FileMenu, wxID_ANY, wxString( _("&Preferences") ) , wxEmptyString, wxITEM_NORMAL ); + FileMenu->Append( FileMenuPreferences ); + + wxMenuItem* m_separator1; + m_separator1 = FileMenu->AppendSeparator(); + + wxMenuItem* FileMenuExit; + FileMenuExit = new wxMenuItem( FileMenu, wxID_QUIT, wxString( _("E&xit") ) , wxEmptyString, wxITEM_NORMAL ); + FileMenu->Append( FileMenuExit ); + + menubar->Append( FileMenu, _("&File") ); + + ViewMenu = new wxMenu(); + wxMenuItem* ViewMenuSummary; + ViewMenuSummary = new wxMenuItem( ViewMenu, wxID_ANY, wxString( _("&Summary") ) , wxEmptyString, wxITEM_NORMAL ); + ViewMenu->Append( ViewMenuSummary ); + + wxMenuItem* ViewMenuDaily; + ViewMenuDaily = new wxMenuItem( ViewMenu, wxID_ANY, wxString( _("&Daily") ) , wxEmptyString, wxITEM_NORMAL ); + ViewMenu->Append( ViewMenuDaily ); + + menubar->Append( ViewMenu, _("&View") ); + + HelpMenu = new wxMenu(); + wxMenuItem* HelpMenuAbout; + HelpMenuAbout = new wxMenuItem( HelpMenu, wxID_ANY, wxString( _("&About") ) , wxEmptyString, wxITEM_NORMAL ); + HelpMenu->Append( HelpMenuAbout ); + + menubar->Append( HelpMenu, _("&Help") ); + + this->SetMenuBar( menubar ); + + statusBar = this->CreateStatusBar( 2, wxST_SIZEGRIP, wxID_ANY ); + main_auinotebook = new wxAuiNotebook( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxAUI_NB_DEFAULT_STYLE ); + m_mgr.AddPane( main_auinotebook, wxAuiPaneInfo() .Center() .MaximizeButton( false ).MinimizeButton( false ).PinButton( true ).Dock().Resizable().FloatingSize( wxDefaultSize ).DockFixed( false ) ); + + + + m_mgr.Update(); + + // Connect Events + this->Connect( wxEVT_CLOSE_WINDOW, wxCloseEventHandler( GUIFrame::OnClose ) ); + this->Connect( FileMenuImportSD->GetId(), wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( GUIFrame::OnImportSD ) ); + this->Connect( FileMenuPreferences->GetId(), wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( GUIFrame::OnPreferencesClicked ) ); + this->Connect( FileMenuExit->GetId(), wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( GUIFrame::OnQuit ) ); + this->Connect( ViewMenuSummary->GetId(), wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( GUIFrame::OnViewMenuSummary ) ); + this->Connect( ViewMenuDaily->GetId(), wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( GUIFrame::OnViewMenuDaily ) ); + this->Connect( HelpMenuAbout->GetId(), wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( GUIFrame::OnAbout ) ); +} + +GUIFrame::~GUIFrame() +{ + // Disconnect Events + this->Disconnect( wxEVT_CLOSE_WINDOW, wxCloseEventHandler( GUIFrame::OnClose ) ); + this->Disconnect( wxID_ANY, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( GUIFrame::OnImportSD ) ); + this->Disconnect( wxID_ANY, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( GUIFrame::OnPreferencesClicked ) ); + this->Disconnect( wxID_QUIT, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( GUIFrame::OnQuit ) ); + this->Disconnect( wxID_ANY, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( GUIFrame::OnViewMenuSummary ) ); + this->Disconnect( wxID_ANY, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( GUIFrame::OnViewMenuDaily ) ); + this->Disconnect( wxID_ANY, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler( GUIFrame::OnAbout ) ); + + m_mgr.UnInit(); + +} + +DailyPanel::DailyPanel( wxWindow* parent, wxWindowID id, const wxPoint& pos, const wxSize& size, long style ) : wxPanel( parent, id, pos, size, style ) +{ + m_mgr.SetManagedWindow(this); + + HTMLInfo = new wxHtmlWindow( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxHW_SCROLLBAR_AUTO ); + m_mgr.AddPane( HTMLInfo, wxAuiPaneInfo() .Left() .Caption( wxT("Day Summary") ).CloseButton( false ).MaximizeButton( false ).MinimizeButton( false ).PinButton( true ).Dock().Resizable().FloatingSize( wxSize( 200,424 ) ).DockFixed( false ).Row( 0 ).Position( 1 ).MinSize( wxSize( 200,200 ) ).Layer( 0 ) ); + + ScrolledWindow = new wxScrolledWindow( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxHSCROLL|wxVSCROLL ); + ScrolledWindow->SetScrollRate( 5, 5 ); + m_mgr.AddPane( ScrolledWindow, wxAuiPaneInfo() .Center() .Caption( wxT("Daily Information") ).CloseButton( false ).MaximizeButton( false ).MinimizeButton( false ).PinButton( true ).Dock().Resizable().FloatingSize( wxSize( -1,-1 ) ).Row( 0 ).Layer( 1 ).CentrePane() ); + + fgSizer = new wxFlexGridSizer( 0, 1, 0, 0 ); + fgSizer->AddGrowableCol( 0 ); + fgSizer->SetFlexibleDirection( wxVERTICAL ); + fgSizer->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_ALL ); + + ScrolledWindow->SetSizer( fgSizer ); + ScrolledWindow->Layout(); + fgSizer->Fit( ScrolledWindow ); + Calendar = new wxCalendarCtrl( this, wxID_ANY, wxDefaultDateTime, wxDefaultPosition, wxDefaultSize, wxCAL_MONDAY_FIRST|wxCAL_SEQUENTIAL_MONTH_SELECTION|wxCAL_SHOW_SURROUNDING_WEEKS ); + m_mgr.AddPane( Calendar, wxAuiPaneInfo() .Left() .Caption( wxT("Selected Day") ).CloseButton( false ).MaximizeButton( false ).MinimizeButton( false ).PinButton( true ).PaneBorder( false ).Dock().Fixed().BottomDockable( false ).TopDockable( false ) ); + + + m_mgr.Update(); + + // Connect Events + Calendar->Connect( wxEVT_CALENDAR_MONTH_CHANGED, wxCalendarEventHandler( DailyPanel::OnCalendarMonth ), NULL, this ); + Calendar->Connect( wxEVT_CALENDAR_SEL_CHANGED, wxCalendarEventHandler( DailyPanel::OnCalendarDay ), NULL, this ); +} + +DailyPanel::~DailyPanel() +{ + // Disconnect Events + Calendar->Disconnect( wxEVT_CALENDAR_MONTH_CHANGED, wxCalendarEventHandler( DailyPanel::OnCalendarMonth ), NULL, this ); + Calendar->Disconnect( wxEVT_CALENDAR_SEL_CHANGED, wxCalendarEventHandler( DailyPanel::OnCalendarDay ), NULL, this ); + + m_mgr.UnInit(); + +} + +SummaryPanel::SummaryPanel( wxWindow* parent, wxWindowID id, const wxPoint& pos, const wxSize& size, long style ) : wxPanel( parent, id, pos, size, style ) +{ + m_mgr.SetManagedWindow(this); + + HTMLInfo = new wxHtmlWindow( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxHW_SCROLLBAR_AUTO ); + m_mgr.AddPane( HTMLInfo, wxAuiPaneInfo() .Right() .Caption( wxT("Information") ).CloseButton( false ).MaximizeButton( false ).MinimizeButton( false ).PinButton( true ).Dock().Resizable().FloatingSize( wxDefaultSize ).DockFixed( false ).MinSize( wxSize( 200,400 ) ) ); + + ScrolledWindow = new wxScrolledWindow( this, wxID_ANY, wxDefaultPosition, wxDefaultSize, wxHSCROLL|wxVSCROLL ); + ScrolledWindow->SetScrollRate( 5, 5 ); + m_mgr.AddPane( ScrolledWindow, wxAuiPaneInfo() .Center() .Caption( wxT("Overview") ).CloseButton( false ).MaximizeButton( false ).MinimizeButton( false ).PinButton( true ).Dock().Resizable().FloatingSize( wxDefaultSize ).DockFixed( false ).MinSize( wxSize( 440,400 ) ) ); + + fgSizer = new wxFlexGridSizer( 0, 1, 0, 0 ); + fgSizer->SetFlexibleDirection( wxVERTICAL ); + fgSizer->SetNonFlexibleGrowMode( wxFLEX_GROWMODE_ALL ); + + ScrolledWindow->SetSizer( fgSizer ); + ScrolledWindow->Layout(); + fgSizer->Fit( ScrolledWindow ); + + m_mgr.Update(); +} + +SummaryPanel::~SummaryPanel() +{ + m_mgr.UnInit(); + +} diff --git a/GUIFrame.h b/GUIFrame.h new file mode 100644 index 00000000..9c03abfe --- /dev/null +++ b/GUIFrame.h @@ -0,0 +1,116 @@ +/////////////////////////////////////////////////////////////////////////// +// C++ code generated with wxFormBuilder (version May 5 2011) +// http://www.wxformbuilder.org/ +// +// PLEASE DO "NOT" EDIT THIS FILE! +/////////////////////////////////////////////////////////////////////////// + +#ifndef __GUIFrame__ +#define __GUIFrame__ + +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +/////////////////////////////////////////////////////////////////////////// + +#define wxID_QUIT 1000 + +/////////////////////////////////////////////////////////////////////////////// +/// Class GUIFrame +/////////////////////////////////////////////////////////////////////////////// +class GUIFrame : public wxFrame +{ + private: + + protected: + wxMenuBar* menubar; + wxMenu* FileMenu; + wxMenu* ViewMenu; + wxMenu* HelpMenu; + wxStatusBar* statusBar; + + // Virtual event handlers, overide them in your derived class + virtual void OnClose( wxCloseEvent& event ) { event.Skip(); } + virtual void OnImportSD( wxCommandEvent& event ) { event.Skip(); } + virtual void OnPreferencesClicked( wxCommandEvent& event ) { event.Skip(); } + virtual void OnQuit( wxCommandEvent& event ) { event.Skip(); } + virtual void OnViewMenuSummary( wxCommandEvent& event ) { event.Skip(); } + virtual void OnViewMenuDaily( wxCommandEvent& event ) { event.Skip(); } + virtual void OnAbout( wxCommandEvent& event ) { event.Skip(); } + + + public: + wxAuiNotebook* main_auinotebook; + + GUIFrame( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("SleepyHead"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 1157,703 ), long style = wxDEFAULT_FRAME_STYLE|wxTAB_TRAVERSAL ); + wxAuiManager m_mgr; + + ~GUIFrame(); + +}; + +/////////////////////////////////////////////////////////////////////////////// +/// Class DailyPanel +/////////////////////////////////////////////////////////////////////////////// +class DailyPanel : public wxPanel +{ + private: + + protected: + wxHtmlWindow* HTMLInfo; + wxScrolledWindow* ScrolledWindow; + wxFlexGridSizer* fgSizer; + wxCalendarCtrl* Calendar; + + // Virtual event handlers, overide them in your derived class + virtual void OnCalendarMonth( wxCalendarEvent& event ) { event.Skip(); } + virtual void OnCalendarDay( wxCalendarEvent& event ) { event.Skip(); } + + + public: + + DailyPanel( wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 935,573 ), long style = wxTAB_TRAVERSAL ); wxAuiManager m_mgr; + + ~DailyPanel(); + +}; + +/////////////////////////////////////////////////////////////////////////////// +/// Class SummaryPanel +/////////////////////////////////////////////////////////////////////////////// +class SummaryPanel : public wxPanel +{ + private: + + protected: + wxHtmlWindow* HTMLInfo; + wxScrolledWindow* ScrolledWindow; + wxFlexGridSizer* fgSizer; + + public: + + SummaryPanel( wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 712,445 ), long style = wxTAB_TRAVERSAL ); wxAuiManager m_mgr; + + ~SummaryPanel(); + +}; + +#endif //__GUIFrame__ diff --git a/SleepyHead.cbp b/SleepyHead.cbp new file mode 100644 index 00000000..54281218 --- /dev/null +++ b/SleepyHead.cbp @@ -0,0 +1,106 @@ + + + + + + diff --git a/SleepyHead.depend b/SleepyHead.depend new file mode 100644 index 00000000..65846c0e --- /dev/null +++ b/SleepyHead.depend @@ -0,0 +1,7787 @@ +# depslib dependency file v1.0 +1306390268 source:/home/mark/projects/SleepyHead/GUIFrame.cpp + "wx/wxprec.h" + + "GUIFrame.h" + +1305215599 /usr/include/wx-2.9/wx/wxprec.h + "wx/defs.h" + "wx/chartype.h" + "wx/msw/wrapwin.h" + "wx/msw/wrapcctl.h" + "wx/msw/wrapcdlg.h" + "wx/msw/private.h" + "wx/msw/missing.h" + + "wx/os2/private.h" + "wx/mgl/private.h" + "wx/wx.h" + +1305215598 /usr/include/wx-2.9/wx/defs.h + "wx/platform.h" + "wx/version.h" + "wx/dlimpexp.h" + + "wx/debug.h" + + + "wx/windowid.h" + + "wx/msw/winundef.h" + "wx/features.h" + +1305215598 /usr/include/wx-2.9/wx/platform.h + + + + + + + "wx/osx/config_xcode.h" + "wx/setup.h" + "wx/setup_gccxml.h" + "wx/msw/wince/libraries.h" + "wx/msw/libraries.h" + "wx/msw/gccpriv.h" + "wx/chkconf.h" + + "wx/palmos/missing.h" + +1305215598 /usr/lib/wx/include/gtk2-unicode-2.9/wx/setup.h + +1305215598 /usr/include/wx-2.9/wx/chkconf.h + "wx/palmos/chkconf.h" + "wx/msw/wince/chkconf.h" + "wx/msw/chkconf.h" + "wx/gtk/chkconf.h" + "wx/cocoa/chkconf.h" + "wx/osx/chkconf.h" + "wx/os2/chkconf.h" + "wx/mgl/chkconf.h" + "wx/dfb/chkconf.h" + "wx/motif/chkconf.h" + "wx/x11/chkconf.h" + "wx/unix/chkconf.h" + "wx/univ/chkconf.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/chkconf.h + +1305215599 /usr/include/wx-2.9/wx/unix/chkconf.h + +1305215599 /usr/include/wx-2.9/wx/version.h + "wx/cpp.h" + +1305215598 /usr/include/wx-2.9/wx/cpp.h + +1305215598 /usr/include/wx-2.9/wx/dlimpexp.h + +1305215598 /usr/include/wx-2.9/wx/debug.h + + + "wx/chartype.h" + "wx/cpp.h" + "wx/dlimpexp.h" + +1305215598 /usr/include/wx-2.9/wx/chartype.h + "wx/platform.h" + + + + + + + + + + + + + +1305215599 /usr/include/wx-2.9/wx/windowid.h + +1305215598 /usr/include/wx-2.9/wx/features.h + +1305215599 /usr/include/wx-2.9/wx/wx.h + "wx/defs.h" + "wx/object.h" + "wx/dynarray.h" + "wx/list.h" + "wx/hash.h" + "wx/string.h" + "wx/hashmap.h" + "wx/arrstr.h" + "wx/intl.h" + "wx/log.h" + "wx/event.h" + "wx/app.h" + "wx/utils.h" + "wx/stream.h" + "wx/memory.h" + "wx/math.h" + "wx/stopwatch.h" + "wx/timer.h" + "wx/module.h" + "wx/wxcrt.h" + "wx/wxcrtvararg.h" + "wx/window.h" + "wx/containr.h" + "wx/panel.h" + "wx/toplevel.h" + "wx/frame.h" + "wx/gdicmn.h" + "wx/gdiobj.h" + "wx/region.h" + "wx/bitmap.h" + "wx/image.h" + "wx/colour.h" + "wx/font.h" + "wx/dc.h" + "wx/dcclient.h" + "wx/dcmemory.h" + "wx/dcprint.h" + "wx/dcscreen.h" + "wx/button.h" + "wx/menuitem.h" + "wx/menu.h" + "wx/pen.h" + "wx/brush.h" + "wx/palette.h" + "wx/icon.h" + "wx/cursor.h" + "wx/dialog.h" + "wx/settings.h" + "wx/msgdlg.h" + "wx/cmndata.h" + "wx/dataobj.h" + "wx/control.h" + "wx/ctrlsub.h" + "wx/bmpbuttn.h" + "wx/checkbox.h" + "wx/checklst.h" + "wx/choice.h" + "wx/scrolbar.h" + "wx/stattext.h" + "wx/statbmp.h" + "wx/statbox.h" + "wx/listbox.h" + "wx/radiobox.h" + "wx/radiobut.h" + "wx/textctrl.h" + "wx/slider.h" + "wx/gauge.h" + "wx/scrolwin.h" + "wx/dirdlg.h" + "wx/toolbar.h" + "wx/combobox.h" + "wx/layout.h" + "wx/sizer.h" + "wx/statusbr.h" + "wx/choicdlg.h" + "wx/textdlg.h" + "wx/filedlg.h" + "wx/mdi.h" + "wx/validate.h" + "wx/valtext.h" + +1305215598 /usr/include/wx-2.9/wx/object.h + "wx/memory.h" + "wx/xti.h" + "wx/msw/msvcrt.h" + +1305215598 /usr/include/wx-2.9/wx/memory.h + "wx/defs.h" + "wx/string.h" + "wx/msgout.h" + + +1305215598 /usr/include/wx-2.9/wx/string.h + "wx/defs.h" + + + + + + + + + + + + "wx/wxcrtbase.h" + "wx/strvararg.h" + "wx/buffer.h" + "wx/strconv.h" + "wx/stringimpl.h" + "wx/stringops.h" + "wx/unichar.h" + "wx/tls.h" + "wx/iosfwrap.h" + "wx/crt.h" + +1305215599 /usr/include/wx-2.9/wx/wxcrtbase.h + "wx/chartype.h" + + + + + + + + +1305215598 /usr/include/wx-2.9/wx/strvararg.h + "wx/platform.h" + "wx/cpp.h" + "wx/chartype.h" + "wx/strconv.h" + "wx/buffer.h" + "wx/unichar.h" + + + + "wx/stringimpl.h" + +1305215598 /usr/include/wx-2.9/wx/strconv.h + "wx/defs.h" + "wx/chartype.h" + "wx/buffer.h" + "typeinfo.h" + + "wx/fontenc.h" + +1305215598 /usr/include/wx-2.9/wx/buffer.h + "wx/chartype.h" + "wx/wxcrtbase.h" + + +1305215599 /usr/include/wx-2.9/wx/typeinfo.h + "wx/defs.h" + + + +1305215598 /usr/include/wx-2.9/wx/fontenc.h + +1305215599 /usr/include/wx-2.9/wx/unichar.h + "wx/defs.h" + "wx/chartype.h" + "wx/stringimpl.h" + +1305215598 /usr/include/wx-2.9/wx/stringimpl.h + "wx/defs.h" + "wx/chartype.h" + "wx/wxcrtbase.h" + + "wx/beforestd.h" + + "wx/afterstd.h" + +1305215598 /usr/include/wx-2.9/wx/beforestd.h + +1305215598 /usr/include/wx-2.9/wx/afterstd.h + "wx/msw/winundef.h" + +1305215598 /usr/include/wx-2.9/wx/stringops.h + "wx/chartype.h" + "wx/stringimpl.h" + "wx/unichar.h" + "wx/buffer.h" + +1305215598 /usr/include/wx-2.9/wx/tls.h + "wx/defs.h" + "wx/msw/tls.h" + "wx/os2/tls.h" + "wx/unix/tls.h" + + +1305215599 /usr/include/wx-2.9/wx/unix/tls.h + + +1305215598 /usr/include/wx-2.9/wx/iosfwrap.h + + + "wx/msw/winundef.h" + +1305215598 /usr/include/wx-2.9/wx/crt.h + "wx/defs.h" + "wx/chartype.h" + "wx/wxcrt.h" + "wx/wxcrtvararg.h" + +1305215599 /usr/include/wx-2.9/wx/wxcrt.h + "wx/wxcrtbase.h" + "wx/string.h" + + +1305215599 /usr/include/wx-2.9/wx/wxcrtvararg.h + "wx/wxcrt.h" + "wx/strvararg.h" + "wx/string.h" + + +1305215598 /usr/include/wx-2.9/wx/msgout.h + "wx/defs.h" + "wx/chartype.h" + "wx/strvararg.h" + +1305215599 /usr/include/wx-2.9/wx/xti.h + "wx/defs.h" + "wx/memory.h" + "wx/flags.h" + "wx/string.h" + "wx/arrstr.h" + "wx/hashmap.h" + "wx/log.h" + "wx/intl.h" + + "wx/dynarray.h" + +1305215598 /usr/include/wx-2.9/wx/flags.h + +1305215598 /usr/include/wx-2.9/wx/arrstr.h + "wx/defs.h" + "wx/string.h" + "wx/dynarray.h" + "wx/beforestd.h" + + "wx/afterstd.h" + +1305215598 /usr/include/wx-2.9/wx/dynarray.h + "wx/defs.h" + "wx/beforestd.h" + + + "wx/afterstd.h" + +1305215598 /usr/include/wx-2.9/wx/hashmap.h + "wx/string.h" + "wx/wxcrt.h" + + + + + + +1305215598 /usr/include/wx-2.9/wx/log.h + "wx/defs.h" + "wx/string.h" + "wx/strvararg.h" + "wx/arrstr.h" + + "wx/dynarray.h" + "wx/hashmap.h" + "wx/thread.h" + "wx/iosfwrap.h" + "wx/generic/logg.h" + "wx/cocoa/log.h" + +1305215598 /usr/include/wx-2.9/wx/thread.h + "wx/defs.h" + +1305215599 /usr/include/wx-2.9/wx/generic/logg.h + +1305215598 /usr/include/wx-2.9/wx/intl.h + "wx/defs.h" + "wx/string.h" + "wx/translation.h" + "wx/fontenc.h" + "wx/language.h" + +1305215599 /usr/include/wx-2.9/wx/translation.h + "wx/defs.h" + "wx/string.h" + "wx/buffer.h" + "wx/language.h" + "wx/hashmap.h" + "wx/strconv.h" + "wx/scopedptr.h" + +1305215598 /usr/include/wx-2.9/wx/language.h + "wx/defs.h" + +1305215598 /usr/include/wx-2.9/wx/scopedptr.h + "wx/defs.h" + "wx/checkeddelete.h" + +1305215598 /usr/include/wx-2.9/wx/checkeddelete.h + +1305215598 /usr/include/wx-2.9/wx/list.h + "wx/defs.h" + "wx/object.h" + "wx/string.h" + "wx/beforestd.h" + + + + "wx/afterstd.h" + +1305215598 /usr/include/wx-2.9/wx/hash.h + "wx/defs.h" + "wx/string.h" + "wx/object.h" + +1305215598 /usr/include/wx-2.9/wx/event.h + "wx/defs.h" + "wx/cpp.h" + "wx/object.h" + "wx/clntdata.h" + "wx/gdicmn.h" + "wx/cursor.h" + "wx/mousestate.h" + "wx/dynarray.h" + "wx/thread.h" + "wx/tracker.h" + "wx/typeinfo.h" + "wx/any.h" + "wx/meta/convertible.h" + +1305215598 /usr/include/wx-2.9/wx/clntdata.h + "wx/defs.h" + "wx/string.h" + "wx/hashmap.h" + +1305215599 /usr/include/wx-2.9/wx/gdicmn.h + "wx/defs.h" + "wx/list.h" + "wx/string.h" + "wx/fontenc.h" + "wx/hashmap.h" + "wx/math.h" + +1305215598 /usr/include/wx-2.9/wx/math.h + "wx/defs.h" + + + + +1305215599 /usr/include/wx-2.9/wx/cursor.h + "wx/defs.h" + "wx/palmos/cursor.h" + "wx/msw/cursor.h" + "wx/motif/cursor.h" + "wx/gtk/cursor.h" + "wx/gtk1/cursor.h" + "wx/x11/cursor.h" + "wx/mgl/cursor.h" + "wx/dfb/cursor.h" + "wx/osx/cursor.h" + "wx/cocoa/cursor.h" + "wx/os2/cursor.h" + "wx/utils.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/cursor.h + "wx/gdiobj.h" + "wx/gdicmn.h" + +1305215599 /usr/include/wx-2.9/wx/gdiobj.h + "wx/object.h" + +1305215599 /usr/include/wx-2.9/wx/utils.h + "wx/object.h" + "wx/list.h" + "wx/filefn.h" + "wx/gdicmn.h" + "wx/mousestate.h" + "wx/longlong.h" + "wx/platinfo.h" + + + + + +1305215598 /usr/include/wx-2.9/wx/filefn.h + "wx/list.h" + "wx/arrstr.h" + "wx/msw/wince/time.h" + "wx/msw/private.h" + + + + + + + + + + + + "wx/os2/private.h" + + + + + + + + + + + + + + + + + +1305215598 /usr/include/wx-2.9/wx/mousestate.h + "wx/kbdstate.h" + +1305215598 /usr/include/wx-2.9/wx/kbdstate.h + "wx/defs.h" + +1305215598 /usr/include/wx-2.9/wx/longlong.h + "wx/defs.h" + "wx/string.h" + + "wx/iosfwrap.h" + +1305215598 /usr/include/wx-2.9/wx/platinfo.h + "wx/string.h" + +1305215599 /usr/include/wx-2.9/wx/tracker.h + "wx/defs.h" + +1305215598 /usr/include/wx-2.9/wx/any.h + "wx/defs.h" + + "wx/string.h" + "wx/meta/if.h" + "wx/typeinfo.h" + "wx/datetime.h" + "wx/variant.h" + +1305215599 /usr/include/wx-2.9/wx/meta/if.h + "wx/defs.h" + +1305215598 /usr/include/wx-2.9/wx/datetime.h + "wx/defs.h" + "wx/msw/wince/time.h" + + + "wx/longlong.h" + "wx/anystr.h" + "wx/dynarray.h" + +1305215598 /usr/include/wx-2.9/wx/anystr.h + "wx/string.h" + +1305215599 /usr/include/wx-2.9/wx/variant.h + "wx/defs.h" + "wx/object.h" + "wx/string.h" + "wx/arrstr.h" + "wx/list.h" + "wx/cpp.h" + "wx/longlong.h" + "wx/datetime.h" + "wx/iosfwrap.h" + "wx/any.h" + +1305215599 /usr/include/wx-2.9/wx/meta/convertible.h + +1305215598 /usr/include/wx-2.9/wx/app.h + "wx/event.h" + "wx/build.h" + "wx/cmdargs.h" + "wx/init.h" + "wx/intl.h" + "wx/log.h" + "wx/unix/app.h" + "wx/palmos/app.h" + "wx/msw/app.h" + "wx/motif/app.h" + "wx/mgl/app.h" + "wx/dfb/app.h" + "wx/gtk/app.h" + "wx/gtk1/app.h" + "wx/x11/app.h" + "wx/osx/app.h" + "wx/cocoa/app.h" + "wx/os2/app.h" + "wx/univ/theme.h" + +1305215598 /usr/include/wx-2.9/wx/build.h + "wx/version.h" + +1305215598 /usr/include/wx-2.9/wx/cmdargs.h + "wx/arrstr.h" + +1305215598 /usr/include/wx-2.9/wx/init.h + "wx/defs.h" + "wx/chartype.h" + +1305215599 /usr/include/wx-2.9/wx/unix/app.h + + +1305215600 /usr/include/wx-2.9/wx/gtk/app.h + +1305215598 /usr/include/wx-2.9/wx/stream.h + "wx/defs.h" + + "wx/object.h" + "wx/string.h" + "wx/filefn.h" + +1305215598 /usr/include/wx-2.9/wx/stopwatch.h + "wx/defs.h" + "wx/longlong.h" + +1305215598 /usr/include/wx-2.9/wx/timer.h + "wx/defs.h" + "wx/object.h" + "wx/longlong.h" + "wx/event.h" + "wx/stopwatch.h" + "wx/utils.h" + +1305215598 /usr/include/wx-2.9/wx/module.h + "wx/object.h" + "wx/list.h" + "wx/arrstr.h" + "wx/dynarray.h" + +1305215599 /usr/include/wx-2.9/wx/window.h + "wx/event.h" + "wx/list.h" + "wx/cursor.h" + "wx/font.h" + "wx/colour.h" + "wx/region.h" + "wx/utils.h" + "wx/intl.h" + "wx/validate.h" + "wx/palette.h" + "wx/accel.h" + "wx/access.h" + "wx/palmos/window.h" + "wx/msw/window.h" + "wx/motif/window.h" + "wx/gtk/window.h" + "wx/gtk1/window.h" + "wx/x11/window.h" + "wx/mgl/window.h" + "wx/dfb/window.h" + "wx/osx/window.h" + "wx/cocoa/window.h" + "wx/os2/window.h" + "wx/univ/window.h" + +1305215599 /usr/include/wx-2.9/wx/font.h + "wx/defs.h" + "wx/fontenc.h" + "wx/gdiobj.h" + "wx/gdicmn.h" + "wx/palmos/font.h" + "wx/msw/font.h" + "wx/motif/font.h" + "wx/gtk/font.h" + "wx/gtk1/font.h" + "wx/x11/font.h" + "wx/mgl/font.h" + "wx/dfb/font.h" + "wx/osx/font.h" + "wx/cocoa/font.h" + "wx/os2/font.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/font.h + +1305215599 /usr/include/wx-2.9/wx/colour.h + "wx/defs.h" + "wx/gdiobj.h" + "wx/variant.h" + "wx/generic/colour.h" + "wx/msw/colour.h" + "wx/motif/colour.h" + "wx/gtk/colour.h" + "wx/gtk1/colour.h" + "wx/generic/colour.h" + "wx/generic/colour.h" + "wx/x11/colour.h" + "wx/osx/colour.h" + "wx/cocoa/colour.h" + "wx/os2/colour.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/colour.h + +1305215600 /usr/include/wx-2.9/wx/region.h + "wx/gdiobj.h" + "wx/gdicmn.h" + "wx/palmos/region.h" + "wx/msw/region.h" + "wx/gtk/region.h" + "wx/gtk1/region.h" + "wx/x11/region.h" + "wx/mgl/region.h" + "wx/dfb/region.h" + "wx/osx/region.h" + "wx/cocoa/region.h" + "wx/os2/region.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/region.h + +1305215599 /usr/include/wx-2.9/wx/validate.h + "wx/defs.h" + "wx/event.h" + +1305215599 /usr/include/wx-2.9/wx/palette.h + "wx/defs.h" + "wx/object.h" + "wx/gdiobj.h" + "wx/palmos/palette.h" + "wx/msw/palette.h" + "wx/x11/palette.h" + "wx/generic/paletteg.h" + "wx/mgl/palette.h" + "wx/osx/palette.h" + "wx/os2/palette.h" + +1305215600 /usr/include/wx-2.9/wx/generic/paletteg.h + "wx/defs.h" + "wx/object.h" + "wx/gdiobj.h" + "wx/gdicmn.h" + +1305215599 /usr/include/wx-2.9/wx/accel.h + "wx/defs.h" + "wx/object.h" + "wx/generic/accel.h" + "wx/msw/accel.h" + "wx/motif/accel.h" + "wx/gtk/accel.h" + "wx/gtk1/accel.h" + "wx/osx/accel.h" + "wx/generic/accel.h" + "wx/os2/accel.h" + +1305215599 /usr/include/wx-2.9/wx/generic/accel.h + +1305215600 /usr/include/wx-2.9/wx/gtk/accel.h + "wx/generic/accel.h" + +1305215599 /usr/include/wx-2.9/wx/access.h + "wx/defs.h" + "wx/variant.h" + "wx/msw/ole/access.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/window.h + "wx/dynarray.h" + +1305215598 /usr/include/wx-2.9/wx/containr.h + "wx/defs.h" + +1305215599 /usr/include/wx-2.9/wx/panel.h + "wx/generic/panelg.h" + +1305215599 /usr/include/wx-2.9/wx/generic/panelg.h + "wx/window.h" + "wx/containr.h" + +1305215600 /usr/include/wx-2.9/wx/toplevel.h + "wx/nonownedwnd.h" + "wx/iconbndl.h" + "wx/containr.h" + "wx/weakref.h" + "wx/palmos/toplevel.h" + "wx/msw/toplevel.h" + "wx/gtk/toplevel.h" + "wx/gtk1/toplevel.h" + "wx/x11/toplevel.h" + "wx/mgl/toplevel.h" + "wx/dfb/toplevel.h" + "wx/osx/toplevel.h" + "wx/cocoa/toplevel.h" + "wx/os2/toplevel.h" + "wx/motif/toplevel.h" + "wx/univ/toplevel.h" + +1305215599 /usr/include/wx-2.9/wx/nonownedwnd.h + "wx/dfb/nonownedwnd.h" + "wx/osx/nonownedwnd.h" + "wx/window.h" + +1305215599 /usr/include/wx-2.9/wx/iconbndl.h + "wx/gdiobj.h" + "wx/gdicmn.h" + "wx/icon.h" + "wx/dynarray.h" + +1305215599 /usr/include/wx-2.9/wx/icon.h + "wx/iconloc.h" + "wx/generic/icon.h" + "wx/msw/icon.h" + "wx/motif/icon.h" + "wx/generic/icon.h" + "wx/generic/icon.h" + "wx/generic/icon.h" + "wx/generic/icon.h" + "wx/generic/icon.h" + "wx/osx/icon.h" + "wx/generic/icon.h" + "wx/cocoa/icon.h" + "wx/os2/icon.h" + "wx/variant.h" + +1305215598 /usr/include/wx-2.9/wx/iconloc.h + "wx/string.h" + +1305215600 /usr/include/wx-2.9/wx/generic/icon.h + "wx/bitmap.h" + +1305215599 /usr/include/wx-2.9/wx/bitmap.h + "wx/string.h" + "wx/gdicmn.h" + "wx/colour.h" + "wx/variant.h" + "wx/palmos/bitmap.h" + "wx/msw/bitmap.h" + "wx/x11/bitmap.h" + "wx/gtk/bitmap.h" + "wx/gtk1/bitmap.h" + "wx/x11/bitmap.h" + "wx/mgl/bitmap.h" + "wx/dfb/bitmap.h" + "wx/osx/bitmap.h" + "wx/cocoa/bitmap.h" + "wx/os2/bitmap.h" + "wx/generic/mask.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/bitmap.h + +1305215599 /usr/include/wx-2.9/wx/weakref.h + "wx/tracker.h" + "wx/meta/convertible.h" + "wx/meta/int2type.h" + +1305215599 /usr/include/wx-2.9/wx/meta/int2type.h + +1305215600 /usr/include/wx-2.9/wx/gtk/toplevel.h + +1305215599 /usr/include/wx-2.9/wx/frame.h + "wx/toplevel.h" + "wx/statusbr.h" + "wx/univ/frame.h" + "wx/palmos/frame.h" + "wx/msw/frame.h" + "wx/gtk/frame.h" + "wx/gtk1/frame.h" + "wx/motif/frame.h" + "wx/osx/frame.h" + "wx/cocoa/frame.h" + "wx/os2/frame.h" + +1305215599 /usr/include/wx-2.9/wx/statusbr.h + "wx/defs.h" + "wx/window.h" + "wx/list.h" + "wx/dynarray.h" + "wx/univ/statusbr.h" + "wx/palmos/statusbr.h" + "wx/msw/statusbar.h" + "wx/generic/statusbr.h" + "wx/osx/statusbr.h" + "wx/generic/statusbr.h" + +1305215600 /usr/include/wx-2.9/wx/generic/statusbr.h + "wx/defs.h" + "wx/pen.h" + "wx/arrstr.h" + +1305215599 /usr/include/wx-2.9/wx/pen.h + "wx/gdiobj.h" + "wx/gdicmn.h" + "wx/palmos/pen.h" + "wx/msw/pen.h" + "wx/x11/pen.h" + "wx/gtk/pen.h" + "wx/gtk1/pen.h" + "wx/mgl/pen.h" + "wx/dfb/pen.h" + "wx/osx/pen.h" + "wx/cocoa/pen.h" + "wx/os2/pen.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/pen.h + +1305215600 /usr/include/wx-2.9/wx/gtk/frame.h + +1305215599 /usr/include/wx-2.9/wx/image.h + "wx/defs.h" + "wx/object.h" + "wx/string.h" + "wx/gdicmn.h" + "wx/hashmap.h" + "wx/arrstr.h" + "wx/stream.h" + "wx/variant.h" + "wx/imagbmp.h" + "wx/imagpng.h" + "wx/imaggif.h" + "wx/imagpcx.h" + "wx/imagjpeg.h" + "wx/imagtga.h" + "wx/imagtiff.h" + "wx/imagpnm.h" + "wx/imagxpm.h" + "wx/imagiff.h" + +1305215599 /usr/include/wx-2.9/wx/imagbmp.h + "wx/image.h" + +1305215599 /usr/include/wx-2.9/wx/imagpng.h + "wx/defs.h" + "wx/image.h" + +1305215599 /usr/include/wx-2.9/wx/imaggif.h + "wx/image.h" + +1305215599 /usr/include/wx-2.9/wx/imagpcx.h + "wx/image.h" + +1305215599 /usr/include/wx-2.9/wx/imagjpeg.h + "wx/defs.h" + "wx/image.h" + +1305215599 /usr/include/wx-2.9/wx/imagtga.h + "wx/image.h" + +1305215599 /usr/include/wx-2.9/wx/imagtiff.h + "wx/defs.h" + "wx/image.h" + +1305215599 /usr/include/wx-2.9/wx/imagpnm.h + "wx/image.h" + +1305215599 /usr/include/wx-2.9/wx/imagxpm.h + "wx/image.h" + +1305215599 /usr/include/wx-2.9/wx/imagiff.h + "wx/image.h" + +1305215599 /usr/include/wx-2.9/wx/dc.h + "wx/object.h" + "wx/intl.h" + "wx/cursor.h" + "wx/font.h" + "wx/colour.h" + "wx/bitmap.h" + "wx/brush.h" + "wx/pen.h" + "wx/palette.h" + "wx/dynarray.h" + "wx/math.h" + "wx/image.h" + "wx/cmndata.h" + +1305215599 /usr/include/wx-2.9/wx/brush.h + "wx/defs.h" + "wx/object.h" + "wx/gdiobj.h" + "wx/gdicmn.h" + "wx/palmos/brush.h" + "wx/msw/brush.h" + "wx/x11/brush.h" + "wx/gtk/brush.h" + "wx/gtk1/brush.h" + "wx/mgl/brush.h" + "wx/dfb/brush.h" + "wx/osx/brush.h" + "wx/cocoa/brush.h" + "wx/os2/brush.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/brush.h + +1305215599 /usr/include/wx-2.9/wx/cmndata.h + "wx/window.h" + "wx/font.h" + "wx/encinfo.h" + "wx/colour.h" + "wx/gdicmn.h" + "wx/stream.h" + +1305215599 /usr/include/wx-2.9/wx/encinfo.h + "wx/string.h" + +1305215599 /usr/include/wx-2.9/wx/dcclient.h + "wx/dc.h" + +1305215599 /usr/include/wx-2.9/wx/dcmemory.h + "wx/dc.h" + "wx/bitmap.h" + +1305215599 /usr/include/wx-2.9/wx/dcprint.h + "wx/defs.h" + "wx/dc.h" + +1305215599 /usr/include/wx-2.9/wx/dcscreen.h + "wx/defs.h" + "wx/dc.h" + +1305215599 /usr/include/wx-2.9/wx/button.h + "wx/defs.h" + "wx/bitmap.h" + "wx/control.h" + "wx/univ/button.h" + "wx/msw/button.h" + "wx/motif/button.h" + "wx/gtk/button.h" + "wx/gtk1/button.h" + "wx/osx/button.h" + "wx/cocoa/button.h" + "wx/os2/button.h" + "wx/palmos/button.h" + +1305215599 /usr/include/wx-2.9/wx/control.h + "wx/defs.h" + "wx/window.h" + "wx/univ/control.h" + "wx/palmos/control.h" + "wx/msw/control.h" + "wx/motif/control.h" + "wx/gtk/control.h" + "wx/gtk1/control.h" + "wx/osx/control.h" + "wx/cocoa/control.h" + "wx/os2/control.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/control.h + +1305215600 /usr/include/wx-2.9/wx/gtk/button.h + +1305215599 /usr/include/wx-2.9/wx/menuitem.h + "wx/defs.h" + "wx/object.h" + "wx/univ/menuitem.h" + "wx/palmos/menuitem.h" + "wx/msw/menuitem.h" + "wx/motif/menuitem.h" + "wx/gtk/menuitem.h" + "wx/gtk1/menuitem.h" + "wx/osx/menuitem.h" + "wx/cocoa/menuitem.h" + "wx/os2/menuitem.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/menuitem.h + "wx/bitmap.h" + +1305215599 /usr/include/wx-2.9/wx/menu.h + "wx/defs.h" + "wx/list.h" + "wx/window.h" + "wx/menuitem.h" + "wx/univ/menu.h" + "wx/palmos/menu.h" + "wx/msw/menu.h" + "wx/motif/menu.h" + "wx/gtk/menu.h" + "wx/gtk1/menu.h" + "wx/osx/menu.h" + "wx/cocoa/menu.h" + "wx/os2/menu.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/menu.h + +1305215599 /usr/include/wx-2.9/wx/dialog.h + "wx/defs.h" + "wx/toplevel.h" + "wx/univ/dialog.h" + "wx/palmos/dialog.h" + "wx/msw/dialog.h" + "wx/motif/dialog.h" + "wx/gtk/dialog.h" + "wx/gtk1/dialog.h" + "wx/osx/dialog.h" + "wx/cocoa/dialog.h" + "wx/os2/dialog.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/dialog.h + +1305215599 /usr/include/wx-2.9/wx/settings.h + "wx/colour.h" + "wx/font.h" + +1305215599 /usr/include/wx-2.9/wx/msgdlg.h + "wx/defs.h" + "wx/dialog.h" + "wx/stockitem.h" + "wx/generic/msgdlgg.h" + "wx/cocoa/msgdlg.h" + "wx/palmos/msgdlg.h" + "wx/msw/msgdlg.h" + "wx/motif/msgdlg.h" + "wx/gtk/msgdlg.h" + "wx/osx/msgdlg.h" + "wx/os2/msgdlg.h" + +1305215598 /usr/include/wx-2.9/wx/stockitem.h + "wx/defs.h" + "wx/chartype.h" + "wx/string.h" + "wx/accel.h" + +1305215599 /usr/include/wx-2.9/wx/generic/msgdlgg.h + +1305215600 /usr/include/wx-2.9/wx/gtk/msgdlg.h + +1305215599 /usr/include/wx-2.9/wx/dataobj.h + "wx/defs.h" + "wx/string.h" + "wx/bitmap.h" + "wx/list.h" + "wx/arrstr.h" + "wx/msw/ole/dataform.h" + "wx/motif/dataform.h" + "wx/gtk/dataform.h" + "wx/gtk1/dataform.h" + "wx/x11/dataform.h" + "wx/osx/dataform.h" + "wx/cocoa/dataform.h" + "wx/os2/dataform.h" + "wx/msw/ole/dataobj.h" + "wx/motif/dataobj.h" + "wx/x11/dataobj.h" + "wx/gtk/dataobj.h" + "wx/gtk1/dataobj.h" + "wx/osx/dataobj.h" + "wx/cocoa/dataobj.h" + "wx/os2/dataobj.h" + "wx/msw/ole/dataobj2.h" + "wx/gtk/dataobj2.h" + "wx/gtk1/dataobj2.h" + "wx/x11/dataobj2.h" + "wx/motif/dataobj2.h" + "wx/osx/dataobj2.h" + "wx/cocoa/dataobj2.h" + "wx/os2/dataobj2.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/dataform.h + +1305215600 /usr/include/wx-2.9/wx/gtk/dataobj.h + +1305215600 /usr/include/wx-2.9/wx/gtk/dataobj2.h + +1305215599 /usr/include/wx-2.9/wx/ctrlsub.h + "wx/defs.h" + "wx/arrstr.h" + "wx/control.h" + "wx/msw/ctrlsub.h" + "wx/motif/ctrlsub.h" + +1305215599 /usr/include/wx-2.9/wx/bmpbuttn.h + "wx/defs.h" + "wx/button.h" + "wx/univ/bmpbuttn.h" + "wx/msw/bmpbuttn.h" + "wx/motif/bmpbuttn.h" + "wx/gtk/bmpbuttn.h" + "wx/gtk1/bmpbuttn.h" + "wx/osx/bmpbuttn.h" + "wx/cocoa/bmpbuttn.h" + "wx/os2/bmpbuttn.h" + "wx/palmos/bmpbuttn.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/bmpbuttn.h + +1305215599 /usr/include/wx-2.9/wx/checkbox.h + "wx/defs.h" + "wx/control.h" + "wx/univ/checkbox.h" + "wx/msw/checkbox.h" + "wx/motif/checkbox.h" + "wx/gtk/checkbox.h" + "wx/gtk1/checkbox.h" + "wx/osx/checkbox.h" + "wx/cocoa/checkbox.h" + "wx/os2/checkbox.h" + "wx/palmos/checkbox.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/checkbox.h + +1305215599 /usr/include/wx-2.9/wx/checklst.h + "wx/listbox.h" + "wx/univ/checklst.h" + "wx/msw/wince/checklst.h" + "wx/msw/checklst.h" + "wx/motif/checklst.h" + "wx/gtk/checklst.h" + "wx/gtk1/checklst.h" + "wx/osx/checklst.h" + "wx/cocoa/checklst.h" + "wx/os2/checklst.h" + +1305215599 /usr/include/wx-2.9/wx/listbox.h + "wx/defs.h" + "wx/ctrlsub.h" + "wx/univ/listbox.h" + "wx/msw/listbox.h" + "wx/motif/listbox.h" + "wx/gtk/listbox.h" + "wx/gtk1/listbox.h" + "wx/osx/listbox.h" + "wx/os2/listbox.h" + "wx/cocoa/listbox.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/listbox.h + +1305215600 /usr/include/wx-2.9/wx/gtk/checklst.h + +1305215599 /usr/include/wx-2.9/wx/choice.h + "wx/defs.h" + "wx/ctrlsub.h" + "wx/univ/choice.h" + "wx/msw/wince/choicece.h" + "wx/msw/choice.h" + "wx/motif/choice.h" + "wx/gtk/choice.h" + "wx/gtk1/choice.h" + "wx/osx/choice.h" + "wx/cocoa/choice.h" + "wx/os2/choice.h" + "wx/palmos/choice.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/choice.h + +1305215599 /usr/include/wx-2.9/wx/scrolbar.h + "wx/defs.h" + "wx/control.h" + "wx/univ/scrolbar.h" + "wx/msw/scrolbar.h" + "wx/motif/scrolbar.h" + "wx/gtk/scrolbar.h" + "wx/gtk1/scrolbar.h" + "wx/osx/scrolbar.h" + "wx/cocoa/scrolbar.h" + "wx/os2/scrolbar.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/scrolbar.h + "wx/defs.h" + +1305215599 /usr/include/wx-2.9/wx/stattext.h + "wx/defs.h" + "wx/control.h" + "wx/univ/stattext.h" + "wx/msw/stattext.h" + "wx/motif/stattext.h" + "wx/gtk/stattext.h" + "wx/gtk1/stattext.h" + "wx/osx/stattext.h" + "wx/cocoa/stattext.h" + "wx/os2/stattext.h" + "wx/palmos/stattext.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/stattext.h + +1305215599 /usr/include/wx-2.9/wx/statbmp.h + "wx/defs.h" + "wx/control.h" + "wx/bitmap.h" + "wx/icon.h" + "wx/univ/statbmp.h" + "wx/msw/statbmp.h" + "wx/motif/statbmp.h" + "wx/gtk/statbmp.h" + "wx/gtk1/statbmp.h" + "wx/osx/statbmp.h" + "wx/cocoa/statbmp.h" + "wx/os2/statbmp.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/statbmp.h + "wx/icon.h" + +1305215599 /usr/include/wx-2.9/wx/statbox.h + "wx/defs.h" + "wx/control.h" + "wx/univ/statbox.h" + "wx/msw/statbox.h" + "wx/motif/statbox.h" + "wx/gtk/statbox.h" + "wx/gtk1/statbox.h" + "wx/osx/statbox.h" + "wx/cocoa/statbox.h" + "wx/os2/statbox.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/statbox.h + +1305215599 /usr/include/wx-2.9/wx/radiobox.h + "wx/ctrlsub.h" + "wx/dynarray.h" + "wx/univ/radiobox.h" + "wx/msw/radiobox.h" + "wx/motif/radiobox.h" + "wx/gtk/radiobox.h" + "wx/gtk1/radiobox.h" + "wx/osx/radiobox.h" + "wx/cocoa/radiobox.h" + "wx/os2/radiobox.h" + "wx/palmos/radiobox.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/radiobox.h + "wx/bitmap.h" + "wx/list.h" + +1305215599 /usr/include/wx-2.9/wx/radiobut.h + "wx/defs.h" + "wx/control.h" + "wx/univ/radiobut.h" + "wx/msw/radiobut.h" + "wx/motif/radiobut.h" + "wx/gtk/radiobut.h" + "wx/gtk1/radiobut.h" + "wx/osx/radiobut.h" + "wx/cocoa/radiobut.h" + "wx/os2/radiobut.h" + "wx/palmos/radiobut.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/radiobut.h + +1305215599 /usr/include/wx-2.9/wx/textctrl.h + "wx/defs.h" + "wx/control.h" + "wx/textentry.h" + "wx/dynarray.h" + "wx/gdicmn.h" + "wx/ioswrap.h" + "wx/x11/textctrl.h" + "wx/univ/textctrl.h" + "wx/msw/wince/textctrlce.h" + "wx/msw/textctrl.h" + "wx/motif/textctrl.h" + "wx/gtk/textctrl.h" + "wx/gtk1/textctrl.h" + "wx/osx/textctrl.h" + "wx/cocoa/textctrl.h" + "wx/os2/textctrl.h" + "wx/palmos/textctrl.h" + +1305215599 /usr/include/wx-2.9/wx/textentry.h + "wx/gdicmn.h" + "wx/gtk/textentry.h" + "wx/osx/textentry.h" + "wx/msw/textentry.h" + "wx/motif/textentry.h" + "wx/os2/textentry.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/textentry.h + +1305215598 /usr/include/wx-2.9/wx/ioswrap.h + "wx/beforestd.h" + + + "wx/afterstd.h" + "wx/msw/winundef.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/textctrl.h + +1305215599 /usr/include/wx-2.9/wx/slider.h + "wx/defs.h" + "wx/control.h" + "wx/univ/slider.h" + "wx/msw/slider.h" + "wx/motif/slider.h" + "wx/gtk/slider.h" + "wx/gtk1/slider.h" + "wx/osx/slider.h" + "wx/cocoa/slider.h" + "wx/os2/slider.h" + "wx/palmos/slider.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/slider.h + +1305215599 /usr/include/wx-2.9/wx/gauge.h + "wx/defs.h" + "wx/control.h" + "wx/univ/gauge.h" + "wx/msw/gauge.h" + "wx/motif/gauge.h" + "wx/gtk/gauge.h" + "wx/gtk1/gauge.h" + "wx/osx/gauge.h" + "wx/cocoa/gauge.h" + "wx/os2/gauge.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/gauge.h + +1305215599 /usr/include/wx-2.9/wx/scrolwin.h + "wx/panel.h" + "wx/gtk/scrolwin.h" + "wx/gtk1/scrolwin.h" + "wx/generic/scrolwin.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/scrolwin.h + +1305215599 /usr/include/wx-2.9/wx/generic/scrolwin.h + +1305215599 /usr/include/wx-2.9/wx/dirdlg.h + "wx/dialog.h" + "wx/generic/dirdlgg.h" + "wx/generic/dirdlgg.h" + "wx/generic/dirdlgg.h" + "wx/msw/dirdlg.h" + "wx/gtk/dirdlg.h" + "wx/generic/dirdlgg.h" + "wx/osx/dirdlg.h" + "wx/cocoa/dirdlg.h" + "wx/generic/dirdlgg.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/dirdlg.h + +1305215599 /usr/include/wx-2.9/wx/toolbar.h + "wx/defs.h" + "wx/tbarbase.h" + "wx/univ/toolbar.h" + "wx/palmos/toolbar.h" + "wx/msw/toolbar.h" + "wx/msw/wince/tbarwce.h" + "wx/motif/toolbar.h" + "wx/gtk/toolbar.h" + "wx/gtk1/toolbar.h" + "wx/osx/toolbar.h" + "wx/cocoa/toolbar.h" + "wx/os2/toolbar.h" + +1305215600 /usr/include/wx-2.9/wx/tbarbase.h + "wx/defs.h" + "wx/bitmap.h" + "wx/list.h" + "wx/control.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/toolbar.h + +1305215599 /usr/include/wx-2.9/wx/combobox.h + "wx/defs.h" + "wx/ctrlsub.h" + "wx/textentry.h" + "wx/univ/combobox.h" + "wx/msw/combobox.h" + "wx/motif/combobox.h" + "wx/gtk/combobox.h" + "wx/gtk1/combobox.h" + "wx/osx/combobox.h" + "wx/cocoa/combobox.h" + "wx/os2/combobox.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/combobox.h + "wx/choice.h" + +1305215599 /usr/include/wx-2.9/wx/layout.h + "wx/object.h" + +1305215599 /usr/include/wx-2.9/wx/sizer.h + "wx/defs.h" + "wx/window.h" + +1305215599 /usr/include/wx-2.9/wx/choicdlg.h + "wx/generic/choicdgg.h" + +1305215599 /usr/include/wx-2.9/wx/generic/choicdgg.h + "wx/dynarray.h" + "wx/dialog.h" + +1305215599 /usr/include/wx-2.9/wx/textdlg.h + "wx/generic/textdlgg.h" + +1305215599 /usr/include/wx-2.9/wx/generic/textdlgg.h + "wx/defs.h" + "wx/dialog.h" + "wx/valtext.h" + "wx/textctrl.h" + +1305215599 /usr/include/wx-2.9/wx/valtext.h + "wx/defs.h" + "wx/validate.h" + +1305215599 /usr/include/wx-2.9/wx/filedlg.h + "wx/defs.h" + "wx/dialog.h" + "wx/arrstr.h" + "wx/generic/filedlgg.h" + "wx/msw/filedlg.h" + "wx/motif/filedlg.h" + "wx/gtk/filedlg.h" + "wx/gtk1/filedlg.h" + "wx/osx/filedlg.h" + "wx/cocoa/filedlg.h" + "wx/os2/filedlg.h" + "wx/generic/filedlgg.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/filedlg.h + "wx/gtk/filectrl.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/filectrl.h + "wx/control.h" + "wx/filectrl.h" + +1305215599 /usr/include/wx-2.9/wx/filectrl.h + "wx/defs.h" + "wx/string.h" + "wx/event.h" + "wx/gtk/filectrl.h" + "wx/generic/filectrlg.h" + +1305215599 /usr/include/wx-2.9/wx/generic/filectrlg.h + "wx/panel.h" + "wx/listctrl.h" + "wx/filectrl.h" + "wx/filename.h" + +1305215599 /usr/include/wx-2.9/wx/listctrl.h + "wx/defs.h" + "wx/listbase.h" + "wx/msw/listctrl.h" + "wx/osx/listctrl.h" + "wx/generic/listctrl.h" + +1305215599 /usr/include/wx-2.9/wx/listbase.h + "wx/colour.h" + "wx/font.h" + "wx/gdicmn.h" + "wx/event.h" + +1305215600 /usr/include/wx-2.9/wx/generic/listctrl.h + "wx/scrolwin.h" + "wx/textctrl.h" + +1305215598 /usr/include/wx-2.9/wx/filename.h + "wx/arrstr.h" + "wx/filefn.h" + "wx/datetime.h" + "wx/intl.h" + "wx/longlong.h" + "wx/file.h" + +1305215598 /usr/include/wx-2.9/wx/file.h + "wx/defs.h" + "wx/string.h" + "wx/filefn.h" + "wx/strconv.h" + +1305215599 /usr/include/wx-2.9/wx/mdi.h + "wx/defs.h" + "wx/frame.h" + "wx/menu.h" + "wx/generic/mdig.h" + "wx/msw/mdi.h" + "wx/gtk/mdi.h" + "wx/gtk1/mdi.h" + "wx/osx/mdi.h" + "wx/cocoa/mdi.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/mdi.h + "wx/frame.h" + +1306384009 /home/mark/projects/SleepyHead/GUIFrame.h + + + + + + + + + + + + + + + + + + + + +1306397970 source:/home/mark/projects/SleepyHead/SleepyHeadApp.cpp + "wx_pch.h" + + + + + "SleepyHeadApp.h" + "SleepyHeadMain.h" + "version.h" + "sleeplib/prs1_loader.h" + "sleeplib/profiles.h" + +1305881106 /home/mark/projects/SleepyHead/SleepyHeadApp.h + + +1306388386 /home/mark/projects/SleepyHead/SleepyHeadMain.h + "SleepyHeadApp.h" + "GUIFrame.h" + "sleeplib/machine.h" + "graphs/graph.h" + +1306404929 source:/home/mark/projects/SleepyHead/SleepyHeadMain.cpp + "wx_pch.h" + "version.h" + + + + + "SleepyHeadMain.h" + "sleeplib/profiles.h" + +1306140054 source:/home/mark/projects/SleepyHead/libs/mathplot/mathplot.cpp + + "wx/object.h" + "wx/font.h" + "wx/colour.h" + "wx/settings.h" + "wx/sizer.h" + "wx/log.h" + "wx/intl.h" + "wx/dcclient.h" + "wx/cursor.h" + + + "mathplot.h" + + + + + + + + + +1305907912 /home/mark/projects/SleepyHead/libs/mathplot/mathplot.h + + + + + + + + + + + + + + +1305215600 /usr/include/wx-2.9/wx/print.h + "wx/defs.h" + "wx/msw/printwin.h" + "wx/osx/printmac.h" + "wx/os2/printos2.h" + "wx/generic/printps.h" + +1305215599 /usr/include/wx-2.9/wx/generic/printps.h + "wx/prntbase.h" + +1305215600 /usr/include/wx-2.9/wx/prntbase.h + "wx/defs.h" + "wx/event.h" + "wx/cmndata.h" + "wx/panel.h" + "wx/scrolwin.h" + "wx/dialog.h" + "wx/frame.h" + "wx/dc.h" + +1305215600 /usr/include/wx-2.9/wx/tipwin.h + "wx/popupwin.h" + "wx/frame.h" + "wx/arrstr.h" + +1305215600 /usr/include/wx-2.9/wx/popupwin.h + "wx/defs.h" + "wx/nonownedwnd.h" + "wx/msw/popupwin.h" + "wx/os2/popupwin.h" + "wx/gtk/popupwin.h" + "wx/gtk1/popupwin.h" + "wx/x11/popupwin.h" + "wx/motif/popupwin.h" + "wx/dfb/popupwin.h" + "wx/mgl/popupwin.h" + "wx/osx/popupwin.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/popupwin.h + +1305166865 source:/home/mark/projects/SleepyHead/libs/sleeplib/binary_file.cpp + + "binary_file.h" + +1305166865 /home/mark/projects/SleepyHead/libs/sleeplib/binary_file.h + + + +1305215598 /usr/include/wx-2.9/wx/ffile.h + "wx/defs.h" + "wx/string.h" + "wx/filefn.h" + "wx/convauto.h" + + +1305215598 /usr/include/wx-2.9/wx/convauto.h + "wx/strconv.h" + "wx/fontenc.h" + +1305166865 source:/home/mark/projects/SleepyHead/libs/sleeplib/cpap.cpp + "cpap.h" + +1305122425 /home/mark/projects/SleepyHead/libs/sleeplib/cpap.h + + + + + + "machine.h" + +1306386853 /home/mark/projects/SleepyHead/libs/sleeplib/machine.h + + + + + + + + + + "tinyxml/tinyxml.h" + "preferences.h" + +1305215598 /usr/include/wx-2.9/wx/dir.h + "wx/longlong.h" + "wx/string.h" + "wx/filefn.h" + +1305166866 /home/mark/projects/SleepyHead/libs/tinyxml/tinyxml.h + + + + + + + + + "tinystr.h" + +1305166866 /home/mark/projects/SleepyHead/libs/tinyxml/tinystr.h + + + +1305879734 /home/mark/projects/SleepyHead/libs/sleeplib/preferences.h + + + + "tinyxml/tinyxml.h" + +1306405052 source:/home/mark/projects/SleepyHead/libs/sleeplib/machine.cpp + + + + + "binary_file.h" + "machine.h" + "profiles.h" + +1305879734 /home/mark/projects/SleepyHead/libs/sleeplib/profiles.h + + + "machine.h" + "preferences.h" + "tinyxml/tinyxml.h" + +1305166866 source:/home/mark/projects/SleepyHead/libs/sleeplib/machine_loader.cpp + "machine_loader.h" + +1305166866 /home/mark/projects/SleepyHead/libs/sleeplib/machine_loader.h + "profiles.h" + +1305962838 source:/home/mark/projects/SleepyHead/libs/sleeplib/preferences.cpp + + + + + + "preferences.h" + +1305215598 /usr/include/wx-2.9/wx/stdpaths.h + "wx/defs.h" + "wx/string.h" + "wx/filefn.h" + "wx/msw/stdpaths.h" + "wx/osx/core/stdpaths.h" + "wx/os2/stdpaths.h" + "wx/unix/stdpaths.h" + "wx/palmos/stdpaths.h" + +1305215599 /usr/include/wx-2.9/wx/unix/stdpaths.h + +1306404743 source:/home/mark/projects/SleepyHead/libs/sleeplib/prs1_loader.cpp + + + + + + + + + + "prs1_loader.h" + +1305215598 /usr/include/wx-2.9/wx/textfile.h + "wx/defs.h" + "wx/textbuf.h" + "wx/file.h" + +1305215598 /usr/include/wx-2.9/wx/textbuf.h + "wx/defs.h" + "wx/arrstr.h" + "wx/convauto.h" + "wx/string.h" + "wx/dynarray.h" + +1305166866 /home/mark/projects/SleepyHead/libs/sleeplib/prs1_loader.h + "machine.h" + "machine_loader.h" + "profiles.h" + +1305166866 source:/home/mark/projects/SleepyHead/libs/tinyxml/tinystr.cpp + "tinystr.h" + +1305166866 source:/home/mark/projects/SleepyHead/libs/tinyxml/tinyxml.cpp + + + + "tinyxml.h" + +1305166866 source:/home/mark/projects/SleepyHead/libs/tinyxml/tinyxmlerror.cpp + "tinyxml.h" + +1305166866 source:/home/mark/projects/SleepyHead/libs/tinyxml/tinyxmlparser.cpp + + + "tinyxml.h" + + +1306155128 source:/home/mark/projects/SleepyHead/libs/sleeplib/profiles.cpp + + + + + + "preferences.h" + "profiles.h" + "machine.h" + "machine_loader.h" + "tinyxml/tinyxml.h" + +1305215600 /usr/include/wx-2.9/wx/aui/auibook.h + "wx/defs.h" + "wx/aui/framemanager.h" + "wx/aui/dockart.h" + "wx/aui/floatpane.h" + "wx/control.h" + +1305215600 /usr/include/wx-2.9/wx/aui/framemanager.h + "wx/defs.h" + "wx/dynarray.h" + "wx/gdicmn.h" + "wx/window.h" + "wx/timer.h" + "wx/sizer.h" + +1305215600 /usr/include/wx-2.9/wx/aui/dockart.h + "wx/defs.h" + "wx/pen.h" + "wx/brush.h" + "wx/bitmap.h" + "wx/colour.h" + +1305215600 /usr/include/wx-2.9/wx/aui/floatpane.h + "wx/defs.h" + "wx/weakref.h" + "wx/minifram.h" + "wx/frame.h" + +1305215599 /usr/include/wx-2.9/wx/minifram.h + "wx/defs.h" + "wx/palmos/minifram.h" + "wx/msw/minifram.h" + "wx/motif/minifram.h" + "wx/gtk/minifram.h" + "wx/gtk1/minifram.h" + "wx/x11/minifram.h" + "wx/osx/minifram.h" + "wx/os2/minifram.h" + "wx/frame.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/minifram.h + "wx/bitmap.h" + "wx/frame.h" + +1305215601 /usr/include/wx-2.9/wx/aui/aui.h + "wx/aui/framemanager.h" + "wx/aui/dockart.h" + "wx/aui/floatpane.h" + "wx/aui/auibar.h" + "wx/aui/auibook.h" + "wx/aui/tabmdi.h" + +1305215600 /usr/include/wx-2.9/wx/aui/auibar.h + "wx/defs.h" + "wx/control.h" + "wx/sizer.h" + "wx/pen.h" + +1305215600 /usr/include/wx-2.9/wx/aui/tabmdi.h + "wx/frame.h" + "wx/panel.h" + "wx/notebook.h" + "wx/icon.h" + "wx/aui/auibook.h" + +1305215599 /usr/include/wx-2.9/wx/notebook.h + "wx/defs.h" + "wx/bookctrl.h" + "wx/univ/notebook.h" + "wx/msw/notebook.h" + "wx/generic/notebook.h" + "wx/gtk/notebook.h" + "wx/gtk1/notebook.h" + "wx/osx/notebook.h" + "wx/cocoa/notebook.h" + "wx/os2/notebook.h" + +1305215599 /usr/include/wx-2.9/wx/bookctrl.h + "wx/defs.h" + "wx/control.h" + "wx/dynarray.h" + "wx/notebook.h" + "wx/choicebk.h" + +1305215599 /usr/include/wx-2.9/wx/choicebk.h + "wx/defs.h" + "wx/bookctrl.h" + "wx/choice.h" + +1305215599 /usr/include/wx-2.9/wx/generic/notebook.h + "wx/event.h" + "wx/control.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/notebook.h + "wx/list.h" + +1305215600 /usr/include/wx-2.9/wx/html/htmlwin.h + "wx/defs.h" + "wx/window.h" + "wx/scrolwin.h" + "wx/config.h" + "wx/stopwatch.h" + "wx/html/winpars.h" + "wx/html/htmlcell.h" + "wx/filesys.h" + "wx/html/htmlfilt.h" + "wx/filename.h" + "wx/bitmap.h" + +1305215598 /usr/include/wx-2.9/wx/config.h + "wx/confbase.h" + "wx/msw/regconf.h" + "wx/os2/iniconf.h" + "wx/palmos/prefconf.h" + "wx/fileconf.h" + +1305215598 /usr/include/wx-2.9/wx/confbase.h + "wx/defs.h" + "wx/string.h" + "wx/object.h" + "wx/base64.h" + +1305215598 /usr/include/wx-2.9/wx/base64.h + "wx/string.h" + "wx/buffer.h" + +1305215598 /usr/include/wx-2.9/wx/fileconf.h + "wx/defs.h" + "wx/textfile.h" + "wx/string.h" + "wx/confbase.h" + "wx/filename.h" + +1305215600 /usr/include/wx-2.9/wx/html/winpars.h + "wx/defs.h" + "wx/module.h" + "wx/font.h" + "wx/html/htmlpars.h" + "wx/html/htmlcell.h" + "wx/encconv.h" + +1305215600 /usr/include/wx-2.9/wx/html/htmlpars.h + "wx/defs.h" + "wx/html/htmltag.h" + "wx/filesys.h" + "wx/hashmap.h" + "wx/hashset.h" + "wx/vector.h" + "wx/fontenc.h" + +1305215600 /usr/include/wx-2.9/wx/html/htmltag.h + "wx/defs.h" + "wx/object.h" + "wx/arrstr.h" + +1305215598 /usr/include/wx-2.9/wx/filesys.h + "wx/defs.h" + "wx/stream.h" + "wx/datetime.h" + "wx/filename.h" + "wx/hashmap.h" + +1305215598 /usr/include/wx-2.9/wx/hashset.h + "wx/hashmap.h" + + + + + +1305215599 /usr/include/wx-2.9/wx/vector.h + "wx/defs.h" + + + "wx/utils.h" + "wx/scopeguard.h" + "wx/meta/movable.h" + "wx/meta/if.h" + "wx/beforestd.h" + + "wx/afterstd.h" + +1305215600 /usr/include/wx-2.9/wx/scopeguard.h + "wx/defs.h" + "wx/except.h" + +1305215598 /usr/include/wx-2.9/wx/except.h + "wx/defs.h" + +1305215599 /usr/include/wx-2.9/wx/meta/movable.h + "wx/meta/pod.h" + "wx/string.h" + +1305215599 /usr/include/wx-2.9/wx/meta/pod.h + "wx/defs.h" + +1305215600 /usr/include/wx-2.9/wx/html/htmlcell.h + "wx/defs.h" + "wx/html/htmltag.h" + "wx/html/htmldefs.h" + "wx/window.h" + +1305215600 /usr/include/wx-2.9/wx/html/htmldefs.h + "wx/defs.h" + +1305215598 /usr/include/wx-2.9/wx/encconv.h + "wx/defs.h" + "wx/object.h" + "wx/fontenc.h" + "wx/dynarray.h" + +1305215600 /usr/include/wx-2.9/wx/html/htmlfilt.h + "wx/defs.h" + "wx/filesys.h" + +1305215600 /usr/include/wx-2.9/wx/calctrl.h + "wx/defs.h" + "wx/dateevt.h" + "wx/colour.h" + "wx/font.h" + "wx/control.h" + "wx/gtk/calctrl.h" + "wx/msw/calctrl.h" + "wx/generic/calctrlg.h" + +1305215600 /usr/include/wx-2.9/wx/dateevt.h + "wx/event.h" + "wx/datetime.h" + "wx/window.h" + +1305215600 /usr/include/wx-2.9/wx/gtk/calctrl.h + +1305215600 /usr/include/wx-2.9/wx/generic/calctrlg.h + "wx/control.h" + "wx/dcclient.h" + +1306410340 /home/mark/projects/SleepyHead/version.h + +1305976352 /home/mark/projects/SleepyHead/graphs/sleepflagsgraph.h + "mathplot/mathplot.h" + "sleeplib/machine.h" + "cpap_wavegraph.h" + +1306134295 source:/home/mark/projects/SleepyHead/graphs/sleepflagsgraph.cpp + "sleepflagsgraph.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/wxprec.h + "wx/defs.h" + "wx/chartype.h" + "wx/msw/wrapwin.h" + "wx/msw/wrapcctl.h" + "wx/msw/wrapcdlg.h" + "wx/msw/private.h" + "wx/msw/missing.h" + + "wx/os2/private.h" + "wx/mgl/private.h" + "wx/wx.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/defs.h + "wx/platform.h" + "wx/version.h" + "wx/dlimpexp.h" + + "wx/debug.h" + + + "wx/windowid.h" + + "wx/msw/winundef.h" + "wx/features.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/platform.h + + + + + "wx/osx/config_xcode.h" + "wx/setup.h" + "wx/setup_gccxml.h" + "wx/msw/wince/libraries.h" + "wx/msw/libraries.h" + "wx/msw/gccpriv.h" + + + "wx/chkconf.h" + "wx/palmos/missing.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//lib/wx/include/i686-pc-mingw32-msw-unicode-static-2.9/wx/setup.h + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/libraries.h + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/gccpriv.h + <_mingw.h> + + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/chkconf.h + "wx/palmos/chkconf.h" + "wx/msw/wince/chkconf.h" + "wx/msw/chkconf.h" + "wx/gtk/chkconf.h" + "wx/cocoa/chkconf.h" + "wx/osx/chkconf.h" + "wx/os2/chkconf.h" + "wx/mgl/chkconf.h" + "wx/dfb/chkconf.h" + "wx/motif/chkconf.h" + "wx/x11/chkconf.h" + "wx/unix/chkconf.h" + "wx/univ/chkconf.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/chkconf.h + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/version.h + "wx/cpp.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/cpp.h + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/dlimpexp.h + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/debug.h + + + "wx/chartype.h" + "wx/cpp.h" + "wx/dlimpexp.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/chartype.h + "wx/platform.h" + + + + + + + + + + + + + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/windowid.h + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/winundef.h + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/features.h + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/wrapwin.h + "wx/platform.h" + + + "wx/msw/winundef.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/wrapcctl.h + "wx/msw/wrapwin.h" + + "wx/msw/missing.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/missing.h + + "wx/msw/winundef.h" + "wx/msw/wince/missing.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/wrapcdlg.h + "wx/defs.h" + "wx/msw/wrapwin.h" + "wx/msw/private.h" + "wx/msw/missing.h" + + "wx/msw/winundef.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/private.h + "wx/msw/wrapwin.h" + "wx/msw/microwin.h" + "wx/log.h" + "wx/window.h" + "wx/gdicmn.h" + "wx/colour.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/log.h + "wx/defs.h" + "wx/string.h" + "wx/strvararg.h" + "wx/arrstr.h" + + "wx/dynarray.h" + "wx/hashmap.h" + "wx/thread.h" + "wx/iosfwrap.h" + "wx/generic/logg.h" + "wx/cocoa/log.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/string.h + "wx/defs.h" + + + + + + + + + + + + "wx/wxcrtbase.h" + "wx/strvararg.h" + "wx/buffer.h" + "wx/strconv.h" + "wx/stringimpl.h" + "wx/stringops.h" + "wx/unichar.h" + "wx/tls.h" + "wx/iosfwrap.h" + "wx/crt.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/wxcrtbase.h + "wx/chartype.h" + + + + + + + + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/strvararg.h + "wx/platform.h" + "wx/cpp.h" + "wx/chartype.h" + "wx/strconv.h" + "wx/buffer.h" + "wx/unichar.h" + + + + "wx/stringimpl.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/strconv.h + "wx/defs.h" + "wx/chartype.h" + "wx/buffer.h" + "typeinfo.h" + + "wx/fontenc.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/buffer.h + "wx/chartype.h" + "wx/wxcrtbase.h" + + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/typeinfo.h + "wx/defs.h" + + + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/fontenc.h + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/unichar.h + "wx/defs.h" + "wx/chartype.h" + "wx/stringimpl.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/stringimpl.h + "wx/defs.h" + "wx/chartype.h" + "wx/wxcrtbase.h" + + "wx/beforestd.h" + + "wx/afterstd.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/beforestd.h + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/afterstd.h + "wx/msw/winundef.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/stringops.h + "wx/chartype.h" + "wx/stringimpl.h" + "wx/unichar.h" + "wx/buffer.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/tls.h + "wx/defs.h" + "wx/msw/tls.h" + "wx/os2/tls.h" + "wx/unix/tls.h" + + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/iosfwrap.h + + + "wx/msw/winundef.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/crt.h + "wx/defs.h" + "wx/chartype.h" + "wx/wxcrt.h" + "wx/wxcrtvararg.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/wxcrt.h + "wx/wxcrtbase.h" + "wx/string.h" + + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/wxcrtvararg.h + "wx/wxcrt.h" + "wx/strvararg.h" + "wx/string.h" + + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/arrstr.h + "wx/defs.h" + "wx/string.h" + "wx/dynarray.h" + "wx/beforestd.h" + + "wx/afterstd.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/dynarray.h + "wx/defs.h" + "wx/beforestd.h" + + + "wx/afterstd.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/hashmap.h + "wx/string.h" + "wx/wxcrt.h" + + + + + + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/thread.h + "wx/defs.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/generic/logg.h + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/window.h + "wx/event.h" + "wx/list.h" + "wx/cursor.h" + "wx/font.h" + "wx/colour.h" + "wx/region.h" + "wx/utils.h" + "wx/intl.h" + "wx/validate.h" + "wx/palette.h" + "wx/accel.h" + "wx/access.h" + "wx/palmos/window.h" + "wx/msw/window.h" + "wx/motif/window.h" + "wx/gtk/window.h" + "wx/gtk1/window.h" + "wx/x11/window.h" + "wx/mgl/window.h" + "wx/dfb/window.h" + "wx/osx/window.h" + "wx/cocoa/window.h" + "wx/os2/window.h" + "wx/univ/window.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/event.h + "wx/defs.h" + "wx/cpp.h" + "wx/object.h" + "wx/clntdata.h" + "wx/gdicmn.h" + "wx/cursor.h" + "wx/mousestate.h" + "wx/dynarray.h" + "wx/thread.h" + "wx/tracker.h" + "wx/typeinfo.h" + "wx/any.h" + "wx/meta/convertible.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/object.h + "wx/memory.h" + "wx/xti.h" + "wx/rtti.h" + "wx/xti2.h" + "wx/msw/msvcrt.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/memory.h + "wx/defs.h" + "wx/string.h" + "wx/msgout.h" + + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msgout.h + "wx/defs.h" + "wx/chartype.h" + "wx/strvararg.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/xti.h + "wx/defs.h" + "wx/xtitypes.h" + "wx/xtihandler.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/xtitypes.h + "wx/defs.h" + "wx/string.h" + "wx/hashmap.h" + "wx/arrstr.h" + "wx/flags.h" + "wx/intl.h" + "wx/log.h" + + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/flags.h + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/intl.h + "wx/defs.h" + "wx/string.h" + "wx/translation.h" + "wx/fontenc.h" + "wx/language.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/translation.h + "wx/defs.h" + "wx/string.h" + "wx/buffer.h" + "wx/language.h" + "wx/hashmap.h" + "wx/strconv.h" + "wx/scopedptr.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/language.h + "wx/defs.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/scopedptr.h + "wx/defs.h" + "wx/checkeddelete.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/checkeddelete.h + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/xtihandler.h + "wx/defs.h" + "wx/xti.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/rtti.h + "wx/memory.h" + "wx/flags.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/xti2.h + "wx/xtiprop.h" + "wx/xtictor.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/xtiprop.h + "wx/defs.h" + "wx/xti.h" + "wx/any.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/any.h + "wx/defs.h" + + "wx/string.h" + "wx/meta/if.h" + "wx/typeinfo.h" + "wx/list.h" + "wx/datetime.h" + "wx/variant.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/meta/if.h + "wx/defs.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/list.h + "wx/defs.h" + "wx/object.h" + "wx/string.h" + "wx/beforestd.h" + + + + "wx/afterstd.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/datetime.h + "wx/defs.h" + "wx/msw/wince/time.h" + + + "wx/longlong.h" + "wx/anystr.h" + "wx/dynarray.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/longlong.h + "wx/defs.h" + "wx/string.h" + + "wx/iosfwrap.h" + + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/anystr.h + "wx/string.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/variant.h + "wx/defs.h" + "wx/object.h" + "wx/string.h" + "wx/arrstr.h" + "wx/list.h" + "wx/cpp.h" + "wx/longlong.h" + "wx/datetime.h" + "wx/iosfwrap.h" + "wx/any.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/xtictor.h + "wx/defs.h" + "wx/xti.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/msvcrt.h + + + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/clntdata.h + "wx/defs.h" + "wx/string.h" + "wx/hashmap.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/gdicmn.h + "wx/defs.h" + "wx/list.h" + "wx/string.h" + "wx/fontenc.h" + "wx/hashmap.h" + "wx/math.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/math.h + "wx/defs.h" + + + + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/cursor.h + "wx/defs.h" + "wx/palmos/cursor.h" + "wx/msw/cursor.h" + "wx/motif/cursor.h" + "wx/gtk/cursor.h" + "wx/gtk1/cursor.h" + "wx/x11/cursor.h" + "wx/mgl/cursor.h" + "wx/dfb/cursor.h" + "wx/osx/cursor.h" + "wx/cocoa/cursor.h" + "wx/os2/cursor.h" + "wx/utils.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/cursor.h + "wx/msw/gdiimage.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/gdiimage.h + "wx/gdiobj.h" + "wx/gdicmn.h" + "wx/list.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/gdiobj.h + "wx/object.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/utils.h + "wx/object.h" + "wx/list.h" + "wx/filefn.h" + "wx/hashmap.h" + "wx/versioninfo.h" + "wx/meta/implicitconversion.h" + "wx/gdicmn.h" + "wx/mousestate.h" + "wx/longlong.h" + "wx/platinfo.h" + + + + + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/filefn.h + "wx/list.h" + "wx/arrstr.h" + "wx/msw/wince/time.h" + "wx/msw/private.h" + + + + + + + + + + + + "wx/os2/private.h" + + + + + + + + + + + + + + + + + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/versioninfo.h + "wx/string.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/meta/implicitconversion.h + "wx/defs.h" + "wx/meta/if.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/mousestate.h + "wx/gdicmn.h" + "wx/kbdstate.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/kbdstate.h + "wx/defs.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/platinfo.h + "wx/string.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/tracker.h + "wx/defs.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/meta/convertible.h + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/font.h + "wx/defs.h" + "wx/fontenc.h" + "wx/gdiobj.h" + "wx/gdicmn.h" + "wx/palmos/font.h" + "wx/msw/font.h" + "wx/motif/font.h" + "wx/gtk/font.h" + "wx/gtk1/font.h" + "wx/x11/font.h" + "wx/mgl/font.h" + "wx/dfb/font.h" + "wx/osx/font.h" + "wx/cocoa/font.h" + "wx/os2/font.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/font.h + "wx/gdicmn.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/colour.h + "wx/defs.h" + "wx/gdiobj.h" + "wx/variant.h" + "wx/generic/colour.h" + "wx/msw/colour.h" + "wx/motif/colour.h" + "wx/gtk/colour.h" + "wx/gtk1/colour.h" + "wx/generic/colour.h" + "wx/generic/colour.h" + "wx/x11/colour.h" + "wx/osx/colour.h" + "wx/cocoa/colour.h" + "wx/os2/colour.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/colour.h + "wx/object.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/region.h + "wx/gdiobj.h" + "wx/gdicmn.h" + "wx/palmos/region.h" + "wx/msw/region.h" + "wx/gtk/region.h" + "wx/gtk1/region.h" + "wx/x11/region.h" + "wx/mgl/region.h" + "wx/dfb/region.h" + "wx/osx/region.h" + "wx/cocoa/region.h" + "wx/os2/region.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/region.h + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/validate.h + "wx/defs.h" + "wx/event.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/palette.h + "wx/defs.h" + "wx/object.h" + "wx/gdiobj.h" + "wx/palmos/palette.h" + "wx/msw/palette.h" + "wx/x11/palette.h" + "wx/generic/paletteg.h" + "wx/mgl/palette.h" + "wx/osx/palette.h" + "wx/os2/palette.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/palette.h + "wx/gdiobj.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/accel.h + "wx/defs.h" + "wx/object.h" + "wx/generic/accel.h" + "wx/msw/accel.h" + "wx/motif/accel.h" + "wx/gtk/accel.h" + "wx/gtk1/accel.h" + "wx/osx/accel.h" + "wx/generic/accel.h" + "wx/os2/accel.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/generic/accel.h + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/accel.h + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/access.h + "wx/defs.h" + "wx/variant.h" + "wx/msw/ole/access.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/ole/access.h + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/window.h + "wx/settings.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/settings.h + "wx/colour.h" + "wx/font.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/wx.h + "wx/defs.h" + "wx/object.h" + "wx/dynarray.h" + "wx/list.h" + "wx/hash.h" + "wx/string.h" + "wx/hashmap.h" + "wx/arrstr.h" + "wx/intl.h" + "wx/log.h" + "wx/event.h" + "wx/app.h" + "wx/utils.h" + "wx/stream.h" + "wx/memory.h" + "wx/math.h" + "wx/stopwatch.h" + "wx/timer.h" + "wx/module.h" + "wx/wxcrt.h" + "wx/wxcrtvararg.h" + "wx/window.h" + "wx/containr.h" + "wx/panel.h" + "wx/toplevel.h" + "wx/frame.h" + "wx/gdicmn.h" + "wx/gdiobj.h" + "wx/region.h" + "wx/bitmap.h" + "wx/image.h" + "wx/colour.h" + "wx/font.h" + "wx/dc.h" + "wx/dcclient.h" + "wx/dcmemory.h" + "wx/dcprint.h" + "wx/dcscreen.h" + "wx/button.h" + "wx/menuitem.h" + "wx/menu.h" + "wx/pen.h" + "wx/brush.h" + "wx/palette.h" + "wx/icon.h" + "wx/cursor.h" + "wx/dialog.h" + "wx/settings.h" + "wx/msgdlg.h" + "wx/dataobj.h" + "wx/control.h" + "wx/ctrlsub.h" + "wx/bmpbuttn.h" + "wx/checkbox.h" + "wx/checklst.h" + "wx/choice.h" + "wx/scrolbar.h" + "wx/stattext.h" + "wx/statbmp.h" + "wx/statbox.h" + "wx/listbox.h" + "wx/radiobox.h" + "wx/radiobut.h" + "wx/textctrl.h" + "wx/slider.h" + "wx/gauge.h" + "wx/scrolwin.h" + "wx/dirdlg.h" + "wx/toolbar.h" + "wx/combobox.h" + "wx/layout.h" + "wx/sizer.h" + "wx/statusbr.h" + "wx/choicdlg.h" + "wx/textdlg.h" + "wx/filedlg.h" + "wx/mdi.h" + "wx/validate.h" + "wx/valtext.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/hash.h + "wx/defs.h" + "wx/string.h" + "wx/object.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/app.h + "wx/event.h" + "wx/build.h" + "wx/cmdargs.h" + "wx/init.h" + "wx/intl.h" + "wx/log.h" + "wx/unix/app.h" + "wx/palmos/app.h" + "wx/msw/app.h" + "wx/motif/app.h" + "wx/mgl/app.h" + "wx/dfb/app.h" + "wx/gtk/app.h" + "wx/gtk1/app.h" + "wx/x11/app.h" + "wx/osx/app.h" + "wx/cocoa/app.h" + "wx/os2/app.h" + "wx/univ/theme.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/build.h + "wx/version.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/cmdargs.h + "wx/arrstr.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/init.h + "wx/defs.h" + "wx/chartype.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/app.h + "wx/event.h" + "wx/icon.h" + "wx/msw/wrapwin.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/icon.h + "wx/iconloc.h" + "wx/generic/icon.h" + "wx/msw/icon.h" + "wx/motif/icon.h" + "wx/generic/icon.h" + "wx/generic/icon.h" + "wx/generic/icon.h" + "wx/generic/icon.h" + "wx/generic/icon.h" + "wx/osx/icon.h" + "wx/generic/icon.h" + "wx/cocoa/icon.h" + "wx/os2/icon.h" + "wx/variant.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/iconloc.h + "wx/string.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/icon.h + "wx/msw/gdiimage.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/stream.h + "wx/defs.h" + + "wx/object.h" + "wx/string.h" + "wx/filefn.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/stopwatch.h + "wx/defs.h" + "wx/longlong.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/timer.h + "wx/defs.h" + "wx/object.h" + "wx/longlong.h" + "wx/event.h" + "wx/stopwatch.h" + "wx/utils.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/module.h + "wx/object.h" + "wx/list.h" + "wx/arrstr.h" + "wx/dynarray.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/containr.h + "wx/defs.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/panel.h + "wx/window.h" + "wx/containr.h" + "wx/univ/panel.h" + "wx/msw/panel.h" + "wx/generic/panelg.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/panel.h + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/generic/panelg.h + "wx/bitmap.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/bitmap.h + "wx/string.h" + "wx/gdicmn.h" + "wx/colour.h" + "wx/image.h" + "wx/variant.h" + "wx/palmos/bitmap.h" + "wx/msw/bitmap.h" + "wx/x11/bitmap.h" + "wx/gtk/bitmap.h" + "wx/gtk1/bitmap.h" + "wx/x11/bitmap.h" + "wx/mgl/bitmap.h" + "wx/dfb/bitmap.h" + "wx/osx/bitmap.h" + "wx/cocoa/bitmap.h" + "wx/os2/bitmap.h" + "wx/generic/mask.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/image.h + "wx/defs.h" + "wx/object.h" + "wx/string.h" + "wx/gdicmn.h" + "wx/hashmap.h" + "wx/arrstr.h" + "wx/stream.h" + "wx/variant.h" + "wx/imagbmp.h" + "wx/imagpng.h" + "wx/imaggif.h" + "wx/imagpcx.h" + "wx/imagjpeg.h" + "wx/imagtga.h" + "wx/imagtiff.h" + "wx/imagpnm.h" + "wx/imagxpm.h" + "wx/imagiff.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/imagbmp.h + "wx/image.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/imagpng.h + "wx/defs.h" + "wx/image.h" + "wx/versioninfo.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/imaggif.h + "wx/image.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/imagpcx.h + "wx/image.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/imagjpeg.h + "wx/defs.h" + "wx/image.h" + "wx/versioninfo.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/imagtga.h + "wx/image.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/imagtiff.h + "wx/defs.h" + "wx/image.h" + "wx/versioninfo.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/imagpnm.h + "wx/image.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/imagxpm.h + "wx/image.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/imagiff.h + "wx/image.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/bitmap.h + "wx/msw/gdiimage.h" + "wx/palette.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/toplevel.h + "wx/nonownedwnd.h" + "wx/iconbndl.h" + "wx/containr.h" + "wx/weakref.h" + "wx/palmos/toplevel.h" + "wx/msw/toplevel.h" + "wx/gtk/toplevel.h" + "wx/gtk1/toplevel.h" + "wx/x11/toplevel.h" + "wx/mgl/toplevel.h" + "wx/dfb/toplevel.h" + "wx/osx/toplevel.h" + "wx/cocoa/toplevel.h" + "wx/os2/toplevel.h" + "wx/motif/toplevel.h" + "wx/univ/toplevel.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/nonownedwnd.h + "wx/dfb/nonownedwnd.h" + "wx/osx/nonownedwnd.h" + "wx/window.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/iconbndl.h + "wx/gdiobj.h" + "wx/gdicmn.h" + "wx/icon.h" + "wx/dynarray.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/weakref.h + "wx/tracker.h" + "wx/meta/convertible.h" + "wx/meta/int2type.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/meta/int2type.h + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/toplevel.h + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/frame.h + "wx/toplevel.h" + "wx/statusbr.h" + "wx/univ/frame.h" + "wx/palmos/frame.h" + "wx/msw/frame.h" + "wx/gtk/frame.h" + "wx/gtk1/frame.h" + "wx/motif/frame.h" + "wx/osx/frame.h" + "wx/cocoa/frame.h" + "wx/os2/frame.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/statusbr.h + "wx/defs.h" + "wx/control.h" + "wx/list.h" + "wx/dynarray.h" + "wx/univ/statusbr.h" + "wx/palmos/statusbr.h" + "wx/msw/statusbar.h" + "wx/generic/statusbr.h" + "wx/osx/statusbr.h" + "wx/generic/statusbr.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/control.h + "wx/defs.h" + "wx/window.h" + "wx/univ/control.h" + "wx/palmos/control.h" + "wx/msw/control.h" + "wx/motif/control.h" + "wx/gtk/control.h" + "wx/gtk1/control.h" + "wx/osx/control.h" + "wx/cocoa/control.h" + "wx/os2/control.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/control.h + "wx/dynarray.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/statusbar.h + "wx/vector.h" + "wx/tooltip.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/vector.h + "wx/defs.h" + + + "wx/utils.h" + "wx/scopeguard.h" + "wx/meta/movable.h" + "wx/meta/if.h" + "wx/beforestd.h" + + "wx/afterstd.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/scopeguard.h + "wx/defs.h" + "wx/except.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/except.h + "wx/defs.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/meta/movable.h + "wx/meta/pod.h" + "wx/string.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/meta/pod.h + "wx/defs.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/tooltip.h + "wx/defs.h" + "wx/msw/tooltip.h" + "wx/gtk/tooltip.h" + "wx/gtk1/tooltip.h" + "wx/osx/tooltip.h" + "wx/cocoa/tooltip.h" + "wx/os2/tooltip.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/tooltip.h + "wx/object.h" + "wx/gdicmn.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/frame.h + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/dc.h + "wx/object.h" + "wx/intl.h" + "wx/cursor.h" + "wx/font.h" + "wx/colour.h" + "wx/bitmap.h" + "wx/brush.h" + "wx/pen.h" + "wx/palette.h" + "wx/dynarray.h" + "wx/math.h" + "wx/image.h" + "wx/region.h" + "wx/affinematrix2d.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/brush.h + "wx/defs.h" + "wx/object.h" + "wx/gdiobj.h" + "wx/gdicmn.h" + "wx/palmos/brush.h" + "wx/msw/brush.h" + "wx/x11/brush.h" + "wx/gtk/brush.h" + "wx/gtk1/brush.h" + "wx/mgl/brush.h" + "wx/dfb/brush.h" + "wx/osx/brush.h" + "wx/cocoa/brush.h" + "wx/os2/brush.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/brush.h + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/pen.h + "wx/gdiobj.h" + "wx/gdicmn.h" + "wx/palmos/pen.h" + "wx/msw/pen.h" + "wx/x11/pen.h" + "wx/gtk/pen.h" + "wx/gtk1/pen.h" + "wx/mgl/pen.h" + "wx/dfb/pen.h" + "wx/osx/pen.h" + "wx/cocoa/pen.h" + "wx/os2/pen.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/pen.h + "wx/gdiobj.h" + "wx/gdicmn.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/affinematrix2d.h + "wx/affinematrix2dbase.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/affinematrix2dbase.h + "wx/defs.h" + "wx/geometry.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/geometry.h + "wx/defs.h" + "wx/utils.h" + "wx/gdicmn.h" + "wx/math.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/dcclient.h + "wx/dc.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/dcmemory.h + "wx/dc.h" + "wx/bitmap.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/dcprint.h + "wx/defs.h" + "wx/dc.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/dcscreen.h + "wx/defs.h" + "wx/dc.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/button.h + "wx/defs.h" + "wx/bitmap.h" + "wx/control.h" + "wx/univ/button.h" + "wx/msw/button.h" + "wx/motif/button.h" + "wx/gtk/button.h" + "wx/gtk1/button.h" + "wx/osx/button.h" + "wx/cocoa/button.h" + "wx/os2/button.h" + "wx/palmos/button.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/button.h + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/menuitem.h + "wx/defs.h" + "wx/object.h" + "wx/univ/menuitem.h" + "wx/palmos/menuitem.h" + "wx/msw/menuitem.h" + "wx/motif/menuitem.h" + "wx/gtk/menuitem.h" + "wx/gtk1/menuitem.h" + "wx/osx/menuitem.h" + "wx/cocoa/menuitem.h" + "wx/os2/menuitem.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/menuitem.h + "wx/ownerdrw.h" + "wx/bitmap.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/ownerdrw.h + "wx/defs.h" + "wx/font.h" + "wx/colour.h" + "wx/msw/ownerdrw.h" + "wx/os2/ownerdrw.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/ownerdrw.h + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/menu.h + "wx/defs.h" + "wx/list.h" + "wx/window.h" + "wx/menuitem.h" + "wx/univ/menu.h" + "wx/palmos/menu.h" + "wx/msw/menu.h" + "wx/motif/menu.h" + "wx/gtk/menu.h" + "wx/gtk1/menu.h" + "wx/osx/menu.h" + "wx/cocoa/menu.h" + "wx/os2/menu.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/menu.h + "wx/accel.h" + "wx/dynarray.h" + "wx/arrstr.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/dialog.h + "wx/defs.h" + "wx/toplevel.h" + "wx/univ/dialog.h" + "wx/palmos/dialog.h" + "wx/msw/dialog.h" + "wx/motif/dialog.h" + "wx/gtk/dialog.h" + "wx/gtk1/dialog.h" + "wx/osx/dialog.h" + "wx/cocoa/dialog.h" + "wx/os2/dialog.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/dialog.h + "wx/panel.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msgdlg.h + "wx/defs.h" + "wx/dialog.h" + "wx/stockitem.h" + "wx/generic/msgdlgg.h" + "wx/cocoa/msgdlg.h" + "wx/palmos/msgdlg.h" + "wx/msw/msgdlg.h" + "wx/motif/msgdlg.h" + "wx/gtk/msgdlg.h" + "wx/osx/msgdlg.h" + "wx/os2/msgdlg.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/stockitem.h + "wx/defs.h" + "wx/chartype.h" + "wx/string.h" + "wx/accel.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/generic/msgdlgg.h + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/msgdlg.h + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/dataobj.h + "wx/defs.h" + "wx/string.h" + "wx/bitmap.h" + "wx/list.h" + "wx/arrstr.h" + "wx/msw/ole/dataform.h" + "wx/motif/dataform.h" + "wx/gtk/dataform.h" + "wx/gtk1/dataform.h" + "wx/x11/dataform.h" + "wx/osx/dataform.h" + "wx/cocoa/dataform.h" + "wx/os2/dataform.h" + "wx/msw/ole/dataobj.h" + "wx/motif/dataobj.h" + "wx/x11/dataobj.h" + "wx/gtk/dataobj.h" + "wx/gtk1/dataobj.h" + "wx/osx/dataobj.h" + "wx/cocoa/dataobj.h" + "wx/os2/dataobj.h" + "wx/msw/ole/dataobj2.h" + "wx/gtk/dataobj2.h" + "wx/gtk1/dataobj2.h" + "wx/x11/dataobj2.h" + "wx/motif/dataobj2.h" + "wx/osx/dataobj2.h" + "wx/cocoa/dataobj2.h" + "wx/os2/dataobj2.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/ole/dataform.h + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/ole/dataobj.h + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/ole/dataobj2.h + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/ctrlsub.h + "wx/defs.h" + "wx/arrstr.h" + "wx/control.h" + "wx/msw/ctrlsub.h" + "wx/motif/ctrlsub.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/ctrlsub.h + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/bmpbuttn.h + "wx/defs.h" + "wx/button.h" + "wx/univ/bmpbuttn.h" + "wx/msw/bmpbuttn.h" + "wx/motif/bmpbuttn.h" + "wx/gtk/bmpbuttn.h" + "wx/gtk1/bmpbuttn.h" + "wx/osx/bmpbuttn.h" + "wx/cocoa/bmpbuttn.h" + "wx/os2/bmpbuttn.h" + "wx/palmos/bmpbuttn.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/bmpbuttn.h + "wx/button.h" + "wx/bitmap.h" + "wx/brush.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/checkbox.h + "wx/defs.h" + "wx/control.h" + "wx/univ/checkbox.h" + "wx/msw/checkbox.h" + "wx/motif/checkbox.h" + "wx/gtk/checkbox.h" + "wx/gtk1/checkbox.h" + "wx/osx/checkbox.h" + "wx/cocoa/checkbox.h" + "wx/os2/checkbox.h" + "wx/palmos/checkbox.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/checkbox.h + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/checklst.h + "wx/defs.h" + "wx/listbox.h" + "wx/univ/checklst.h" + "wx/msw/wince/checklst.h" + "wx/msw/checklst.h" + "wx/motif/checklst.h" + "wx/gtk/checklst.h" + "wx/gtk1/checklst.h" + "wx/osx/checklst.h" + "wx/cocoa/checklst.h" + "wx/os2/checklst.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/listbox.h + "wx/defs.h" + "wx/ctrlsub.h" + "wx/univ/listbox.h" + "wx/msw/listbox.h" + "wx/motif/listbox.h" + "wx/gtk/listbox.h" + "wx/gtk1/listbox.h" + "wx/osx/listbox.h" + "wx/os2/listbox.h" + "wx/cocoa/listbox.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/listbox.h + "wx/dynarray.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/checklst.h + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/choice.h + "wx/defs.h" + "wx/ctrlsub.h" + "wx/univ/choice.h" + "wx/msw/wince/choicece.h" + "wx/msw/choice.h" + "wx/motif/choice.h" + "wx/gtk/choice.h" + "wx/gtk1/choice.h" + "wx/osx/choice.h" + "wx/cocoa/choice.h" + "wx/os2/choice.h" + "wx/palmos/choice.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/choice.h + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/scrolbar.h + "wx/defs.h" + "wx/control.h" + "wx/univ/scrolbar.h" + "wx/msw/scrolbar.h" + "wx/motif/scrolbar.h" + "wx/gtk/scrolbar.h" + "wx/gtk1/scrolbar.h" + "wx/osx/scrolbar.h" + "wx/cocoa/scrolbar.h" + "wx/os2/scrolbar.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/scrolbar.h + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/stattext.h + "wx/defs.h" + "wx/control.h" + "wx/univ/stattext.h" + "wx/msw/stattext.h" + "wx/motif/stattext.h" + "wx/gtk/stattext.h" + "wx/gtk1/stattext.h" + "wx/osx/stattext.h" + "wx/cocoa/stattext.h" + "wx/os2/stattext.h" + "wx/palmos/stattext.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/stattext.h + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/statbmp.h + "wx/defs.h" + "wx/control.h" + "wx/bitmap.h" + "wx/icon.h" + "wx/univ/statbmp.h" + "wx/msw/statbmp.h" + "wx/motif/statbmp.h" + "wx/gtk/statbmp.h" + "wx/gtk1/statbmp.h" + "wx/osx/statbmp.h" + "wx/cocoa/statbmp.h" + "wx/os2/statbmp.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/statbmp.h + "wx/control.h" + "wx/icon.h" + "wx/bitmap.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/statbox.h + "wx/defs.h" + "wx/control.h" + "wx/univ/statbox.h" + "wx/msw/statbox.h" + "wx/motif/statbox.h" + "wx/gtk/statbox.h" + "wx/gtk1/statbox.h" + "wx/osx/statbox.h" + "wx/cocoa/statbox.h" + "wx/os2/statbox.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/statbox.h + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/radiobox.h + "wx/defs.h" + "wx/ctrlsub.h" + "wx/dynarray.h" + "wx/univ/radiobox.h" + "wx/msw/radiobox.h" + "wx/motif/radiobox.h" + "wx/gtk/radiobox.h" + "wx/gtk1/radiobox.h" + "wx/osx/radiobox.h" + "wx/cocoa/radiobox.h" + "wx/os2/radiobox.h" + "wx/palmos/radiobox.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/radiobox.h + "wx/statbox.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/radiobut.h + "wx/defs.h" + "wx/control.h" + "wx/univ/radiobut.h" + "wx/msw/radiobut.h" + "wx/motif/radiobut.h" + "wx/gtk/radiobut.h" + "wx/gtk1/radiobut.h" + "wx/osx/radiobut.h" + "wx/cocoa/radiobut.h" + "wx/os2/radiobut.h" + "wx/palmos/radiobut.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/radiobut.h + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/textctrl.h + "wx/defs.h" + "wx/control.h" + "wx/textentry.h" + "wx/dynarray.h" + "wx/gdicmn.h" + "wx/ioswrap.h" + "wx/x11/textctrl.h" + "wx/univ/textctrl.h" + "wx/msw/wince/textctrlce.h" + "wx/msw/textctrl.h" + "wx/motif/textctrl.h" + "wx/gtk/textctrl.h" + "wx/gtk1/textctrl.h" + "wx/osx/textctrl.h" + "wx/cocoa/textctrl.h" + "wx/os2/textctrl.h" + "wx/palmos/textctrl.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/textentry.h + "wx/gdicmn.h" + "wx/gtk/textentry.h" + "wx/osx/textentry.h" + "wx/msw/textentry.h" + "wx/motif/textentry.h" + "wx/os2/textentry.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/textentry.h + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/ioswrap.h + "wx/beforestd.h" + + + "wx/afterstd.h" + "wx/msw/winundef.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/textctrl.h + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/slider.h + "wx/defs.h" + "wx/control.h" + "wx/univ/slider.h" + "wx/msw/slider.h" + "wx/motif/slider.h" + "wx/gtk/slider.h" + "wx/gtk1/slider.h" + "wx/osx/slider.h" + "wx/cocoa/slider.h" + "wx/os2/slider.h" + "wx/palmos/slider.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/slider.h + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/gauge.h + "wx/defs.h" + "wx/control.h" + "wx/univ/gauge.h" + "wx/msw/gauge.h" + "wx/motif/gauge.h" + "wx/gtk/gauge.h" + "wx/gtk1/gauge.h" + "wx/osx/gauge.h" + "wx/cocoa/gauge.h" + "wx/os2/gauge.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/gauge.h + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/scrolwin.h + "wx/panel.h" + "wx/gtk/scrolwin.h" + "wx/gtk1/scrolwin.h" + "wx/generic/scrolwin.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/generic/scrolwin.h + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/dirdlg.h + "wx/dialog.h" + "wx/generic/dirdlgg.h" + "wx/generic/dirdlgg.h" + "wx/generic/dirdlgg.h" + "wx/msw/dirdlg.h" + "wx/gtk/dirdlg.h" + "wx/generic/dirdlgg.h" + "wx/osx/dirdlg.h" + "wx/cocoa/dirdlg.h" + "wx/generic/dirdlgg.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/dirdlg.h + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/toolbar.h + "wx/defs.h" + "wx/tbarbase.h" + "wx/univ/toolbar.h" + "wx/palmos/toolbar.h" + "wx/msw/toolbar.h" + "wx/msw/wince/tbarwce.h" + "wx/motif/toolbar.h" + "wx/gtk/toolbar.h" + "wx/gtk1/toolbar.h" + "wx/osx/toolbar.h" + "wx/cocoa/toolbar.h" + "wx/os2/toolbar.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/tbarbase.h + "wx/defs.h" + "wx/bitmap.h" + "wx/list.h" + "wx/control.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/toolbar.h + "wx/dynarray.h" + "wx/imaglist.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/imaglist.h + "wx/defs.h" + "wx/generic/imaglist.h" + "wx/msw/imaglist.h" + "wx/osx/imaglist.h" + "wx/palmos/imaglist.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/imaglist.h + "wx/bitmap.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/combobox.h + "wx/defs.h" + "wx/ctrlsub.h" + "wx/textentry.h" + "wx/univ/combobox.h" + "wx/msw/combobox.h" + "wx/motif/combobox.h" + "wx/gtk/combobox.h" + "wx/gtk1/combobox.h" + "wx/osx/combobox.h" + "wx/cocoa/combobox.h" + "wx/os2/combobox.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/combobox.h + "wx/choice.h" + "wx/textentry.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/layout.h + "wx/object.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/sizer.h + "wx/defs.h" + "wx/window.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/choicdlg.h + "wx/generic/choicdgg.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/generic/choicdgg.h + "wx/dynarray.h" + "wx/dialog.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/textdlg.h + "wx/generic/textdlgg.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/generic/textdlgg.h + "wx/defs.h" + "wx/dialog.h" + "wx/valtext.h" + "wx/textctrl.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/valtext.h + "wx/defs.h" + "wx/validate.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/filedlg.h + "wx/defs.h" + "wx/dialog.h" + "wx/arrstr.h" + "wx/generic/filedlgg.h" + "wx/msw/filedlg.h" + "wx/motif/filedlg.h" + "wx/gtk/filedlg.h" + "wx/gtk1/filedlg.h" + "wx/osx/filedlg.h" + "wx/cocoa/filedlg.h" + "wx/os2/filedlg.h" + "wx/generic/filedlgg.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/filedlg.h + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/mdi.h + "wx/defs.h" + "wx/frame.h" + "wx/menu.h" + "wx/generic/mdig.h" + "wx/msw/mdi.h" + "wx/gtk/mdi.h" + "wx/gtk1/mdi.h" + "wx/osx/mdi.h" + "wx/cocoa/mdi.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/mdi.h + "wx/frame.h" + +1305615470 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/aui/auibook.h + "wx/defs.h" + "wx/aui/framemanager.h" + "wx/aui/dockart.h" + "wx/aui/floatpane.h" + "wx/control.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/aui/framemanager.h + "wx/defs.h" + "wx/dynarray.h" + "wx/gdicmn.h" + "wx/window.h" + "wx/timer.h" + "wx/sizer.h" + "wx/bitmap.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/aui/dockart.h + "wx/defs.h" + "wx/pen.h" + "wx/brush.h" + "wx/bitmap.h" + "wx/colour.h" + +1305615470 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/aui/floatpane.h + "wx/defs.h" + "wx/weakref.h" + "wx/minifram.h" + "wx/frame.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/minifram.h + "wx/defs.h" + "wx/palmos/minifram.h" + "wx/msw/minifram.h" + "wx/motif/minifram.h" + "wx/gtk/minifram.h" + "wx/gtk1/minifram.h" + "wx/x11/minifram.h" + "wx/osx/minifram.h" + "wx/os2/minifram.h" + "wx/frame.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/minifram.h + "wx/frame.h" + +1305615470 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/aui/aui.h + "wx/aui/framemanager.h" + "wx/aui/dockart.h" + "wx/aui/floatpane.h" + "wx/aui/auibar.h" + "wx/aui/auibook.h" + "wx/aui/tabmdi.h" + +1305615470 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/aui/auibar.h + "wx/defs.h" + "wx/control.h" + "wx/sizer.h" + "wx/pen.h" + +1305615470 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/aui/tabmdi.h + "wx/frame.h" + "wx/panel.h" + "wx/notebook.h" + "wx/icon.h" + "wx/aui/auibook.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/notebook.h + "wx/defs.h" + "wx/bookctrl.h" + "wx/univ/notebook.h" + "wx/msw/notebook.h" + "wx/generic/notebook.h" + "wx/gtk/notebook.h" + "wx/gtk1/notebook.h" + "wx/osx/notebook.h" + "wx/cocoa/notebook.h" + "wx/os2/notebook.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/bookctrl.h + "wx/defs.h" + "wx/control.h" + "wx/dynarray.h" + "wx/notebook.h" + "wx/choicebk.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/choicebk.h + "wx/defs.h" + "wx/bookctrl.h" + "wx/choice.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/notebook.h + "wx/control.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/generic/notebook.h + "wx/event.h" + "wx/control.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/html/htmlwin.h + "wx/defs.h" + "wx/window.h" + "wx/scrolwin.h" + "wx/config.h" + "wx/stopwatch.h" + "wx/html/winpars.h" + "wx/html/htmlcell.h" + "wx/filesys.h" + "wx/html/htmlfilt.h" + "wx/filename.h" + "wx/bitmap.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/config.h + "wx/confbase.h" + "wx/msw/regconf.h" + "wx/os2/iniconf.h" + "wx/palmos/prefconf.h" + "wx/fileconf.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/confbase.h + "wx/defs.h" + "wx/string.h" + "wx/object.h" + "wx/base64.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/base64.h + "wx/string.h" + "wx/buffer.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/regconf.h + "wx/defs.h" + "wx/msw/registry.h" + "wx/object.h" + "wx/confbase.h" + "wx/buffer.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/registry.h + "wx/defs.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/fileconf.h + "wx/defs.h" + "wx/textfile.h" + "wx/string.h" + "wx/confbase.h" + "wx/filename.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/textfile.h + "wx/defs.h" + "wx/textbuf.h" + "wx/file.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/textbuf.h + "wx/defs.h" + "wx/arrstr.h" + "wx/convauto.h" + "wx/string.h" + "wx/dynarray.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/convauto.h + "wx/strconv.h" + "wx/fontenc.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/file.h + "wx/defs.h" + "wx/string.h" + "wx/filefn.h" + "wx/strconv.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/filename.h + "wx/arrstr.h" + "wx/filefn.h" + "wx/datetime.h" + "wx/intl.h" + "wx/longlong.h" + "wx/file.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/html/winpars.h + "wx/defs.h" + "wx/module.h" + "wx/font.h" + "wx/html/htmlpars.h" + "wx/html/htmlcell.h" + "wx/encconv.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/html/htmlpars.h + "wx/defs.h" + "wx/html/htmltag.h" + "wx/filesys.h" + "wx/hashmap.h" + "wx/hashset.h" + "wx/vector.h" + "wx/fontenc.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/html/htmltag.h + "wx/defs.h" + "wx/object.h" + "wx/arrstr.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/filesys.h + "wx/defs.h" + "wx/stream.h" + "wx/datetime.h" + "wx/filename.h" + "wx/hashmap.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/hashset.h + "wx/hashmap.h" + + + + + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/html/htmlcell.h + "wx/defs.h" + "wx/html/htmltag.h" + "wx/html/htmldefs.h" + "wx/window.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/html/htmldefs.h + "wx/defs.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/encconv.h + "wx/defs.h" + "wx/object.h" + "wx/fontenc.h" + "wx/dynarray.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/html/htmlfilt.h + "wx/defs.h" + "wx/filesys.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/calctrl.h + "wx/defs.h" + "wx/dateevt.h" + "wx/colour.h" + "wx/font.h" + "wx/control.h" + "wx/gtk/calctrl.h" + "wx/msw/calctrl.h" + "wx/generic/calctrlg.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/dateevt.h + "wx/event.h" + "wx/datetime.h" + "wx/window.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/calctrl.h + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/generic/calctrlg.h + "wx/control.h" + "wx/dcclient.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/dir.h + "wx/longlong.h" + "wx/string.h" + "wx/filefn.h" + +1305615466 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/ffile.h + "wx/defs.h" + "wx/string.h" + "wx/filefn.h" + "wx/convauto.h" + + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/print.h + "wx/defs.h" + "wx/msw/printwin.h" + "wx/osx/printmac.h" + "wx/os2/printos2.h" + "wx/generic/printps.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/printwin.h + "wx/prntbase.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/prntbase.h + "wx/defs.h" + "wx/event.h" + "wx/cmndata.h" + "wx/panel.h" + "wx/scrolwin.h" + "wx/dialog.h" + "wx/frame.h" + "wx/dc.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/cmndata.h + "wx/defs.h" + "wx/gdicmn.h" + "wx/stream.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/generic/printps.h + "wx/prntbase.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/tipwin.h + "wx/popupwin.h" + "wx/frame.h" + "wx/arrstr.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/popupwin.h + "wx/defs.h" + "wx/nonownedwnd.h" + "wx/msw/popupwin.h" + "wx/os2/popupwin.h" + "wx/gtk/popupwin.h" + "wx/gtk1/popupwin.h" + "wx/x11/popupwin.h" + "wx/motif/popupwin.h" + "wx/dfb/popupwin.h" + "wx/mgl/popupwin.h" + "wx/osx/popupwin.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/popupwin.h + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/stdpaths.h + "wx/defs.h" + "wx/string.h" + "wx/filefn.h" + "wx/msw/stdpaths.h" + "wx/osx/core/stdpaths.h" + "wx/os2/stdpaths.h" + "wx/unix/stdpaths.h" + "wx/palmos/stdpaths.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/msw/stdpaths.h + +1306214358 source:/home/mark/projects/SleepyHead/graphs/cpap_wavegraph.cpp + + "cpap_wavegraph.h" + +1305975963 /home/mark/projects/SleepyHead/graphs/cpap_wavegraph.h + + + "sleeplib/machine.h" + "graph.h" + +1305215599 /usr/include/wx-2.9/wx/dcgraph.h + "wx/dc.h" + "wx/geometry.h" + "wx/graphics.h" + +1305215599 /usr/include/wx-2.9/wx/geometry.h + "wx/defs.h" + "wx/utils.h" + "wx/gdicmn.h" + "wx/math.h" + +1305215599 /usr/include/wx-2.9/wx/graphics.h + "wx/defs.h" + "wx/geometry.h" + "wx/dynarray.h" + "wx/dc.h" + "wx/vector.h" + +1305615467 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/dcgraph.h + "wx/dc.h" + "wx/geometry.h" + "wx/graphics.h" + +1305615468 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/graphics.h + "wx/defs.h" + "wx/geometry.h" + "wx/dynarray.h" + "wx/dc.h" + "wx/vector.h" + +1305615469 /opt/mingw/usr/i686-pc-mingw32//include/wx-2.9/wx/dcbuffer.h + "wx/dcmemory.h" + "wx/dcclient.h" + "wx/window.h" + +1305215600 /usr/include/wx-2.9/wx/dcbuffer.h + "wx/dcmemory.h" + "wx/dcclient.h" + "wx/window.h" + +1306134327 source:/home/mark/projects/SleepyHead/graphs/cpap_pressure.cpp + + + + "cpap_pressure.h" + +1306031421 /home/mark/projects/SleepyHead/graphs/cpap_pressure.h + "sleeplib/machine.h" + "graph.h" + + +1306388664 /home/mark/projects/SleepyHead/graphs/graph.h + + + +1306410339 source:/home/mark/projects/SleepyHead/graphs/graph.cpp + + + + "graph.h" + +1302101440 /usr/include/wx-2.8/wx/wxprec.h + "wx/defs.h" + "wx/wxchar.h" + "wx/msw/wrapwin.h" + "wx/msw/wrapcctl.h" + "wx/msw/wrapcdlg.h" + "wx/msw/private.h" + "wx/msw/missing.h" + + "wx/os2/private.h" + "wx/mgl/private.h" + "wx/wx.h" + +1302101440 /usr/include/wx-2.8/wx/defs.h + "wx/platform.h" + "wx/features.h" + "wx/version.h" + "wx/dlimpexp.h" + "wx/debug.h" + + + + "wx/msw/winundef.h" + +1302101440 /usr/include/wx-2.8/wx/platform.h + + + + "wx/mac/carbon/config_xcode.h" + "wx/setup.h" + "wx/chkconf.h" + "wx/msw/wince/libraries.h" + "wx/msw/libraries.h" + "wx/msw/gccpriv.h" + + +1302101440 /usr/lib/wx/include/gtk2-unicode-release-2.8/wx/setup.h + +1302101440 /usr/include/wx-2.8/wx/chkconf.h + "wx/palmos/chkconf.h" + "wx/msw/wince/chkconf.h" + "wx/msw/chkconf.h" + "wx/mac/chkconf.h" + "wx/os2/chkconf.h" + "wx/mgl/chkconf.h" + "wx/dfb/chkconf.h" + "wx/motif/chkconf.h" + "wx/x11/chkconf.h" + "wx/univ/chkconf.h" + +1302101440 /usr/include/wx-2.8/wx/features.h + +1302101440 /usr/include/wx-2.8/wx/version.h + "wx/cpp.h" + +1302101440 /usr/include/wx-2.8/wx/cpp.h + +1302101440 /usr/include/wx-2.8/wx/dlimpexp.h + +1302101440 /usr/include/wx-2.8/wx/debug.h + + + "wx/wxchar.h" + +1302101440 /usr/include/wx-2.8/wx/wxchar.h + "wx/platform.h" + "wx/dlimpexp.h" + + + + + + + + + + + + + + + + + + + + + + + + + + + +1302101440 /usr/include/wx-2.8/wx/wx.h + "wx/defs.h" + "wx/object.h" + "wx/dynarray.h" + "wx/list.h" + "wx/hash.h" + "wx/string.h" + "wx/hashmap.h" + "wx/arrstr.h" + "wx/intl.h" + "wx/log.h" + "wx/event.h" + "wx/app.h" + "wx/utils.h" + "wx/stream.h" + "wx/memory.h" + "wx/math.h" + "wx/stopwatch.h" + "wx/module.h" + "wx/window.h" + "wx/containr.h" + "wx/panel.h" + "wx/toplevel.h" + "wx/frame.h" + "wx/gdicmn.h" + "wx/gdiobj.h" + "wx/region.h" + "wx/bitmap.h" + "wx/image.h" + "wx/colour.h" + "wx/font.h" + "wx/dc.h" + "wx/dcclient.h" + "wx/dcmemory.h" + "wx/dcprint.h" + "wx/dcscreen.h" + "wx/button.h" + "wx/menuitem.h" + "wx/menu.h" + "wx/pen.h" + "wx/brush.h" + "wx/palette.h" + "wx/icon.h" + "wx/cursor.h" + "wx/dialog.h" + "wx/timer.h" + "wx/settings.h" + "wx/msgdlg.h" + "wx/cmndata.h" + "wx/dataobj.h" + "wx/control.h" + "wx/ctrlsub.h" + "wx/bmpbuttn.h" + "wx/checkbox.h" + "wx/checklst.h" + "wx/choice.h" + "wx/scrolbar.h" + "wx/stattext.h" + "wx/statbmp.h" + "wx/statbox.h" + "wx/listbox.h" + "wx/radiobox.h" + "wx/radiobut.h" + "wx/textctrl.h" + "wx/slider.h" + "wx/gauge.h" + "wx/scrolwin.h" + "wx/dirdlg.h" + "wx/toolbar.h" + "wx/combobox.h" + "wx/layout.h" + "wx/sizer.h" + "wx/mdi.h" + "wx/statusbr.h" + "wx/choicdlg.h" + "wx/textdlg.h" + "wx/filedlg.h" + "wx/validate.h" + "wx/valtext.h" + +1302101440 /usr/include/wx-2.8/wx/object.h + "wx/memory.h" + "wx/xti.h" + "wx/msw/msvcrt.h" + +1302101440 /usr/include/wx-2.8/wx/memory.h + "wx/defs.h" + "wx/string.h" + "wx/msgout.h" + + +1302101440 /usr/include/wx-2.8/wx/string.h + "wx/defs.h" + + + + + + + + + + + + + "wx/wxchar.h" + "wx/buffer.h" + "wx/strconv.h" + "wx/beforestd.h" + + "wx/afterstd.h" + "wx/arrstr.h" + "wx/iosfwrap.h" + +1302101440 /usr/include/wx-2.8/wx/buffer.h + "wx/wxchar.h" + + +1302101440 /usr/include/wx-2.8/wx/strconv.h + "wx/defs.h" + "wx/wxchar.h" + "wx/buffer.h" + "typeinfo.h" + + "wx/fontenc.h" + +1302101440 /usr/include/wx-2.8/wx/fontenc.h + +1302101440 /usr/include/wx-2.8/wx/beforestd.h + +1302101440 /usr/include/wx-2.8/wx/afterstd.h + "wx/msw/winundef.h" + +1302101440 /usr/include/wx-2.8/wx/arrstr.h + "wx/defs.h" + "wx/string.h" + "wx/dynarray.h" + +1302101440 /usr/include/wx-2.8/wx/dynarray.h + "wx/defs.h" + "wx/beforestd.h" + + + "wx/afterstd.h" + +1302101440 /usr/include/wx-2.8/wx/iosfwrap.h + + + "wx/msw/winundef.h" + +1302101440 /usr/include/wx-2.8/wx/msgout.h + "wx/defs.h" + "wx/wxchar.h" + +1302101440 /usr/include/wx-2.8/wx/xti.h + "wx/defs.h" + "wx/memory.h" + "wx/flags.h" + "wx/string.h" + "wx/arrstr.h" + "wx/hashmap.h" + "wx/log.h" + "wx/intl.h" + + "wx/dynarray.h" + +1302101440 /usr/include/wx-2.8/wx/hashmap.h + "wx/string.h" + + + + + + +1302101440 /usr/include/wx-2.8/wx/log.h + "wx/defs.h" + "wx/string.h" + "wx/arrstr.h" + + "wx/dynarray.h" + "wx/iosfwrap.h" + "wx/generic/logg.h" + "wx/cocoa/log.h" + +1302101440 /usr/include/wx-2.8/wx/generic/logg.h + +1302101440 /usr/include/wx-2.8/wx/intl.h + "wx/defs.h" + "wx/string.h" + "wx/fontenc.h" + +1302101440 /usr/include/wx-2.8/wx/list.h + "wx/defs.h" + "wx/object.h" + "wx/string.h" + "wx/beforestd.h" + + + + "wx/afterstd.h" + +1302101440 /usr/include/wx-2.8/wx/hash.h + "wx/defs.h" + "wx/object.h" + "wx/list.h" + "wx/dynarray.h" + +1302101440 /usr/include/wx-2.8/wx/event.h + "wx/defs.h" + "wx/cpp.h" + "wx/object.h" + "wx/clntdata.h" + "wx/gdicmn.h" + "wx/cursor.h" + "wx/thread.h" + "wx/dynarray.h" + +1302101440 /usr/include/wx-2.8/wx/clntdata.h + "wx/defs.h" + "wx/string.h" + "wx/hashmap.h" + "wx/vector.h" + +1302101440 /usr/include/wx-2.8/wx/vector.h + "wx/defs.h" + +1302101440 /usr/include/wx-2.8/wx/gdicmn.h + "wx/defs.h" + "wx/list.h" + "wx/string.h" + "wx/fontenc.h" + "wx/hashmap.h" + "wx/math.h" + +1302101440 /usr/include/wx-2.8/wx/math.h + "wx/defs.h" + + + +1302101440 /usr/include/wx-2.8/wx/cursor.h + "wx/defs.h" + "wx/palmos/cursor.h" + "wx/msw/cursor.h" + "wx/motif/cursor.h" + "wx/gtk/cursor.h" + "wx/gtk1/cursor.h" + "wx/x11/cursor.h" + "wx/mgl/cursor.h" + "wx/dfb/cursor.h" + "wx/mac/cursor.h" + "wx/cocoa/cursor.h" + "wx/os2/cursor.h" + "wx/utils.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/cursor.h + "wx/object.h" + +1302101440 /usr/include/wx-2.8/wx/utils.h + "wx/object.h" + "wx/list.h" + "wx/filefn.h" + "wx/gdicmn.h" + "wx/longlong.h" + "wx/platinfo.h" + + + + + +1302101440 /usr/include/wx-2.8/wx/filefn.h + "wx/list.h" + "wx/arrstr.h" + "wx/msw/wince/time.h" + "wx/msw/private.h" + + + + + + + + + + + + "wx/os2/private.h" + + + + + + + + + + + + + + + + + + + +1302101440 /usr/include/wx-2.8/wx/longlong.h + "wx/defs.h" + "wx/string.h" + + "wx/iosfwrap.h" + +1302101440 /usr/include/wx-2.8/wx/platinfo.h + "wx/string.h" + +1302101440 /usr/include/wx-2.8/wx/thread.h + "wx/defs.h" + +1302101440 /usr/include/wx-2.8/wx/app.h + "wx/event.h" + "wx/build.h" + "wx/init.h" + "wx/intl.h" + "wx/palmos/app.h" + "wx/msw/app.h" + "wx/motif/app.h" + "wx/mgl/app.h" + "wx/dfb/app.h" + "wx/gtk/app.h" + "wx/gtk1/app.h" + "wx/x11/app.h" + "wx/mac/app.h" + "wx/cocoa/app.h" + "wx/os2/app.h" + "wx/univ/theme.h" + +1302101440 /usr/include/wx-2.8/wx/build.h + "wx/version.h" + +1302101440 /usr/include/wx-2.8/wx/init.h + "wx/defs.h" + "wx/wxchar.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/app.h + +1302101440 /usr/include/wx-2.8/wx/stream.h + "wx/defs.h" + + "wx/object.h" + "wx/string.h" + "wx/filefn.h" + +1302101440 /usr/include/wx-2.8/wx/stopwatch.h + "wx/defs.h" + "wx/longlong.h" + +1302101440 /usr/include/wx-2.8/wx/module.h + "wx/object.h" + "wx/list.h" + "wx/dynarray.h" + +1302101440 /usr/include/wx-2.8/wx/window.h + "wx/event.h" + "wx/list.h" + "wx/cursor.h" + "wx/font.h" + "wx/colour.h" + "wx/region.h" + "wx/utils.h" + "wx/intl.h" + "wx/validate.h" + "wx/palette.h" + "wx/accel.h" + "wx/access.h" + "wx/palmos/window.h" + "wx/msw/window.h" + "wx/motif/window.h" + "wx/gtk/window.h" + "wx/gtk1/window.h" + "wx/x11/window.h" + "wx/mgl/window.h" + "wx/dfb/window.h" + "wx/mac/window.h" + "wx/cocoa/window.h" + "wx/os2/window.h" + "wx/univ/window.h" + +1302101440 /usr/include/wx-2.8/wx/font.h + "wx/defs.h" + "wx/fontenc.h" + "wx/gdiobj.h" + "wx/palmos/font.h" + "wx/msw/font.h" + "wx/motif/font.h" + "wx/gtk/font.h" + "wx/gtk1/font.h" + "wx/x11/font.h" + "wx/mgl/font.h" + "wx/dfb/font.h" + "wx/mac/font.h" + "wx/cocoa/font.h" + "wx/os2/font.h" + +1302101440 /usr/include/wx-2.8/wx/gdiobj.h + "wx/object.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/font.h + +1302101440 /usr/include/wx-2.8/wx/colour.h + "wx/defs.h" + "wx/gdiobj.h" + "wx/variant.h" + "wx/generic/colour.h" + "wx/msw/colour.h" + "wx/motif/colour.h" + "wx/gtk/colour.h" + "wx/gtk1/colour.h" + "wx/generic/colour.h" + "wx/generic/colour.h" + "wx/x11/colour.h" + "wx/mac/colour.h" + "wx/cocoa/colour.h" + "wx/os2/colour.h" + +1302101440 /usr/include/wx-2.8/wx/variant.h + "wx/defs.h" + "wx/object.h" + "wx/string.h" + "wx/arrstr.h" + "wx/list.h" + "wx/cpp.h" + "wx/datetime.h" + "wx/db.h" + "wx/iosfwrap.h" + +1302101440 /usr/include/wx-2.8/wx/datetime.h + "wx/defs.h" + + "wx/msw/wince/time.h" + + "wx/longlong.h" + "wx/dynarray.h" + +1302101440 /usr/include/wx-2.8/wx/db.h + "wx/defs.h" + "wx/string.h" + + "wx/msw/wrapwin.h" + "sql.h" + "sqlext.h" + "odbcinst.h" + "wx/msw/wrapwin.h" + "wx/isql.h" + "wx/isqlext.h" + + + + + "wx/object.h" + +1302101440 /usr/include/wx-2.8/wx/isql.h + +1302101440 /usr/include/wx-2.8/wx/isqlext.h + "wx/isql.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/colour.h + +1302101441 /usr/include/wx-2.8/wx/region.h + "wx/gdiobj.h" + "wx/gdicmn.h" + "wx/palmos/region.h" + "wx/msw/region.h" + "wx/gtk/region.h" + "wx/gtk1/region.h" + "wx/x11/region.h" + "wx/mgl/region.h" + "wx/dfb/region.h" + "wx/mac/region.h" + "wx/cocoa/region.h" + "wx/os2/region.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/region.h + +1302101440 /usr/include/wx-2.8/wx/validate.h + "wx/defs.h" + "wx/event.h" + +1302101440 /usr/include/wx-2.8/wx/palette.h + "wx/defs.h" + "wx/object.h" + "wx/gdiobj.h" + "wx/palmos/palette.h" + "wx/msw/palette.h" + "wx/motif/palette.h" + "wx/generic/paletteg.h" + "wx/x11/palette.h" + "wx/mgl/palette.h" + "wx/mac/palette.h" + "wx/os2/palette.h" + +1302101441 /usr/include/wx-2.8/wx/generic/paletteg.h + "wx/defs.h" + "wx/object.h" + "wx/gdiobj.h" + "wx/gdicmn.h" + +1302101440 /usr/include/wx-2.8/wx/accel.h + "wx/defs.h" + "wx/object.h" + "wx/generic/accel.h" + "wx/msw/accel.h" + "wx/motif/accel.h" + "wx/gtk/accel.h" + "wx/gtk1/accel.h" + "wx/mac/accel.h" + "wx/generic/accel.h" + "wx/os2/accel.h" + +1302101440 /usr/include/wx-2.8/wx/generic/accel.h + +1302101441 /usr/include/wx-2.8/wx/gtk/accel.h + "wx/generic/accel.h" + +1302101440 /usr/include/wx-2.8/wx/access.h + "wx/defs.h" + "wx/variant.h" + "wx/msw/ole/access.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/window.h + "wx/dynarray.h" + +1302101440 /usr/include/wx-2.8/wx/containr.h + +1302101440 /usr/include/wx-2.8/wx/panel.h + "wx/generic/panelg.h" + +1302101440 /usr/include/wx-2.8/wx/generic/panelg.h + "wx/window.h" + "wx/containr.h" + +1302101441 /usr/include/wx-2.8/wx/toplevel.h + "wx/window.h" + "wx/iconbndl.h" + "wx/palmos/toplevel.h" + "wx/msw/toplevel.h" + "wx/gtk/toplevel.h" + "wx/gtk1/toplevel.h" + "wx/x11/toplevel.h" + "wx/mgl/toplevel.h" + "wx/dfb/toplevel.h" + "wx/mac/toplevel.h" + "wx/cocoa/toplevel.h" + "wx/os2/toplevel.h" + "wx/motif/toplevel.h" + "wx/univ/toplevel.h" + +1302101440 /usr/include/wx-2.8/wx/iconbndl.h + "wx/dynarray.h" + "wx/gdicmn.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/toplevel.h + +1302101440 /usr/include/wx-2.8/wx/frame.h + "wx/toplevel.h" + "wx/univ/frame.h" + "wx/palmos/frame.h" + "wx/msw/frame.h" + "wx/gtk/frame.h" + "wx/gtk1/frame.h" + "wx/motif/frame.h" + "wx/mac/frame.h" + "wx/cocoa/frame.h" + "wx/os2/frame.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/frame.h + +1302101440 /usr/include/wx-2.8/wx/bitmap.h + "wx/string.h" + "wx/gdicmn.h" + "wx/colour.h" + "wx/variant.h" + "wx/palmos/bitmap.h" + "wx/msw/bitmap.h" + "wx/x11/bitmap.h" + "wx/gtk/bitmap.h" + "wx/gtk1/bitmap.h" + "wx/x11/bitmap.h" + "wx/mgl/bitmap.h" + "wx/dfb/bitmap.h" + "wx/mac/bitmap.h" + "wx/cocoa/bitmap.h" + "wx/os2/bitmap.h" + "wx/generic/mask.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/bitmap.h + +1302101440 /usr/include/wx-2.8/wx/image.h + "wx/defs.h" + "wx/object.h" + "wx/string.h" + "wx/gdicmn.h" + "wx/hashmap.h" + "wx/stream.h" + "wx/variant.h" + "wx/imagbmp.h" + "wx/imagpng.h" + "wx/imaggif.h" + "wx/imagpcx.h" + "wx/imagjpeg.h" + "wx/imagtga.h" + "wx/imagtiff.h" + "wx/imagpnm.h" + "wx/imagxpm.h" + "wx/imagiff.h" + +1302101440 /usr/include/wx-2.8/wx/imagbmp.h + "wx/image.h" + +1302101440 /usr/include/wx-2.8/wx/imagpng.h + "wx/defs.h" + "wx/image.h" + +1302101440 /usr/include/wx-2.8/wx/imaggif.h + "wx/image.h" + +1302101440 /usr/include/wx-2.8/wx/imagpcx.h + "wx/image.h" + +1302101440 /usr/include/wx-2.8/wx/imagjpeg.h + "wx/defs.h" + "wx/image.h" + +1302101440 /usr/include/wx-2.8/wx/imagtga.h + "wx/image.h" + +1302101440 /usr/include/wx-2.8/wx/imagtiff.h + "wx/defs.h" + "wx/image.h" + +1302101440 /usr/include/wx-2.8/wx/imagpnm.h + "wx/image.h" + +1302101440 /usr/include/wx-2.8/wx/imagxpm.h + "wx/image.h" + +1302101440 /usr/include/wx-2.8/wx/imagiff.h + "wx/image.h" + +1302101440 /usr/include/wx-2.8/wx/dc.h + "wx/object.h" + "wx/intl.h" + "wx/cursor.h" + "wx/font.h" + "wx/colour.h" + "wx/bitmap.h" + "wx/brush.h" + "wx/pen.h" + "wx/palette.h" + "wx/list.h" + "wx/dynarray.h" + "wx/math.h" + "wx/palmos/dc.h" + "wx/msw/dc.h" + "wx/motif/dc.h" + "wx/gtk/dc.h" + "wx/gtk1/dc.h" + "wx/x11/dc.h" + "wx/mgl/dc.h" + "wx/dfb/dc.h" + "wx/mac/dc.h" + "wx/cocoa/dc.h" + "wx/os2/dc.h" + "wx/dcgraph.h" + +1302101440 /usr/include/wx-2.8/wx/brush.h + "wx/defs.h" + "wx/object.h" + "wx/gdiobj.h" + "wx/palmos/brush.h" + "wx/msw/brush.h" + "wx/x11/brush.h" + "wx/gtk/brush.h" + "wx/gtk1/brush.h" + "wx/mgl/brush.h" + "wx/dfb/brush.h" + "wx/mac/brush.h" + "wx/cocoa/brush.h" + "wx/os2/brush.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/brush.h + +1302101440 /usr/include/wx-2.8/wx/pen.h + "wx/defs.h" + "wx/palmos/pen.h" + "wx/msw/pen.h" + "wx/x11/pen.h" + "wx/gtk/pen.h" + "wx/gtk1/pen.h" + "wx/mgl/pen.h" + "wx/dfb/pen.h" + "wx/mac/pen.h" + "wx/cocoa/pen.h" + "wx/os2/pen.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/pen.h + "wx/gdiobj.h" + "wx/gdicmn.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/dc.h + +1302101440 /usr/include/wx-2.8/wx/dcgraph.h + "wx/geometry.h" + "wx/dynarray.h" + "wx/graphics.h" + +1302101440 /usr/include/wx-2.8/wx/geometry.h + "wx/defs.h" + "wx/utils.h" + "wx/gdicmn.h" + "wx/math.h" + +1302101440 /usr/include/wx-2.8/wx/graphics.h + "wx/defs.h" + "wx/geometry.h" + "wx/dynarray.h" + +1302101440 /usr/include/wx-2.8/wx/dcclient.h + "wx/defs.h" + "wx/palmos/dcclient.h" + "wx/msw/dcclient.h" + "wx/motif/dcclient.h" + "wx/gtk/dcclient.h" + "wx/gtk1/dcclient.h" + "wx/x11/dcclient.h" + "wx/mgl/dcclient.h" + "wx/dfb/dcclient.h" + "wx/mac/dcclient.h" + "wx/cocoa/dcclient.h" + "wx/os2/dcclient.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/dcclient.h + "wx/dc.h" + "wx/region.h" + +1302101440 /usr/include/wx-2.8/wx/dcmemory.h + "wx/bitmap.h" + "wx/palmos/dcmemory.h" + "wx/msw/dcmemory.h" + "wx/motif/dcmemory.h" + "wx/gtk/dcmemory.h" + "wx/gtk1/dcmemory.h" + "wx/x11/dcmemory.h" + "wx/mgl/dcmemory.h" + "wx/dfb/dcmemory.h" + "wx/mac/dcmemory.h" + "wx/cocoa/dcmemory.h" + "wx/os2/dcmemory.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/dcmemory.h + "wx/dcclient.h" + +1302101440 /usr/include/wx-2.8/wx/dcprint.h + "wx/defs.h" + "wx/palmos/dcprint.h" + "wx/msw/dcprint.h" + "wx/os2/dcprint.h" + "wx/mac/dcprint.h" + +1302101440 /usr/include/wx-2.8/wx/dcscreen.h + "wx/defs.h" + "wx/palmos/dcscreen.h" + "wx/msw/dcscreen.h" + "wx/motif/dcscreen.h" + "wx/gtk/dcscreen.h" + "wx/gtk1/dcscreen.h" + "wx/x11/dcscreen.h" + "wx/mgl/dcscreen.h" + "wx/dfb/dcscreen.h" + "wx/mac/dcscreen.h" + "wx/cocoa/dcscreen.h" + "wx/os2/dcscreen.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/dcscreen.h + "wx/dcclient.h" + +1302101440 /usr/include/wx-2.8/wx/button.h + "wx/defs.h" + "wx/control.h" + "wx/univ/button.h" + "wx/msw/button.h" + "wx/motif/button.h" + "wx/gtk/button.h" + "wx/gtk1/button.h" + "wx/mac/button.h" + "wx/cocoa/button.h" + "wx/os2/button.h" + "wx/palmos/button.h" + +1302101440 /usr/include/wx-2.8/wx/control.h + "wx/defs.h" + "wx/window.h" + "wx/univ/control.h" + "wx/palmos/control.h" + "wx/msw/control.h" + "wx/motif/control.h" + "wx/gtk/control.h" + "wx/gtk1/control.h" + "wx/mac/control.h" + "wx/cocoa/control.h" + "wx/os2/control.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/control.h + +1302101441 /usr/include/wx-2.8/wx/gtk/button.h + +1302101440 /usr/include/wx-2.8/wx/menuitem.h + "wx/defs.h" + "wx/object.h" + "wx/univ/menuitem.h" + "wx/palmos/menuitem.h" + "wx/msw/menuitem.h" + "wx/motif/menuitem.h" + "wx/gtk/menuitem.h" + "wx/gtk1/menuitem.h" + "wx/mac/menuitem.h" + "wx/cocoa/menuitem.h" + "wx/os2/menuitem.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/menuitem.h + "wx/bitmap.h" + +1302101440 /usr/include/wx-2.8/wx/menu.h + "wx/defs.h" + "wx/list.h" + "wx/window.h" + "wx/menuitem.h" + "wx/univ/menu.h" + "wx/palmos/menu.h" + "wx/msw/menu.h" + "wx/motif/menu.h" + "wx/gtk/menu.h" + "wx/gtk1/menu.h" + "wx/mac/menu.h" + "wx/cocoa/menu.h" + "wx/os2/menu.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/menu.h + +1302101440 /usr/include/wx-2.8/wx/icon.h + "wx/iconloc.h" + "wx/generic/icon.h" + "wx/msw/icon.h" + "wx/motif/icon.h" + "wx/generic/icon.h" + "wx/generic/icon.h" + "wx/generic/icon.h" + "wx/generic/icon.h" + "wx/generic/icon.h" + "wx/mac/icon.h" + "wx/cocoa/icon.h" + "wx/os2/icon.h" + "wx/variant.h" + +1302101440 /usr/include/wx-2.8/wx/iconloc.h + "wx/string.h" + +1302101441 /usr/include/wx-2.8/wx/generic/icon.h + "wx/bitmap.h" + +1302101440 /usr/include/wx-2.8/wx/dialog.h + "wx/defs.h" + "wx/containr.h" + "wx/toplevel.h" + "wx/univ/dialog.h" + "wx/palmos/dialog.h" + "wx/msw/dialog.h" + "wx/motif/dialog.h" + "wx/gtk/dialog.h" + "wx/gtk1/dialog.h" + "wx/mac/dialog.h" + "wx/cocoa/dialog.h" + "wx/os2/dialog.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/dialog.h + "wx/defs.h" + +1302101440 /usr/include/wx-2.8/wx/timer.h + "wx/defs.h" + "wx/object.h" + "wx/longlong.h" + "wx/event.h" + "wx/stopwatch.h" + "wx/window.h" + "wx/msw/timer.h" + "wx/motif/timer.h" + "wx/gtk/timer.h" + "wx/gtk1/timer.h" + "wx/generic/timer.h" + "wx/cocoa/timer.h" + "wx/mac/timer.h" + "wx/os2/timer.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/timer.h + +1302101440 /usr/include/wx-2.8/wx/generic/timer.h + +1302101440 /usr/include/wx-2.8/wx/settings.h + "wx/colour.h" + "wx/font.h" + +1302101440 /usr/include/wx-2.8/wx/msgdlg.h + "wx/defs.h" + "wx/generic/msgdlgg.h" + "wx/generic/msgdlgg.h" + "wx/palmos/msgdlg.h" + "wx/msw/msgdlg.h" + "wx/motif/msgdlg.h" + "wx/gtk/msgdlg.h" + "wx/generic/msgdlgg.h" + "wx/generic/msgdlgg.h" + "wx/mac/msgdlg.h" + "wx/cocoa/msgdlg.h" + "wx/os2/msgdlg.h" + +1302101440 /usr/include/wx-2.8/wx/generic/msgdlgg.h + "wx/defs.h" + "wx/dialog.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/msgdlg.h + "wx/defs.h" + "wx/dialog.h" + +1302101440 /usr/include/wx-2.8/wx/cmndata.h + "wx/window.h" + "wx/font.h" + "wx/encinfo.h" + "wx/colour.h" + "wx/gdicmn.h" + "wx/stream.h" + +1302101440 /usr/include/wx-2.8/wx/encinfo.h + "wx/string.h" + +1302101440 /usr/include/wx-2.8/wx/dataobj.h + "wx/defs.h" + "wx/string.h" + "wx/bitmap.h" + "wx/list.h" + "wx/arrstr.h" + "wx/msw/ole/dataform.h" + "wx/motif/dataform.h" + "wx/gtk/dataform.h" + "wx/gtk1/dataform.h" + "wx/x11/dataform.h" + "wx/mac/dataform.h" + "wx/cocoa/dataform.h" + "wx/os2/dataform.h" + "wx/msw/ole/dataobj.h" + "wx/motif/dataobj.h" + "wx/x11/dataobj.h" + "wx/gtk/dataobj.h" + "wx/gtk1/dataobj.h" + "wx/mac/dataobj.h" + "wx/cocoa/dataobj.h" + "wx/os2/dataobj.h" + "wx/msw/ole/dataobj2.h" + "wx/gtk/dataobj2.h" + "wx/gtk1/dataobj2.h" + "wx/x11/dataobj2.h" + "wx/motif/dataobj2.h" + "wx/mac/dataobj2.h" + "wx/cocoa/dataobj2.h" + "wx/os2/dataobj2.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/dataform.h + +1302101441 /usr/include/wx-2.8/wx/gtk/dataobj.h + +1302101441 /usr/include/wx-2.8/wx/gtk/dataobj2.h + +1302101440 /usr/include/wx-2.8/wx/ctrlsub.h + "wx/defs.h" + "wx/control.h" + +1302101440 /usr/include/wx-2.8/wx/bmpbuttn.h + "wx/defs.h" + "wx/bitmap.h" + "wx/button.h" + "wx/univ/bmpbuttn.h" + "wx/msw/bmpbuttn.h" + "wx/motif/bmpbuttn.h" + "wx/gtk/bmpbuttn.h" + "wx/gtk1/bmpbuttn.h" + "wx/mac/bmpbuttn.h" + "wx/cocoa/bmpbuttn.h" + "wx/os2/bmpbuttn.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/bmpbuttn.h + +1302101440 /usr/include/wx-2.8/wx/checkbox.h + "wx/defs.h" + "wx/control.h" + "wx/univ/checkbox.h" + "wx/msw/checkbox.h" + "wx/motif/checkbox.h" + "wx/gtk/checkbox.h" + "wx/gtk1/checkbox.h" + "wx/mac/checkbox.h" + "wx/cocoa/checkbox.h" + "wx/os2/checkbox.h" + "wx/palmos/checkbox.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/checkbox.h + +1302101440 /usr/include/wx-2.8/wx/checklst.h + "wx/listbox.h" + "wx/univ/checklst.h" + "wx/msw/wince/checklst.h" + "wx/msw/checklst.h" + "wx/motif/checklst.h" + "wx/gtk/checklst.h" + "wx/gtk1/checklst.h" + "wx/mac/checklst.h" + "wx/cocoa/checklst.h" + "wx/os2/checklst.h" + +1302101440 /usr/include/wx-2.8/wx/listbox.h + "wx/defs.h" + "wx/ctrlsub.h" + "wx/univ/listbox.h" + "wx/msw/listbox.h" + "wx/motif/listbox.h" + "wx/gtk/listbox.h" + "wx/gtk1/listbox.h" + "wx/mac/listbox.h" + "wx/os2/listbox.h" + "wx/cocoa/listbox.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/listbox.h + +1302101441 /usr/include/wx-2.8/wx/gtk/checklst.h + +1302101440 /usr/include/wx-2.8/wx/choice.h + "wx/defs.h" + "wx/ctrlsub.h" + "wx/univ/choice.h" + "wx/msw/wince/choicece.h" + "wx/msw/choice.h" + "wx/motif/choice.h" + "wx/gtk/choice.h" + "wx/gtk1/choice.h" + "wx/mac/choice.h" + "wx/cocoa/choice.h" + "wx/os2/choice.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/choice.h + +1302101440 /usr/include/wx-2.8/wx/scrolbar.h + "wx/defs.h" + "wx/control.h" + "wx/univ/scrolbar.h" + "wx/msw/scrolbar.h" + "wx/motif/scrolbar.h" + "wx/gtk/scrolbar.h" + "wx/gtk1/scrolbar.h" + "wx/mac/scrolbar.h" + "wx/cocoa/scrolbar.h" + "wx/os2/scrolbar.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/scrolbar.h + "wx/defs.h" + +1302101440 /usr/include/wx-2.8/wx/stattext.h + "wx/defs.h" + "wx/control.h" + "wx/univ/stattext.h" + "wx/msw/stattext.h" + "wx/motif/stattext.h" + "wx/gtk/stattext.h" + "wx/gtk1/stattext.h" + "wx/mac/stattext.h" + "wx/cocoa/stattext.h" + "wx/os2/stattext.h" + "wx/palmos/stattext.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/stattext.h + +1302101440 /usr/include/wx-2.8/wx/statbmp.h + "wx/defs.h" + "wx/control.h" + "wx/bitmap.h" + "wx/icon.h" + "wx/univ/statbmp.h" + "wx/msw/statbmp.h" + "wx/motif/statbmp.h" + "wx/gtk/statbmp.h" + "wx/gtk1/statbmp.h" + "wx/mac/statbmp.h" + "wx/cocoa/statbmp.h" + "wx/os2/statbmp.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/statbmp.h + "wx/icon.h" + +1302101440 /usr/include/wx-2.8/wx/statbox.h + "wx/defs.h" + "wx/control.h" + "wx/univ/statbox.h" + "wx/msw/statbox.h" + "wx/motif/statbox.h" + "wx/gtk/statbox.h" + "wx/gtk1/statbox.h" + "wx/mac/statbox.h" + "wx/cocoa/statbox.h" + "wx/os2/statbox.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/statbox.h + +1302101440 /usr/include/wx-2.8/wx/radiobox.h + "wx/ctrlsub.h" + "wx/dynarray.h" + "wx/univ/radiobox.h" + "wx/msw/radiobox.h" + "wx/motif/radiobox.h" + "wx/gtk/radiobox.h" + "wx/gtk1/radiobox.h" + "wx/mac/radiobox.h" + "wx/cocoa/radiobox.h" + "wx/os2/radiobox.h" + "wx/palmos/radiobox.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/radiobox.h + "wx/bitmap.h" + "wx/list.h" + +1302101440 /usr/include/wx-2.8/wx/radiobut.h + "wx/defs.h" + "wx/control.h" + "wx/univ/radiobut.h" + "wx/msw/radiobut.h" + "wx/motif/radiobut.h" + "wx/gtk/radiobut.h" + "wx/gtk1/radiobut.h" + "wx/mac/radiobut.h" + "wx/cocoa/radiobut.h" + "wx/os2/radiobut.h" + "wx/palmos/radiobut.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/radiobut.h + +1302101440 /usr/include/wx-2.8/wx/textctrl.h + "wx/defs.h" + "wx/control.h" + "wx/dynarray.h" + "wx/gdicmn.h" + "wx/ioswrap.h" + "wx/x11/textctrl.h" + "wx/univ/textctrl.h" + "wx/msw/wince/textctrlce.h" + "wx/msw/textctrl.h" + "wx/motif/textctrl.h" + "wx/gtk/textctrl.h" + "wx/gtk1/textctrl.h" + "wx/mac/textctrl.h" + "wx/cocoa/textctrl.h" + "wx/os2/textctrl.h" + +1302101440 /usr/include/wx-2.8/wx/ioswrap.h + + + "wx/msw/winundef.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/textctrl.h + +1302101440 /usr/include/wx-2.8/wx/slider.h + "wx/defs.h" + "wx/control.h" + "wx/univ/slider.h" + "wx/msw/slider95.h" + "wx/motif/slider.h" + "wx/gtk/slider.h" + "wx/gtk1/slider.h" + "wx/mac/slider.h" + "wx/cocoa/slider.h" + "wx/os2/slider.h" + "wx/palmos/slider.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/slider.h + +1302101440 /usr/include/wx-2.8/wx/gauge.h + "wx/defs.h" + "wx/control.h" + "wx/univ/gauge.h" + "wx/msw/gauge95.h" + "wx/motif/gauge.h" + "wx/gtk/gauge.h" + "wx/gtk1/gauge.h" + "wx/mac/gauge.h" + "wx/cocoa/gauge.h" + "wx/os2/gauge.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/gauge.h + +1302101440 /usr/include/wx-2.8/wx/scrolwin.h + "wx/panel.h" + "wx/gtk/scrolwin.h" + "wx/gtk1/scrolwin.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/scrolwin.h + +1302101440 /usr/include/wx-2.8/wx/dirdlg.h + "wx/dialog.h" + "wx/generic/dirdlgg.h" + "wx/generic/dirdlgg.h" + "wx/generic/dirdlgg.h" + "wx/msw/dirdlg.h" + "wx/gtk/dirdlg.h" + "wx/generic/dirdlgg.h" + "wx/mac/dirdlg.h" + "wx/cocoa/dirdlg.h" + "wx/generic/dirdlgg.h" + +1302101441 /usr/include/wx-2.8/wx/generic/dirdlgg.h + "wx/dialog.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/dirdlg.h + "wx/generic/dirdlgg.h" + +1302101440 /usr/include/wx-2.8/wx/toolbar.h + "wx/defs.h" + "wx/tbarbase.h" + "wx/univ/toolbar.h" + "wx/palmos/toolbar.h" + "wx/msw/tbar95.h" + "wx/msw/wince/tbarwce.h" + "wx/motif/toolbar.h" + "wx/gtk/tbargtk.h" + "wx/gtk1/tbargtk.h" + "wx/mac/toolbar.h" + "wx/cocoa/toolbar.h" + "wx/os2/toolbar.h" + +1302101441 /usr/include/wx-2.8/wx/tbarbase.h + "wx/defs.h" + "wx/bitmap.h" + "wx/list.h" + "wx/control.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/tbargtk.h + +1302101440 /usr/include/wx-2.8/wx/combobox.h + "wx/defs.h" + "wx/textctrl.h" + "wx/ctrlsub.h" + "wx/univ/combobox.h" + "wx/msw/combobox.h" + "wx/motif/combobox.h" + "wx/gtk/combobox.h" + "wx/gtk1/combobox.h" + "wx/mac/combobox.h" + "wx/cocoa/combobox.h" + "wx/os2/combobox.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/combobox.h + +1302101440 /usr/include/wx-2.8/wx/layout.h + "wx/object.h" + +1302101440 /usr/include/wx-2.8/wx/sizer.h + "wx/defs.h" + "wx/window.h" + +1302101440 /usr/include/wx-2.8/wx/mdi.h + "wx/defs.h" + "wx/generic/mdig.h" + "wx/msw/mdi.h" + "wx/motif/mdi.h" + "wx/gtk/mdi.h" + "wx/gtk1/mdi.h" + "wx/mac/mdi.h" + "wx/cocoa/mdi.h" + "wx/generic/mdig.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/mdi.h + "wx/frame.h" + +1302101440 /usr/include/wx-2.8/wx/statusbr.h + "wx/defs.h" + "wx/window.h" + "wx/list.h" + "wx/dynarray.h" + "wx/univ/statusbr.h" + "wx/palmos/statusbr.h" + "wx/msw/statbr95.h" + "wx/generic/statusbr.h" + "wx/mac/statusbr.h" + "wx/generic/statusbr.h" + +1302101441 /usr/include/wx-2.8/wx/generic/statusbr.h + "wx/defs.h" + "wx/pen.h" + "wx/arrstr.h" + +1302101440 /usr/include/wx-2.8/wx/choicdlg.h + "wx/generic/choicdgg.h" + +1302101440 /usr/include/wx-2.8/wx/generic/choicdgg.h + "wx/dynarray.h" + "wx/dialog.h" + +1302101440 /usr/include/wx-2.8/wx/textdlg.h + "wx/generic/textdlgg.h" + "wx/numdlg.h" + +1302101440 /usr/include/wx-2.8/wx/generic/textdlgg.h + "wx/defs.h" + "wx/dialog.h" + "wx/valtext.h" + +1302101440 /usr/include/wx-2.8/wx/valtext.h + "wx/defs.h" + "wx/textctrl.h" + "wx/validate.h" + +1302101440 /usr/include/wx-2.8/wx/numdlg.h + "wx/defs.h" + "wx/generic/numdlgg.h" + +1302101440 /usr/include/wx-2.8/wx/generic/numdlgg.h + "wx/defs.h" + "wx/dialog.h" + +1302101440 /usr/include/wx-2.8/wx/filedlg.h + "wx/defs.h" + "wx/dialog.h" + "wx/arrstr.h" + "wx/generic/filedlgg.h" + "wx/msw/filedlg.h" + "wx/motif/filedlg.h" + "wx/gtk/filedlg.h" + "wx/generic/filedlgg.h" + "wx/gtk1/filedlg.h" + "wx/mac/filedlg.h" + "wx/cocoa/filedlg.h" + "wx/os2/filedlg.h" + +1302101440 /usr/include/wx-2.8/wx/generic/filedlgg.h + "wx/listctrl.h" + "wx/datetime.h" + "wx/filefn.h" + "wx/filedlg.h" + +1302101440 /usr/include/wx-2.8/wx/listctrl.h + "wx/defs.h" + "wx/listbase.h" + "wx/msw/listctrl.h" + "wx/mac/carbon/listctrl.h" + "wx/generic/listctrl.h" + +1302101440 /usr/include/wx-2.8/wx/listbase.h + "wx/colour.h" + "wx/font.h" + "wx/gdicmn.h" + "wx/event.h" + +1302101441 /usr/include/wx-2.8/wx/generic/listctrl.h + "wx/textctrl.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/filedlg.h + "wx/generic/filedlgg.h" + +1302101441 /usr/include/wx-2.8/wx/aui/auibook.h + "wx/defs.h" + "wx/aui/framemanager.h" + "wx/aui/dockart.h" + "wx/aui/floatpane.h" + "wx/control.h" + +1302101441 /usr/include/wx-2.8/wx/aui/framemanager.h + "wx/defs.h" + "wx/dynarray.h" + "wx/gdicmn.h" + "wx/window.h" + "wx/timer.h" + "wx/sizer.h" + +1302101441 /usr/include/wx-2.8/wx/aui/dockart.h + "wx/defs.h" + "wx/pen.h" + "wx/brush.h" + "wx/bitmap.h" + "wx/colour.h" + +1302101441 /usr/include/wx-2.8/wx/aui/floatpane.h + "wx/defs.h" + "wx/frame.h" + "wx/minifram.h" + +1302101440 /usr/include/wx-2.8/wx/minifram.h + "wx/defs.h" + "wx/palmos/minifram.h" + "wx/msw/minifram.h" + "wx/motif/minifram.h" + "wx/gtk/minifram.h" + "wx/gtk1/minifram.h" + "wx/x11/minifram.h" + "wx/mac/minifram.h" + "wx/os2/minifram.h" + "wx/frame.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/minifram.h + "wx/defs.h" + "wx/object.h" + "wx/bitmap.h" + "wx/frame.h" + +1302101441 /usr/include/wx-2.8/wx/aui/aui.h + "wx/aui/framemanager.h" + "wx/aui/dockart.h" + "wx/aui/floatpane.h" + "wx/aui/auibar.h" + "wx/aui/auibook.h" + "wx/aui/tabmdi.h" + +1302101441 /usr/include/wx-2.8/wx/aui/auibar.h + "wx/defs.h" + "wx/control.h" + +1302101441 /usr/include/wx-2.8/wx/aui/tabmdi.h + "wx/frame.h" + "wx/panel.h" + "wx/notebook.h" + "wx/icon.h" + "wx/aui/auibook.h" + +1302101440 /usr/include/wx-2.8/wx/notebook.h + "wx/defs.h" + "wx/bookctrl.h" + "wx/univ/notebook.h" + "wx/msw/notebook.h" + "wx/generic/notebook.h" + "wx/gtk/notebook.h" + "wx/gtk1/notebook.h" + "wx/mac/notebook.h" + "wx/cocoa/notebook.h" + "wx/os2/notebook.h" + +1302101440 /usr/include/wx-2.8/wx/bookctrl.h + "wx/defs.h" + "wx/control.h" + "wx/dynarray.h" + "wx/notebook.h" + "wx/choicebk.h" + +1302101440 /usr/include/wx-2.8/wx/choicebk.h + "wx/defs.h" + "wx/bookctrl.h" + "wx/choice.h" + +1302101440 /usr/include/wx-2.8/wx/generic/notebook.h + "wx/event.h" + "wx/control.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/notebook.h + "wx/list.h" + +1302101441 /usr/include/wx-2.8/wx/html/htmlwin.h + "wx/defs.h" + "wx/window.h" + "wx/scrolwin.h" + "wx/config.h" + "wx/stopwatch.h" + "wx/html/winpars.h" + "wx/html/htmlcell.h" + "wx/filesys.h" + "wx/html/htmlfilt.h" + "wx/filename.h" + "wx/bitmap.h" + +1302101440 /usr/include/wx-2.8/wx/config.h + "wx/confbase.h" + "wx/msw/regconf.h" + "wx/msw/iniconf.h" + "wx/palmos/prefconf.h" + "wx/fileconf.h" + +1302101440 /usr/include/wx-2.8/wx/confbase.h + "wx/defs.h" + "wx/string.h" + "wx/string.h" + +1302101440 /usr/include/wx-2.8/wx/fileconf.h + "wx/defs.h" + "wx/textfile.h" + "wx/string.h" + "wx/confbase.h" + +1302101440 /usr/include/wx-2.8/wx/textfile.h + "wx/defs.h" + "wx/textbuf.h" + "wx/file.h" + +1302101440 /usr/include/wx-2.8/wx/textbuf.h + "wx/defs.h" + "wx/arrstr.h" + "wx/convauto.h" + "wx/string.h" + "wx/dynarray.h" + +1302101440 /usr/include/wx-2.8/wx/convauto.h + "wx/strconv.h" + +1302101440 /usr/include/wx-2.8/wx/file.h + "wx/defs.h" + "wx/string.h" + "wx/filefn.h" + "wx/strconv.h" + +1302101441 /usr/include/wx-2.8/wx/html/winpars.h + "wx/defs.h" + "wx/module.h" + "wx/font.h" + "wx/html/htmlpars.h" + "wx/html/htmlcell.h" + "wx/encconv.h" + +1302101441 /usr/include/wx-2.8/wx/html/htmlpars.h + "wx/defs.h" + "wx/html/htmltag.h" + "wx/filesys.h" + "wx/hash.h" + "wx/fontenc.h" + +1302101441 /usr/include/wx-2.8/wx/html/htmltag.h + "wx/defs.h" + "wx/object.h" + "wx/arrstr.h" + +1302101440 /usr/include/wx-2.8/wx/filesys.h + "wx/defs.h" + "wx/stream.h" + "wx/datetime.h" + "wx/filename.h" + "wx/hashmap.h" + +1302101440 /usr/include/wx-2.8/wx/filename.h + "wx/arrstr.h" + "wx/filefn.h" + "wx/datetime.h" + "wx/intl.h" + +1302101441 /usr/include/wx-2.8/wx/html/htmlcell.h + "wx/defs.h" + "wx/html/htmltag.h" + "wx/html/htmldefs.h" + "wx/window.h" + +1302101441 /usr/include/wx-2.8/wx/html/htmldefs.h + "wx/defs.h" + +1302101440 /usr/include/wx-2.8/wx/encconv.h + "wx/defs.h" + "wx/object.h" + "wx/fontenc.h" + "wx/dynarray.h" + +1302101441 /usr/include/wx-2.8/wx/html/htmlfilt.h + "wx/defs.h" + "wx/filesys.h" + +1302101441 /usr/include/wx-2.8/wx/calctrl.h + "wx/defs.h" + "wx/dateevt.h" + "wx/colour.h" + "wx/font.h" + "wx/generic/calctrl.h" + +1302101441 /usr/include/wx-2.8/wx/dateevt.h + "wx/event.h" + "wx/datetime.h" + "wx/window.h" + +1302101441 /usr/include/wx-2.8/wx/generic/calctrl.h + "wx/control.h" + "wx/dcclient.h" + +1302101440 /usr/include/wx-2.8/wx/dir.h + "wx/longlong.h" + "wx/string.h" + +1302101440 /usr/include/wx-2.8/wx/ffile.h + "wx/defs.h" + "wx/string.h" + "wx/filefn.h" + "wx/convauto.h" + + +1302101441 /usr/include/wx-2.8/wx/print.h + "wx/defs.h" + "wx/msw/printwin.h" + "wx/mac/printmac.h" + "wx/os2/printos2.h" + "wx/generic/printps.h" + +1302101440 /usr/include/wx-2.8/wx/generic/printps.h + "wx/prntbase.h" + +1302101441 /usr/include/wx-2.8/wx/prntbase.h + "wx/defs.h" + "wx/event.h" + "wx/cmndata.h" + "wx/panel.h" + "wx/scrolwin.h" + "wx/dialog.h" + "wx/frame.h" + +1302101441 /usr/include/wx-2.8/wx/dcbuffer.h + "wx/dcmemory.h" + "wx/dcclient.h" + "wx/window.h" + +1302101441 /usr/include/wx-2.8/wx/tipwin.h + "wx/popupwin.h" + "wx/frame.h" + "wx/arrstr.h" + +1302101441 /usr/include/wx-2.8/wx/popupwin.h + "wx/defs.h" + "wx/window.h" + "wx/msw/popupwin.h" + "wx/os2/popupwin.h" + "wx/gtk/popupwin.h" + "wx/gtk1/popupwin.h" + "wx/x11/popupwin.h" + "wx/motif/popupwin.h" + "wx/mgl/popupwin.h" + "wx/mac/popupwin.h" + +1302101441 /usr/include/wx-2.8/wx/gtk/popupwin.h + +1302101440 /usr/include/wx-2.8/wx/stdpaths.h + "wx/defs.h" + "wx/string.h" + "wx/filefn.h" + "wx/msw/stdpaths.h" + "wx/mac/corefoundation/stdpaths.h" + "wx/os2/stdpaths.h" + "wx/unix/stdpaths.h" + "wx/palmos/stdpaths.h" + +1302101440 /usr/include/wx-2.8/wx/unix/stdpaths.h + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/wxprec.h + "wx/defs.h" + "wx/wxchar.h" + "wx/msw/wrapwin.h" + "wx/msw/wrapcctl.h" + "wx/msw/wrapcdlg.h" + "wx/msw/private.h" + "wx/msw/missing.h" + + "wx/os2/private.h" + "wx/mgl/private.h" + "wx/wx.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/defs.h + "wx/platform.h" + "wx/features.h" + "wx/version.h" + "wx/dlimpexp.h" + "wx/debug.h" + + + + "wx/msw/winundef.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/platform.h + + + + "wx/mac/carbon/config_xcode.h" + "wx/setup.h" + "wx/chkconf.h" + "wx/msw/wince/libraries.h" + "wx/msw/libraries.h" + "wx/msw/gccpriv.h" + + +1305165964 /opt/mingw/usr/i686-pc-mingw32/lib/wx/include/i686-pc-mingw32-msw-unicode-release-static-2.8/wx/setup.h + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/chkconf.h + "wx/palmos/chkconf.h" + "wx/msw/wince/chkconf.h" + "wx/msw/chkconf.h" + "wx/mac/chkconf.h" + "wx/os2/chkconf.h" + "wx/mgl/chkconf.h" + "wx/dfb/chkconf.h" + "wx/motif/chkconf.h" + "wx/x11/chkconf.h" + "wx/univ/chkconf.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/chkconf.h + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/libraries.h + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/gccpriv.h + <_mingw.h> + + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/features.h + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/version.h + "wx/cpp.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/cpp.h + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/dlimpexp.h + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/debug.h + + + "wx/wxchar.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/wxchar.h + "wx/platform.h" + "wx/dlimpexp.h" + + + + + + + + + + + + + + + + + + + + + + + + + + + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/winundef.h + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/wrapwin.h + "wx/platform.h" + + "wx/msw/winundef.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/wrapcctl.h + "wx/msw/wrapwin.h" + + "wx/msw/missing.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/missing.h + + "wx/msw/winundef.h" + "wx/msw/wince/missing.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/wrapcdlg.h + "wx/defs.h" + "wx/msw/wrapwin.h" + "wx/msw/private.h" + "wx/msw/missing.h" + + "wx/msw/winundef.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/private.h + "wx/msw/wrapwin.h" + "wx/msw/microwin.h" + "wx/log.h" + "wx/gdicmn.h" + "wx/colour.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/log.h + "wx/defs.h" + "wx/string.h" + "wx/arrstr.h" + + "wx/dynarray.h" + "wx/iosfwrap.h" + "wx/generic/logg.h" + "wx/cocoa/log.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/string.h + "wx/defs.h" + + + + + + + + + + + + + "wx/wxchar.h" + "wx/buffer.h" + "wx/strconv.h" + "wx/beforestd.h" + + "wx/afterstd.h" + "wx/arrstr.h" + "wx/iosfwrap.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/buffer.h + "wx/wxchar.h" + + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/strconv.h + "wx/defs.h" + "wx/wxchar.h" + "wx/buffer.h" + "typeinfo.h" + + "wx/fontenc.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/fontenc.h + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/beforestd.h + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/afterstd.h + "wx/msw/winundef.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/arrstr.h + "wx/defs.h" + "wx/string.h" + "wx/dynarray.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/dynarray.h + "wx/defs.h" + "wx/beforestd.h" + + + "wx/afterstd.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/iosfwrap.h + + + "wx/msw/winundef.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/generic/logg.h + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/gdicmn.h + "wx/defs.h" + "wx/list.h" + "wx/string.h" + "wx/fontenc.h" + "wx/hashmap.h" + "wx/math.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/list.h + "wx/defs.h" + "wx/object.h" + "wx/string.h" + "wx/beforestd.h" + + + + "wx/afterstd.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/object.h + "wx/memory.h" + "wx/xti.h" + "wx/msw/msvcrt.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/memory.h + "wx/defs.h" + "wx/string.h" + "wx/msgout.h" + + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msgout.h + "wx/defs.h" + "wx/wxchar.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/xti.h + "wx/defs.h" + "wx/memory.h" + "wx/flags.h" + "wx/string.h" + "wx/arrstr.h" + "wx/hashmap.h" + "wx/log.h" + "wx/intl.h" + + "wx/dynarray.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/hashmap.h + "wx/string.h" + + + + + + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/intl.h + "wx/defs.h" + "wx/string.h" + "wx/fontenc.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/msvcrt.h + + + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/math.h + "wx/defs.h" + + + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/colour.h + "wx/defs.h" + "wx/gdiobj.h" + "wx/variant.h" + "wx/generic/colour.h" + "wx/msw/colour.h" + "wx/motif/colour.h" + "wx/gtk/colour.h" + "wx/gtk1/colour.h" + "wx/generic/colour.h" + "wx/generic/colour.h" + "wx/x11/colour.h" + "wx/mac/colour.h" + "wx/cocoa/colour.h" + "wx/os2/colour.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/gdiobj.h + "wx/object.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/variant.h + "wx/defs.h" + "wx/object.h" + "wx/string.h" + "wx/arrstr.h" + "wx/list.h" + "wx/cpp.h" + "wx/datetime.h" + "wx/db.h" + "wx/iosfwrap.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/datetime.h + "wx/defs.h" + + "wx/msw/wince/time.h" + + "wx/longlong.h" + "wx/dynarray.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/longlong.h + "wx/defs.h" + "wx/string.h" + + "wx/iosfwrap.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/db.h + "wx/defs.h" + "wx/string.h" + + "wx/msw/wrapwin.h" + "sql.h" + "sqlext.h" + "odbcinst.h" + "wx/msw/wrapwin.h" + "wx/isql.h" + "wx/isqlext.h" + + + + + "wx/object.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/isql.h + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/isqlext.h + "wx/isql.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/colour.h + "wx/object.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/wx.h + "wx/defs.h" + "wx/object.h" + "wx/dynarray.h" + "wx/list.h" + "wx/hash.h" + "wx/string.h" + "wx/hashmap.h" + "wx/arrstr.h" + "wx/intl.h" + "wx/log.h" + "wx/event.h" + "wx/app.h" + "wx/utils.h" + "wx/stream.h" + "wx/memory.h" + "wx/math.h" + "wx/stopwatch.h" + "wx/module.h" + "wx/window.h" + "wx/containr.h" + "wx/panel.h" + "wx/toplevel.h" + "wx/frame.h" + "wx/gdicmn.h" + "wx/gdiobj.h" + "wx/region.h" + "wx/bitmap.h" + "wx/image.h" + "wx/colour.h" + "wx/font.h" + "wx/dc.h" + "wx/dcclient.h" + "wx/dcmemory.h" + "wx/dcprint.h" + "wx/dcscreen.h" + "wx/button.h" + "wx/menuitem.h" + "wx/menu.h" + "wx/pen.h" + "wx/brush.h" + "wx/palette.h" + "wx/icon.h" + "wx/cursor.h" + "wx/dialog.h" + "wx/timer.h" + "wx/settings.h" + "wx/msgdlg.h" + "wx/cmndata.h" + "wx/dataobj.h" + "wx/control.h" + "wx/ctrlsub.h" + "wx/bmpbuttn.h" + "wx/checkbox.h" + "wx/checklst.h" + "wx/choice.h" + "wx/scrolbar.h" + "wx/stattext.h" + "wx/statbmp.h" + "wx/statbox.h" + "wx/listbox.h" + "wx/radiobox.h" + "wx/radiobut.h" + "wx/textctrl.h" + "wx/slider.h" + "wx/gauge.h" + "wx/scrolwin.h" + "wx/dirdlg.h" + "wx/toolbar.h" + "wx/combobox.h" + "wx/layout.h" + "wx/sizer.h" + "wx/mdi.h" + "wx/statusbr.h" + "wx/choicdlg.h" + "wx/textdlg.h" + "wx/filedlg.h" + "wx/validate.h" + "wx/valtext.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/hash.h + "wx/defs.h" + "wx/object.h" + "wx/list.h" + "wx/dynarray.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/event.h + "wx/defs.h" + "wx/cpp.h" + "wx/object.h" + "wx/clntdata.h" + "wx/gdicmn.h" + "wx/cursor.h" + "wx/thread.h" + "wx/dynarray.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/clntdata.h + "wx/defs.h" + "wx/string.h" + "wx/hashmap.h" + "wx/vector.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/vector.h + "wx/defs.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/cursor.h + "wx/defs.h" + "wx/palmos/cursor.h" + "wx/msw/cursor.h" + "wx/motif/cursor.h" + "wx/gtk/cursor.h" + "wx/gtk1/cursor.h" + "wx/x11/cursor.h" + "wx/mgl/cursor.h" + "wx/dfb/cursor.h" + "wx/mac/cursor.h" + "wx/cocoa/cursor.h" + "wx/os2/cursor.h" + "wx/utils.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/cursor.h + "wx/msw/gdiimage.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/gdiimage.h + "wx/gdiobj.h" + "wx/gdicmn.h" + "wx/list.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/utils.h + "wx/object.h" + "wx/list.h" + "wx/filefn.h" + "wx/gdicmn.h" + "wx/longlong.h" + "wx/platinfo.h" + + + + + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/filefn.h + "wx/list.h" + "wx/arrstr.h" + "wx/msw/wince/time.h" + "wx/msw/private.h" + + + + + + + + + + + + "wx/os2/private.h" + + + + + + + + + + + + + + + + + + + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/platinfo.h + "wx/string.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/thread.h + "wx/defs.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/app.h + "wx/event.h" + "wx/build.h" + "wx/init.h" + "wx/intl.h" + "wx/palmos/app.h" + "wx/msw/app.h" + "wx/motif/app.h" + "wx/mgl/app.h" + "wx/dfb/app.h" + "wx/gtk/app.h" + "wx/gtk1/app.h" + "wx/x11/app.h" + "wx/mac/app.h" + "wx/cocoa/app.h" + "wx/os2/app.h" + "wx/univ/theme.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/build.h + "wx/version.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/init.h + "wx/defs.h" + "wx/wxchar.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/app.h + "wx/event.h" + "wx/icon.h" + "wx/msw/wrapwin.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/icon.h + "wx/iconloc.h" + "wx/generic/icon.h" + "wx/msw/icon.h" + "wx/motif/icon.h" + "wx/generic/icon.h" + "wx/generic/icon.h" + "wx/generic/icon.h" + "wx/generic/icon.h" + "wx/generic/icon.h" + "wx/mac/icon.h" + "wx/cocoa/icon.h" + "wx/os2/icon.h" + "wx/variant.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/iconloc.h + "wx/string.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/icon.h + "wx/msw/gdiimage.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/stream.h + "wx/defs.h" + + "wx/object.h" + "wx/string.h" + "wx/filefn.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/stopwatch.h + "wx/defs.h" + "wx/longlong.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/module.h + "wx/object.h" + "wx/list.h" + "wx/dynarray.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/window.h + "wx/event.h" + "wx/list.h" + "wx/cursor.h" + "wx/font.h" + "wx/colour.h" + "wx/region.h" + "wx/utils.h" + "wx/intl.h" + "wx/validate.h" + "wx/palette.h" + "wx/accel.h" + "wx/access.h" + "wx/palmos/window.h" + "wx/msw/window.h" + "wx/motif/window.h" + "wx/gtk/window.h" + "wx/gtk1/window.h" + "wx/x11/window.h" + "wx/mgl/window.h" + "wx/dfb/window.h" + "wx/mac/window.h" + "wx/cocoa/window.h" + "wx/os2/window.h" + "wx/univ/window.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/font.h + "wx/defs.h" + "wx/fontenc.h" + "wx/gdiobj.h" + "wx/palmos/font.h" + "wx/msw/font.h" + "wx/motif/font.h" + "wx/gtk/font.h" + "wx/gtk1/font.h" + "wx/x11/font.h" + "wx/mgl/font.h" + "wx/dfb/font.h" + "wx/mac/font.h" + "wx/cocoa/font.h" + "wx/os2/font.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/font.h + "wx/gdicmn.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/region.h + "wx/gdiobj.h" + "wx/gdicmn.h" + "wx/palmos/region.h" + "wx/msw/region.h" + "wx/gtk/region.h" + "wx/gtk1/region.h" + "wx/x11/region.h" + "wx/mgl/region.h" + "wx/dfb/region.h" + "wx/mac/region.h" + "wx/cocoa/region.h" + "wx/os2/region.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/region.h + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/validate.h + "wx/defs.h" + "wx/event.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/palette.h + "wx/defs.h" + "wx/object.h" + "wx/gdiobj.h" + "wx/palmos/palette.h" + "wx/msw/palette.h" + "wx/motif/palette.h" + "wx/generic/paletteg.h" + "wx/x11/palette.h" + "wx/mgl/palette.h" + "wx/mac/palette.h" + "wx/os2/palette.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/palette.h + "wx/gdiobj.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/accel.h + "wx/defs.h" + "wx/object.h" + "wx/generic/accel.h" + "wx/msw/accel.h" + "wx/motif/accel.h" + "wx/gtk/accel.h" + "wx/gtk1/accel.h" + "wx/mac/accel.h" + "wx/generic/accel.h" + "wx/os2/accel.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/generic/accel.h + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/accel.h + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/access.h + "wx/defs.h" + "wx/variant.h" + "wx/msw/ole/access.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/ole/access.h + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/window.h + "wx/hash.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/containr.h + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/panel.h + "wx/generic/panelg.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/generic/panelg.h + "wx/window.h" + "wx/containr.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/toplevel.h + "wx/window.h" + "wx/iconbndl.h" + "wx/palmos/toplevel.h" + "wx/msw/toplevel.h" + "wx/gtk/toplevel.h" + "wx/gtk1/toplevel.h" + "wx/x11/toplevel.h" + "wx/mgl/toplevel.h" + "wx/dfb/toplevel.h" + "wx/mac/toplevel.h" + "wx/cocoa/toplevel.h" + "wx/os2/toplevel.h" + "wx/motif/toplevel.h" + "wx/univ/toplevel.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/iconbndl.h + "wx/dynarray.h" + "wx/gdicmn.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/toplevel.h + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/frame.h + "wx/toplevel.h" + "wx/univ/frame.h" + "wx/palmos/frame.h" + "wx/msw/frame.h" + "wx/gtk/frame.h" + "wx/gtk1/frame.h" + "wx/motif/frame.h" + "wx/mac/frame.h" + "wx/cocoa/frame.h" + "wx/os2/frame.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/frame.h + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/bitmap.h + "wx/string.h" + "wx/gdicmn.h" + "wx/colour.h" + "wx/variant.h" + "wx/palmos/bitmap.h" + "wx/msw/bitmap.h" + "wx/x11/bitmap.h" + "wx/gtk/bitmap.h" + "wx/gtk1/bitmap.h" + "wx/x11/bitmap.h" + "wx/mgl/bitmap.h" + "wx/dfb/bitmap.h" + "wx/mac/bitmap.h" + "wx/cocoa/bitmap.h" + "wx/os2/bitmap.h" + "wx/generic/mask.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/bitmap.h + "wx/msw/gdiimage.h" + "wx/palette.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/image.h + "wx/defs.h" + "wx/object.h" + "wx/string.h" + "wx/gdicmn.h" + "wx/hashmap.h" + "wx/stream.h" + "wx/variant.h" + "wx/imagbmp.h" + "wx/imagpng.h" + "wx/imaggif.h" + "wx/imagpcx.h" + "wx/imagjpeg.h" + "wx/imagtga.h" + "wx/imagtiff.h" + "wx/imagpnm.h" + "wx/imagxpm.h" + "wx/imagiff.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/imagbmp.h + "wx/image.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/imagpng.h + "wx/defs.h" + "wx/image.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/imaggif.h + "wx/image.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/imagpcx.h + "wx/image.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/imagjpeg.h + "wx/defs.h" + "wx/image.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/imagtga.h + "wx/image.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/imagtiff.h + "wx/defs.h" + "wx/image.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/imagpnm.h + "wx/image.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/imagxpm.h + "wx/image.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/imagiff.h + "wx/image.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/dc.h + "wx/object.h" + "wx/intl.h" + "wx/cursor.h" + "wx/font.h" + "wx/colour.h" + "wx/bitmap.h" + "wx/brush.h" + "wx/pen.h" + "wx/palette.h" + "wx/list.h" + "wx/dynarray.h" + "wx/math.h" + "wx/palmos/dc.h" + "wx/msw/dc.h" + "wx/motif/dc.h" + "wx/gtk/dc.h" + "wx/gtk1/dc.h" + "wx/x11/dc.h" + "wx/mgl/dc.h" + "wx/dfb/dc.h" + "wx/mac/dc.h" + "wx/cocoa/dc.h" + "wx/os2/dc.h" + "wx/dcgraph.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/brush.h + "wx/defs.h" + "wx/object.h" + "wx/gdiobj.h" + "wx/palmos/brush.h" + "wx/msw/brush.h" + "wx/x11/brush.h" + "wx/gtk/brush.h" + "wx/gtk1/brush.h" + "wx/mgl/brush.h" + "wx/dfb/brush.h" + "wx/mac/brush.h" + "wx/cocoa/brush.h" + "wx/os2/brush.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/brush.h + "wx/gdicmn.h" + "wx/gdiobj.h" + "wx/bitmap.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/pen.h + "wx/defs.h" + "wx/palmos/pen.h" + "wx/msw/pen.h" + "wx/x11/pen.h" + "wx/gtk/pen.h" + "wx/gtk1/pen.h" + "wx/mgl/pen.h" + "wx/dfb/pen.h" + "wx/mac/pen.h" + "wx/cocoa/pen.h" + "wx/os2/pen.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/pen.h + "wx/gdiobj.h" + "wx/bitmap.h" + "wx/colour.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/dc.h + "wx/defs.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/dcgraph.h + "wx/geometry.h" + "wx/dynarray.h" + "wx/graphics.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/geometry.h + "wx/defs.h" + "wx/utils.h" + "wx/gdicmn.h" + "wx/math.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/graphics.h + "wx/defs.h" + "wx/geometry.h" + "wx/dynarray.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/dcclient.h + "wx/defs.h" + "wx/palmos/dcclient.h" + "wx/msw/dcclient.h" + "wx/motif/dcclient.h" + "wx/gtk/dcclient.h" + "wx/gtk1/dcclient.h" + "wx/x11/dcclient.h" + "wx/mgl/dcclient.h" + "wx/dfb/dcclient.h" + "wx/mac/dcclient.h" + "wx/cocoa/dcclient.h" + "wx/os2/dcclient.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/dcclient.h + "wx/dc.h" + "wx/dynarray.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/dcmemory.h + "wx/bitmap.h" + "wx/palmos/dcmemory.h" + "wx/msw/dcmemory.h" + "wx/motif/dcmemory.h" + "wx/gtk/dcmemory.h" + "wx/gtk1/dcmemory.h" + "wx/x11/dcmemory.h" + "wx/mgl/dcmemory.h" + "wx/dfb/dcmemory.h" + "wx/mac/dcmemory.h" + "wx/cocoa/dcmemory.h" + "wx/os2/dcmemory.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/dcmemory.h + "wx/dcclient.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/dcprint.h + "wx/defs.h" + "wx/palmos/dcprint.h" + "wx/msw/dcprint.h" + "wx/os2/dcprint.h" + "wx/mac/dcprint.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/dcprint.h + "wx/dc.h" + "wx/cmndata.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/cmndata.h + "wx/window.h" + "wx/font.h" + "wx/encinfo.h" + "wx/colour.h" + "wx/gdicmn.h" + "wx/stream.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/encinfo.h + "wx/string.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/dcscreen.h + "wx/defs.h" + "wx/palmos/dcscreen.h" + "wx/msw/dcscreen.h" + "wx/motif/dcscreen.h" + "wx/gtk/dcscreen.h" + "wx/gtk1/dcscreen.h" + "wx/x11/dcscreen.h" + "wx/mgl/dcscreen.h" + "wx/dfb/dcscreen.h" + "wx/mac/dcscreen.h" + "wx/cocoa/dcscreen.h" + "wx/os2/dcscreen.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/dcscreen.h + "wx/dc.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/button.h + "wx/defs.h" + "wx/control.h" + "wx/univ/button.h" + "wx/msw/button.h" + "wx/motif/button.h" + "wx/gtk/button.h" + "wx/gtk1/button.h" + "wx/mac/button.h" + "wx/cocoa/button.h" + "wx/os2/button.h" + "wx/palmos/button.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/control.h + "wx/defs.h" + "wx/window.h" + "wx/univ/control.h" + "wx/palmos/control.h" + "wx/msw/control.h" + "wx/motif/control.h" + "wx/gtk/control.h" + "wx/gtk1/control.h" + "wx/mac/control.h" + "wx/cocoa/control.h" + "wx/os2/control.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/control.h + "wx/dynarray.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/button.h + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/menuitem.h + "wx/defs.h" + "wx/object.h" + "wx/univ/menuitem.h" + "wx/palmos/menuitem.h" + "wx/msw/menuitem.h" + "wx/motif/menuitem.h" + "wx/gtk/menuitem.h" + "wx/gtk1/menuitem.h" + "wx/mac/menuitem.h" + "wx/cocoa/menuitem.h" + "wx/os2/menuitem.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/menuitem.h + "wx/ownerdrw.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/ownerdrw.h + "wx/defs.h" + "wx/bitmap.h" + "wx/colour.h" + "wx/font.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/menu.h + "wx/defs.h" + "wx/list.h" + "wx/window.h" + "wx/menuitem.h" + "wx/univ/menu.h" + "wx/palmos/menu.h" + "wx/msw/menu.h" + "wx/motif/menu.h" + "wx/gtk/menu.h" + "wx/gtk1/menu.h" + "wx/mac/menu.h" + "wx/cocoa/menu.h" + "wx/os2/menu.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/menu.h + "wx/accel.h" + "wx/dynarray.h" + "wx/arrstr.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/dialog.h + "wx/defs.h" + "wx/containr.h" + "wx/toplevel.h" + "wx/univ/dialog.h" + "wx/palmos/dialog.h" + "wx/msw/dialog.h" + "wx/motif/dialog.h" + "wx/gtk/dialog.h" + "wx/gtk1/dialog.h" + "wx/mac/dialog.h" + "wx/cocoa/dialog.h" + "wx/os2/dialog.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/dialog.h + "wx/panel.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/timer.h + "wx/defs.h" + "wx/object.h" + "wx/longlong.h" + "wx/event.h" + "wx/stopwatch.h" + "wx/window.h" + "wx/msw/timer.h" + "wx/motif/timer.h" + "wx/gtk/timer.h" + "wx/gtk1/timer.h" + "wx/generic/timer.h" + "wx/cocoa/timer.h" + "wx/mac/timer.h" + "wx/os2/timer.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/timer.h + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/generic/timer.h + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/settings.h + "wx/colour.h" + "wx/font.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msgdlg.h + "wx/defs.h" + "wx/generic/msgdlgg.h" + "wx/generic/msgdlgg.h" + "wx/palmos/msgdlg.h" + "wx/msw/msgdlg.h" + "wx/motif/msgdlg.h" + "wx/gtk/msgdlg.h" + "wx/generic/msgdlgg.h" + "wx/generic/msgdlgg.h" + "wx/mac/msgdlg.h" + "wx/cocoa/msgdlg.h" + "wx/os2/msgdlg.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/generic/msgdlgg.h + "wx/defs.h" + "wx/dialog.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/msgdlg.h + "wx/defs.h" + "wx/dialog.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/dataobj.h + "wx/defs.h" + "wx/string.h" + "wx/bitmap.h" + "wx/list.h" + "wx/arrstr.h" + "wx/msw/ole/dataform.h" + "wx/motif/dataform.h" + "wx/gtk/dataform.h" + "wx/gtk1/dataform.h" + "wx/x11/dataform.h" + "wx/mac/dataform.h" + "wx/cocoa/dataform.h" + "wx/os2/dataform.h" + "wx/msw/ole/dataobj.h" + "wx/motif/dataobj.h" + "wx/x11/dataobj.h" + "wx/gtk/dataobj.h" + "wx/gtk1/dataobj.h" + "wx/mac/dataobj.h" + "wx/cocoa/dataobj.h" + "wx/os2/dataobj.h" + "wx/msw/ole/dataobj2.h" + "wx/gtk/dataobj2.h" + "wx/gtk1/dataobj2.h" + "wx/x11/dataobj2.h" + "wx/motif/dataobj2.h" + "wx/mac/dataobj2.h" + "wx/cocoa/dataobj2.h" + "wx/os2/dataobj2.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/ole/dataform.h + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/ole/dataobj.h + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/ole/dataobj2.h + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/ctrlsub.h + "wx/defs.h" + "wx/control.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/bmpbuttn.h + "wx/defs.h" + "wx/bitmap.h" + "wx/button.h" + "wx/univ/bmpbuttn.h" + "wx/msw/bmpbuttn.h" + "wx/motif/bmpbuttn.h" + "wx/gtk/bmpbuttn.h" + "wx/gtk1/bmpbuttn.h" + "wx/mac/bmpbuttn.h" + "wx/cocoa/bmpbuttn.h" + "wx/os2/bmpbuttn.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/bmpbuttn.h + "wx/button.h" + "wx/bitmap.h" + "wx/brush.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/checkbox.h + "wx/defs.h" + "wx/control.h" + "wx/univ/checkbox.h" + "wx/msw/checkbox.h" + "wx/motif/checkbox.h" + "wx/gtk/checkbox.h" + "wx/gtk1/checkbox.h" + "wx/mac/checkbox.h" + "wx/cocoa/checkbox.h" + "wx/os2/checkbox.h" + "wx/palmos/checkbox.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/checkbox.h + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/checklst.h + "wx/listbox.h" + "wx/univ/checklst.h" + "wx/msw/wince/checklst.h" + "wx/msw/checklst.h" + "wx/motif/checklst.h" + "wx/gtk/checklst.h" + "wx/gtk1/checklst.h" + "wx/mac/checklst.h" + "wx/cocoa/checklst.h" + "wx/os2/checklst.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/listbox.h + "wx/defs.h" + "wx/ctrlsub.h" + "wx/univ/listbox.h" + "wx/msw/listbox.h" + "wx/motif/listbox.h" + "wx/gtk/listbox.h" + "wx/gtk1/listbox.h" + "wx/mac/listbox.h" + "wx/os2/listbox.h" + "wx/cocoa/listbox.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/listbox.h + "wx/dynarray.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/checklst.h + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/choice.h + "wx/defs.h" + "wx/ctrlsub.h" + "wx/univ/choice.h" + "wx/msw/wince/choicece.h" + "wx/msw/choice.h" + "wx/motif/choice.h" + "wx/gtk/choice.h" + "wx/gtk1/choice.h" + "wx/mac/choice.h" + "wx/cocoa/choice.h" + "wx/os2/choice.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/choice.h + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/scrolbar.h + "wx/defs.h" + "wx/control.h" + "wx/univ/scrolbar.h" + "wx/msw/scrolbar.h" + "wx/motif/scrolbar.h" + "wx/gtk/scrolbar.h" + "wx/gtk1/scrolbar.h" + "wx/mac/scrolbar.h" + "wx/cocoa/scrolbar.h" + "wx/os2/scrolbar.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/scrolbar.h + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/stattext.h + "wx/defs.h" + "wx/control.h" + "wx/univ/stattext.h" + "wx/msw/stattext.h" + "wx/motif/stattext.h" + "wx/gtk/stattext.h" + "wx/gtk1/stattext.h" + "wx/mac/stattext.h" + "wx/cocoa/stattext.h" + "wx/os2/stattext.h" + "wx/palmos/stattext.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/stattext.h + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/statbmp.h + "wx/defs.h" + "wx/control.h" + "wx/bitmap.h" + "wx/icon.h" + "wx/univ/statbmp.h" + "wx/msw/statbmp.h" + "wx/motif/statbmp.h" + "wx/gtk/statbmp.h" + "wx/gtk1/statbmp.h" + "wx/mac/statbmp.h" + "wx/cocoa/statbmp.h" + "wx/os2/statbmp.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/statbmp.h + "wx/control.h" + "wx/icon.h" + "wx/bitmap.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/statbox.h + "wx/defs.h" + "wx/control.h" + "wx/univ/statbox.h" + "wx/msw/statbox.h" + "wx/motif/statbox.h" + "wx/gtk/statbox.h" + "wx/gtk1/statbox.h" + "wx/mac/statbox.h" + "wx/cocoa/statbox.h" + "wx/os2/statbox.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/statbox.h + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/radiobox.h + "wx/ctrlsub.h" + "wx/dynarray.h" + "wx/univ/radiobox.h" + "wx/msw/radiobox.h" + "wx/motif/radiobox.h" + "wx/gtk/radiobox.h" + "wx/gtk1/radiobox.h" + "wx/mac/radiobox.h" + "wx/cocoa/radiobox.h" + "wx/os2/radiobox.h" + "wx/palmos/radiobox.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/radiobox.h + "wx/statbox.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/radiobut.h + "wx/defs.h" + "wx/control.h" + "wx/univ/radiobut.h" + "wx/msw/radiobut.h" + "wx/motif/radiobut.h" + "wx/gtk/radiobut.h" + "wx/gtk1/radiobut.h" + "wx/mac/radiobut.h" + "wx/cocoa/radiobut.h" + "wx/os2/radiobut.h" + "wx/palmos/radiobut.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/radiobut.h + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/textctrl.h + "wx/defs.h" + "wx/control.h" + "wx/dynarray.h" + "wx/gdicmn.h" + "wx/ioswrap.h" + "wx/x11/textctrl.h" + "wx/univ/textctrl.h" + "wx/msw/wince/textctrlce.h" + "wx/msw/textctrl.h" + "wx/motif/textctrl.h" + "wx/gtk/textctrl.h" + "wx/gtk1/textctrl.h" + "wx/mac/textctrl.h" + "wx/cocoa/textctrl.h" + "wx/os2/textctrl.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/ioswrap.h + + + "wx/msw/winundef.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/textctrl.h + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/slider.h + "wx/defs.h" + "wx/control.h" + "wx/univ/slider.h" + "wx/msw/slider95.h" + "wx/motif/slider.h" + "wx/gtk/slider.h" + "wx/gtk1/slider.h" + "wx/mac/slider.h" + "wx/cocoa/slider.h" + "wx/os2/slider.h" + "wx/palmos/slider.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/slider95.h + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/gauge.h + "wx/defs.h" + "wx/control.h" + "wx/univ/gauge.h" + "wx/msw/gauge95.h" + "wx/motif/gauge.h" + "wx/gtk/gauge.h" + "wx/gtk1/gauge.h" + "wx/mac/gauge.h" + "wx/cocoa/gauge.h" + "wx/os2/gauge.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/gauge95.h + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/scrolwin.h + "wx/panel.h" + "wx/gtk/scrolwin.h" + "wx/gtk1/scrolwin.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/dirdlg.h + "wx/dialog.h" + "wx/generic/dirdlgg.h" + "wx/generic/dirdlgg.h" + "wx/generic/dirdlgg.h" + "wx/msw/dirdlg.h" + "wx/gtk/dirdlg.h" + "wx/generic/dirdlgg.h" + "wx/mac/dirdlg.h" + "wx/cocoa/dirdlg.h" + "wx/generic/dirdlgg.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/dirdlg.h + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/toolbar.h + "wx/defs.h" + "wx/tbarbase.h" + "wx/univ/toolbar.h" + "wx/palmos/toolbar.h" + "wx/msw/tbar95.h" + "wx/msw/wince/tbarwce.h" + "wx/motif/toolbar.h" + "wx/gtk/tbargtk.h" + "wx/gtk1/tbargtk.h" + "wx/mac/toolbar.h" + "wx/cocoa/toolbar.h" + "wx/os2/toolbar.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/tbarbase.h + "wx/defs.h" + "wx/bitmap.h" + "wx/list.h" + "wx/control.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/tbar95.h + "wx/dynarray.h" + "wx/imaglist.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/imaglist.h + "wx/generic/imaglist.h" + "wx/msw/imaglist.h" + "wx/mac/imaglist.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/imaglist.h + "wx/bitmap.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/combobox.h + "wx/defs.h" + "wx/textctrl.h" + "wx/ctrlsub.h" + "wx/univ/combobox.h" + "wx/msw/combobox.h" + "wx/motif/combobox.h" + "wx/gtk/combobox.h" + "wx/gtk1/combobox.h" + "wx/mac/combobox.h" + "wx/cocoa/combobox.h" + "wx/os2/combobox.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/combobox.h + "wx/choice.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/layout.h + "wx/object.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/sizer.h + "wx/defs.h" + "wx/window.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/mdi.h + "wx/defs.h" + "wx/generic/mdig.h" + "wx/msw/mdi.h" + "wx/motif/mdi.h" + "wx/gtk/mdi.h" + "wx/gtk1/mdi.h" + "wx/mac/mdi.h" + "wx/cocoa/mdi.h" + "wx/generic/mdig.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/mdi.h + "wx/frame.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/statusbr.h + "wx/defs.h" + "wx/window.h" + "wx/list.h" + "wx/dynarray.h" + "wx/univ/statusbr.h" + "wx/palmos/statusbr.h" + "wx/msw/statbr95.h" + "wx/generic/statusbr.h" + "wx/mac/statusbr.h" + "wx/generic/statusbr.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/statbr95.h + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/choicdlg.h + "wx/generic/choicdgg.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/generic/choicdgg.h + "wx/dynarray.h" + "wx/dialog.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/textdlg.h + "wx/generic/textdlgg.h" + "wx/numdlg.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/generic/textdlgg.h + "wx/defs.h" + "wx/dialog.h" + "wx/valtext.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/valtext.h + "wx/defs.h" + "wx/textctrl.h" + "wx/validate.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/numdlg.h + "wx/defs.h" + "wx/generic/numdlgg.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/generic/numdlgg.h + "wx/defs.h" + "wx/dialog.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/filedlg.h + "wx/defs.h" + "wx/dialog.h" + "wx/arrstr.h" + "wx/generic/filedlgg.h" + "wx/msw/filedlg.h" + "wx/motif/filedlg.h" + "wx/gtk/filedlg.h" + "wx/generic/filedlgg.h" + "wx/gtk1/filedlg.h" + "wx/mac/filedlg.h" + "wx/cocoa/filedlg.h" + "wx/os2/filedlg.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/generic/filedlgg.h + "wx/listctrl.h" + "wx/datetime.h" + "wx/filefn.h" + "wx/filedlg.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/listctrl.h + "wx/defs.h" + "wx/listbase.h" + "wx/msw/listctrl.h" + "wx/mac/carbon/listctrl.h" + "wx/generic/listctrl.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/listbase.h + "wx/colour.h" + "wx/font.h" + "wx/gdicmn.h" + "wx/event.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/listctrl.h + "wx/textctrl.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/filedlg.h + +1305166123 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/aui/auibook.h + "wx/defs.h" + "wx/aui/framemanager.h" + "wx/aui/dockart.h" + "wx/aui/floatpane.h" + "wx/control.h" + +1305166123 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/aui/framemanager.h + "wx/defs.h" + "wx/dynarray.h" + "wx/gdicmn.h" + "wx/window.h" + "wx/timer.h" + "wx/sizer.h" + +1305166123 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/aui/dockart.h + "wx/defs.h" + "wx/pen.h" + "wx/brush.h" + "wx/bitmap.h" + "wx/colour.h" + +1305166123 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/aui/floatpane.h + "wx/defs.h" + "wx/frame.h" + "wx/minifram.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/minifram.h + "wx/defs.h" + "wx/palmos/minifram.h" + "wx/msw/minifram.h" + "wx/motif/minifram.h" + "wx/gtk/minifram.h" + "wx/gtk1/minifram.h" + "wx/x11/minifram.h" + "wx/mac/minifram.h" + "wx/os2/minifram.h" + "wx/frame.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/minifram.h + "wx/frame.h" + +1305166123 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/aui/aui.h + "wx/aui/framemanager.h" + "wx/aui/dockart.h" + "wx/aui/floatpane.h" + "wx/aui/auibar.h" + "wx/aui/auibook.h" + "wx/aui/tabmdi.h" + +1305166123 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/aui/auibar.h + "wx/defs.h" + "wx/control.h" + +1305166123 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/aui/tabmdi.h + "wx/frame.h" + "wx/panel.h" + "wx/notebook.h" + "wx/icon.h" + "wx/aui/auibook.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/notebook.h + "wx/defs.h" + "wx/bookctrl.h" + "wx/univ/notebook.h" + "wx/msw/notebook.h" + "wx/generic/notebook.h" + "wx/gtk/notebook.h" + "wx/gtk1/notebook.h" + "wx/mac/notebook.h" + "wx/cocoa/notebook.h" + "wx/os2/notebook.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/bookctrl.h + "wx/defs.h" + "wx/control.h" + "wx/dynarray.h" + "wx/notebook.h" + "wx/choicebk.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/choicebk.h + "wx/defs.h" + "wx/bookctrl.h" + "wx/choice.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/notebook.h + "wx/control.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/generic/notebook.h + "wx/event.h" + "wx/control.h" + +1305166123 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/html/htmlwin.h + "wx/defs.h" + "wx/window.h" + "wx/scrolwin.h" + "wx/config.h" + "wx/stopwatch.h" + "wx/html/winpars.h" + "wx/html/htmlcell.h" + "wx/filesys.h" + "wx/html/htmlfilt.h" + "wx/filename.h" + "wx/bitmap.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/config.h + "wx/confbase.h" + "wx/msw/regconf.h" + "wx/msw/iniconf.h" + "wx/palmos/prefconf.h" + "wx/fileconf.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/confbase.h + "wx/defs.h" + "wx/string.h" + "wx/string.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/regconf.h + "wx/defs.h" + "wx/msw/registry.h" + "wx/object.h" + "wx/confbase.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/registry.h + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/iniconf.h + "wx/defs.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/fileconf.h + "wx/defs.h" + "wx/textfile.h" + "wx/string.h" + "wx/confbase.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/textfile.h + "wx/defs.h" + "wx/textbuf.h" + "wx/file.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/textbuf.h + "wx/defs.h" + "wx/arrstr.h" + "wx/convauto.h" + "wx/string.h" + "wx/dynarray.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/convauto.h + "wx/strconv.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/file.h + "wx/defs.h" + "wx/string.h" + "wx/filefn.h" + "wx/strconv.h" + +1305166123 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/html/winpars.h + "wx/defs.h" + "wx/module.h" + "wx/font.h" + "wx/html/htmlpars.h" + "wx/html/htmlcell.h" + "wx/encconv.h" + +1305166123 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/html/htmlpars.h + "wx/defs.h" + "wx/html/htmltag.h" + "wx/filesys.h" + "wx/hash.h" + "wx/fontenc.h" + +1305166123 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/html/htmltag.h + "wx/defs.h" + "wx/object.h" + "wx/arrstr.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/filesys.h + "wx/defs.h" + "wx/stream.h" + "wx/datetime.h" + "wx/filename.h" + "wx/hashmap.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/filename.h + "wx/arrstr.h" + "wx/filefn.h" + "wx/datetime.h" + "wx/intl.h" + +1305166123 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/html/htmlcell.h + "wx/defs.h" + "wx/html/htmltag.h" + "wx/html/htmldefs.h" + "wx/window.h" + +1305166123 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/html/htmldefs.h + "wx/defs.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/encconv.h + "wx/defs.h" + "wx/object.h" + "wx/fontenc.h" + "wx/dynarray.h" + +1305166123 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/html/htmlfilt.h + "wx/defs.h" + "wx/filesys.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/calctrl.h + "wx/defs.h" + "wx/dateevt.h" + "wx/colour.h" + "wx/font.h" + "wx/generic/calctrl.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/dateevt.h + "wx/event.h" + "wx/datetime.h" + "wx/window.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/generic/calctrl.h + "wx/control.h" + "wx/dcclient.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/dir.h + "wx/longlong.h" + "wx/string.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/ffile.h + "wx/defs.h" + "wx/string.h" + "wx/filefn.h" + "wx/convauto.h" + + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/print.h + "wx/defs.h" + "wx/msw/printwin.h" + "wx/mac/printmac.h" + "wx/os2/printos2.h" + "wx/generic/printps.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/printwin.h + "wx/prntbase.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/prntbase.h + "wx/defs.h" + "wx/event.h" + "wx/cmndata.h" + "wx/panel.h" + "wx/scrolwin.h" + "wx/dialog.h" + "wx/frame.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/generic/printps.h + "wx/prntbase.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/dcbuffer.h + "wx/dcmemory.h" + "wx/dcclient.h" + "wx/window.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/tipwin.h + "wx/popupwin.h" + "wx/frame.h" + "wx/arrstr.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/popupwin.h + "wx/defs.h" + "wx/window.h" + "wx/msw/popupwin.h" + "wx/os2/popupwin.h" + "wx/gtk/popupwin.h" + "wx/gtk1/popupwin.h" + "wx/x11/popupwin.h" + "wx/motif/popupwin.h" + "wx/mgl/popupwin.h" + "wx/mac/popupwin.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/popupwin.h + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/stdpaths.h + "wx/defs.h" + "wx/string.h" + "wx/filefn.h" + "wx/msw/stdpaths.h" + "wx/mac/corefoundation/stdpaths.h" + "wx/os2/stdpaths.h" + "wx/unix/stdpaths.h" + "wx/palmos/stdpaths.h" + +1305166121 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/msw/stdpaths.h + +1302100052 /usr/lib/wx/include/gtk2-unicode-debug-2.8/wx/setup.h + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/progdlg.h + "wx/defs.h" + "wx/palmos/progdlg.h" + "wx/generic/progdlgg.h" + +1305166122 /opt/mingw/usr/i686-pc-mingw32/include/wx-2.8/wx/generic/progdlgg.h + "wx/defs.h" + "wx/progdlg.h" + "wx/dialog.h" + +1302101441 /usr/include/wx-2.8/wx/progdlg.h + "wx/defs.h" + "wx/palmos/progdlg.h" + "wx/generic/progdlgg.h" + +1302101440 /usr/include/wx-2.8/wx/generic/progdlgg.h + "wx/defs.h" + "wx/progdlg.h" + "wx/dialog.h" + diff --git a/SleepyHead.layout b/SleepyHead.layout new file mode 100644 index 00000000..ff9786d8 --- /dev/null +++ b/SleepyHead.layout @@ -0,0 +1,64 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SleepyHeadApp.cpp b/SleepyHeadApp.cpp new file mode 100644 index 00000000..4a1bd851 --- /dev/null +++ b/SleepyHeadApp.cpp @@ -0,0 +1,67 @@ +/*************************************************************** + * Name: SleepyHeadApp.cpp + * Purpose: Code for Application Class + * Author: Mark Watkins (jedimark64@gmail.com) + * Created: 2011-05-20 + * Copyright: Mark Watkins (http://sourceforge.net/projects/sleepyhead/) + * License: GPL + **************************************************************/ + +#ifdef WX_PRECOMP +#include "wx_pch.h" +#endif + +#ifdef __BORLANDC__ +#pragma hdrstop +#endif //__BORLANDC__ + +#include + +#include +#include +#include +#include "SleepyHeadApp.h" +#include "SleepyHeadMain.h" +#include "version.h" + +#include "sleeplib/prs1_loader.h" +#include "sleeplib/profiles.h" + +IMPLEMENT_APP(SleepyHeadApp); + +bool SleepyHeadApp::OnInit() +{ + // Initialize the logger + + wxLog *logger=new wxLogStream(&std::cout); + wxLog::SetActiveTarget(logger); + + //wxDateTime::SetCountry(wxDateTime::USA); + SetAppName(_("SleepyHead")); + PRS1Loader::Register(); + Profiles::Scan(); + + //loader_progress->Show(); + + pref["AppName"]=wxT("Awesome Sleep Application"); + pref["Version"]=wxString(AutoVersion::FULLVERSION_STRING,wxConvUTF8); + + pref["Profile"]=wxGetUserId(); + profile=Profiles::Get(pref["Profile"]); + + profile->LoadMachineData(); + // loader_progress->Show(false); + + SleepyHeadFrame* frame = new SleepyHeadFrame(0L); + + frame->Show(); + + return true; +} + +int SleepyHeadApp::OnExit() +{ + //delete loader_progress; + Profiles::Done(); + return true; +} diff --git a/SleepyHeadApp.h b/SleepyHeadApp.h new file mode 100644 index 00000000..6f82148f --- /dev/null +++ b/SleepyHeadApp.h @@ -0,0 +1,22 @@ +/*************************************************************** + * Name: SleepyHeadApp.h + * Purpose: Defines Application Class + * Author: Mark Watkins (jedimark64@gmail.com) + * Created: 2011-05-20 + * Copyright: Mark Watkins (http://sourceforge.net/projects/sleepyhead/) + * License: + **************************************************************/ + +#ifndef SLEEPYHEADAPP_H +#define SLEEPYHEADAPP_H + +#include + +class SleepyHeadApp : public wxApp +{ + public: + virtual bool OnInit(); + virtual int OnExit(); +}; + +#endif // SLEEPYHEADAPP_H diff --git a/SleepyHeadMain.cpp b/SleepyHeadMain.cpp new file mode 100644 index 00000000..64d67afd --- /dev/null +++ b/SleepyHeadMain.cpp @@ -0,0 +1,512 @@ +/*************************************************************** + * Name: SleepyHeadMain.cpp + * Purpose: Code for Application Frame + * Author: Mark Watkins (jedimark64@users.sourceforge.net) + * Created: 2011-05-20 + * Copyright: Mark Watkins (http://sourceforge.net/projects/sleepyhead/) + * License: GPL + **************************************************************/ + +#ifdef WX_PRECOMP +#include "wx_pch.h" +#endif + +#ifdef __BORLANDC__ +#pragma hdrstop +#endif //__BORLANDC__ + +#include "version.h" +#include +#include +#include +#include + +#include "SleepyHeadMain.h" +#include "sleeplib/profiles.h" +//#include "graphs/sleepflagsgraph.h" +//#include "graphs/cpap_wavegraph.h" + +#if defined(__WXMSW__) +extern "C" void *_GdipStringFormatCachedGenericTypographic = NULL; +#endif +wxProgressDialog *loader_progress; +//helper functions +enum wxbuildinfoformat { + short_f, long_f }; + +wxString wxbuildinfo(wxbuildinfoformat format) +{ + wxString wxbuild(wxVERSION_STRING); + + if (format == long_f ) + { +#if defined(__WXMSW__) + wxbuild << _T("-Windows"); +#elif defined(__WXMAC__) + wxbuild << _T("-Mac"); +#elif defined(__UNIX__) + wxbuild << _T("-Linux"); +#endif + +#if wxUSE_UNICODE + wxbuild << _T("-Unicode build"); +#else + wxbuild << _T("-ANSI build"); +#endif // wxUSE_UNICODE + } + + return wxbuild; +} + + +SleepyHeadFrame::SleepyHeadFrame(wxFrame *frame) + : GUIFrame(frame) +{ + loader_progress=new wxProgressDialog(wxT("SleepyHead"),wxT("Please Wait..."),100,this, wxPD_APP_MODAL|wxPD_AUTO_HIDE|wxPD_SMOOTH); + loader_progress->Hide(); + wxString title=wxTheApp->GetAppName()+wxT(" v")+wxString(AutoVersion::FULLVERSION_STRING,wxConvUTF8); + SetTitle(title); + //wxDisableAsserts(); + // Create AUINotebook Tabs + wxCommandEvent dummy; + OnViewMenuSummary(dummy); // Summary Page + OnViewMenuDaily(dummy); // Daily Page + +#if wxUSE_STATUSBAR + //statusBar->SetStatusText(_("Hello!"), 0); + statusBar->SetStatusText(wxbuildinfo(long_f), 1); +#endif +} + +SleepyHeadFrame::~SleepyHeadFrame() +{ + if (loader_progress) { + loader_progress->Hide(); + loader_progress->Destroy(); + delete loader_progress; + } +} + +void SleepyHeadFrame::OnClose(wxCloseEvent &event) +{ + Destroy(); +} + +void SleepyHeadFrame::OnQuit(wxCommandEvent &event) +{ + Destroy(); +} + +void SleepyHeadFrame::OnAbout(wxCommandEvent &event) +{ + wxString msg = wxbuildinfo(long_f); + msg=wxTheApp->GetAppName()+wxT(" v")+wxString(AutoVersion::FULLVERSION_STRING,wxConvUTF8)+wxT("\nAuthors: Mark Watkins / Troy Schultz\nThis is alpha software is guaranteed to break regularly!\nUse at your own risk."); //,AutoVersion::DATE,AutoVersion::MONTH,AutoVersion::YEAR + + wxMessageBox(msg, _("Welcome to..."),0,this); +} +void SleepyHeadFrame::OnImportSD(wxCommandEvent &event) +{ + wxDirDialog dd(this,_("Choose a Directory")); //,wxT(""),wxT(""),style=wxFD_OPEN); + if (dd.ShowModal()==wxID_OK) { + wxString path=dd.GetPath(); + + Profile *p=Profiles::Get(); + + loader_progress->Update(0); + loader_progress->Show(); + if (p) p->Import(path); + loader_progress->Show(false); + } + int idx=main_auinotebook->GetPageIndex(daily); + if (idx!=wxNOT_FOUND) { + daily->RefreshData(); + } + idx=main_auinotebook->GetPageIndex(summary); + if (idx!=wxNOT_FOUND) { + summary->RefreshData(); + } + summary->Refresh(); + daily->Refresh(); + Refresh(); +} +void SleepyHeadFrame::OnViewMenuDaily( wxCommandEvent& event ) +{ + int idx=main_auinotebook->GetPageIndex(daily); + if (idx==wxNOT_FOUND) { + daily=new Daily(this); + main_auinotebook->AddPage(daily,_("Daily"),true); + } else { + main_auinotebook->SetSelection(idx); + } +} +void SleepyHeadFrame::OnViewMenuSummary( wxCommandEvent& event ) +{ + int idx=main_auinotebook->GetPageIndex(summary); + if (idx==wxNOT_FOUND) { + summary=new Summary(this); + main_auinotebook->AddPage(summary,_("Summary"),true); + } else { + main_auinotebook->SetSelection(idx); + } +} + +Summary::Summary(wxWindow *win) +:SummaryPanel(win) +{ + machine=NULL; + ahidata=new HistoryData(machine,30); + AHI=new gGraphWindow(ScrolledWindow,-1,wxT("AHI"),wxPoint(0,0), wxSize(400,200), wxNO_BORDER); + AHI->SetMargins(10,15,60,80); + AHI->AddLayer(new gBarChart(ahidata,wxRED)); + fgSizer->Add(AHI,1,wxEXPAND); + + pressure=new HistoryCodeData(machine,CPAP_PressureAverage,30); + PRESSURE=new gGraphWindow(ScrolledWindow,-1,wxT("Average Pressure"),wxPoint(0,0), wxSize(400,200), wxNO_BORDER); + PRESSURE->SetMargins(10,15,60,80); + PRESSURE->AddLayer(new gBarChart(pressure,wxBLUE)); + fgSizer->Add(PRESSURE,1,wxEXPAND); + + leak=new HistoryCodeData(machine,CPAP_LeakAverage,30); + LEAK=new gGraphWindow(ScrolledWindow,-1,wxT("Average Leak"),wxPoint(0,0), wxSize(400,200), wxNO_BORDER); + LEAK->SetMargins(10,15,60,80); + LEAK->AddLayer(new gBarChart(leak,wxYELLOW)); + fgSizer->Add(LEAK,1,wxEXPAND); + + RefreshData(); + +} +Summary::~Summary() +{ +} + +void Summary::RefreshData() +{ + if (!machine) { + Profile *p=Profiles::Get(); + vectorvm=p->GetMachines(MT_CPAP); + if (vm.size()>=1) { + machine=vm[0]; + } else machine=NULL; + ahidata->SetMachine(machine); + pressure->SetMachine(machine); + leak->SetMachine(machine); + } + ahidata->Update(); + pressure->Update(); + leak->Update(); + wxString submodel=_("Unknown Model"); + double ahi=ahidata->GetAverage(); + double avp=pressure->GetAverage(); + + wxString html=wxT("\n"); + + if (machine) { + html=html+wxT("\n"); + if (machine->properties.find(wxT("SubModel"))!=machine->properties.end()) + submodel=wxT("
\n ")+machine->properties[wxT("SubModel")]; + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("
")+_("Machine Information")+wxT("
")+machine->properties[wxT("Brand")]+wxT("
")+machine->properties[wxT("Model")]+wxT(" ")+machine->properties[wxT("ModelNumber")]+submodel+wxT("
  
")+_("Indice Averages")+wxT("
")+_("AHI")+wxT("")+wxString::Format(wxT("%0.2f"),ahi)+wxT("
")+_("Pressure")+wxT("")+wxString::Format(wxT("%0.2fcmH2O"),avp)+wxT("
")+_("Mask Leaks")+wxT("")+wxString::Format(wxT("%0.2f"),leak->GetAverage())+wxT("
"); + } else { + html=html+_("Please import some data."); + } + html+=wxT(""); + HTMLInfo->SetPage(html); + + +} + +Daily::Daily(wxWindow *win) +:DailyPanel(win) +{ + Profile *p=Profiles::Get(); + vectorvm=p->GetMachines(MT_CPAP); + wxString s; + if (vm.size()>=1) { + machine=vm[0]; + } else machine=NULL; + + TAP=new gGraphWindow(ScrolledWindow,-1,wxT("Time@Pressure"),wxPoint(0,0), wxSize(600,50), wxNO_BORDER); + TAP->SetMargins(20,15,5,50); + AddData(tap=new TAPData()); + TAP->AddLayer(new gCandleStick(tap)); + + G_AHI=new gGraphWindow(ScrolledWindow,-1,wxT("Event Breakdown"),wxPoint(0,0), wxSize(600,50), wxNO_BORDER); + G_AHI->SetMargins(20,15,5,50); + AddData(g_ahi=new AHIData()); + gCandleStick *l=new gCandleStick(g_ahi); + l->AddName(wxT("H")); + l->AddName(wxT("OA")); + l->AddName(wxT("CA")); + l->AddName(wxT("RE")); + l->AddName(wxT("FL")); + l->AddName(wxT("CSR")); + l->color.clear(); + l->color.push_back(wxBLUE); + l->color.push_back(wxAQUA); + l->color.push_back(wxPURPLE); + l->color.push_back(wxYELLOW); + l->color.push_back(wxBLACK); + l->color.push_back(wxGREEN2); + G_AHI->AddLayer(l); + + AddData(leakdata=new PressureData(CPAP_Leak,0)); + LEAK=new gGraphWindow(ScrolledWindow,-1,wxT("Mask Leaks"),wxPoint(0,0), wxSize(600,150), wxNO_BORDER); + LEAK->AddLayer(new gLineChart(leakdata,wxPURPLE,4096,false)); + + AddData(prd=new PressureData(CPAP_Pressure)); + PRD=new gGraphWindow(ScrolledWindow,-1,wxT("Pressure"),wxPoint(0,0), wxSize(600,150), wxNO_BORDER); + PRD->AddLayer(new gLineChart(prd,wxDARK_GREEN,4096,false)); + + AddData(frw=new FlowData()); + FRW=new gGraphWindow(ScrolledWindow,-1,wxT("Flow Rate"),wxPoint(0,0), wxSize(600,150), wxNO_BORDER); + // FRW->SetMargins(10,15,25,80); + + AddData(flags[0]=new FlagData(CPAP_CSR,7,1,0)); + AddData(flags[1]=new FlagData(CPAP_ClearAirway,6)); + AddData(flags[2]=new FlagData(CPAP_Obstructive,5)); + AddData(flags[3]=new FlagData(CPAP_Hypopnea,4)); + AddData(flags[4]=new FlagData(CPAP_FlowLimit,3)); + AddData(flags[5]=new FlagData(CPAP_VSnore,2)); + AddData(flags[6]=new FlagData(CPAP_RERA,1)); + AddData(flags[7]=new FlagData(PRS1_PressurePulse,1)); + + FRW->AddLayer(new gLineChart(frw,wxBLACK,200000,true)); + FRW->AddLayer(new gLineOverlayBar(flags[6],wxYELLOW,wxT("RE"))); + FRW->AddLayer(new gLineOverlayBar(flags[5],wxRED,wxT("VS"))); + FRW->AddLayer(new gLineOverlayBar(flags[4],wxBLACK,wxT("FL"))); + FRW->AddLayer(new gLineOverlayBar(flags[3],wxBLUE,wxT("H"))); + FRW->AddLayer(new gLineOverlayBar(flags[2],wxAQUA,wxT("OA"))); + FRW->AddLayer(new gLineOverlayBar(flags[1],wxPURPLE,wxT("CA"))); + FRW->AddLayer(new gLineOverlayBar(flags[0],wxGREEN2,wxT("CSR"))); + + SF=new gGraphWindow(ScrolledWindow,-1,wxT("Sleep Flags"),wxPoint(0,0), wxSize(600,150), wxNO_BORDER); + SF->SetMargins(10,15,20,80); + + SF->AddLayer(new gFlagsLine(flags[6],wxYELLOW,wxT("RE"),6,7)); + SF->AddLayer(new gFlagsLine(flags[5],wxRED,wxT("VS"),5,7)); + SF->AddLayer(new gFlagsLine(flags[4],wxBLACK,wxT("FL"),4,7)); + SF->AddLayer(new gFlagsLine(flags[3],wxBLUE,wxT("H"),3,7)); + SF->AddLayer(new gFlagsLine(flags[2],wxAQUA,wxT("OA"),2,7)); + SF->AddLayer(new gFlagsLine(flags[1],wxPURPLE,wxT("CA"),1,7)); + SF->AddLayer(new gFlagsLine(flags[0],wxGREEN2,wxT("CSR"),0,7)); + //l=new gBarChart(graphdata,wxHORIZONTAL); + //graph->AddLayer(l); + //graph->SetData(graphdata); + /*l=new gBarChart(wxHORIZONTAL); + graph2->AddLayer(l); */ + //m_mgr2.AddPane(graph,wxLEFT); + //wxAuiPaneInfo &z=m_mgr2.GetPane(graph); + //z.Caption(graph->GetTitle()); + //z.CloseButton(false); + + + fgSizer->Add(SF,1,wxEXPAND); + fgSizer->Add(G_AHI,1,wxEXPAND); + fgSizer->Add(FRW,1,wxEXPAND); + fgSizer->Add(PRD,1,wxEXPAND); + fgSizer->Add(LEAK,1,wxEXPAND); + fgSizer->Add(TAP,1,wxEXPAND); + + + //m_mgr2.Update(); + //DailyGraphHolder->Add(graph,1,wxEXPAND); + foobar_datehack=false; + RefreshData(); + +} +Daily::~Daily() +{ + +} +void Daily::RefreshData() +{ + if (!machine) { + Profile *p=Profiles::Get(); + vectorvm=p->GetMachines(MT_CPAP); + wxString s; + if (vm.size()>=1) { + machine=vm[0]; + } else machine=NULL; + } + + wxDateTime day=Calendar->GetDate(); + day.ResetTime(); + day.SetHour(0); + //et-=wxTimeSpan::Days(1); + UpdateGraphs(day); + wxCalendarEvent ev; + ev.SetDate(day); + OnCalendarMonth(ev); + OnCalendarDay(ev); +} +///usr/local/bin/upx ./bin/Windows/SleepyHead + +void Daily::OnCalendarDay( wxCalendarEvent& event ) +{ + if (foobar_datehack) { + OnCalendarMonth(event); + foobar_datehack=false; + } + if (!machine) return; + + wxDateTime day=event.GetDate(); + day.ResetTime(); + day.SetHour(0); + day-=wxTimeSpan::Days(1); + Day *d; + if (machine && (machine->day.find(day)!=machine->day.end()) && (d=machine->day[day]) && (d->size()>0) && ((d->last()-d->first())>wxTimeSpan::Minutes(15))) { + //HTMLInfo->SetPage(wxT("")); + UpdateGraphs(day); + +// Session *s=(*machine->day[day])[0]; + PRTypes pr=(PRTypes)d->summary_max(CPAP_PressureReliefType); + wxString epr=PressureReliefNames[pr]+wxString::Format(wxT(" x%i"),(int)d->summary_max(CPAP_PressureReliefSetting)); + CPAPMode mode=(CPAPMode)d->summary_max(CPAP_Mode); + wxString modestr=CPAPModeNames[mode]; + + float ahi=(d->count(CPAP_Obstructive)+d->count(CPAP_Hypopnea)+d->count(CPAP_ClearAirway))/d->hours(); + float csr=(100.0/d->hours())*(d->sum(CPAP_CSR)/3600.0); + float oai=d->count(CPAP_Obstructive)/d->hours(); + float hi=d->count(CPAP_Hypopnea)/d->hours(); + float cai=d->count(CPAP_ClearAirway)/d->hours(); + float rei=d->count(CPAP_RERA)/d->hours(); + float vsi=d->count(CPAP_VSnore)/d->hours(); + float fli=d->count(CPAP_FlowLimit)/d->hours(); + wxString submodel=_("Unknown Model"); + + + wxString html=wxT("\n"); + html=html+wxT("\n"); + if (machine->properties.find(wxT("SubModel"))!=machine->properties.end()) + submodel=wxT("
")+machine->properties[wxT("SubModel")]; + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + + +// html=html+wxT("\n"); +// html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + if (mode==MODE_CPAP) { + html=html+wxT("\n"); + } else if (mode==MODE_APAP) { + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + } + + html=html+wxT("\n"); + html=html+wxT("\n"); + + + html=html+wxT("\n"); + html=html+wxT("\n"); + // check HumidiferStatus.. + wxString humid; + if (bool(d->summary_max(CPAP_HumidifierStatus))) { + humid=wxString::Format(wxT("x%i"),(int)d->summary_max(CPAP_HumidifierSetting)); + } else humid=wxT("No"); + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + html=html+wxT("\n"); + //PRS1_SystemLockStatus + + html=html+wxT("
")+_("Machine Information")+wxT("
")+machine->properties[wxT("Brand")]+wxT("
")+machine->properties[wxT("Model")]+wxT(" ")+machine->properties[wxT("ModelNumber")]+submodel+wxT("
  
")+_("Sleep Times")+wxT("
")+_("Date")+wxT("")+machine->day[day]->first().Format(wxT("%x"))+wxT("
")+_("Sleep")+wxT("")+machine->day[day]->first().Format(wxT("%I:%M%p"))+wxT("
")+_("Wake")+wxT("")+machine->day[day]->last().Format(wxT("%I:%M%p"))+wxT("
  
")+_("Indices")+wxT("
")+_("AHI")+wxT("")+wxString::Format(wxT("%0.2f"),ahi)+wxT("
")+_("Obstructive")+wxT("")+wxString::Format(wxT("%0.2f"),oai)+wxT("
")+_("Hypopnea")+wxT("")+wxString::Format(wxT("%0.2f"),hi)+wxT("
")+_("ClearAirway")+wxT("")+wxString::Format(wxT("%0.2f"),cai)+wxT("
")+_("RERA")+wxT("")+wxString::Format(wxT("%0.2f"),rei)+wxT("
")+_("FlowLimit")+wxT("")+wxString::Format(wxT("%0.2f"),fli)+wxT("
")+_("Vsnore")+wxT("")+wxString::Format(wxT("%0.2f"),vsi)+wxT("
")+_("CSR")+wxT("")+wxString::Format(wxT("%0.2f%%"),csr)+wxT("
  
")+_("Other Information")+wxT("
  
Session Informaton
")+_("Mode")+wxT("")+modestr+wxT("
")+_("Relief")+wxT("")+epr+wxT("
")+_("Avg Leak")+wxT("")+wxString::Format(wxT("%.2f"),d->summary_avg(CPAP_LeakAverage))+wxT("
")+_("Pressure")+wxT("")+wxString::Format(wxT("%.1fcmH2O"),d->summary_min(CPAP_PressureMin))+wxT("
")+_("Pressure-Min")+wxT("")+wxString::Format(wxT("%.1fcmH2O"),d->summary_min(CPAP_PressureMinAchieved))+wxT("
")+_("Pressure-Max")+wxT("")+wxString::Format(wxT("%.1fcmH2O"),d->summary_max(CPAP_PressureMax))+wxT("
")+_("Avg Pressure")+wxT("")+wxString::Format(wxT("%.1fcmH2O"),d->summary_avg(CPAP_PressureAverage))+wxT("
")+_("90% Pressure")+wxT("")+wxString::Format(wxT("%.1fcmH2O"),d->summary_avg(CPAP_PressurePercentValue))+wxT("
  
")+_("System Settings")+wxT("
")+_("Ramp-Time")+wxT("")+wxString::Format(wxT("%imin"),(int)d->summary_max(CPAP_RampTime))+wxT("
")+_("Ramp-Prs.")+wxT("")+wxString::Format(wxT("%.1fcmH2O"),d->summary_min(CPAP_RampStartingPressure))+wxT("
")+_("Humidifier")+wxT("")+humid+wxT("
")+_("System-Lock")+wxT("")+(bool(d->summary_max(PRS1_SystemLockStatus)) ? _("On") : _("Off"))+wxT("
")+_("Auto-Off")+wxT("")+(bool(d->summary_max(PRS1_AutoOff)) ? _("On") : _("Off"))+wxT("
")+_("Mask-Alert")+wxT("")+(bool(d->summary_max(PRS1_MaskAlert)) ? _("On") : _("Off"))+wxT("
")+_("Show-AHI")+wxT("")+(bool(d->summary_max(PRS1_ShowAHI)) ? _("On") : _("Off"))+wxT("
")+_("Hose-Size")+wxT("")+(bool(d->summary_max(PRS1_HoseDiameter)) ? _("22mm") : _("15mm"))+wxT("
")+_("Sys-Resist.")+wxT("")+wxString::Format(wxT("%i"),int(d->summary_max(PRS1_SystemResistanceStatus)))+wxT("
"); + /* for (auto i=s->summary.begin();i!=s->summary.end();i++) { + MachineCode c=(*i).first; + wxString name; + if (DefaultMCShortNames.find(c)!=DefaultMCShortNames.end()) name=DefaultMCShortNames[c]; + else name=wxString::Format(wxT("%04i"),(int)c); + html+=name+wxT(" = ")+(*i).second.GetString()+wxT("
\n"); + } */ + html+=wxT(""); + HTMLInfo->SetPage(html); + } else { + HTMLInfo->SetPage(_("No CPAP Machine Data Available")); + UpdateGraphs(wxInvalidDateTime); + } + +} +void Daily::UpdateGraphs(wxDateTime d) +{ + Day *day=NULL; + if (!machine) return; + if (d!=wxInvalidDateTime) { + if (machine->day.find(d)!=machine->day.end()) { + day=machine->day[d]; + } + } + for (auto g=Data.begin();g!=Data.end();g++) { + + (*g)->Update(day); + } +}; + +void Daily::OnCalendarMonth( wxCalendarEvent& event ) +{ + wxDateTime et=event.GetDate(); + if (!et.IsValid()) { + foobar_datehack=true; + return; + } + + wxDateTime::Month m=et.GetMonth(); + int y=et.GetYear(); + + static wxFont f=*wxNORMAL_FONT; //wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT); + f.SetWeight(wxBOLD); + + if (!machine) return; + for (int i=1;i<31;i++) { + int j=wxDateTime::GetNumberOfDays(m,y); + if (i>j) break; + wxDateTime d(i,m,y,0,0,0,0); + d-=wxTimeSpan::Days(1); + if ((machine->day.find(d)!=machine->day.end()) && ((machine->day[d]->last() - machine->day[d]->first())>wxTimeSpan::Minutes(15))) { +#if wxCHECK_VERSION(2,9,0) + Calendar->Mark(i,true); +#else + wxCalendarDateAttr *a=new wxCalendarDateAttr(); + a->SetFont(f); + //wxNORM + Calendar->SetAttr(i,a); +#endif + } else { +#if wxCHECK_VERSION(2,9,0) + Calendar->Mark(i,false); +#else + Calendar->ResetAttr(i); +#endif +// Calendar->SetAttr(i,NULL); + } + } +} + + diff --git a/SleepyHeadMain.h b/SleepyHeadMain.h new file mode 100644 index 00000000..1d436968 --- /dev/null +++ b/SleepyHeadMain.h @@ -0,0 +1,79 @@ +/*************************************************************** + * Name: SleepyHeadMain.h + * Purpose: Defines Application Frame + * Author: Mark Watkins (jedimark64@users.sourceforge.net) + * Created: 2011-05-20 + * Copyright: Mark Watkins (http://sourceforge.net/projects/sleepyhead/) + * License: GPL + **************************************************************/ + +#ifndef SLEEPYHEADMAIN_H +#define SLEEPYHEADMAIN_H + + + +#include "SleepyHeadApp.h" + +#include "GUIFrame.h" +#include "sleeplib/machine.h" +#include "graphs/graph.h" +//#include "graphs/sleepflagsgraph.h" +//#include "graphs/cpap_wavegraph.h" +//#include "graphs/cpap_pressure.h" + +class Summary:public SummaryPanel +{ +public: + Summary(wxWindow *win); + virtual ~Summary(); + Machine *machine; + HistoryData *ahidata,*pressure,*leak; + gGraphWindow *AHI,*PRESSURE,*LEAK; + void RefreshData(); + +}; + +class Daily:public DailyPanel +{ +public: + Daily(wxWindow *win); + virtual ~Daily(); + void RefreshData(); + + Machine *machine; +protected: + virtual void OnCalendarDay( wxCalendarEvent& event ); + virtual void OnCalendarMonth( wxCalendarEvent& event ); + void AddData(gPointData *d) { Data.push_back(d); }; + void UpdateGraphs(wxDateTime date); + + bool foobar_datehack; + gPointData *tap,*g_ahi,*frw,*prd,*leakdata; + gPointData *flags[8]; + gGraphWindow *PRD,*FRW,*G_AHI,*TAP,*LEAK,*SF; + + + list Data; +}; + +class SleepyHeadFrame: public GUIFrame +{ + public: + SleepyHeadFrame(wxFrame *frame); + ~SleepyHeadFrame(); + private: + virtual void OnClose(wxCloseEvent& event); + virtual void OnQuit(wxCommandEvent& event); + virtual void OnAbout(wxCommandEvent& event); + virtual void OnImportSD(wxCommandEvent& event); + virtual void OnViewMenuDaily(wxCommandEvent& event); + virtual void OnViewMenuSummary(wxCommandEvent& event); + + Summary *summary; + Daily *daily; + Machine *machine; + Profile *profile; + +}; + +#endif // SLEEPYHEADMAIN_H diff --git a/WxWizFrame.fbp b/WxWizFrame.fbp new file mode 100644 index 00000000..8aba6aec --- /dev/null +++ b/WxWizFrame.fbp @@ -0,0 +1,1097 @@ + + + + + + C++ + 1 + source_name + 0 + UTF-8 + connect + GUIFrame + 1000 + none + 1 + SleepyHead + + . + #include "wx/wxprec.h" #ifdef __BORLANDC__ #pragma hdrstop #endif //__BORLANDC__ #ifndef WX_PRECOMP #include <wx/wx.h> #endif //WX_PRECOMP + 1 + 1 + 0 + 0 + + 1 + 1 + 1 + 1 + 1 + + + + + 1 + + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + impl_virtual + + + 1 + + 0 + 0 + wxID_ANY + + + 0 + + + 0 + + 1 + GUIFrame + 1 + + + 1 + + + Resizable + + 1 + 1157,703 + wxDEFAULT_FRAME_STYLE + + SleepyHead + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + wxTAB_TRAVERSAL + 1 + + + + + + + + + + OnClose + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + 1 + 1 + 1 + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + MyMenuBar + + + 0 + + + 0 + + 1 + menubar + 1 + + + protected + 1 + + + Resizable + + 1 + + + + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + + + + + + + + + + + + + + + + + + + + + &File + FileMenu + protected + + + 0 + 1 + + wxID_ANY + wxITEM_NORMAL + &Import SD + FileMenuImportSD + none + + + OnImportSD + + + + + 0 + 1 + + wxID_ANY + wxITEM_NORMAL + &Preferences + FileMenuPreferences + none + + + OnPreferencesClicked + + + + m_separator1 + none + + + + 0 + 1 + + wxID_QUIT + wxITEM_NORMAL + E&xit + FileMenuExit + none + + + OnQuit + + + + + &View + ViewMenu + protected + + + 0 + 1 + + wxID_ANY + wxITEM_NORMAL + &Summary + ViewMenuSummary + none + + + OnViewMenuSummary + + + + + 1 + 1 + + wxID_ANY + wxITEM_NORMAL + &Daily + ViewMenuDaily + none + + + OnViewMenuDaily + + + + + &Help + HelpMenu + protected + + + 0 + 1 + + wxID_ANY + wxITEM_NORMAL + &About + HelpMenuAbout + none + + + OnAbout + + + + + + 1 + 1 + 1 + 1 + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Left + 1 + + 2 + 1 + + 0 + 0 + wxID_ANY + + + 0 + + + 0 + + 1 + statusBar + 1 + + + protected + 1 + + + Resizable + + 1 + + wxST_SIZEGRIP + + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + 1 + 1 + 1 + + + + + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Center + 1 + + 1 + + 0 + 0 + wxID_ANY + + + 0 + + + 0 + + 1 + main_auinotebook + 1 + + + public + 1 + + + Resizable + + 1 + + wxAUI_NB_DEFAULT_STYLE + + -1 + 0 + + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + 0 + 0 + 0 + 1 + + + + + 1 + 1 + 1 + + 1 + 0 + Dock + 0 + Center + 1 + impl_virtual + + 1 + + 0 + 0 + wxID_ANY + + + 0 + + + 0 + + 1 + DailyPanel + 1 + + + 1 + + + Resizable + + 1 + 935,573 + + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + wxTAB_TRAVERSAL + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + 1 + 1 + 1 + + + + Day Summary + 1 + 0 + 0 + + 1 + 0 + Dock + 0 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + 0 + + 0 + + 200,200 + 0 + + 1 + HTMLInfo + 1 + 483,386 + 200,424 + protected + 1 + + 1 + Resizable + 0 + 1 + + wxHW_SCROLLBAR_AUTO + + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + 1 + 1 + 1 + + + + Daily Information + 1 + 1 + 0 + + 1 + 0 + Dock + 1 + Center + 1 + + 1 + + 0 + 0 + wxID_ANY + 1 + + 0 + + + 0 + -1,-1 + 1 + ScrolledWindow + 1 + 779,393 + -1,-1 + protected + 1 + + + Resizable + 0 + 5 + 5 + 1 + + + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + wxHSCROLL|wxVSCROLL + + + + + + + + + + + + + + + + + + + + + + + + + 1 + wxVERTICAL + 0 + + 0 + + fgSizer + wxFLEX_GROWMODE_ALL + protected + 0 + 0 + + + + 0 + 1 + 1 + 0 + + + + Selected Day + 1 + 0 + 0 + + 1 + 0 + Dock + 1 + Left + 1 + + 1 + + 0 + 0 + wxID_ANY + + + 0 + + + 0 + + 1 + Calendar + 0 + + + protected + 1 + + + Fixed + + 1 + + wxCAL_MONDAY_FIRST|wxCAL_SEQUENTIAL_MONTH_SELECTION|wxCAL_SHOW_SURROUNDING_WEEKS + + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + OnCalendarMonth + OnCalendarDay + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 0 + 0 + 0 + 0 + 1 + + + + Summary + 1 + 0 + 1 + + 1 + 0 + Dock + 0 + Center + 1 + impl_virtual + + 1 + + 0 + 0 + wxID_ANY + + + 0 + + + 0 + + 1 + SummaryPanel + 1 + + + 1 + + + Resizable + + 1 + 712,445 + + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + wxTAB_TRAVERSAL + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + 1 + 1 + 1 + + + + Information + 1 + 0 + 0 + + 1 + 0 + Dock + 0 + Right + 1 + + 1 + + 0 + 0 + wxID_ANY + + + 0 + + 200,400 + 0 + + 1 + HTMLInfo + 1 + + + protected + 1 + + + Resizable + + 1 + + wxHW_SCROLLBAR_AUTO + + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1 + 1 + 1 + 1 + + + + Overview + 1 + 0 + 0 + + 1 + 0 + Dock + 0 + Center + 1 + + 1 + + 0 + 0 + wxID_ANY + + + 0 + + 440,400 + 0 + + 1 + ScrolledWindow + 1 + + + protected + 1 + + + Resizable + + 5 + 5 + 1 + + + 0 + + + wxFILTER_NONE + wxDefaultValidator + + + + wxHSCROLL|wxVSCROLL + + + + + + + + + + + + + + + + + + + + + + + + + 1 + wxVERTICAL + + + 0 + + fgSizer + wxFLEX_GROWMODE_ALL + protected + 0 + 0 + + + + + diff --git a/graphs/graph.cpp b/graphs/graph.cpp new file mode 100644 index 00000000..2d8083d0 --- /dev/null +++ b/graphs/graph.cpp @@ -0,0 +1,1868 @@ +/* +gGraph Graphing System Implementation + +Author: Mark Watkins +License: LGPL +*/ + +#include +#include +#include +#include "graph.h" + +#if !wxCHECK_VERSION(2,9,0) +wxColor zwxYELLOW=wxColor(0xcf,0xcf,0x40,0xff); +wxColor *wxYELLOW=&zwxYELLOW; +#endif +wxColor zwxAQUA=wxColor(0x00,0xff,0xff,0xff); +wxColor * wxAQUA=&zwxAQUA; +wxColor zwxPURPLE=wxColor(0xff,0x40,0xff,0xff); +wxColor * wxPURPLE=&zwxPURPLE; +wxColor zwxGREEN2=wxColor(0x40,0xff,0x40,0x5f); +wxColor * wxGREEN2=&zwxGREEN2; +wxColor zwxLIGHT_YELLOW(248,248,188,255); +wxColor *wxLIGHT_YELLOW=&zwxLIGHT_YELLOW; +wxColor zwxDARK_GREEN=wxColor(20,128,20,255); +wxColor *wxDARK_GREEN=&zwxDARK_GREEN; + + +const wxColor *gradient_start_color=wxWHITE, *gradient_end_color=wxLIGHT_YELLOW; +wxDirection gradient_direction=wxEAST; +const wxColor *selection_color=wxBLUE; //GREEN2; +wxColor wxDARK_GREY(0xA0,0xA0,0xA0,0xA0); + +gGraphData::gGraphData(int mp,gDataType t) +:vc(0),type(t),max_points(mp) +{ + m_ready=false; + +} +gGraphData::~gGraphData() +{ +} +void gGraphData::Update(Day *day) +{ + Reload(day); + for (auto i=notify_layers.begin();i!=notify_layers.end();i++) { + (*i)->DataChanged(this); + } +} + +gPointData::gPointData(int mp) +:gGraphData(mp,gDT_Point) +{ +} +gPointData::~gPointData() +{ + for (auto i=point.begin();i!=point.end();i++) + delete [] (*i); +} +void gPointData::AddSegment(int max_points) +{ + maxsize.push_back(max_points); + np.push_back(0); + wxRealPoint *p=new wxRealPoint [max_points]; + point.push_back(p); +} + +gPoint3DData::gPoint3DData(int mp) +:gGraphData(mp,gDT_Point3D) +{ +} +gPoint3DData::~gPoint3DData() +{ + for (auto i=point.begin();i!=point.end();i++) + delete [] (*i); +} +void gPoint3DData::AddSegment(int mp) +{ + maxsize.push_back(mp); + np.push_back(0); + Point3D *p=new Point3D [mp]; + point.push_back(p); +} + + +gLayer::gLayer(gPointData *d,wxString title) +:m_title(title),data(d) +{ + if (data) { + data->AddLayer(this); + } + m_visible = true; + m_movable = false; + color.push_back(wxRED); + color.push_back(wxGREEN); +} +gLayer::~gLayer() +{ + +} + +void gLayer::Plot(wxDC & dc, gGraphWindow & w) +{ +} + + + +IMPLEMENT_DYNAMIC_CLASS(gGraphWindow, wxWindow) + +BEGIN_EVENT_TABLE(gGraphWindow, wxWindow) + EVT_PAINT (gGraphWindow::OnPaint) + EVT_SIZE (gGraphWindow::OnSize) + EVT_MOTION (gGraphWindow::OnMouseMove ) + EVT_LEFT_DOWN (gGraphWindow::OnMouseLeftDown) + EVT_LEFT_UP (gGraphWindow::OnMouseLeftRelease) + EVT_RIGHT_DOWN (gGraphWindow::OnMouseRightDown) + EVT_RIGHT_UP (gGraphWindow::OnMouseRightRelease) + //EVT_MOUSEWHEEL (gGraphWindow::OnMouseWheel ) + //EVT_MIDDLE_DOWN (gGraphWindow::OnMouseRightDown) + //EVT_MIDDLE_UP (gGraphWindow::OnMouShowPopupMenu) + + +END_EVENT_TABLE() + +void gGraphWindow::AddLayer(gLayer *l) { + if (l) { + l->NotifyGraphWindow(this); + layers.push_back(l); + } +}; + + +// Sets a new Min & Max X clipping, refreshing the graph and all it's layers. +void gGraphWindow::SetXBounds(double minx, double maxx) +{ + //min_x=minx; + //max_x=maxx; + SetMinX(minx); + SetMaxX(maxx); + Refresh(false); +} +void gGraphWindow::ZoomXPixels(int x1, int x2) +{ + x1-=GetLeftMargin(); + x2-=GetLeftMargin(); + if (x1<0) x1=0; + if (x2<0) x2=0; + if (x1>Width()) x1=Width(); + if (x2>Width()) x2=Width(); + + double min=min_x; + double max=max_x; + double q=max-min; + double rx1=min+(double(x1)/Width()) * q; + double rx2=min+(double(x2)/Width()) * q; + SetXBounds(rx1,rx2); +} + +// Move x-axis by the amount of space represented by integer i Pixels (negative values moves backwards) +void gGraphWindow::MoveX(int i) +{ + //if (i==0) return; + double mx=min_x; + double Mx=max_x; + double q=Mx-mx; + double rx1=(double(i)/Width()) * q; + mx-=rx1; + Mx-=rx1; + + // Keep bounds when hitting hard edges + if (mxrmax_x) { + Mx=rmax_x; + mx=Mx-q; + } + + SetXBounds(mx,Mx); +} +void gGraphWindow::ZoomX(double mult,int origin_px) +{ + if (origin_px==0) origin_px=(Width()/2); else origin_px-=GetLeftMargin(); + + if (origin_px<0) origin_px=0; + if (origin_px>Width()) origin_px=Width(); + + double min=min_x; + double max=max_x; + + double hardspan=rmax_x-rmin_x; + double span=max-min; + double origin=double(origin_px) / Width() * span; + + double q=span*mult; + if (q>hardspan) q=hardspan; + + min=min+(origin-(q/2.0)); + max=min+q; + + if (minrmax_x) { + max=rmax_x; + min=max-q; + } + SetXBounds(min,max); +} + +void gGraphWindow::OnMouseMove(wxMouseEvent &event) +{ +// static bool first=true; + static wxRect last; + if (event.m_rightDown) { + MoveX(event.GetX() - m_mouseRClick.x); + m_mouseRClick.x=event.GetX(); + } else + if (event.m_leftDown) { + + int x1=m_mouseLClick.x; + int x2=event.GetX(); + int t1=MIN(x1,x2); + int t2=MAX(x1,x2); + if (t1<=m_marginLeft) t1=m_marginLeft+1; + if (t2>(m_scrX-m_marginRight)) t2=m_scrX-m_marginRight; + + wxRect r(t1, m_marginTop, t2-t1, m_scrY-m_marginBottom-m_marginTop); + + m_mouseRBlast=m_mouseRBrect; + m_mouseRBrect=r; + + RefreshRect(r.Union(m_mouseRBlast),false); + + } + event.Skip(); +} +void gGraphWindow::OnMouseRightDown(wxMouseEvent &event) +{ + m_mouseRClick.x = event.GetX(); + m_mouseRClick.y = event.GetY(); + + m_mouseRClick_start=m_mouseRClick; + m_mouseRDown=true; + + event.Skip(); +} +//voiid ZoomX +void gGraphWindow::OnMouseRightRelease(wxMouseEvent &event) +{ + if (abs(event.GetX()-m_mouseRClick_start.x)<3 && abs(event.GetY()-m_mouseRClick_start.y)<3) { + ZoomX(2,0); //event.GetX()); // adds origin to zoom out.. Doesn't look that cool. + } + m_mouseRDown=false; + + event.Skip(); +} +void gGraphWindow::OnMouseLeftDown(wxMouseEvent &event) +{ + m_mouseLClick.x = event.GetX(); + m_mouseLClick.y = event.GetY(); + + m_mouseLDown=true; + event.Skip(); +} +void gGraphWindow::OnMouseLeftRelease(wxMouseEvent &event) +{ + wxPoint release(event.GetX(), m_scrY-m_marginBottom); + wxPoint press(m_mouseLClick.x, m_marginTop); + m_mouseLDown=false; + wxDateTime a,b; + int x1=m_mouseRBrect.x; + int x2=x1+m_mouseRBrect.width; + int t1=MIN(x1,x2); + int t2=MAX(x1,x2); + + if (t1 != t2) { + ZoomXPixels(t1,t2); + } + + wxRect r(0, 0, 0, 0); + m_mouseRBrect=r; + event.Skip(); +} + + +gGraphWindow::gGraphWindow(wxWindow *parent, wxWindowID id,const wxString & title,const wxPoint &pos,const wxSize &size,long flags) +: wxWindow( parent, id, pos, size, flags, title ) +{ + m_scrX = m_scrY = 64; + m_title=title; + m_mouseRDown=m_mouseLDown=false; + SetBackgroundColour( *wxWHITE ); + m_bgColour = *wxWHITE; + m_fgColour = *wxBLACK; + SetMargins(10, 15, 30, 80); + +} +gGraphWindow::~gGraphWindow() +{ + for (auto l=layers.begin();l!=layers.end();l++) delete (*l); + layers.clear(); +} +void gGraphWindow::Update() +{ + Refresh(); +} +void gGraphWindow::SetMargins(int top, int right, int bottom, int left) +{ + m_marginTop=top; + m_marginBottom=bottom; + m_marginLeft=left; + m_marginRight=right; +} + + +void gGraphWindow::OnPaint(wxPaintEvent& WXUNUSED(event)) +{ + #if defined(__WXMSW__) + wxAutoBufferedPaintDC dc(this); + #else + wxPaintDC dc(this); + #endif + GetClientSize(&m_scrX, &m_scrY); + + dc.SetPen( *wxTRANSPARENT_PEN ); + + wxBrush brush( GetBackgroundColour() ); + dc.SetBrush( brush ); + + dc.SetTextForeground(m_fgColour); + + wxRect r=wxRect(0,0,m_scrX,m_scrY); + + dc.GradientFillLinear(r,*gradient_start_color,*gradient_end_color,gradient_direction); + //dc.DrawRectangle(0,0,m_scrX,m_scrY); + + wxLogMessage(wxT("Paint")); + //dc.DrawText(m_title,m_marginLeft,3); + for (auto l=layers.rbegin();l!=layers.rend();l++) { + (*l)->Plot(dc,*this); + } + + static wxPen pen(*wxBLACK, 1, wxSOLID); + static wxBrush brush2(*selection_color,wxFDIAGONAL_HATCH); + + if (m_mouseLDown) { + dc.SetPen(pen); + //dc.SetBrush(brush); + dc.SetBrush(*wxTRANSPARENT_BRUSH); + if (m_mouseRBrect.width>0) + dc.DrawRectangle(m_mouseRBrect); + } + +} +void gGraphWindow::OnSize(wxSizeEvent& event) +{ + GetClientSize( &m_scrX,&m_scrY); + Refresh(); +} + +double gGraphWindow::MinX() +{ + //static bool f=true; //need a bool for each one, and reset when a layer reports data change. + //if (!f) return min_x; + //f=false; + + bool first=true; + double val; + for (auto l=layers.begin();l!=layers.end();l++) { + if (first) { + val=(*l)->MinX(); + first=false; + } else { + if (val > (*l)->MinX()) val = (*l)->MinX(); + } + } + + return min_x=val; +} +double gGraphWindow::MaxX() +{ + //static bool f=true; + //if (!f) return max_x; + //f=false; + + bool first=true; + double val; + for (auto l=layers.begin();l!=layers.end();l++) { + if (first) { + val=(*l)->MaxX(); + first=false; + } else { + if (val < (*l)->MinX()) val = (*l)->MaxX(); + } + } + return max_x=val; +} +double gGraphWindow::MinY() +{ + //static bool f=true; + //if (!f) return min_y; + //f=false; + + bool first=true; + double val; + for (auto l=layers.begin();l!=layers.end();l++) { + if (first) { + val=(*l)->MinY(); + first=false; + } else { + if (val > (*l)->MinX()) val = (*l)->MinY(); + } + } + return min_y=val; +} +double gGraphWindow::MaxY() +{ + //static bool f=true; + //if (!f) return max_y; + //f=false; + + bool first=true; + double val; + for (auto l=layers.begin();l!=layers.end();l++) { + if (first) { + val=(*l)->MaxY(); + first=false; + } else { + if (val > (*l)->MinX()) val = (*l)->MaxY(); + } + } + return max_y=val; +} + +double gGraphWindow::RealMinX() +{ + //static bool f=true; + //if (!f) return rmin_x; + //f=false; + + bool first=true; + double val; + for (auto l=layers.begin();l!=layers.end();l++) { + if (first) { + val=(*l)->RealMinX(); + first=false; + } else { + if (val > (*l)->MinX()) val = (*l)->RealMinX(); + } + } + return rmin_x=val; +} +double gGraphWindow::RealMaxX() +{ + //static bool f=true; + //if (!f) return rmax_x; + //f=false; + + bool first=true; + double val; + for (auto l=layers.begin();l!=layers.end();l++) { + if (first) { + val=(*l)->RealMaxX(); + first=false; + } else { + if (val < (*l)->MinX()) val = (*l)->RealMaxX(); + } + } + return rmax_x=val; +} +double gGraphWindow::RealMinY() +{ + //static bool f=true; + //if (!f) return rmin_y; + //f=false; + + bool first=true; + double val; + for (auto l=layers.begin();l!=layers.end();l++) { + if (first) { + val=(*l)->RealMinY(); + first=false; + } else { + if (val > (*l)->MinX()) val = (*l)->RealMinY(); + } + } + return rmin_y=val; +} +double gGraphWindow::RealMaxY() +{ + //static bool f=true; + //if (!f) return rmax_y; + //f=false; + + bool first=true; + double val; + for (auto l=layers.begin();l!=layers.end();l++) { + if (first) { + val=(*l)->RealMaxY(); + first=false; + } else { + if (val > (*l)->MinX()) val = (*l)->RealMaxY(); + } + } + return rmax_y=val; +} + +void gGraphWindow::SetMinX(double v) +{ + min_x=v; + for (auto l=layers.begin();l!=layers.end();l++) { + (*l)->SetMinX(v); + } +} +void gGraphWindow::SetMaxX(double v) +{ + max_x=v; + for (auto l=layers.begin();l!=layers.end();l++) { + (*l)->SetMaxX(v); + } +} +void gGraphWindow::SetMinY(double v) +{ + min_y=v; + for (auto l=layers.begin();l!=layers.end();l++) { + (*l)->SetMinY(v); + } +} +void gGraphWindow::SetMaxY(double v) +{ + max_y=v; + for (auto l=layers.begin();l!=layers.end();l++) { + (*l)->SetMaxY(v); + } +} + +void gGraphWindow::DataChanged(gLayer *layer) +{ + // This is possibly evil.. It needs to push one refresh event for all layers + + // Assmption currently is Refresh que does skip + MinX(); MinY(); MaxX(); MaxY(); + RealMinX(); RealMinY(); RealMaxX(); RealMaxY(); + + Refresh(false); +} + + +gCandleStick::gCandleStick(gPointData *d,wxOrientation o) +:gLayer(d) +{ + m_direction=o; +} +gCandleStick::~gCandleStick() +{ +} +void gCandleStick::Plot(wxDC & dc, gGraphWindow & w) +{ + if (!m_visible) return; + if (!data) return; + if (!data->IsReady()) return; + + int scrx = w.GetScrX(); + int scry = w.GetScrY(); + dc.SetPen( *wxBLACK_PEN ); + //wxString label=wxString::Format(wxT("%i %i"),scrx,scry); + //dc.DrawText(label,0,0); + + int start_px=w.GetLeftMargin(); + int start_py=w.GetTopMargin(); + int width=scrx-(w.GetLeftMargin()+w.GetRightMargin()); + int height=scry-(w.GetTopMargin()+w.GetBottomMargin()); + + float sum=0; + for (int i=0;inp[0];i++) + sum+=data->point[0][i].y; + + float pxr; + float px; + if (m_direction==wxVERTICAL) { + pxr=height/sum; + px=start_py; + } else { + pxr=width/sum; + px=start_px; + } + + int x,y; + dc.GetTextExtent(w.Title(),&x,&y); + dc.DrawText(w.Title(),start_px,0); + + double t1,t2; + int barwidth=25; + int textX, textY; + + wxString str; + for (int i=0;inp[0];i++) { + dc.SetBrush(*wxTRANSPARENT_BRUSH); + t1=floor(px); + t2=data->point[0][i].y*pxr; + px+=t2; + t2=ceil(t2)+1; + wxRect rect; + wxDirection dir; + if (m_direction==wxVERTICAL) { + rect=wxRect(start_px,t1,barwidth,t2); + dir=wxEAST; + } else { + rect=wxRect(t1,start_py,t2,barwidth); + dir=wxSOUTH; + } + dc.SetTextForeground(*wxBLACK); + dc.SetPen(*wxBLACK_PEN); + dc.GradientFillLinear(rect,*color[i % color.size()],*wxLIGHT_GREY,dir); + dc.DrawRectangle(rect); + str=wxT(""); + if (m_names.size()>i) { + str=m_names[i]+wxT(" "); + } + str+=wxString::Format(wxT("%0.2f"),data->point[0][i].x); + dc.GetTextExtent(str, &textX, &textY); + if (t2>textX+5) { + int j=t1+((t2/2)-(textX/2)); + if (m_direction==wxVERTICAL) { + dc.DrawRotatedText(str,start_px+barwidth+2+textY,j,270); + } else { + dc.DrawText(str,j,start_py+(barwidth/2)-(textY/2)); + } + } + + } + dc.SetTextForeground(*wxBLACK); //WHITE_PEN); + +} + +gBarChart::gBarChart(gPointData *d,const wxColor *col,wxOrientation o) +:gLayer(d),m_direction(o) +{ + m_yminor_ticks=2; + m_ymajor_ticks=10; + m_show_grid=true; + m_show_minor_grid=true; + if (col) { + color.clear(); + color.push_back(col); + } +} +gBarChart::~gBarChart() +{ +} +void gBarChart::DrawYTicks(wxDC & dc,gGraphWindow &w) +{ + static wxColor wxDARK_GREY(0xA0,0xA0,0xA0,0xA0); + static wxPen pen1(*wxLIGHT_GREY, 1, wxDOT); + static wxPen pen2(wxDARK_GREY, 1, wxDOT); + wxCoord x,y,labelW=0; + + int scrx = w.GetScrX(); + int scry = w.GetScrY(); + //wxString label=wxString::Format(wxT("%i %i"),scrx,scry); + //dc.DrawText(label,0,0); + + int start_px=w.GetLeftMargin(); + int start_py=w.GetTopMargin(); + int width=scrx-(w.GetLeftMargin()+w.GetRightMargin()); + int height=scry-(w.GetTopMargin()+w.GetBottomMargin()); + + dc.SetPen(*wxBLACK_PEN); + + wxString fd=wxT("0"); + dc.GetTextExtent(fd,&x,&y); + double max_yticksdiv=(y+15.0)/(height); // y+50 for rotated text + double max_yticks=1/max_yticksdiv; + double miny=w.min_y; + double maxy=w.max_y; + double yy=w.max_y-w.min_y; + double ymult=height/yy; + double major_ytick=max_yticksdiv*yy; + + double min_ytick,q; + + if (w.min_y>=0) { + int yrounding[9]={1,2,5,10,20,30,40,50,100}; // time rounding + int ry; + for (ry=0;ry<9;ry++) { + // st=round(st2*rounding[ry])/rounding[ry]; + min_ytick=round(major_ytick*yrounding[ry])/yrounding[ry]; + q=yy/min_ytick; // number of ticks that fits in range + if (q<=max_yticks) break; // compared to number of ticks that fit on screen. + } + } else { + min_ytick=60; + } + if (min_ytick<=0.25) + min_ytick=0.25; + + int ty,h; + for (float i=w.min_y; i w.min_y)) + dc.DrawLine(start_px+1,h,start_px+width,h); + } + + for (double i=w.min_y; i<=w.max_y; i+=min_ytick) { + ty=(i - w.min_y) * ymult; + fd=FormatY(i); // Override this as a function. + dc.GetTextExtent(fd,&x,&y); + if (x>labelW) labelW=x; + h=(start_py+height)-ty; + dc.DrawText(fd,start_px-8-x,h - (y / 2)); + dc.SetPen(*wxBLACK_PEN); + dc.DrawLine(start_px-6,h,start_px,h); + dc.SetPen(pen2); + if (m_show_grid && (i > w.min_y)) + dc.DrawLine(start_px+1,h,start_px+width,h); + } + dc.GetTextExtent(w.Title(),&x,&y); + dc.DrawRotatedText(w.Title(), start_px-8-labelW - y, start_py+((height + x)>>1), 90); +} + +void gBarChart::Plot(wxDC & dc, gGraphWindow & w) +{ + if (!m_visible) return; + if (!data) return; + if (!data->IsReady()) return; + + int scrx = w.GetScrX(); + int scry = w.GetScrY(); + //if (m_direction==wxVERTICAL) { + //} else { + DrawYTicks(dc,w); + //} + dc.SetPen( *wxBLACK_PEN ); + //wxString label=wxString::Format(wxT("%i %i"),scrx,scry); + //dc.DrawText(label,0,0); + + int start_px=w.GetLeftMargin(); + int start_py=w.GetTopMargin(); + int width=scrx-(w.GetLeftMargin()+w.GetRightMargin()); + int height=scry-(w.GetTopMargin()+w.GetBottomMargin()); + + double xx=w.max_x - w.min_x; + double days=int(xx); + days=data->np[0]; + + //for (int i=0;inp[0];i++) { + // if ((data->point[0][i].x > w.min_x) && (data->point[0][i].xnp[0];i++) { + //if (data->point[0][i].x < w.min_x) continue; + //if (data->point[0][i].x > w.max_x) break; + dc.SetBrush(*wxTRANSPARENT_BRUSH); + t1=px+1; + px+=barwidth+2; + t2=px-t1-1; + + wxRect rect; + wxDirection dir; + + u2=data->point[0][i].y*pxr; + u1=(start_py+height)-u2; + + if (m_direction==wxVERTICAL) { + rect=wxRect(start_px,t1,u2,t2); + } else { + rect=wxRect(t1,u1,t2,u2); + } + dir=wxEAST; + dc.GradientFillLinear(rect,*color[0],*wxLIGHT_GREY,dir); + dc.DrawRectangle(rect); + + str=FormatX(data->point[0][i].x); + dc.GetTextExtent(str, &textX, &textY); + if (t2>textY) { + int j=t1+((t2/2)-(textY/2)); + if (m_direction==wxVERTICAL) { + dc.DrawRotatedText(str,start_px-textX-8,j,0); + } else { + dc.DrawRotatedText(str,j,start_py+height+4+textX,90); + } + } + + } + + dc.DrawLine(start_px,start_py,start_px,start_py+height); + + dc.DrawLine(start_px,start_py+height,start_px+width,start_py+height); +} + +/*gBarChart::gBarChart(gGraphData *d,wxOrientation o) +:gLayer(d),m_direction(o) +{ + m_yminor_ticks=2; + m_ymajor_ticks=10; +} +gBarChart::~gBarChart() +{ +} +void gBarChart::Plot(wxDC & dc, gGraphWindow & w) +{ + if (!m_visible) return; + if (!data) return; + if (!data->NP(0)) return; + + int scrx = w.GetScrX(); + int scry = w.GetScrY(); + dc.SetPen( *wxBLACK_PEN ); + //wxString label=wxString::Format(wxT("%i %i"),scrx,scry); + //dc.DrawText(label,0,0); + + int start_px=w.GetLeftMargin(); + int start_py=w.GetTopMargin(); + int width=scrx-(w.GetLeftMargin()+w.GetRightMargin()); + int height=scry-(w.GetTopMargin()+w.GetBottomMargin()); + + double max=0; + + for (int i=0;iNP(0);i++) { + if (data->vpoint[0][i].y>max) max=data->vpoint[0][i].y; + } + + float barwidth,pxr; + int px,py; + + if (m_direction==wxVERTICAL) { + barwidth=(height-data->NP(0)*2)/data->NP(0); + pxr=width/max; + px=start_py; + } else { + barwidth=(width-data->NP(0)*2)/data->NP(0); + pxr=(height)/max; + px=start_px; + } + px+=1; + int t1,t2; + int u1,u2; + int textX, textY; + + wxString str; + const wxColor *colors[6]={wxRED, wxBLUE, wxGREEN, wxCYAN , wxBLACK, wxLIGHT_GREY }; + + for (int i=0;iNP(0);i++) { + dc.SetBrush(*wxTRANSPARENT_BRUSH); + t1=px+1; + px+=barwidth+2; + t2=px-t1-1; + + wxRect rect; + wxDirection dir; + + if (data->Type()==gDT_Stacked) { + py=start_py+height; + for (size_t j=0;jyaxis[i].size();j++) { + u1=(data->yaxis[i][j]*pxr); // height of section in pixels + u2=height-u1; + + //if (m_direction==wxVERTICAL) { + // rect=wxRect(start_px+u1,t1,u2,t2); + // dir=wxSOUTH; + //} else { + rect=wxRect(t1,py-u1,t2,u1); + dir=wxEAST; + dc.GradientFillLinear(rect,*colors[j%6],*wxLIGHT_GREY,dir); + dc.DrawRectangle(rect); + py-=u1; + } + } else if (data->Type()==gDT_Point) { + u2=data->vpoint[0][i].y*pxr; + u1=(start_py+height)-u2; + rect=wxRect(t1,u1,t2,u2); + dir=wxEAST; + dc.GradientFillLinear(rect,*colors[0],*wxLIGHT_GREY,dir); + dc.DrawRectangle(rect); + } + + str=FormatX(data->vpoint[0][i].x); + dc.GetTextExtent(str, &textX, &textY); + if (t2>textY) { + int j=t1+((t2/2)-(textY/2)); + if (m_direction==wxVERTICAL) { + dc.DrawRotatedText(str,start_px+barwidth+2+textY,j,270); + } else { + dc.DrawRotatedText(str,j,start_py+height+8+textX,90); + } + } + + } + + dc.DrawLine(start_px,start_py,start_px,start_py+height); + + dc.DrawLine(start_px,start_py+height,start_px+width,start_py+height); + + + wxCoord x,y; + wxString S; + wxCoord labelW=0; + for (float i=0;i<=max;i+=1) { + int s=4; + if (i/m_yminor_ticks!=0) continue; + if (i/m_ymajor_ticks==0) { + s=6; + S=FormatY(i); // Override this as a function. + dc.GetTextExtent(S,&x,&y); + if (x>labelW) labelW=x; + dc.DrawText(S,start_px-8-x,start_py+height-(i*pxr)-y/2); + } + dc.DrawLine(start_px-s,start_py+height-(i*pxr),start_px,start_py+height-(i*pxr)); + } + dc.GetTextExtent(w.Title(),&x,&y); + dc.DrawRotatedText(w.Title(), start_px-8-labelW - y, start_py+((height + x)>>1), 90); + +} +*/ + +gLineChart::gLineChart(gPointData *d,const wxColor * col,int dlsize,bool a) +:gLayer(d),m_accelerate(a),m_drawlist_size(dlsize) +{ + m_yminor_ticks=0.5; + m_ymajor_ticks=1; + m_drawlist=new wxPoint [dlsize]; + color.clear(); + color.push_back(col); + m_show_grid=true; + m_show_minor_grid=true; + +} +gLineChart::~gLineChart() +{ + delete [] m_drawlist; +} +void gLineChart::DrawYTicks(wxDC & dc,gGraphWindow &w) +{ + static wxColor wxDARK_GREY(0xA0,0xA0,0xA0,0xA0); + static wxPen pen1(*wxLIGHT_GREY, 1, wxDOT); + static wxPen pen2(wxDARK_GREY, 1, wxDOT); + wxCoord x,y,labelW=0; + + int scrx = w.GetScrX(); + int scry = w.GetScrY(); + //wxString label=wxString::Format(wxT("%i %i"),scrx,scry); + //dc.DrawText(label,0,0); + + int start_px=w.GetLeftMargin(); + int start_py=w.GetTopMargin(); + int width=scrx-(w.GetLeftMargin()+w.GetRightMargin()); + int height=scry-(w.GetTopMargin()+w.GetBottomMargin()); + + dc.SetPen(*wxBLACK_PEN); + + wxString fd=wxT("0"); + dc.GetTextExtent(fd,&x,&y); + double max_yticksdiv=(y+15.0)/(height); // y+50 for rotated text + double max_yticks=1/max_yticksdiv; + double yy=w.max_y-w.min_y; + double ymult=height/yy; + double major_ytick=max_yticksdiv*yy; + + double min_ytick,q; + + if (w.min_y>=0) { + int yrounding[9]={1,2,5,10,20,30,40,60,120}; // time rounding + int ry; + for (ry=0;ry<3;ry++) { + // st=round(st2*rounding[ry])/rounding[ry]; + min_ytick=round(major_ytick*yrounding[ry])/yrounding[ry]; + q=yy/min_ytick; // number of ticks that fits in range + if (q<=max_yticks) break; // compared to number of ticks that fit on screen. + } + } else { + min_ytick=60; + } + if (min_ytick<=1) + min_ytick=1; + + int ty,h; + for (float i=w.min_y; i w.min_y)) + dc.DrawLine(start_px+1,h,start_px+width,h); + } + + for (double i=w.min_y; i<=w.max_y; i+=min_ytick) { + ty=(i - w.min_y) * ymult; + fd=FormatY(i); // Override this as a function. + dc.GetTextExtent(fd,&x,&y); + if (x>labelW) labelW=x; + h=(start_py+height)-ty; + dc.DrawText(fd,start_px-8-x,h - (y / 2)); + dc.SetPen(*wxBLACK_PEN); + dc.DrawLine(start_px-6,h,start_px,h); + dc.SetPen(pen2); + if (m_show_grid && (i > w.min_y)) + dc.DrawLine(start_px+1,h,start_px+width,h); + } + dc.GetTextExtent(w.Title(),&x,&y); + dc.DrawRotatedText(w.Title(), start_px-8-labelW - y, start_py+((height + x)>>1), 90); +} + +void gLineChart::DrawXTicks(wxDC & dc,gGraphWindow &w) +{ + float px,py; + wxCoord x,y; + + int scrx = w.GetScrX(); + int scry = w.GetScrY(); + //wxString label=wxString::Format(wxT("%i %i"),scrx,scry); + //dc.DrawText(label,0,0); + + int start_px=w.GetLeftMargin(); + int start_py=w.GetTopMargin(); + int width=scrx-(start_px+w.GetRightMargin()); + int height=scry-(start_py+w.GetBottomMargin()); + + dc.SetPen(*wxBLACK_PEN); + + //wxDateTime d; + wxString fd=wxT("00:00:00:0000"); + dc.GetTextExtent(fd,&x,&y); + double max_ticks=(x+25.0)/width; // y+50 for rotated text + double jj=1/max_ticks; + double xx=w.max_x-w.min_x; + double minor_tick=max_ticks*xx; + double st2=w.min_x; //double(int(frac*1440.0))/1440.0; + double st,q; + + bool show_seconds=false; + bool show_milliseconds=false; + int rounding[16]={12,24,48,72,96,144,288,720,1440,2880,5760,8640,17280,86400,172800,345600}; // time rounding + double min_tick; + int ri; + for (ri=0;ri<16;ri++) { + st=round(st2*rounding[ri])/rounding[ri]; + min_tick=round(minor_tick*rounding[ri])/rounding[ri]; + q=xx/min_tick; // number of ticks that fits in range + if (q<=jj) break; // compared to number of ticks that fit on screen. + } + if (ri>8) show_seconds=true; + if (ri>=14) show_milliseconds=true; + + if (min_tick<=0.25/86400.0) + min_tick=0.25/86400; + + dc.SetPen(*wxBLACK_PEN); + + double st3=st; + while (st3>w.min_x) { + st3-=min_tick/10.0; + } + st3+=min_tick/10.0; + + py=start_py+height; + + for (double i=st3; i<=w.max_x; i+=min_tick/10.0) { + if (iIsReady()) return; + //if (!data->NP()) return; + + int scrx = w.GetScrX(); + int scry = w.GetScrY(); + //wxString label=wxString::Format(wxT("%i %i"),scrx,scry); + //dc.DrawText(label,0,0); + + int start_px=w.GetLeftMargin(); + int start_py=w.GetTopMargin(); + int width=scrx-(w.GetLeftMargin()+w.GetRightMargin())-1; + int height=scry-(w.GetTopMargin()+w.GetBottomMargin())-1; + + double minx=w.min_x,miny=w.min_y; + double maxx=w.max_x,maxy=w.max_y; + double xx=maxx-minx; + double yy=maxy-miny; + double xmult=width/xx; + double ymult=height/yy; + if (xx<=0) + return; + // assert(xx>=0); + static wxPoint screen[4096]; // max screen size + + static wxPen pen1(*wxLIGHT_GREY, 1, wxDOT); + + dc.SetPen( *wxBLACK_PEN ); + dc.DrawLine(start_px,start_py,start_px,start_py+height+1); + dc.DrawLine(start_px,start_py+height+1,start_px+width+1,start_py+height+1); + // dc.DrawLine(start_px,start_py,start_px+width,start_py); + dc.DrawLine(start_px+width+1,start_py,start_px+width+1,start_py+height+1); + + static wxPen pen2(wxDARK_GREY, 1, wxDOT); + static wxPen pen3(*wxGREEN, 2, wxSOLID); + + dc.SetPen( pen2 ); + dc.DrawLine(start_px,start_py+height+10,start_px+width,start_py+height+10); + double rmx=w.rmax_x-w.rmin_x; + px=((1/rmx)*(w.min_x-w.rmin_x))*width; + py=((1/rmx)*(w.max_x-w.rmin_x))*width; + dc.SetPen(pen3); + dc.DrawLine(start_px+px,start_py+height+10,start_px+py,start_py+height+10); + dc.DrawLine(start_px+px,start_py+height+8,start_px+px,start_py+height+12); + dc.DrawLine(start_px+py,start_py+height+8,start_px+py,start_py+height+12); + + DrawYTicks(dc,w); + + wxPen pen(*color[0], 1, wxSOLID); + dc.SetPen(pen); + bool accel=m_accelerate; + + double s1,s2,sr; + double sfit,sam; + for (int n=0;nVC();n++) { + dp=0; + bool done=false; + bool first=true; + wxRealPoint *point=data->point[n]; + if (accel) { + s1=point[0].x; + s2=point[1].x; + sr=s2-s1; + sfit=xx/sr; + sam=sfit/width; + if (sam<=8) { // Don't accelerate if threshold less than this. + accel=false; + sam=1; + } else { + sam/=25; // lower this number the more data is skipped over (and the faster things run) + if (sam<=1) { + sam=1; + //accel=false; + } + } + + } else sam=1; + + int siz=data->np[n]; + if (accel) { + for (int i=0;i=sam) i-=sam; + } + + if (point[i].x > maxx) done=true; + + + px=(point[i].x - minx) * xmult; + if (px<0) px=0; + if (px>width) px=width; + py=height - ((point[i].y - miny) * ymult); + + if (accel) { + int z=round(px); + if (zmaxz) maxz=z; + if (pym_drawlist[z].y) m_drawlist[z].y=py; + } else { + m_drawlist[dp].x=start_px+px; + m_drawlist[dp].y=start_py+py; + if (++dp>=m_drawlist_size) { + wxLogWarning(wxT("gLineChart: m_drawlist is too small")); + break; + } + } + if (done) break; + } + + if (accel) { + dc.DrawLine(1, 1, 1, height); + dp=0; + for (int i=minz;i<=maxz;i++) { + int y1=m_drawlist[i].x; + int y2=m_drawlist[i].y; + screen[dp].x=start_px+i; + screen[dp].y=start_py+y1; + dp++; + screen[dp].x=start_px+i; + screen[dp].y=start_py+y2; + dp++; + //dc.DrawLine(start_px+i, start_py+, start_px+i, start_py+m_drawlist[i].y); + } + if (dp) dc.DrawLines(dp,screen); + + } else { + if (dp) dc.DrawLines(dp,m_drawlist); + } + } + DrawXTicks(dc,w); +} + +gLineOverlayBar::gLineOverlayBar(gPointData *d,const wxColor * col,wxString _label) +:gLayer(d),label(_label) +{ + color.clear(); + color.push_back(col); +} +gLineOverlayBar::~gLineOverlayBar() +{ +} + +void gLineOverlayBar::Plot(wxDC & dc, gGraphWindow & w) +{ + double x1,x2; + + + if (!m_visible) return; + if (!data) return; + if (!data->IsReady()) return; + //if (!data->NP()) return; + + int scrx = w.GetScrX(); + int scry = w.GetScrY(); + //wxString label=wxString::Format(wxT("%i %i"),scrx,scry); + //dc.DrawText(label,0,0); + + int start_px=w.GetLeftMargin(); + int start_py=w.GetTopMargin(); + int width=scrx-(w.GetLeftMargin()+w.GetRightMargin()); + int height=scry-(w.GetTopMargin()+w.GetBottomMargin()); + + + double xx=w.max_x-w.min_x; + if (xx<=0) return; + wxPen sfp2(*color[0], 5, wxSOLID); + wxPen sfp1(*color[0], 1, wxSOLID); + + wxBrush brush(*color[0],wxFDIAGONAL_HATCH); + dc.SetBrush(brush); + + for (int n=0;nVC();n++) { + + bool done=false; + bool first=true; + for (int i=0;inp[n];i++) { //,done==false + if (data->point[n][i].y < w.min_x) continue; + if (first) { + first=false; + if (i>0) i--; + } + + wxRealPoint & rp=data->point[n][i]; + x1=w.x2p(rp.x); + x2=w.x2p(rp.y); + + // point z is marker code + + if (x1<=start_px) x1=start_px+1; + if (x2<=start_px) continue; + if (x1>start_px+width) { + //done=true; + break; + } + if (x2>=start_px+width+1) x2=start_px+width+1; + double w1=x2-x1; + dc.SetPen(sfp1); + int x,y; + if (rp.x==rp.y) { + if (xx<(1800.0/86400)) { + //dc.SetTextForeground(*color[0]); + dc.GetTextExtent(label,&x,&y); + dc.DrawText(label,x1-(x/2),start_py+20-y); + } + dc.DrawLine(x1,start_py+25,x1,start_py+height-25); + dc.SetPen(sfp2); + dc.DrawLine(x1,start_py+25,x1,start_py+25); + } else { + // if ((x1>w.GetLeftMargin()) && (x1IsReady()) return; + //if (!data->NP()) return; + + int scrx = w.GetScrX(); + int scry = w.GetScrY(); + //wxString label=wxString::Format(wxT("%i %i"),scrx,scry); + //dc.DrawText(label,0,0); + + int start_px=w.GetLeftMargin(); + int start_py=w.GetTopMargin(); + int width=scrx-(w.GetLeftMargin()+w.GetRightMargin()); + int height=scry-(w.GetTopMargin()+w.GetBottomMargin()); + + + double xx=w.max_x-w.min_x; + if (xx<=0) return; + + static wxColor col1=wxColor(0xff,0xf0,0xd0,0x7f); + static wxColor col2=wxColor(0xe0,0xff,0xd0,0x7f); + static wxBrush linebr1(col1, wxSOLID); + static wxBrush linebr2(col2, wxSOLID); + + + static wxPen pen2(wxDARK_GREY, 1, wxDOT); + static wxPen pen3(*wxGREEN, 2, wxSOLID); + + dc.SetPen( pen2 ); + dc.DrawLine(start_px,start_py+height+10,start_px+width,start_py+height+10); + double rmx=w.rmax_x-w.rmin_x; + double px=((1/rmx)*(w.min_x-w.rmin_x))*width; + double py=((1/rmx)*(w.max_x-w.rmin_x))*width; + dc.SetPen(pen3); + dc.DrawLine(start_px+px,start_py+height+10,start_px+py,start_py+height+10); + dc.DrawLine(start_px+px,start_py+height+8,start_px+px,start_py+height+12); + dc.DrawLine(start_px+py,start_py+height+8,start_px+py,start_py+height+12); + + wxPen sfp1(*color[0], 1, wxSOLID); + + wxBrush brush(*color[0],wxSOLID); //FDIAGONAL_HATCH); + + + double line_h=((height)/total_lines); + int r=int(height) % total_lines; + + double line_top=1+(start_py+(line_num*line_h)-r/2.0); + //double line_bottom=line_top+line_h; + + dc.SetPen(*wxBLACK); + if (line_num & 1) { + dc.SetBrush(linebr1); + } else { + dc.SetBrush(linebr2); + } + dc.DrawRectangle(start_px,line_top,width+1,line_h+1); + int x,y; + dc.GetTextExtent(label,&x,&y); + dc.DrawText(label,start_px-x-6,line_top+(line_h/2)-(y/2)); + + if (line_num==0) { // first lines responsibility to draw the title. + int lw=x; + dc.GetTextExtent(w.Title(),&x,&y); + dc.DrawRotatedText(w.Title(), start_px-8-lw - y, start_py+((height + x)>>1), 90); + } + dc.SetBrush(brush); + int x1,x2; + for (int n=0;nVC();n++) { + + bool done=false; + bool first=true; + for (int i=0;inp[n];i++) { //,done==false + if (data->point[n][i].y < w.min_x) continue; + if (first) { + first=false; + if (i>0) i--; + } + + wxRealPoint & rp=data->point[n][i]; + x1=w.x2p(rp.x); + x2=w.x2p(rp.y); + + // point z is marker code + + if (x1<=start_px) x1=start_px+1; + if (x2<=start_px) continue; + if (x1>start_px+width) { + //done=true; + break; + } + if (x2>=start_px+width+1) x2=start_px+width+1; + double w1=x2-x1; + dc.SetPen(sfp1); + if (rp.x==rp.y) { + dc.DrawLine(x1,line_top+4,x1,line_top+line_h-3); + //dc.SetPen(sfp2); + //dc.DrawLine(x1,w.GetTopMargin()+25,x1,w.GetTopMargin()+25); + } else { + // if ((x1>w.GetLeftMargin()) && (x1first(CPAP_Pressure).GetMJD(); + max_x=day->last(CPAP_Pressure).GetMJD(); + max_y=0; + bool first=true; + for (auto s=day->begin();s!=day->end(); s++) { + if ((*s)->waveforms.find(code)==(*s)->waveforms.end()) continue; + for (auto l=(*s)->waveforms[code].begin();l!=(*s)->waveforms[code].end();l++) { + if (vc<=(int)point.size()) { + AddSegment(max_points); // TODO: Add size limit capabilities. + } + int t=0; + + Waveform *w=(*l); + double st=w->start().GetMJD(); + double rate=(w->duration()/w->samples())/86400.0; + for (int i=0;isamples();i++) { + wxRealPoint r(st,(*w)[i]); + st+=rate; + point[vc][t++]=r; + assert(tmax_y) max_y=r.y; + } + np[vc]=t; + vc++; + } + } + min_y=floor(min_y); + max_y=ceil(max_y); + + double t1=MAX(fabs(min_y),fabs(max_y)); + + max_y=t1; + min_y=-t1; + min_y=-120; + max_y=120; + + real_min_x=min_x; + real_min_y=min_y; + real_max_x=max_x; + real_max_y=max_y; + m_ready=true; + //graph->Refresh(false); +} + +PressureData::PressureData(MachineCode _code,int _field) +:gPointData(1024),code(_code),field(_field) +{ +} +PressureData::~PressureData() +{ +} +void PressureData::Reload(Day *day) +{ + vc=0; + if (!day) { + m_ready=false; + return; + } + min_x=day->first().GetMJD(); + max_x=day->last().GetMJD(); + if (min_x>max_x) { + max_x=max_x; + } + max_y=0; + bool first=true; + for (auto s=day->begin();s!=day->end(); s++) { + if ((*s)->events.find(code)==(*s)->events.end()) continue; + if (vc<=(int)point.size()) { + AddSegment(max_points); + } + + int t=0; + EventDataType p,lastp=-1; + for (auto ev=(*s)->events[code].begin(); ev!=(*s)->events[code].end(); ev++) { + p=(*(*ev))[field]; + if (lastp>=0) { + wxRealPoint r2((*ev)->time().GetMJD(),lastp); + point[vc][t++]=r2; + assert(ttime().GetMJD(),p); + point[vc][t++]=r; + assert(tmax_y) max_y=r.y; + + lastp=p; + } + np[vc]=t; + vc++; + + } + if ((code==CPAP_Pressure) && (day->summary_max(CPAP_Mode)==MODE_CPAP)) { + min_y=4; + max_y=ceil(max_y+1); + } else { + if (min_y>day->summary_min(CPAP_PressureMin)) min_y=day->summary_min(CPAP_PressureMin); + if (max_ysummary_max(CPAP_PressureMax)) max_y=day->summary_min(CPAP_PressureMax); + //max_y=ceil(day->summary_max(CPAP_PressureMax)); + min_y=floor(min_y); + max_y=ceil(max_y); + } + + real_min_x=min_x; + real_min_y=min_y; + real_max_x=max_x; + real_max_y=max_y; + m_ready=true; + + //max_y=25; + //max_y=max_y/25)*25; + //graph->Refresh(false); +} + +TAPData::TAPData() +:gPointData(256) +{ + AddSegment(max_points); +} +TAPData::~TAPData() +{ +} +void TAPData::Reload(Day *day) +{ + if (!day) { + m_ready=false; + return; + } + + const int max_slots=256; + static wxTimeSpan pTime[max_slots]; + + for (int i=0;ibegin();s!=day->end();s++) { + if ((*s)->events.find(code)==(*s)->events.end()) continue; + first=true; + for (auto e=(*s)->events[code].begin(); e!=(*s)->events[code].end(); e++) { + Event & ev =(*(*e)); + val=ev[field]*10.0; + if (field > ev.fields()) throw BoundsError(); + if (first) { + first=false; + } else { + wxTimeSpan d=ev.time()-last; + if (lastval>max_slots) throw BoundsError(); + pTime[lastval]+=d; + } + cnt++; + last=ev.time(); + lastval=val; + } + } + wxTimeSpan TotalTime(0); + for (int i=0; iwxTimeSpan::Seconds(0)) { + point[0][jj].x=i/10.0; + point[0][jj].y=(100.0/seconds)*pTime[i].GetSeconds().GetLo(); + jj++; + } + } + np[0]=jj; + //graph->Refresh(); + m_ready=true; +} + +AHIData::AHIData() +:gPointData(256) +{ + AddSegment(max_points); +} +AHIData::~AHIData() +{ +} +void AHIData::Reload(Day *day) +{ + if (!day) { + m_ready=false; + return; + } + point[0][0].y=day->count(CPAP_Hypopnea)/day->hours(); + point[0][0].x=point[0][0].y; + point[0][1].y=day->count(CPAP_Obstructive)/day->hours(); + point[0][1].x=point[0][1].y; + point[0][2].y=day->count(CPAP_ClearAirway)/day->hours(); + point[0][2].x=point[0][2].y; + point[0][3].y=day->count(CPAP_RERA)/day->hours(); + point[0][3].x=point[0][3].y; + point[0][4].y=day->count(CPAP_FlowLimit)/day->hours(); + point[0][4].x=point[0][4].y; + point[0][5].y=(100.0/day->hours())*(day->sum(CPAP_CSR)/3600.0); + point[0][5].x=point[0][5].y; + np[0]=6; + m_ready=true; + //REFRESH?? +} + +FlagData::FlagData(MachineCode _code,double _value,int _field,int _offset) +:gPointData(512),code(_code),value(_value),field(_field),offset(_offset) +{ + AddSegment(max_points); +} +FlagData::~FlagData() +{ +} +void FlagData::Reload(Day *day) +{ + if (!day) { + m_ready=false; + return; + } + int c=0; + vc=0; + double v1,v2; + bool first; + min_x=day->first().GetMJD(); + max_x=day->last().GetMJD(); + + for (auto s=day->begin();s!=day->end();s++) { + if ((*s)->events.find(code)==(*s)->events.end()) continue; + first=true; + for (auto e=(*s)->events[code].begin(); e!=(*s)->events[code].end(); e++) { + Event & ev =(*(*e)); + v2=v1=ev.time().GetMJD(); + if (offset>=0) + v1-=ev[offset]/86400.0; + point[vc][c].x=v1; + point[vc][c].y=v2; + //point[vc][c].z=value; + c++; + assert(cmax_x) max_x=v2; */ + } + } + min_y=0; + max_y=value; + np[vc]=c; + vc++; + real_min_x=min_x; + real_min_y=min_y; + real_max_x=max_x; + real_max_y=max_y; + m_ready=true; +} + +HistoryData::HistoryData(Machine *_machine,int _days) +:gPointData(_days*2),machine(_machine),days(_days) +{ + AddSegment(max_points); +} +HistoryData::~HistoryData() +{ +} +double HistoryData::Calc(Day *day) +{ + return (day->count(CPAP_Obstructive)+day->count(CPAP_Hypopnea)+day->count(CPAP_ClearAirway))/day->hours(); +} + +void HistoryData::Reload(Day *day) +{ + if (!machine) return; + + auto d=machine->day.rbegin(); + int i=0; + vc=0; + bool first=true; + double x,y; + max_y=0; + while (d!=machine->day.rend() && (isecond); + x=d->first.GetMJD()+1; + if (first) { + max_x=x; + min_x=x; + min_y=y; + first=false; + } + if (y>max_y) max_y=y; + if (ymax_x) max_x=x; + + point[vc][i].x=x; + point[vc][i].y=y; + i++; + d++; + } + np[vc]=i; + vc++; + min_y=0; + max_y=ceil(max_y); + real_min_x=min_x; + real_max_x=max_x; + real_min_y=min_y; + real_max_y=max_y; + m_ready=true; +} +double HistoryData::GetAverage() +{ + double val=0; + for (int i=0;isummary_avg(code); +} + diff --git a/graphs/graph.h b/graphs/graph.h new file mode 100644 index 00000000..0bde04a9 --- /dev/null +++ b/graphs/graph.h @@ -0,0 +1,452 @@ +/* +gGraph Graphing System Header File + +Author: Mark Watkins +License: LGPL +*/ +#ifndef GRAPH_H +#define GRAPH_H + +#include +#include + + +#if !wxCHECK_VERSION(2,9,0) +extern wxColor *wxYELLOW; +#endif +extern wxColor *wxAQUA; +extern wxColor *wxPURPLE; +extern wxColor *wxGREEN2; +extern wxColor *wxLIGHT_YELLOW; +extern wxColor *wxDARK_GREEN; + +#define MIN(a,b) (a & Vec(int i) { return yaxis[i]; }; + + //virtual inline const int & NP(int i) { return vnp[i]; }; + //virtual inline const int & MP(int i) { return vsize[i]; }; + inline const gDataType & Type() { return type; }; + + virtual inline double MaxX() { return max_x; }; + virtual inline double MinX() { return min_x; }; + virtual inline double MaxY() { return max_y; }; + virtual inline double MinY() { return min_y; }; + virtual inline void SetMaxX(double v) { max_x=v; if (max_x>real_max_x) max_x=real_max_x; }; + virtual inline void SetMinX(double v) { min_x=v; if (min_xreal_max_y) max_y=real_max_y; }; + virtual inline void SetMinY(double v) { min_y=v; if (min_y np; + vector maxsize; + const bool & IsReady() { return m_ready; }; + + void AddLayer(gLayer *g) { notify_layers.push_back(g); }; +protected: + virtual void AddSegment(int max_points) {}; + + double real_min_x, real_max_x, real_min_y, real_max_y; + double min_x, max_x, min_y, max_y; + + int vc; + gDataType type; + int max_points; + bool m_ready; + + list notify_layers; + +}; + +class gPoint3DData:public gGraphData +{ +public: + gPoint3DData(int mp); + virtual ~gPoint3DData(); + virtual void Reload(Day *day=NULL) {}; + virtual void AddSegment(int max_points); + vector point; +}; + +class gPointData:public gGraphData +{ +public: + gPointData(int mp); + virtual ~gPointData(); + virtual void Reload(Day *day=NULL){}; + virtual void AddSegment(int max_points); + vector point; +}; + + + +class gGraphWindow:public wxWindow // rename to gGraphWindow +{ + public: + gGraphWindow() {}; + gGraphWindow(wxWindow *parent, wxWindowID id,const wxString & title=wxT("Graph"),const wxPoint &pos = wxDefaultPosition,const wxSize &size = wxDefaultSize,long flags = 0); + + virtual ~gGraphWindow(); + virtual void OnPaint(wxPaintEvent & event); + virtual void OnSize(wxSizeEvent & event); + //virtual void OnMouseWheel(wxMouseEvent &event); + virtual void OnMouseMove(wxMouseEvent &event); + virtual void OnMouseLeftDown(wxMouseEvent &event); + virtual void OnMouseLeftRelease (wxMouseEvent &event); + virtual void OnMouseRightDown(wxMouseEvent &event); + virtual void OnMouseRightRelease(wxMouseEvent &event); + + int GetScrX(void) const { return m_scrX; }; + int GetScrY(void) const { return m_scrY; }; + + void SetMargins(int top, int right, int bottom, int left); + const wxString & Title(void ) { return m_title; }; + int GetTopMargin(void) const { return m_marginTop; }; + int GetBottomMargin(void) const { return m_marginBottom; }; + int GetLeftMargin(void) const { return m_marginLeft; }; + int GetRightMargin(void) const { return m_marginRight; }; + + inline int Width() { return m_scrX-m_marginLeft-m_marginRight; }; + inline int Height() { return m_scrY-m_marginTop-m_marginBottom; }; + + virtual double MinX(); + virtual double MaxX(); + virtual double MinY(); + virtual double MaxY(); + + virtual double RealMinX(); + virtual double RealMaxX(); + virtual double RealMinY(); + virtual double RealMaxY(); + + virtual void SetMinX(double v); + virtual void SetMaxX(double v); + virtual void SetMinY(double v); + virtual void SetMaxY(double v); + + virtual void SetXBounds(double minx, double maxx); + virtual void ZoomX(double mult,int origin_px); + virtual void ZoomXPixels(int x1, int x2); // Zoom between two selected points on screen + virtual void MoveX(int i); // Move x bounds by i Pixels + + inline int x2p(double x) { + double xx=max_x-min_x; + double w=(Width()/xx)*(x-min_x); + return w+GetLeftMargin(); + }; + inline double p2x(int px) { + double xx=max_x-min_x; + double wx=px-GetLeftMargin(); + double ww=wx/Width(); + return min_x+(xx*ww); + }; + inline int y2p(double y) { + double yy=max_y-min_y; + double h=(Height()/yy)*(y-min_y); + return h+GetTopMargin(); + }; + inline double p2y(int py) { + double yy=max_y-min_y; + double hy=py-GetTopMargin(); + double hh=hy/Height(); + return min_y+(yy*hh); + }; + + virtual void Update(); + //virtual void Update(); + void AddLayer(gLayer *l); + + void DataChanged(gLayer *layer); + + double max_x,min_x,max_y,min_y; + double rmax_x,rmin_x,rmax_y,rmin_y; + + protected: + + std::list layers; + wxColour m_bgColour; //!< Background Colour + wxColour m_fgColour; //!< Foreground Colour + wxColour m_axColour; //!< Axes Colour + wxString m_title; + int m_scrX; //!< Current view's X dimension + int m_scrY; //!< Current view's Y dimension + wxPoint m_mouseLClick,m_mouseRClick,m_mouseRClick_start; + + int m_marginTop, m_marginRight, m_marginBottom, m_marginLeft; + + wxRect m_mouseRBrect,m_mouseRBlast; + bool m_mouseLDown,m_mouseRDown,m_datarefresh; + + DECLARE_DYNAMIC_CLASS(gGraphWindow) + DECLARE_EVENT_TABLE() +}; + +//Borrows a lot of concepts from wxmathplot +class gLayer +{ + public: + gLayer(gPointData *g=NULL,wxString title=wxT("")); + virtual ~gLayer(); + //virtual void Update() { data=gd; }; + virtual void Plot(wxDC & dc, gGraphWindow & w); + vector color; + virtual void SetData(gPointData * gd) { data=gd; }; + virtual gPointData * GetData() { return data; }; + + virtual void DataChanged(gGraphData *src) { + for (auto i=m_graph.begin();i!=m_graph.end();i++) + (*i)->DataChanged(this); + + }; // Notify signal sent from gGraphData.. pass on to the graph so it can que a refresh and update stuff. + + virtual double MinX() { if (data) return data->MinX(); return 0;}; + virtual double MaxX() { if (data) return data->MaxX(); return 0;}; + virtual double MinY() { if (data) return data->MinY(); return 0;}; + virtual double MaxY() { if (data) return data->MaxY(); return 0;}; + + virtual double RealMinX() { if (data) return data->RealMinX(); return 0;}; + virtual double RealMaxX() { if (data) return data->RealMaxX(); return 0;}; + virtual double RealMinY() { if (data) return data->RealMinY(); return 0;}; + virtual double RealMaxY() { if (data) return data->RealMaxY(); return 0;}; + + virtual void SetMinX(double v) { if (data) data->SetMinX(v); }; + virtual void SetMaxX(double v) { if (data) data->SetMaxX(v); }; + virtual void SetMinY(double v) { if (data) data->SetMinY(v); }; + virtual void SetMaxY(double v) { if (data) data->SetMaxY(v); }; + + virtual inline int x2p(gGraphWindow & g,double x) { + double xx=data->MaxX()-data->MinX(); + double w=(g.Width()/xx)*(x-data->MinX()); + return w+g.GetLeftMargin(); + }; + virtual inline double p2x(gGraphWindow & g,int px) { + double xx=data->MaxX()-data->MinX(); + double wx=px-g.GetLeftMargin(); + double ww=wx/g.Width(); + return data->MinX()+(xx*ww); + }; + virtual inline int y2p(gGraphWindow & g,double y) { + double yy=data->MaxY()-data->MinY(); + double h=(g.Height()/yy)*(y-data->MinY()); + return h+g.GetTopMargin(); + }; + virtual inline double p2y(gGraphWindow & g,int py) { + double yy=data->MaxY()-data->MinY(); + double hy=py-g.GetTopMargin(); + double hh=hy/g.Height(); + return data->MinY()+(yy*hh); + }; + void NotifyGraphWindow(gGraphWindow *g) { m_graph.push_back(g); }; + + protected: + bool m_visible; + bool m_movable; + wxString m_title; + gPointData *data; // Data source + list m_graph; // notify list of graphs that attach this layer. +}; + +class gCandleStick:public gLayer +{ + public: + gCandleStick(gPointData *d=NULL,wxOrientation o=wxHORIZONTAL); + virtual ~gCandleStick(); + + virtual void Plot(wxDC & dc, gGraphWindow & w); + void AddName(wxString name) { m_names.push_back(name); }; + + protected: + wxOrientation m_direction; + vector m_names; + +}; + +class gLineChart:public gLayer +{ + public: + gLineChart(gPointData *d=NULL,const wxColor * col=wxBLACK,int dlsize=4096,bool a=true); + virtual ~gLineChart(); + + virtual void Plot(wxDC & dc, gGraphWindow & w); + virtual const wxString & FormatX(double v) { static wxString t; wxDateTime d; d.Set(v); t=d.Format(wxT("%H:%M")); return t; }; + //virtual const wxString & FormatX(double v) { static wxString t; t=wxString::Format(wxT("%.1f"),v); return t; }; + virtual const wxString & FormatY(double v) { static wxString t; t=wxString::Format(wxT("%.1f"),v); return t; }; + + virtual void DrawXTicks(wxDC & dc,gGraphWindow &w); + virtual void DrawYTicks(wxDC & dc,gGraphWindow &w); + + protected: + float m_yminor_ticks; + float m_ymajor_ticks; + bool m_accelerate; + int m_drawlist_size; + wxPoint *m_drawlist; + bool m_show_grid; + bool m_show_minor_grid; + +}; + +class gLineOverlayBar:public gLayer +{ + public: + gLineOverlayBar(gPointData *d=NULL,const wxColor * col=wxBLACK,wxString _label=wxT("")); + virtual ~gLineOverlayBar(); + + virtual void Plot(wxDC & dc, gGraphWindow & w); + + protected: + wxString label; +}; + +class gFlagsLine:public gLayer +{ + public: + gFlagsLine(gPointData *d=NULL,const wxColor * col=wxBLACK,wxString _label=wxT(""),int _line_num=0,int _total_lines=0); + virtual ~gFlagsLine(); + + virtual void Plot(wxDC & dc, gGraphWindow & w); + + protected: + wxString label; + int line_num,total_lines; +}; + + +class gBarChart:public gLayer +{ + public: + gBarChart(gPointData *d=NULL,const wxColor *col=NULL,wxOrientation o=wxHORIZONTAL); + virtual ~gBarChart(); + + virtual void Plot(wxDC & dc, gGraphWindow & w); + + protected: + void DrawYTicks(wxDC & dc,gGraphWindow &w); + + wxOrientation m_direction; + float m_yminor_ticks; + float m_ymajor_ticks; + + // d.Set(i+2400000.5+.000001); // JDN vs MJD vs Rounding errors + + virtual const wxString & FormatX(double v) { static wxString t; wxDateTime d; d.Set(v+2400000.5); t=d.Format(wxT("%e %b")); return t; }; + //virtual const wxString & FormatX(double v) { static wxString t; wxDateTime d; d.Set(vi+2400000.5); t=d.Format(wxT("%H:%M")); return t; }; + //virtual const wxString & FormatX(double v) { static wxString t; t=wxString::Format(wxT("%.1f"),v); return t; }; + virtual const wxString & FormatY(double v) { static wxString t; t=wxString::Format(wxT("%.1f"),v); return t; }; + + bool m_show_grid; + bool m_show_minor_grid; + +}; + +class FlagData:public gPointData +{ +public: + FlagData(MachineCode _code,double _value=0,int _field=-1,int _offset=-1); + virtual ~FlagData(); + virtual void Reload(Day *day=NULL); +protected: + MachineCode code; + double value; + int field; + int offset; +}; + +class TAPData:public gPointData +{ +public: + TAPData(); + virtual ~TAPData(); + virtual void Reload(Day *day=NULL); +}; + +class FlowData:public gPointData +{ +public: + FlowData(); + virtual ~FlowData(); + virtual void Reload(Day *day=NULL); +}; + +class PressureData:public gPointData +{ +public: + PressureData(MachineCode _code,int _field=0); + virtual ~PressureData(); + virtual void Reload(Day *day=NULL); +protected: + MachineCode code; + int field; +}; + +class AHIData:public gPointData +{ +public: + AHIData(); + virtual ~AHIData(); + virtual void Reload(Day *day=NULL); +}; + +class HistoryData:public gPointData +{ +public: + HistoryData(Machine *_machine,int _days); + virtual ~HistoryData(); + + void SetMachine(Machine *_machine) { machine=_machine; Reload(); }; + Machine * GetMachine() { return machine; }; + void SetDays(int i) { days=i; }; + int GetDays() { return days; }; + double GetAverage(); + + virtual double Calc(Day *day); + virtual void Reload(Day *day=NULL); + // virtual void Reload(Machine *machine=NULL); +protected: + Machine *machine; + int days; +}; + +class HistoryCodeData:public HistoryData +{ +public: + HistoryCodeData(Machine *_machine,MachineCode _code,int _days); + virtual ~HistoryCodeData(); + virtual double Calc(Day *day); +protected: + MachineCode code; +}; + +#endif // GRAPH_H diff --git a/libs/sleeplib/binary_file.cpp b/libs/sleeplib/binary_file.cpp new file mode 100644 index 00000000..b418a1aa --- /dev/null +++ b/libs/sleeplib/binary_file.cpp @@ -0,0 +1,316 @@ +/* + +SleepLib BinaryFile Implementation + +Author: Mark Watkins +License: GPL + +*/ + +#include +#include "binary_file.h" + +BinaryFile::BinaryFile() +{ + size=pos=0; + buffer=NULL; +} +void BinaryFile::Close() +{ + if (bf_mode==BF_WRITE) { + //f.Write(buffer,pos); + } + f.Close(); + if (buffer) delete [] buffer; + size=pos=0; +} +BinaryFile::~BinaryFile() +{ + Close(); +} +bool BinaryFile::Open(wxString filename,BFOpenMode mode) +{ + pos=size=0; + bf_mode=mode; + if (wxFileExists(filename)) { + if (mode==BF_WRITE) { + // hmm.. file exists. unsure of best course of action here.. + return false; + } + size=wxFileName::GetSize(filename).GetLo(); + } + wxString om; + if (mode==BF_READ) om=wxT("rb"); + else if (mode==BF_WRITE) om=wxT("wb"); + + if (!f.Open(filename,om)) return false; + + if (mode==BF_READ) { + buffer=new char [size]; + size=f.Read(buffer,size); + } + return true; +} +bool BinaryFile::Unpack(wxInt8 & data) +{ + if (pos>=size) return false; + data=((wxInt8 *)buffer)[pos++]; + return true; +} +bool BinaryFile::Unpack(bool & data) +{ + if (pos>=size) return false; + data=((wxInt8 *)buffer)[pos++]; + return true; +} + +bool BinaryFile::Unpack(wxInt16 & data) +{ + if (pos+1>=size) return false; + data=((wxUint8 *)buffer)[pos++]; + data|=((wxInt8 *)buffer)[pos++] << 8; + return true; +} +bool BinaryFile::Unpack(wxInt32 & data) +{ + if (pos+3>=size) return false; + if (wxIsPlatformLittleEndian()) { + data=*((wxInt32 *)(&buffer[pos])); + pos+=4; + } else { + data=((wxUint8 *)buffer)[pos++]; + data|=((wxUint8 *)buffer)[pos++] << 8; + data|=((wxUint8 *)buffer)[pos++] << 16; + data|=((wxInt8 *)buffer)[pos++] << 24; + + } + return true; +} +bool BinaryFile::Unpack(wxInt64 & data) +{ + if (pos+7>=size) return false; + + if (wxIsPlatformLittleEndian()) { + data=*((wxInt64 *)(&buffer[pos])); + pos+=8; + } else { + //for (int i=7;i>=0;i--) data=(data << 8) | ((wxUint8 *)buffer))[pos+i]; + // pos+=8; + data=wxInt64(((wxUint8 *)buffer)[pos++]); + data|=wxInt64(((wxUint8 *)buffer)[pos++]) << 8; + data|=wxInt64(((wxUint8 *)buffer)[pos++]) << 16; + data|=wxInt64(((wxUint8 *)buffer)[pos++]) << 24; + data|=wxInt64(((wxUint8 *)buffer)[pos++]) << 32; + data|=wxInt64(((wxUint8 *)buffer)[pos++]) << 40; + data|=wxInt64(((wxUint8 *)buffer)[pos++]) << 48; + data|=wxInt64(((wxInt8 *)buffer)[pos++]) << 56; + + } + + return true; +} +bool BinaryFile::Unpack(wxUint8 & data) +{ + if (pos>=size) return false; + data=((wxInt8 *)buffer)[pos++]; + return true; +} +bool BinaryFile::Unpack(wxUint16 & data) +{ + if (pos+1>=size) return false; + data=wxUint16(((wxUint8 *)buffer)[pos++]); + data|=wxUint16(((wxUint8 *)buffer)[pos++]) << 8; + + return true; +} +bool BinaryFile::Unpack(wxUint32 & data) +{ + if (pos>=size) return false; + if (wxIsPlatformLittleEndian()) { + data=*((wxUint32 *)(&buffer[pos])); + pos+=4; + } else { + data=wxUint32(((wxUint8 *)buffer)[pos++]); + data|=wxUint32(((wxUint8 *)buffer)[pos++]) << 8; + data|=wxUint32(((wxUint8 *)buffer)[pos++]) << 16; + data|=wxUint32(((wxUint8 *)buffer)[pos++]) << 24; + } + + return true; +} +bool BinaryFile::Unpack(wxUint64 & data) +{ + if (pos>=size) return false; + if (wxIsPlatformLittleEndian()) { + data=*((wxInt64 *)(&buffer[pos])); + pos+=8; + } else { + //for (int i=7;i>=0;i--) data=(data << 8) | ((wxUint8 *)buffer))[pos+i]; + // pos+=8; + data=wxUint64(((wxUint8 *)buffer)[pos++]); + data|=wxUint64(((wxUint8 *)buffer)[pos++]) << 8; + data|=wxUint64(((wxUint8 *)buffer)[pos++]) << 16; + data|=wxUint64(((wxUint8 *)buffer)[pos++]) << 24; + data|=wxUint64(((wxUint8 *)buffer)[pos++]) << 32; + data|=wxUint64(((wxUint8 *)buffer)[pos++]) << 40; + data|=wxUint64(((wxUint8 *)buffer)[pos++]) << 48; + data|=wxUint64(((wxUint8 *)buffer)[pos++]) << 56; + } + + return true; +} +bool BinaryFile::Unpack(float & data) +{ + if ((pos+4)>=size) return false; + if (wxIsPlatformLittleEndian()) { + data=*((float *)(&buffer[pos])); + pos+=4; + } else { + unsigned char b[4]; + for (int i=0; i<4; i++) { + b[3-i]=buffer[pos+i]; + } + data=*((float *)(b)); + pos+=4; + } + + return true; +} +bool BinaryFile::Unpack(double & data) +{ + if ((pos+7)>=size) return false; + if (wxIsPlatformLittleEndian()) { + data=*((double *)(&buffer[pos])); + pos+=8; + } else { + unsigned char b[8]; + for (int i=0; i<8; i++) { + b[7-i]=buffer[pos+i]; + } + data=*((double *)(b)); + pos+=8; + } + + return true; +} +bool BinaryFile::Unpack(wxString & data) +{ + wxInt16 i16; + if (!Unpack(i16)) return false; + if ((pos+i16)>=size) return false; + data=wxT(""); + for (int i=0; i +License: GPL + +*/ + +#ifndef BINARY_FILE_H +#define BINARY_FILE_H + +#include +#include + +enum BFOpenMode { BF_READ, BF_WRITE }; +const long max_buffer_size=1048576*2; + +class UnpackError +{ + +}; + +class PackBuffer +{ +public: + PackBuffer(); + ~PackBuffer(); + bool Open(wxString filename,BFOpenMode mode); + void Close(); + +}; + +class BinaryFile +{ +public: + BinaryFile(); + ~BinaryFile(); + bool Open(wxString filename,BFOpenMode mode); + void Close(); + + bool Unpack(bool & data); + bool Unpack(wxInt8 & data); + bool Unpack(wxInt16 & data); + bool Unpack(wxInt32 & data); + bool Unpack(wxInt64 & data); + bool Unpack(wxUint8 & data); + bool Unpack(wxUint16 & data); + bool Unpack(wxUint32 & data); + bool Unpack(wxUint64 & data); + bool Unpack(float & data); + bool Unpack(double & data); + bool Unpack(wxString & data); + bool Unpack(wxDateTime & data); + + bool Pack(const bool &data); + bool Pack(const wxInt8 &data); + bool Pack(const wxInt16 & data); + bool Pack(const wxInt32 & data); + bool Pack(const wxInt64 & data); + bool Pack(const wxUint8 & data); + bool Pack(const wxUint16 & data); + bool Pack(const wxUint32 & data); + bool Pack(const wxUint64 & data); + bool Pack(const float & data); + bool Pack(const double & data); + bool Pack(const wxString & data); + bool Pack(const wxDateTime & data); + +protected: + BFOpenMode bf_mode; + wxFFile f; + char * buffer; + int buff_read; + long pos; + wxString bf_filename; + long size; +}; + +#endif //BINARY_FILE_H diff --git a/libs/sleeplib/machine.cpp b/libs/sleeplib/machine.cpp new file mode 100644 index 00000000..17fde5db --- /dev/null +++ b/libs/sleeplib/machine.cpp @@ -0,0 +1,1182 @@ +#include +#include +#include +#include +#include "binary_file.h" +#include "machine.h" +#include "profiles.h" + + + +extern wxProgressDialog *loader_progress; + +map MachList; + +map MachineTypeString= { + {MT_UNKNOWN, wxT("Unknown")}, + {MT_CPAP, wxT("CPAP")}, + {MT_OXIMETER, wxT("Oximeter")}, + {MT_SLEEPSTAGE, wxT("SleepStage")} +}; + +map MachineTypeLookup= { + { MachineTypeString[MT_UNKNOWN].Lower(), MT_UNKNOWN }, + { MachineTypeString[MT_CPAP].Lower(), MT_CPAP }, + { MachineTypeString[MT_OXIMETER].Lower(), MT_OXIMETER }, + { MachineTypeString[MT_SLEEPSTAGE].Lower(), MT_SLEEPSTAGE} +}; + +// This is technically gui related.. however I have something in mind for it. +const map DefaultFlagTypes= { + {CPAP_Obstructive, FT_BAR}, + {CPAP_Hypopnea, FT_BAR}, + {CPAP_RERA, FT_BAR}, + {CPAP_VSnore, FT_BAR}, + {PRS1_VSnore2, FT_BAR}, + {CPAP_FlowLimit, FT_BAR}, + {CPAP_ClearAirway, FT_BAR}, + {CPAP_CSR, FT_SPAN}, + {PRS1_PressurePulse,FT_DOT}, + {CPAP_Pressure, FT_DOT} +}; + +const unsigned char flagalpha=0x80; +const map DefaultFlagColours= { + {CPAP_Obstructive, wxColour(0x80,0x80,0xff,flagalpha)}, + {CPAP_Hypopnea, wxColour(0x00,0x00,0xff,flagalpha)}, + {CPAP_RERA, wxColour(0x40,0x80,0xff,flagalpha)}, + {CPAP_VSnore, wxColour(0xff,0x20,0x20,flagalpha)}, + {CPAP_FlowLimit, wxColour(0x20,0x20,0x20,flagalpha)}, + {CPAP_ClearAirway, wxColour(0xff,0x40,0xff,flagalpha)}, + {CPAP_CSR, wxColour(0x40,0xff,0x40,flagalpha)}, + {PRS1_VSnore2, wxColour(0xff,0x20,0x20,flagalpha)}, + {PRS1_PressurePulse,wxColour(0xff,0x40,0xff,flagalpha)} +}; +map CPAPModeNames={ + {MODE_CPAP,wxT("CPAP")}, + {MODE_APAP,wxT("APAP")}, + {MODE_BIPAP,wxT("BIPAP")}, + {MODE_ASV,wxT("ASV")} +}; +map PressureReliefNames={ + {PR_NONE,_("None")}, + {PR_CFLEX,wxT("C-Flex")}, + {PR_CFLEXPLUS,wxT("C-Flex Plus")}, + {PR_AFLEX,wxT("A-Flex")}, + {PR_EPR,wxT("Exhalation Pressure Relief (EPR)")}, + {PR_SMARTFLEX,wxT("SmartFlex")} +}; + +// Master list. Look up local name table first.. then these if not found. +map DefaultMCShortNames= { + {CPAP_Obstructive, wxT("OA")}, + {CPAP_Hypopnea, wxT("H")}, + {CPAP_RERA, wxT("RE")}, + {CPAP_ClearAirway, wxT("CA")}, + {CPAP_CSR, wxT("CSR")}, + {CPAP_VSnore, wxT("VS")}, + {CPAP_FlowLimit, wxT("FL")}, + {CPAP_Pressure, wxT("P")}, + {CPAP_Leak, wxT("LR")}, + {CPAP_EAP, wxT("EAP")}, + {CPAP_IAP, wxT("IAP")}, + {PRS1_VSnore2, wxT("VS")}, + {PRS1_PressurePulse,wxT("PP")} +}; + +// Master list. Look up local name table first.. then these if not found. +map DefaultMCLongNames= { + {CPAP_Obstructive, wxT("Obstructive Apnea")}, + {CPAP_Hypopnea, wxT("Hypopnea")}, + {CPAP_RERA, wxT("Respiratory Effort / Arrousal")}, + {CPAP_ClearAirway, wxT("Clear Airway Apnea")}, + {CPAP_CSR, wxT("Cheyne Stokes Respiration")}, + {CPAP_VSnore, wxT("Vibratory Snore")}, + {CPAP_FlowLimit, wxT("Flow Limitation")}, + {CPAP_Pressure, wxT("Pressure")}, + {CPAP_Leak, wxT("Leak Rate")}, + {CPAP_EAP, wxT("BIPAP Exhalation Pressure")}, + {CPAP_IAP, wxT("BIPAP Inhalation Pressure")}, + {PRS1_VSnore2, wxT("Vibratory Snore")}, + {PRS1_PressurePulse,wxT("Pressue Pulse")} +}; + +////////////////////////////////////////////////////////////////////////////////////////// +// Machine Base-Class implmementation +////////////////////////////////////////////////////////////////////////////////////////// +Machine::Machine(Profile *p,MachineID id) +{ + profile=p; + if (!id) { + std::tr1::minstd_rand gen; + std::tr1::uniform_int unif(1, 0x7fffffff); + gen.seed((unsigned int) time(NULL)); + MachineID temp; + do { + temp = unif(gen); //unif(gen) << 32 | + } while (profile->machlist.find(temp)!=profile->machlist.end()); + + m_id=temp; + + } else m_id=id; + m_type=MT_UNKNOWN; + firstsession=true; +} +Machine::~Machine() +{ + for (auto d=day.begin();d!=day.end();d++) { + delete d->second; + } +} +Session *Machine::SessionExists(SessionID session) +{ + if (sessionlist.find(session)!=sessionlist.end()) { + return sessionlist[session]; + } else { + return NULL; + } +} +void Machine::AddSession(Session *s) +{ + sessionlist[s->session()]=s; + + wxDateTime s1=s->first(); + wxDateTime s2=s->last(); + if (s1==s2) return; // leave this session out of daylist.. it's dodgy. DELETE? + + + wxDateTime date,d1=s1; + d1.ResetTime(); + date=d1; + d1.SetHour(16); + + if (s1date) firstday=date; + if (lastdayAddSession(s); + +} + +bool Machine::Load() +{ + wxString path=profile->Get("DataFolder")+wxFileName::GetPathSeparator()+hexid(); + wxDir dir; + wxLogMessage(wxT("Loading ")+path); + dir.Open(path); + if (!dir.IsOpened()) return false; + + wxString filename; + bool cont=dir.GetFirst(&filename); + + typedef vector StringList; + map sessfiles; + while (cont) { + wxString ext_s=filename.AfterLast(wxChar('.')); + wxString session_s=wxT("0x")+filename.BeforeLast(wxChar('.')); + + SessionID sessid; + long ext; + session_s.ToLong(&sessid,16); + ext_s.ToLong(&ext); + if (sessfiles[sessid].capacity()==0) sessfiles[sessid].resize(3); + wxString fullname=path+wxFileName::GetPathSeparator()+filename; + if (ext==0) sessfiles[sessid][0]=fullname; + else if (ext==1) sessfiles[sessid][1]=fullname; + else if (ext==2) sessfiles[sessid][2]=fullname; + + cont=dir.GetNext(&filename); + } + for (auto s=sessfiles.begin(); s!=sessfiles.end(); s++) { + Session *sess=new Session(this,s->first); + if (sess->LoadSummary(s->second[0])) { + //sess->SetEventFile(sessfiles[sess->id()][1]); + //sess->SetWaveformFile(sessfiles[sess->id()][1]); + //wxString sx=sess->first().Format()+wxT(" ")+sess->last().Format(); + // wxPrintf(s+wxT(" O=%i H=%i CA=%i \n"),sess->summary[CPAP_Obstructive].GetLong(),sess->summary[CPAP_Hypopnea].GetLong(),sess->summary[CPAP_ClearAirway].GetLong()); + sess->LoadEvents(s->second[1]); + sess->LoadWaveforms(s->second[2]); + AddSession(sess); + } else { + delete sess; + } + } + return true; +} +bool Machine::Save() +{ + + wxString path=profile->Get("DataFolder")+wxFileName::GetPathSeparator()+hexid(); + int size=sessionlist.size(); + int cnt=0; + for (auto s=sessionlist.begin(); s!=sessionlist.end(); s++) { + cnt++; + if (loader_progress) loader_progress->Update(50+(float(cnt)/float(size)*50.0)); + if (s->second->IsChanged()) s->second->Store(path); + } + return true; +} +////////////////////////////////////////////////////////////////////////////////////////// +// Day Class implmementation +////////////////////////////////////////////////////////////////////////////////////////// +Day::Day() +{ + d_firstsession=true; + sessions.clear(); +} +Day::~Day() +{ + +} +void Day::AddSession(Session *s) +{ + if (!s) { + wxLogWarning(wxT("Day::AddSession called with NULL session object")); + return; + } + if (d_firstsession) { + d_firstsession=false; + d_first=s->first(); + d_last=s->last(); + } else { + if (d_first > s->first()) d_first = s->first(); + if (d_last < s->last()) d_last = s->last(); + } + sessions.push_back(s); +} +EventDataType Day::summary_max(MachineCode code) +{ + EventDataType val=0,tmp; + bool fir=true; + // Cache this? + + for (auto s=sessions.begin();s!=sessions.end();s++) { + Session & sess=*(*s); + if (sess.summary.find(code)!=sess.summary.end()) { + tmp=sess.summary[code].GetDouble(); + if (fir) { + val=tmp; + fir=false; + } else { + if (val>tmp) val=tmp; + } + } + } + return val; +} +EventDataType Day::summary_min(MachineCode code) +{ + EventDataType val=0,tmp; + bool fir=true; + // Cache this? + + for (auto s=sessions.begin();s!=sessions.end();s++) { + Session & sess=*(*s); + if (sess.summary.find(code)!=sess.summary.end()) { + tmp=sess.summary[code].GetDouble(); + if (fir) { + val=tmp; + fir=false; + } else { + if (valtmp) val=tmp; + } + } + } + return val; +} + +EventDataType Day::max(MachineCode code,int field) +{ + EventDataType val=0,tmp; + bool fir=true; + // Cache this? + + // Don't assume sessions are in order. + for (auto s=sessions.begin();s!=sessions.end();s++) { + Session & sess=*(*s); + if (sess.events.find(code)!=sess.events.end()) { + tmp=sess.max_event_field(code,field); + if (fir) { + val=tmp; + fir=false; + } else { + if (valwxTimeSpan::Seconds(0)) return d_totaltime; + + d_totaltime=wxTimeSpan::Seconds(0); + for (auto s=sessions.begin();s!=sessions.end();s++) { + Session & sess=*(*s); + d_totaltime+=sess.last()-sess.first(); + } + return d_totaltime; +} + +const wxDateTime & Day::first(MachineCode code) +{ + static wxDateTime date; + wxDateTime tmp; + bool fir=true; + // Cache this? + + // Don't assume sessions are in order. + for (auto s=sessions.begin();s!=sessions.end();s++) { + Session & sess=*(*s); + if (sess.events.find(code)!=sess.events.end()) { + tmp=sess.events[code][0]->time(); + if (fir) { + date=tmp; + fir=false; + } else { + if (date>tmp) date=tmp; + } + } + } + return date; +} + +const wxDateTime & Day::last(MachineCode code) +{ + size_t cnt; + static wxDateTime date; + wxDateTime tmp; + bool fir=true; + // Cache this? + + // Don't assume sessions are in order. + for (auto s=sessions.begin();s!=sessions.end();s++) { + Session & sess=*(*s); + if (sess.events.find(code)!=sess.events.end()) { + auto i=sess.events[code].rbegin(); + assert(i!=sess.events[code].rend()); + tmp=(*i)->time(); + if (fir) { + date=tmp; + fir=false; + } else { + if (date data) + :e_time(time),e_code(code) +{ + e_fields=0; + for (auto i=data.begin(); i!=data.end(); i++) { + e_data.push_back(*i); + e_fields++; + } + +} +Event::~Event() +{ + +}; + + +////////////////////////////////////////////////////////////////////////////////////////// +// Waveform implmementation +////////////////////////////////////////////////////////////////////////////////////////// +Waveform::Waveform(wxDateTime time,MachineCode code, SampleFormat *data,int samples,float duration,SampleFormat min, SampleFormat max) + :w_time(time),w_code(code),w_data(data),w_samples(samples),w_duration(duration) +{ + w_totalspan=wxTimeSpan::Seconds(duration); + double rate=duration/samples; + w_samplespan=wxTimeSpan::Milliseconds(rate*1000.0); + Min=min; + Max=max; +} +Waveform::~Waveform() +{ + delete [] w_data; +} +////////////////////////////////////////////////////////////////////////////////////////// +// CPAP implmementation +////////////////////////////////////////////////////////////////////////////////////////// +CPAP::CPAP(Profile *p,MachineID id):Machine(p,id) +{ + m_type=MT_CPAP; + + FlagColours=DefaultFlagColours; +} + +CPAP::~CPAP() +{ +} + +////////////////////////////////////////////////////////////////////////////////////////// +// Oximeter Class implmementation +////////////////////////////////////////////////////////////////////////////////////////// +Oximeter::Oximeter(Profile *p,MachineID id):Machine(p,id) +{ + m_type=MT_OXIMETER; +} + +Oximeter::~Oximeter() +{ +} + +////////////////////////////////////////////////////////////////////////////////////////// +// SleepStage Class implmementation +////////////////////////////////////////////////////////////////////////////////////////// +SleepStage::SleepStage(Profile *p,MachineID id):Machine(p,id) +{ + m_type=MT_SLEEPSTAGE; +} +SleepStage::~SleepStage() +{ +} + +////////////////////////////////////////////////////////////////////////////////////////// +// Session implmementation +// This stuff contains the base calculation smarts +////////////////////////////////////////////////////////////////////////////////////////// +Session::Session(Machine * m,SessionID session) +{ + s_machine=m; + s_session=session; + s_changed=false; +} +Session::~Session() +{ + TrashEvents(); + TrashWaveforms(); +} +double Session::min_event_field(MachineCode mc,int field) +{ + if (events.find(mc)==events.end()) return 0; + + bool first=true; + double min; + for (auto i=events[mc].begin(); i!=events[mc].end(); i++) { + if (field>(*i)->e_fields) throw BoundsError(); + if (first) { + first=false; + min=(*(*i))[field]; + } else { + if (min>(*(*i))[field]) min=(*(*i))[field]; + } + } + return min; +} +double Session::max_event_field(MachineCode mc,int field) +{ + if (events.find(mc)==events.end()) return 0; + + bool first=true; + double max; + for (auto i=events[mc].begin(); i!=events[mc].end(); i++) { + if (field>(*i)->e_fields) throw BoundsError(); + if (first) { + first=false; + max=(*(*i))[field]; + } else { + if (max<(*(*i))[field]) max=(*(*i))[field]; + } + } + return max; +} + +double Session::sum_event_field(MachineCode mc,int field) +{ + if (events.find(mc)==events.end()) return 0; + + double sum=0; + for (auto i=events[mc].begin(); i!=events[mc].end(); i++) { + if (field>(*i)->e_fields) throw BoundsError(); + sum+=(*(*i))[field]; + } + return sum; +} +double Session::avg_event_field(MachineCode mc,int field) +{ + if (events.find(mc)==events.end()) return 0; + + double sum=0; + int cnt=0; + for (auto i=events[mc].begin(); i!=events[mc].end(); i++) { + if (field>(*i)->e_fields) throw BoundsError(); + sum+=(*(*i))[field]; + cnt++; + } + + return sum/cnt; +} +double Session::weighted_avg_event_field(MachineCode mc,int field) +{ + if (events.find(mc)==events.end()) return 0; + + int cnt=0; + + bool first=true; + wxDateTime last; + int lastval,val; + const int max_slots=2600; + wxTimeSpan vtime[max_slots]=wxTimeSpan(0); + + double mult; + if ((mc==CPAP_Pressure) || (mc==CPAP_EAP) || (mc==CPAP_IAP)) { + mult=10.0; + + } else mult=10.0; + for (auto i=events[mc].begin(); i!=events[mc].end(); i++) { + Event & e =(*(*i)); + val=e[field]*mult; + if (field > e.e_fields) throw BoundsError(); + if (first) { + first=false; + } else { + wxTimeSpan d=e.e_time-last; + if (lastval>max_slots) { + wxLogError(wxT("max_slots to small in Session::weighted_avg_event_fied()")); + } + + vtime[lastval]+=d; + + } + cnt++; + last=e.e_time; + lastval=val; + } + + wxTimeSpan total(0); + for (int i=0; iwxTimeSpan(0)) { + s0=(vtime[i].GetSeconds().GetLo()/3600.0); + s1+=i*s0; + s2+=s0; + } + } + + return (s1/hours())/mult; +} + +void Session::AddEvent(Event * e) +{ + events[e->code()].push_back(e); +} +void Session::AddWaveform(Waveform *w) +{ + waveforms[w->code()].push_back(w); +} +void Session::TrashEvents() +// Trash this sessions Events and release memory. +{ + for (auto i=events.begin(); i!=events.end(); i++) { + for (auto j=i->second.begin(); j!=i->second.end(); j++) { + delete *j; + } + } + events.clear(); +} +void Session::TrashWaveforms() +// Trash this sessions Waveforms and release memory. +{ + for (auto i=waveforms.begin(); i!=waveforms.end(); i++) { + for (auto j=i->second.begin(); j!=i->second.end(); j++) { + delete *j; + } + } + waveforms.clear(); +} + + +const int max_pack_size=128; +template +int pack(char * buf,T * var) +{ + int c=0; + int s=sizeof(T); + if (s>max_pack_size) return 0; + + char * dat=(char *)var; + if (wxIsPlatformLittleEndian()) { + for (int i=0; ihexid(); + wxString base; + base.Printf(wxT("%08x"),s_session); + base=path+wxFileName::GetPathSeparator()+base; + wxPuts(wxT("Loading Session: ")+base); + bool a,b,c; + summary.clear(); + TrashEvents(); + TrashWaveforms(); + //try... + a=LoadSummary(base+wxT(".000")); + b=LoadEvents(base+wxT(".001")); + c=LoadWaveforms(base+wxT(".002")); + return a; +}*/ + +bool Session::Store(wxString path) +// Storing Session Data in our format +// {DataDir}/{MachineID}/{SessionID}.{ext} +{ + +// path=path+wxFileName::GetPathSeparator()+s_machine->hexid(); + if (!wxDirExists(path)) wxMkdir(path); + wxString base; + base.Printf(wxT("%08lx"),s_session); + base=path+wxFileName::GetPathSeparator()+base; + //wxPuts(wxT("Storing Session: ")+base); + bool a,b,c; + a=StoreSummary(base+wxT(".000")); + b=StoreEvents(base+wxT(".001")); + c=StoreWaveforms(base+wxT(".002")); + return a&b&c; +} + +const wxUint32 magic=0xC73216AB; + +bool Session::StoreSummary(wxString filename) +{ + BinaryFile f; + f.Open(filename,BF_WRITE); + + f.Pack((wxUint32)magic); // Magic Number + f.Pack((wxUint32)s_machine->id()); // Machine ID + f.Pack((wxUint32)s_session); // Session ID + f.Pack((wxUint16)0); // File Type 0 == Summary File + f.Pack((wxUint16)0); // File Version + + time_t starttime=s_first.GetTicks(); + time_t duration=s_last.GetTicks()-starttime; + + f.Pack(s_first); // Session Start Time + f.Pack((wxInt16)duration); // Duration of sesion in seconds. + f.Pack((wxInt16)summary.size()); + + map mctype; + + // First output the Machine Code and type for each summary record + for (auto i=summary.begin(); i!=summary.end(); i++) { + MachineCode mc=i->first; + + wxString type=i->second.GetType(); // Urkk.. this is a mess. + if (type==wxT("bool")) { + mctype[mc]=MC_bool; + } else if (type==wxT("long")) { + mctype[mc]=MC_long; + } else if (type==wxT("float")) { + mctype[mc]=MC_float; + } else if (type==wxT("double")) { + mctype[mc]=MC_double; + } else if (type==wxT("string")) { + mctype[mc]=MC_string; + } else if (type==wxT("datetime")) { + mctype[mc]=MC_string; + } else { + wxPuts(wxT("Error in Session->StoreSummary: Can't pack variant type ")+type); + exit(1); + } + f.Pack((wxInt16)mc); + f.Pack((wxInt8)mctype[mc]); + } + // Then dump out the actual data, according to format. + for (auto i=summary.begin(); i!=summary.end(); i++) { + MachineCode mc=i->first; + if (mctype[mc]==MC_bool) { + f.Pack((wxInt8)i->second.GetBool()); + } else if (mctype[mc]==MC_long) { + f.Pack((wxInt32)i->second.GetLong()); + } else if (mctype[mc]==MC_float) { + f.Pack((float)i->second.GetDouble()); // gah + } else if (mctype[mc]==MC_double) { + f.Pack((double)i->second.GetDouble()); + } else if (mctype[mc]==MC_string) { + f.Pack(i->second.GetString()); + } else if (mctype[mc]==MC_datetime) { + f.Pack(i->second.GetDateTime()); + } + } + f.Close(); + wxFFile j; + return true; +} +bool Session::LoadSummary(wxString filename) +{ + //wxPuts(wxT("Loading Summary ")+filename); + BinaryFile f; + if (!f.Open(filename,BF_READ)) { + wxPuts(wxT("Couldn't open file")+filename); + return false; + } + + wxUint32 t32; + wxUint16 t16; + wxUint8 t8; + + wxInt16 sumsize; + map mctype; + vector mcorder; + + if (!f.Unpack(t32)) throw UnpackError(); // Magic Number + if (t32!=magic) throw UnpackError(); + + if (!f.Unpack(t32)) throw UnpackError(); // MachineID + + if (!f.Unpack(t32)) throw UnpackError(); // Sessionid; + s_session=t32; + + if (!f.Unpack(t16)) throw UnpackError(); // File Type + if (t16!=0) throw UnpackError(); //wrong file type + + if (!f.Unpack(t16)) throw UnpackError(); // File Version + // dont care yet + + if (!f.Unpack(s_first)) throw UnpackError(); // Start time + if (!f.Unpack(t16)) throw UnpackError(); // Duration // (16bit==Limited to 18 hours) + + s_last=s_first+wxTimeSpan::Seconds(t16); + s_hours=t16/3600.0; + + if (!f.Unpack(sumsize)) throw UnpackError(); // Summary size (number of Machine Code lists) + + for (int i=0; iid()); // Machine ID + f.Pack((wxUint32)s_session); // This session's ID + f.Pack((wxUint16)1); // File type 1 == Event + f.Pack((wxUint16)0); // File Version + + time_t starttime=s_first.GetTicks(); + time_t duration=s_last.GetTicks()-starttime; + + f.Pack(s_first); + f.Pack((wxInt16)duration); + + f.Pack((wxInt16)events.size()); // Number of event categories + + for (auto i=events.begin(); i!=events.end(); i++) { + f.Pack((wxInt16)i->first); // MachineID + f.Pack((wxInt16)i->second.size()); // count of events in this category + auto j=i->second.begin(); + f.Pack((wxInt8)(*j)->fields()); // number of data fields in this event type + } + bool first; + float tf; + time_t last,eventtime,delta; + + for (auto i=events.begin(); i!=events.end(); i++) { + first=true; + for (auto j=i->second.begin(); j!=i->second.end(); j++) { + eventtime=(*j)->time().GetTicks(); + if (first) { + f.Pack((*j)->time()); + first=false; + } else { + delta=eventtime-last; + if (delta>0xffff) { + wxPuts(wxT("StoreEvent: Delta too big.. needed to use bigger value")); + exit(1); + } + f.Pack((wxInt16)delta); + } + for (int k=0; k<(*j)->fields(); k++) { + tf=(*(*j))[k]; + f.Pack((float)tf); + } + last=eventtime; + } + } + f.Close(); + return true; +} +bool Session::LoadEvents(wxString filename) +{ + BinaryFile f; + if (!f.Open(filename,BF_READ)) { + wxPuts(wxT("Couldn't open file")+filename); + return false; + } + + wxUint32 t32; + wxUint16 t16; + wxUint8 t8; + wxInt16 i16; + +// wxInt16 sumsize; + + if (!f.Unpack(t32)) throw UnpackError(); // Magic Number + if (t32!=magic) throw UnpackError(); + + if (!f.Unpack(t32)) throw UnpackError(); // MachineID + + if (!f.Unpack(t32)) throw UnpackError(); // Sessionid; + s_session=t32; + + if (!f.Unpack(t16)) throw UnpackError(); // File Type + if (t16!=1) throw UnpackError(); //wrong file type + + if (!f.Unpack(t16)) throw UnpackError(); // File Version + // dont give a crap yet.. + + if (!f.Unpack(s_first)) throw UnpackError(); // Start time + if (!f.Unpack(t16)) throw UnpackError(); // Duration // (16bit==Limited to 18 hours) + + s_last=s_first+wxTimeSpan::Seconds(t16); + s_hours=t16/3600.0; + + wxInt16 evsize; + if (!f.Unpack(evsize)) throw UnpackError(); // Summary size (number of Machine Code lists) + + map mcsize; + map mcfields; + vector mcorder; + + MachineCode mc; + for (int i=0; i ED; + for (int c=0; cid()); // Machine ID + f.Pack((wxUint32)s_session); // This session's ID + f.Pack((wxUint16)2); // File type 2 == Waveform + f.Pack((wxUint16)0); // File Version + + time_t starttime=s_first.GetTicks(); + time_t duration=s_last.GetTicks()-starttime; + + f.Pack(s_first); + f.Pack((wxInt16)duration); + + f.Pack((wxInt16)waveforms.size()); // Number of different waveforms + + for (auto i=waveforms.begin(); i!=waveforms.end(); i++) { + f.Pack((wxInt16)i->first); // Machine Code + t16=i->second.size(); + f.Pack(t16); // Number of (hopefully non-linear) waveform chunks + + for (auto j=i->second.begin(); j!=i->second.end(); j++) { + + Waveform &w=*(*j); + f.Pack(w.start()); // Start time of first waveform chunk + + //wxInt32 samples; + //double seconds; + + f.Pack((wxInt32)w.samples()); // Total number of samples + f.Pack((float)w.duration()); // Total number of seconds + f.Pack((wxInt16)w.min()); + f.Pack((wxInt16)w.max()); + f.Pack((wxInt8)sizeof(SampleFormat)); // Bytes per sample + f.Pack((wxInt8)0); // signed.. all samples for now are signed 16bit. + //t8=0; // 0=signed, 1=unsigned, 2=float + + // followed by sample data. + for (int k=0; k<(*j)->samples(); k++) f.Pack((wxInt16)w[k]); + } + } + return true; +} + + +bool Session::LoadWaveforms(wxString filename) +{ + BinaryFile f; + if (!f.Open(filename,BF_READ)) { + wxPuts(wxT("Couldn't open file")+filename); + return false; + } + + wxUint32 t32; + wxUint16 t16; + wxUint8 t8; + + if (!f.Unpack(t32)) throw UnpackError(); // Magic Number + if (t32!=magic) throw UnpackError(); + + if (!f.Unpack(t32)) throw UnpackError(); // MachineID + + if (!f.Unpack(t32)) throw UnpackError(); // Sessionid; + s_session=t32; + + if (!f.Unpack(t16)) throw UnpackError(); // File Type + if (t16!=2) throw UnpackError(); //wrong file type? + + if (!f.Unpack(t16)) throw UnpackError(); // File Version + // dont give a crap yet.. + + if (!f.Unpack(s_first)) throw UnpackError(); // Start time + if (!f.Unpack(t16)) throw UnpackError(); // Duration // (16bit==Limited to 18 hours) + + s_last=s_first+wxTimeSpan::Seconds(t16); + s_hours=t16/3600.0; + + wxInt16 wvsize; + if (!f.Unpack(wvsize)) throw UnpackError(); // Summary size (number of Machine Code lists) + + MachineCode mc; + wxDateTime date; + float seconds; + wxInt32 samples; + int chunks; + SampleFormat min,max; + for (int i=0; i +License: GPL +*/ + +#ifndef MACHINE_H +#define MACHINE_H + +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include "tinyxml/tinyxml.h" +#include "preferences.h" + +using namespace std; + +typedef long MachineID; +typedef long SessionID; + +class BoundsError {}; + +enum MachineType: short { MT_UNKNOWN=0,MT_CPAP,MT_OXIMETER,MT_SLEEPSTAGE }; +// I wish C++ could extend enums. +// Could be implimented by MachineLoader's register function requesting a block of integer space, +// and a map to name strings. + +// Be cautious when extending these.. add to the end of each groups to preserve file formats. +enum MachineCode: +wxInt16 { + // General Event Codes + CPAP_Obstructive=0, CPAP_Hypopnea, CPAP_ClearAirway, CPAP_RERA, CPAP_VSnore, CPAP_FlowLimit, + CPAP_Leak, CPAP_Pressure, CPAP_EAP, CPAP_IAP, CPAP_CSR, CPAP_FlowRate, + + // General CPAP Summary Information + CPAP_PressureMin=0x80, CPAP_PressureMax, CPAP_RampTime, CPAP_RampStartingPressure, CPAP_Mode, CPAP_PressureReliefType, + CPAP_PressureReliefSetting, CPAP_HumidifierSetting, CPAP_HumidifierStatus, CPAP_PressureMinAchieved, + CPAP_PressureMaxAchieved, CPAP_PressurePercentValue, CPAP_PressurePercentName, CPAP_PressureAverage, CPAP_PressureMedian, + CPAP_LeakMedian,CPAP_LeakMinimum,CPAP_LeakMaximum,CPAP_LeakAverage, + + // PRS1 Specific Codes + PRS1_PressurePulse=0x1000, PRS1_VSnore2, + PRS1_Unknown00, PRS1_Unknown01, PRS1_Unknown08, PRS1_Unknown09, PRS1_Unknown0B, PRS1_Unknown0E, PRS1_Unknown10, PRS1_Unknown12, + PRS1_SystemLockStatus, PRS1_SystemResistanceStatus, PRS1_HoseDiameter, PRS1_AutoOff, PRS1_MaskAlert, PRS1_ShowAHI, + +}; + +enum FlagType: +short { FT_BAR, FT_DOT, FT_SPAN }; + +enum CPAPMode: +short { + MODE_CPAP=0,MODE_APAP,MODE_BIPAP,MODE_ASV +}; +enum PRTypes: +short { + PR_NONE=0,PR_CFLEX,PR_CFLEXPLUS,PR_AFLEX,PR_EPR,PR_SMARTFLEX +}; + +extern map DefaultMCShortNames; +extern map PressureReliefNames; +extern map CPAPModeNames; + +// These are types supported by wxVariant class. To retain compatability, add to the end of this list only.. +enum MCDataType: +wxInt8 { MC_bool=0, MC_long, MC_float, MC_double, MC_string, MC_datetime }; + +typedef wxInt16 SampleFormat; +typedef float EventDataType; + +class Session; +class Profile; + +class Day +{ +public: + Day(); + ~Day(); + void AddSession(Session *s); + + + EventDataType min(MachineCode code,int field=0); + EventDataType max(MachineCode code,int field=0); + EventDataType avg(MachineCode code,int field=0); + EventDataType sum(MachineCode code,int field=0); + EventDataType count(MachineCode code); + EventDataType weighted_avg(MachineCode code,int field=0); + + // Note, the following convert to doubles without considering the consequences fully. + EventDataType summary_avg(MachineCode code); + EventDataType summary_min(MachineCode code); + EventDataType summary_max(MachineCode code); + + const wxDateTime & first(MachineCode code); + const wxDateTime & last(MachineCode code); + const wxDateTime & first() { return d_first; }; + const wxDateTime & last() { return d_last; }; + + wxTimeSpan total_time(); + float hours() { return total_time().GetSeconds().GetLo()/3600.0; }; + + Session *operator [](int i) { return sessions[i]; }; + + vector::iterator begin() { return sessions.begin(); }; + vector::iterator end() { return sessions.end(); }; + + size_t size() { return sessions.size(); }; + +protected: + vector sessions; + wxDateTime d_first,d_last; + wxTimeSpan d_totaltime; +private: + bool d_firstsession; +}; + +class Machine +{ +public: + Machine(Profile *p,MachineID id=0); + virtual ~Machine(); +// virtual bool Open(wxString path){}; + + bool Load(); + bool Save(); + + map day; + map sessionlist; + map properties; + + Session * SessionExists(SessionID session); + void AddSession(Session *s); + + void SetClass(wxString t) { + m_class=t; + }; + void SetType(MachineType t) { + m_type=t; + }; + const wxString & GetClass() { + return m_class; + }; + const MachineType & GetType() { + return m_type; + }; + const wxString hexid() { + wxString s; + s.Printf(wxT("%08lx"),m_id); + return s; + }; + const MachineID & id() { return m_id; }; + const wxDateTime & FirstDay() { return firstday; }; + const wxDateTime & LastDay() { return lastday; }; + +// const wxDateTime & MinTime(const wxDateTime & date); + // const wxDateTime & MaxTime(const wxDateTime & date); + +protected: + wxDateTime firstday,lastday; + + MachineID m_id; + //wxString m_filename; + wxString m_class; + MachineType m_type; + wxString m_path; + Profile *profile; + bool changed; + bool firstsession; +}; + + +class Event +{ + friend class Session; +public: + Event(wxDateTime time,MachineCode code,list data); + ~Event(); + const EventDataType operator[](short i) { + if (i e_data; +}; + +class Waveform +{ + friend class Session; +public: + Waveform(wxDateTime time,MachineCode code,SampleFormat * data,int samples,float duration,SampleFormat min, SampleFormat max); + ~Waveform(); + const SampleFormat operator[](int i) { + if (i summary; + void SetChanged(bool val) { + s_changed=val; + }; + bool IsChanged() { + return s_changed; + }; + map > events; + map > waveforms; + +protected: + SessionID s_session; + + Machine *s_machine; + wxDateTime s_first; + wxDateTime s_last; + float s_hours; + bool s_changed; +}; + +class CPAP:public Machine +{ +public: + CPAP(Profile *p,MachineID id=0); + virtual ~CPAP(); +// virtual bool Open(wxString path); + map FlagColours; + map FlagTypes; + list SleepFlags; +}; + +class Oximeter:public Machine +{ +public: + Oximeter(Profile *p,MachineID id=0); + virtual ~Oximeter(); +// virtual bool Open(wxString path){}; +protected: +}; + +class SleepStage:public Machine +{ +public: + SleepStage(Profile *p,MachineID id=0); + virtual ~SleepStage(); +// virtual bool Open(wxString path){}; +protected: +}; + + +#endif // MACHINE_H + diff --git a/libs/sleeplib/machine_loader.cpp b/libs/sleeplib/machine_loader.cpp new file mode 100644 index 00000000..4de47adc --- /dev/null +++ b/libs/sleeplib/machine_loader.cpp @@ -0,0 +1,42 @@ +/* + +SleepLib Machine Loader Base class Implementation + +Author: Mark Watkins +License: GPL +*/ + +#include "machine_loader.h" + +////////////////////////////////////////////////////////////////////////////////////////// +// Machine Loader implmementation +////////////////////////////////////////////////////////////////////////////////////////// + +list m_loaders; + +void RegisterLoader(MachineLoader *loader) +{ + m_loaders.push_back(loader); +} +void DestroyLoaders() +{ + for (auto i=m_loaders.begin(); i!=m_loaders.end(); i++) { + delete (*i); + } + m_loaders.clear(); +} + +MachineLoader::MachineLoader() +{ + +} +MachineLoader::~MachineLoader() +{ + +} + +list GetLoaders() +{ + return m_loaders; +} + diff --git a/libs/sleeplib/machine_loader.h b/libs/sleeplib/machine_loader.h new file mode 100644 index 00000000..6ca0851c --- /dev/null +++ b/libs/sleeplib/machine_loader.h @@ -0,0 +1,26 @@ +/* + +SleepLib MachineLoader Base Class Header + +Author: Mark Watkins +License: GPL + +*/ + +#ifndef MACHINE_LOADER_H +#define MACHINE_LOADER_H +#include "profiles.h" + +class MachineLoader +{ +public: + MachineLoader(); + virtual ~MachineLoader(); + virtual bool Open(wxString &,Profile *profile)=0; +}; + +void RegisterLoader(MachineLoader *loader); +void DestroyLoaders(); +list GetLoaders(); + +#endif //MACHINE_LOADER_H diff --git a/libs/sleeplib/preferences.cpp b/libs/sleeplib/preferences.cpp new file mode 100644 index 00000000..da33d99a --- /dev/null +++ b/libs/sleeplib/preferences.cpp @@ -0,0 +1,233 @@ +/* + +SleepLib Preferences Implementation + +Author: Mark Watkins +License: GPL + +*/ + +#include +#include +#include +#include +#include + +#include "preferences.h" + + +const wxString & GetAppRoot() +{ + static wxString HomeAppRoot; + // wxLogMessage(wxStandardPathsBase::Get().GetUserDataDir()); + + //HomeAppRoot=s+wxFileName::GetPathSeparator(); + +#if defined(__WXMSW__) + // This conveniently maps to unix home directory for now in wine.. Change before release if necessary.. + HomeAppRoot=wxGetHomeDir()+wxFileName::GetPathSeparator()+wxT("My Documents")+wxFileName::GetPathSeparator()+AppRoot; +#elif defined(__UNIX__) + HomeAppRoot=wxGetHomeDir()+wxFileName::GetPathSeparator()+AppRoot; +#elif defined(__WXMAC__) + // I have no idea + HomeAppRoot=wxGetHomeDir()+wxFileName::GetPathSeparator()+AppRoot; +#endif + //HomeAppRoot+=wxFileName::GetPathSeparator(); // Trailing separator + return HomeAppRoot; +} + +Preferences::Preferences() +{ + p_name=wxT("Preferences"); + p_path=GetAppRoot(); +} + +Preferences::Preferences(wxString name,wxString filename) +{ + + const wxString xmlext=wxT(".xml"); + const wxString sep=wxFileName::GetPathSeparator(); + + if (name.EndsWith(xmlext)) { + p_name=name.BeforeLast(wxChar('.')); + } else { + p_name=name; + } + + if (filename.IsEmpty()) { + p_filename=GetAppRoot()+sep+p_name+xmlext; + } else { + if (!filename.Contains(sep)) { + p_filename=GetAppRoot()+sep; + } else p_filename=wxT(""); + + p_filename+=filename; + + if (!p_filename.EndsWith(xmlext)) p_filename+=xmlext; + } +} + +Preferences::~Preferences() +{ + //Save(); // Don't..Save calls a virtual function. +} + +int Preferences::GetCode(wxString s) +{ + int prefcode=0; + for (auto i=p_codes.begin(); i!=p_codes.end(); i++) { + if (i->second==s) return i->first; + prefcode++; + } + p_codes[prefcode]=s; + return prefcode; +} + +const wxString Preferences::Get(wxString name) +{ + wxString temp; + wxChar obr=wxChar('{'); + wxChar cbr=wxChar('}'); + wxString t,a,ref; // How I miss Regular Expressions here.. + if (p_preferences.find(name)!=p_preferences.end()) { + temp=wxT(""); + t=p_preferences[name].MakeString(); + if (p_preferences[name].GetType()!=wxT("string")) { + return t; + } + } else { + t=name; // parse the string.. + } + while (t.Contains(obr)) { + temp+=t.BeforeFirst(obr); + a=t.AfterFirst(obr); + if (a.StartsWith(wxT("{"))) { + temp+=obr; + t=a.AfterFirst(obr); + continue; + } + ref=a.BeforeFirst(cbr); + + if (ref.Lower()==wxT("home")) { + temp+=GetAppRoot(); + } else if (ref.Lower()==wxT("user")) { + temp+=wxGetUserName(); + } else if (ref.Lower()==wxT("sep")) { + temp+=wxFileName::GetPathSeparator(); + } else { + temp+=Get(ref); + } + t=a.AfterFirst(cbr); + } + temp+=t; + temp.Replace(wxT("}}"),wxT("}"),true); // Make things look a bit better when escaping braces. + + return temp; +} + +bool Preferences::Open(wxString filename) +{ + if (!filename.IsEmpty()) p_filename=filename; + + wxLogVerbose(wxT("Opening ")+p_filename); + TiXmlDocument xml(p_filename.mb_str()); + if (!xml.LoadFile()) { + return false; + } + TiXmlHandle hDoc(&xml); + TiXmlElement* pElem; + TiXmlHandle hRoot(0); + p_preferences.clear(); + + pElem=hDoc.FirstChildElement().Element(); + // should always have a valid root but handle gracefully if it does + if (!pElem) return false; + + hRoot=TiXmlHandle(pElem); + + std::map p_types; + pElem=hRoot.FirstChild(p_name.mb_str()).FirstChild().Element(); + for( ; pElem; pElem=pElem->NextSiblingElement()) { + + TiXmlAttribute *attr=pElem->FirstAttribute(); + assert(attr!=NULL); + wxString type(attr->Value(),wxConvUTF8); + wxString pKey(pElem->Value(),wxConvUTF8); + wxString pText(pElem->GetText(),wxConvUTF8); + if (!pKey.IsEmpty() && !pText.IsEmpty()) { + if (type==wxT("double")) { + double d; + pText.ToDouble(&d); + p_preferences[pKey]=d; + } else if (type==wxT("long")) { + long d; + pText.ToLong(&d); + p_preferences[pKey]=d; + } else if (type==wxT("bool")) { + long d; + pText.ToLong(&d); + p_preferences[pKey]=(bool)d; + } else if (type==wxT("datetime")) { + wxDateTime d; +#if wxCHECK_VERSION(2,9,0) + wxString::const_iterator end; + d.ParseFormat(pText,wxT("%Y-%m-%d %H:%M:%S"),&end); + assert(end==pText.end()); +#else + const wxChar *end=d.ParseFormat(pText,wxT("%Y-%m-%d %H:%M:%S")); + assert(end!=NULL); +#endif + p_preferences[pKey]=d; + + } else { + p_preferences[pKey]=pText; + } + } + } + ExtraLoad(&hRoot); + return true; +} + +bool Preferences::Save(wxString filename) +{ + if (!filename.IsEmpty()) p_filename=filename; + + TiXmlDocument xml; + TiXmlElement* msg; + TiXmlComment * comment; + TiXmlDeclaration *decl=new TiXmlDeclaration( "1.0", "", "" ); + xml.LinkEndChild(decl); + TiXmlElement *root=new TiXmlElement(AppName.mb_str()); + xml.LinkEndChild(root); + + if (!p_comment.IsEmpty()) { + comment = new TiXmlComment(); + wxString s=wxT(" ")+p_comment+wxT(" "); + comment->SetValue(s.mb_str()); + root->LinkEndChild(comment); + } + + TiXmlElement * msgs = new TiXmlElement(p_name.mb_str()); + root->LinkEndChild(msgs); + for (auto i=p_preferences.begin(); i!=p_preferences.end(); i++) { + msg=new TiXmlElement(i->first.mb_str()); + wxString type=i->second.GetType(); + msg->SetAttribute("type",type.mb_str()); + wxString t; + + if (type==wxT("datetime")) { + t=i->second.GetDateTime().Format(wxT("%Y-%m-%d %H:%M:%S")); + } else { + t=i->second.MakeString(); + } + msg->LinkEndChild(new TiXmlText(t.mb_str())); + msgs->LinkEndChild(msg); + } + TiXmlElement *extra=ExtraSave(); + if (extra) root->LinkEndChild(extra); + + xml.SaveFile(p_filename.mb_str()); + return true; +} + + diff --git a/libs/sleeplib/preferences.h b/libs/sleeplib/preferences.h new file mode 100644 index 00000000..6c7a5fb1 --- /dev/null +++ b/libs/sleeplib/preferences.h @@ -0,0 +1,106 @@ +/* + +SleepLib Preferences Header + +Author: Mark Watkins +License: GPL + +*/ + +#ifndef PREFERENCES_H +#define PREFERENCES_H + +#include +#include +#include +#include "tinyxml/tinyxml.h" + + +const wxString AppName=_("Application"); // Outer tag of XML files +const wxString AppRoot=wxT("SleepApp"); // The Folder Name + +extern const wxString & GetAppRoot(); //returns app root path plus trailing path separator. + +inline wxString PrefMacro(wxString s) +{ + return wxT("{")+s+wxT("}"); +}; + + +class Preferences +{ +public: + Preferences(wxString name,wxString filename=wxT("")); + Preferences(); + virtual ~Preferences(); + + const wxString Get(wxString name); + const wxString Get(const char * name) { + wxString t(name,wxConvUTF8); + return Get(t); + }; + const wxString Get(int code) { + return Get(p_codes[code]); + }; + + // operator[] will not expand {} macros + + wxVariant & operator[](wxString name) { + return p_preferences[name]; + }; + wxVariant & operator[](const char * name) { + wxString t(name,wxConvUTF8); + return p_preferences[t]; + }; + wxVariant & operator[](int code) { + return p_preferences[p_codes[code]]; + }; + + void Set(wxString name,wxVariant value) { + p_preferences[name]=value; + }; + void Set(const char * name,wxVariant value) { + wxString t(name,wxConvUTF8); + p_preferences[t]=value; + }; + void Set(int code,wxVariant value) { + Set(p_codes[code],value); + }; + + bool Exists(wxString name) { + return (p_preferences.find(name)!=p_preferences.end()); + }; + bool Exists(const char * name) { + wxString t(name,wxConvUTF8); + return Exists(t); + }; + //bool Exists(int code) { return Exists(p_codes[code]); }; + + virtual void ExtraLoad(TiXmlHandle *root) {}; + virtual TiXmlElement * ExtraSave() { + return NULL; + }; + + virtual bool Open(wxString filename=wxT("")); + virtual bool Save(wxString filename=wxT("")); + + void SetComment(const wxString & str) { + p_comment=str; + }; + int GetCode(wxString name); // For registering/looking up new preference code. + + std::map p_preferences; +protected: + std::map p_codes; + wxString p_comment; + wxString p_name; + wxString p_filename; + wxString p_path; +}; + + +extern Preferences pref; +extern Preferences layout; + +#endif // PREFERENCES_H + diff --git a/libs/sleeplib/profiles.cpp b/libs/sleeplib/profiles.cpp new file mode 100644 index 00000000..bacbe7ff --- /dev/null +++ b/libs/sleeplib/profiles.cpp @@ -0,0 +1,252 @@ +/* + +SleepLib Profiles Implementation + +Author: Mark Watkins +License: GPL + +*/ +#include +#include +#include +#include +#include + +#include "preferences.h" +#include "profiles.h" +#include "machine.h" +#include "machine_loader.h" +#include "tinyxml/tinyxml.h" + +Preferences *p_pref; +Preferences *p_layout; + +Profile::Profile() +{ + p_name=wxT("Profile"); + p_path=pref.Get("{home}{sep}Profiles"); + machlist.clear(); +} +Profile::Profile(wxString path) +{ + const wxString xmlext=wxT(".xml"); + p_name=wxT("Profile"); + if (path.IsEmpty()) p_path=GetAppRoot(); + else p_path=path; + wxString sep=wxFileName::GetPathSeparator(); + (*this)["DataFolder"]=p_path; + if (!p_path.EndsWith(sep)) p_path+=sep; + p_filename=p_path+p_name+xmlext; + machlist.clear(); +} + +Profile::~Profile() +{ + for (auto i=machlist.begin(); i!=machlist.end(); i++) { + delete i->second; + } +} +void Profile::LoadMachineData() +{ + for (auto i=machlist.begin(); i!=machlist.end(); i++) { + i->second->Load(); + } +} + +/** + * @brief Machine XML section in profile. + * @param root + */ +void Profile::ExtraLoad(TiXmlHandle *root) +{ + TiXmlElement *elem; + elem=root->FirstChild("Machines").FirstChild().Element(); + if (!elem) { + wxLogError(wxT("ExtraLoad: Elem is empty!!!")); + } + for(; elem; elem=elem->NextSiblingElement()) { + wxString pKey(elem->Value(),wxConvUTF8); + assert(pKey==wxT("Machine")); + + int m_id; + elem->QueryIntAttribute("id",&m_id); + int mt; + elem->QueryIntAttribute("type",&mt); + MachineType m_type=(MachineType)mt; + wxString m_class(elem->Attribute("class"),wxConvUTF8); + Machine *m; + if (m_type==MT_CPAP) m=new CPAP(this,m_id); + else if (m_type==MT_OXIMETER) m=new Oximeter(this,m_id); + else if (m_type==MT_SLEEPSTAGE) m=new SleepStage(this,m_id); + else m=new Machine(this,m_id); + m->SetClass(m_class); + AddMachine(m); + TiXmlElement *e=elem->FirstChildElement(); + for (; e; e=e->NextSiblingElement()) { + //wxString type(attr->Value(),wxConvUTF8); + wxString pKey(e->Value(),wxConvUTF8); + wxString pText(e->GetText(),wxConvUTF8); + m->properties[pKey]=pText; + } + } +} +void Profile::AddMachine(Machine *m) { + assert(m!=NULL); + machlist[m->id()]=m; +}; + +TiXmlElement * Profile::ExtraSave() +{ + TiXmlElement *mach=new TiXmlElement("Machines"); + for (auto i=machlist.begin(); i!=machlist.end(); i++) { + TiXmlElement *me=new TiXmlElement("Machine"); + Machine *m=i->second; + //wxString t=wxT("0x")+m->hexid(); + me->SetAttribute("id",m->id()); + me->SetAttribute("type",m->GetType()); + me->SetAttribute("class",m->GetClass().mb_str()); + i->second->properties[wxT("path")]=wxT("{DataFolder}{sep}")+m->hexid(); + + for (auto j=i->second->properties.begin(); j!=i->second->properties.end(); j++) { + TiXmlElement *mp=new TiXmlElement(j->first.mb_str()); + mp->LinkEndChild(new TiXmlText(j->second.mb_str())); + me->LinkEndChild(mp); + } + mach->LinkEndChild(me); + } + //root->LinkEndChild(mach); + return mach; + +} + +/** + * @brief Import Machine Data + * @param path + */ +void Profile::Import(wxString path) +{ + int c=0; + wxLogMessage(wxT("Importing ")+path); + listloaders=GetLoaders(); + for (auto i=loaders.begin(); i!=loaders.end(); i++) { + c+=(*i)->Open(path,this); + } +} + + +vector Profile::GetMachines(MachineType t) +// Returns a vector containing all machine objects regisered of type t +{ + vector vec; + map::iterator i; + + for (i=machlist.begin(); i!=machlist.end(); i++) { + assert(i->second!=NULL); + if (i->second->GetType()==t) { + vec.push_back(i->second); + } + } + return vec; +} + + +Profile *profile=NULL; +wxString SHA1(wxString pass) +{ + return pass; +} + +namespace Profiles +{ + +std::map profiles; + +void Done() +{ + pref.Save(); + layout.Save(); + for (auto i=profiles.begin(); i!=profiles.end(); i++) { + i->second->Save(); + delete i->second; + } + profiles.clear(); + delete p_pref; + delete p_layout; +} + +Profile *Get(wxString name) +{ + return profiles[name]; +} +Profile *Create(wxString name,wxString realname,wxString password) +{ + wxString path=pref.Get("{home}{sep}Profiles"); + if (!wxDirExists(path)) wxMkdir(path); + path+=wxFileName::GetPathSeparator()+name; + if (!wxDirExists(path)) wxMkdir(path); + Profile *prof=new Profile(path); + prof->Open(); + profiles[name]=prof; + prof->Set("Username",name); + prof->Set("Realname",realname); + if (!password.IsEmpty()) prof->Set("Password",SHA1(password)); + prof->Set("DataFolder",wxT("{home}{sep}Profiles{sep}{Username}")); + return prof; +} + +Profile *Get() +{ + return profile; +} +/** + * @brief Scan Profile directory loading user profiles + */ + + + +void Scan() +{ + p_pref=new Preferences(wxT("Preferences")); + p_layout=new Preferences(wxT("Layout")); + + pref.Open(); + layout.Open(); + + wxString path=pref.Get("{home}{sep}Profiles"); + + if (!wxDirExists(path)) { + wxString tmp=pref.Get("{home}"); + wxLogMessage(wxT("zzz")+tmp); + if (!wxDirExists(tmp)) wxMkdir(tmp); + Create(wxGetUserId(),wxGetUserName(),wxT("")); + return; + } + wxDir dir; + dir.Open(path); + // windows beyatching doesn'topen it. + if (!dir.IsOpened()) { + wxLogError(wxT("Wierded out opening ")+path); + return; + } + wxString filename; + bool cont=dir.GetFirst(&filename); + list names; + while (cont) { + names.push_back(filename); + cont=dir.GetNext(&filename); + } + if (names.size()==0) { + Create(wxGetUserId(),wxGetUserName(),wxT("")); + return; + } + for (auto i=names.begin(); i!=names.end(); i++) { + wxString newpath=path+wxFileName::GetPathSeparator()+filename; + Profile *prof=new Profile(newpath); + prof->Open(); + profiles[filename]=prof; + } + +} + +}; // namespace Profiles + diff --git a/libs/sleeplib/profiles.h b/libs/sleeplib/profiles.h new file mode 100644 index 00000000..a8c20dce --- /dev/null +++ b/libs/sleeplib/profiles.h @@ -0,0 +1,66 @@ +/* + +SleepLib Profiles Header + +Author: Mark Watkins +License: GPL + +*/ + +#ifndef PROFILES_H +#define PROFILES_H + +#include +#include +#include "machine.h" +#include "preferences.h" +#include "tinyxml/tinyxml.h" + +class Machine; +/** + * @class Profile + * @author Mark Watkins + * @date 28/04/11 + * @file profiles.h + * @brief User profile system + */ +class Profile:public Preferences +{ +public: + Profile(wxString name); + Profile(); + virtual ~Profile(); + + map machlist; + void AddMachine(Machine *m); + void LoadMachineData(); + void Import(wxString path); + vector GetMachines(MachineType t); + Machine * GetMachine(MachineType t,wxDateTime date); + + virtual void ExtraLoad(TiXmlHandle *root); + virtual TiXmlElement * ExtraSave(); +}; + +extern Preferences *p_pref; +extern Preferences *p_layout; +#define pref (*p_pref) +#define layout (*p_layout) + +extern Profile *profile; + +namespace Profiles +{ + +extern map profiles; +void Scan(); // Initialize and load Profile +void Done(); // Save all Profile objects and clear list + +Profile *Create(wxString name,wxString realname,wxString password); +Profile *Get(wxString name); +Profile *Get(); + +}; + +#endif //PROFILES_H + diff --git a/libs/sleeplib/prs1_loader.cpp b/libs/sleeplib/prs1_loader.cpp new file mode 100644 index 00000000..c7c76887 --- /dev/null +++ b/libs/sleeplib/prs1_loader.cpp @@ -0,0 +1,643 @@ +/* + +SleepLib PRS1 Loader Implementation + +Author: Mark Watkins +License: GPL +*/ + +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +#include "prs1_loader.h" + + +extern wxProgressDialog *loader_progress; + +map ModelMap= { + {34,wxT("RemStar Pro with C-Flex+")}, + {35,wxT("RemStar Auto with A-Flex")} +}; + +PRS1::PRS1(Profile *p,MachineID id):CPAP(p,id) +{ + m_class=wxT("PRS1"); + properties[wxT("Brand")]=wxT("Philips Respironics"); + properties[wxT("Model")]=wxT("System One"); + + SleepFlags= { CPAP_RERA, PRS1_VSnore2, CPAP_FlowLimit, CPAP_Hypopnea, CPAP_Obstructive, CPAP_ClearAirway, CPAP_CSR }; +} +PRS1::~PRS1() +{ + +} + + +PRS1Loader::PRS1Loader() +{ +} + +PRS1Loader::~PRS1Loader() +{ + for (auto i=PRS1List.begin(); i!=PRS1List.end(); i++) { + delete i->second; + } +} +Machine *PRS1Loader::CreateMachine(wxString serial,Profile *profile) +{ + wxLogMessage(wxT("Create Machine")+serial); + if (!profile) { + wxLogMessage(wxT("No Profile!")); + return NULL; + + } + vector ml=profile->GetMachines(MT_CPAP); + bool found=false; + for (auto i=ml.begin(); i!=ml.end(); i++) { + if (((*i)->GetClass()==wxT("PRS1")) && ((*i)->properties[wxT("Serial")]==serial)) { + PRS1List[serial]=*i; //static_cast(*i); + found=true; + break; + } + } + if (found) return PRS1List[serial]; + + //assert(PRS1List.find(serial)==PRS1List.end()) + //wxPuts(wxT("Creating CPAP Machine ")+serial); + Machine *m=new PRS1(profile,0); + + PRS1List[serial]=m; + profile->AddMachine(m); + + m->properties[wxT("Serial")]=serial; + + return m; +} +bool PRS1Loader::Open(wxString & path,Profile *profile) +{ + + wxString newpath; + wxString sep=wxFileName::GetPathSeparator(); + wxString pseries=wxT("P-Series"); + if (path.Right(pseries.Len()+sep.Len())==pseries) { + newpath=path; + } else { + newpath=path+sep+pseries; + } + wxDir dir; + dir.Open(newpath); + if (!dir.IsOpened()) return 0; + + list SerialNumbers; + list::iterator sn; + + wxString filename; + bool cont=dir.GetFirst(&filename); + + int c=0; + while (cont) { + if ((filename[0]=='P') && (isdigit(filename[1])) && (isdigit(filename[2]))) { + SerialNumbers.push_back(filename); + } else if (filename.Lower()==wxT("last.txt")) { // last.txt points to the current serial number + wxTextFile f(newpath+sep+filename); + f.Open(); + last=f.GetFirstLine(); + last.Strip(); + f.Close(); + } + + cont=dir.GetNext(&filename); + } + + if (SerialNumbers.empty()) return 0; + + Machine *m; + for (sn=SerialNumbers.begin(); sn!=SerialNumbers.end(); sn++) { + wxString s=*sn; + m=CreateMachine(s,profile); + + if (m) OpenMachine(m,newpath+wxFileName::GetPathSeparator()+(*sn)); + } + + return PRS1List.size(); + + return c; +} +bool PRS1Loader::ParseProperties(Machine *m,wxString filename) +{ + wxTextFile f(filename); + f.Open(); + if (!f.IsOpened()) return false; + + wxString line; + map prop; + + wxString s=f.GetFirstLine(); + wxChar sep=wxChar('='); + wxString key,value; + while (!f.Eof()) { + key=s.BeforeFirst(sep); + if (key==s) continue; + value=s.AfterFirst(sep).Strip(); + if (value==s) continue; + prop[key]=value; + s=f.GetNextLine(); + } + + if (prop[wxT("ProductType")].IsNumber()) { + long i; + prop[wxT("ProductType")].ToLong(&i); + if (ModelMap.find(i)!=ModelMap.end()) { + m->properties[wxT("SubModel")]=ModelMap[i]; + } + } + if (prop[wxT("SerialNumber")]!=m->properties[wxT("Serial")]) { + wxLogWarning(wxT("Serial Number in PRS1 properties.txt doesn't match directory structure")); + } else prop.erase(wxT("SerialNumber")); // already got it stored. + + for (auto i=prop.begin(); i!=prop.end(); i++) { + m->properties[i->first]=i->second; + } + + f.Close(); + return true; +} + +int PRS1Loader::OpenMachine(Machine *m,wxString path) +{ + + wxLogDebug(wxT("Opening PRS1 ")+path); + //wxPuts(wxT("opening "+path)); + wxDir dir; + dir.Open(path); + if (!dir.IsOpened()) return false; + + wxString pathname,filename; + + bool cont=dir.GetFirst(&filename); + list paths; + + if(loader_progress) { + loader_progress->Update(0); + } + while (cont) { + pathname=path+wxFileName::GetPathSeparator()+filename; + if ((filename[0]==wxChar('p')) && (isdigit(filename[1]))) { + paths.push_back(pathname); + } else if (filename.Lower()==wxT("properties.txt")) { + ParseProperties(m,pathname); + } else if (filename.Lower()==wxT("e")) { + // don't really give a crap about .004 files yet. + } + if (loader_progress) loader_progress->Pulse(); + cont=dir.GetNext(&filename); + } + + SessionID session; + long ext; + typedef vector StringList; + map sessfiles; + int size=paths.size(); + int cnt=0; + for (auto p=paths.begin(); p!=paths.end(); p++) { + dir.Open(*p); + if (!dir.IsOpened()) continue;; + bool cont=dir.GetFirst(&filename); + + while (cont) { + wxString ext_s=filename.AfterLast(wxChar('.')); + wxString session_s=filename.BeforeLast(wxChar('.')); + + if (!ext_s.IsNumber()) continue; + if (!session_s.IsNumber()) continue; + + session_s.ToLong(&session); + ext_s.ToLong(&ext); + if (sessfiles[session].capacity()==0) sessfiles[session].resize(3); + + wxString fullname=*p+wxFileName::GetPathSeparator()+filename; + if (ext==1) { + sessfiles[session][0]=fullname; + } else if (ext==2) { + sessfiles[session][1]=fullname; + } else if (ext==5) { + sessfiles[session][2]=fullname; + } + cnt++; + if (loader_progress) loader_progress->Pulse(); //Update((float(cnt)/float(size)*25)); + //if (loader_progress) loader_progress->Update((float(cnt)/float(size)*25.0)); + cont=dir.GetNext(&filename); + } + } + if (sessfiles.size()==0) return 0; + + size=sessfiles.size(); + cnt=0; + for (auto s=sessfiles.begin(); s!=sessfiles.end(); s++) { + session=s->first; + cnt++; + if (loader_progress) loader_progress->Update(25.0+(float(cnt)/float(size)*25.0)); + + if (m->SessionExists(session)) continue; + if (!s->second[0]) continue; + + Session *sess=new Session(m,session); + if (!OpenSummary(sess,s->second[0])) { + wxLogWarning(wxT("PRS1Loader: Could'nt open summary file ")+s->second[0]); + + delete sess; + continue; + } + if (sess->hours()<0.016666667) { // Ignore useless sessions under 1 minute + delete sess; + continue; + } + + //sess->SetSessionID(sess->start().GetTicks()); + m->AddSession(sess); + if (!s->second[1].IsEmpty()) { + if (!OpenEvents(sess,s->second[1])) { + wxLogWarning(wxT("PRS1Loader: Couldn't open event file ")+s->second[1]); + } + } + + if (!s->second[2].IsEmpty()) { + if (!OpenWaveforms(sess,s->second[2])) { + wxLogWarning(wxT("PRS1Loader: Couldn't open event file ")+s->second[2]); + } + } + + sess->summary[CPAP_CSR]=sess->sum_event_field(CPAP_CSR,0); + sess->summary[CPAP_VSnore]=(long)sess->count_events(CPAP_VSnore); + sess->summary[PRS1_VSnore2]=sess->sum_event_field(PRS1_VSnore2,0); + sess->summary[CPAP_PressureMedian]=sess->avg_event_field(CPAP_Pressure,0); + + sess->summary[CPAP_LeakMinimum]=sess->min_event_field(CPAP_Leak,0); + sess->summary[CPAP_LeakMaximum]=sess->max_event_field(CPAP_Leak,0); // should be merged.. + sess->summary[CPAP_LeakMedian]=sess->avg_event_field(CPAP_Leak,0); + sess->summary[CPAP_LeakAverage]=sess->weighted_avg_event_field(CPAP_Leak,0); + + //wxPrintf(sess->start().Format()+wxT(" avgsummary=%.3f avgmine=%.3f\n"),sess->summary[CPAP_PressureAverage].GetDouble(),sess->weighted_avg_event_field(CPAP_Pressure,0)); + sess->SetChanged(true); + } + m->Save(); // Save any new sessions to disk in our format + if (loader_progress) loader_progress->Update(100); + return true; +} + +bool PRS1Loader::OpenSummary(Session *session,wxString filename) +{ + int size,sequence,seconds,br; + time_t timestamp; + unsigned char header[24]; + unsigned char ext; + + //wxLogMessage(wxT("Opening PRS1 Summary ")+filename); + wxFFile f(filename,wxT("rb")); + + if (!f.IsOpened()) return false; + + int hl=16; + + br=f.Read(header,hl); + + if (header[0]!=header[5]) return false; + + sequence=size=timestamp=seconds=ext=0; + sequence=(header[10] << 24) | (header[9] << 16) | (header[8] << 8) | header[7]; + timestamp=(header[14] << 24) | (header[13] << 16) | (header[12] << 8) | header[11]; + size=(header[2] << 8) | header[1]; + ext=header[6]; + + if (ext!=1) return false; + //size|=(header[3]<<16) | (header[4]<<24); // the jury is still out on the 32bitness of one. doesn't matter here anyway. + + size-=(hl+2); + + unsigned char sum=0; + for (int i=0; i wavedata; + vector wavesize; + int samples=0; + int duration=0; + + while (true) { + br=f.Read(header,hl); + + if (brc) min=c; + if (maxAddWaveform(w); + if (sequence==9) { + sequence=9; + } + //wxLogMessage(wxT("Done PRS1 Waveforms ")+filename); + return true; +} + + +bool initialized=false; +void PRS1Loader::Register() +{ + if (initialized) return; + wxLogVerbose(wxT("Registering PRS1Loader")); + RegisterLoader(new PRS1Loader()); + initialized=true; +} + diff --git a/libs/sleeplib/prs1_loader.h b/libs/sleeplib/prs1_loader.h new file mode 100644 index 00000000..a15275d0 --- /dev/null +++ b/libs/sleeplib/prs1_loader.h @@ -0,0 +1,48 @@ +/* + +SleepLib PRS1 Loader Header + +Author: Mark Watkins +License: GPL + +*/ + +#ifndef PRS1LOADER_H +#define PRS1LOADER_H +//#include +//using namespace std; +#include "machine.h" // Base class: MachineLoader +#include "machine_loader.h" +#include "profiles.h" + +class PRS1:public CPAP +{ +public: + PRS1(Profile *p,MachineID id=0); + virtual ~PRS1(); +}; + +class PRS1Loader : public MachineLoader +{ +public: + PRS1Loader(); + virtual ~PRS1Loader(); + virtual bool Open(wxString & path,Profile *profile); + + Machine *CreateMachine(wxString serial,Profile *profile); + + static void Register(); +protected: + wxString last; + map PRS1List; + int OpenMachine(Machine *m,wxString path); + bool ParseProperties(Machine *m,wxString filename); + bool OpenSummary(Session *session,wxString filename); + bool OpenEvents(Session *session,wxString filename); + bool OpenWaveforms(Session *session,wxString filename); + bool Parse002(Session *session,unsigned char *buffer,int size,time_t timestamp); + +}; + + +#endif // PRS1LOADER_H diff --git a/libs/tinyxml/readme.txt b/libs/tinyxml/readme.txt new file mode 100644 index 00000000..89d9e8d3 --- /dev/null +++ b/libs/tinyxml/readme.txt @@ -0,0 +1,530 @@ +/** @mainpage + +

TinyXML

+ +TinyXML is a simple, small, C++ XML parser that can be easily +integrated into other programs. + +

What it does.

+ +In brief, TinyXML parses an XML document, and builds from that a +Document Object Model (DOM) that can be read, modified, and saved. + +XML stands for "eXtensible Markup Language." It allows you to create +your own document markups. Where HTML does a very good job of marking +documents for browsers, XML allows you to define any kind of document +markup, for example a document that describes a "to do" list for an +organizer application. XML is a very structured and convenient format. +All those random file formats created to store application data can +all be replaced with XML. One parser for everything. + +The best place for the complete, correct, and quite frankly hard to +read spec is at +http://www.w3.org/TR/2004/REC-xml-20040204/. An intro to XML +(that I really like) can be found at +http://skew.org/xml/tutorial. + +There are different ways to access and interact with XML data. +TinyXML uses a Document Object Model (DOM), meaning the XML data is parsed +into a C++ objects that can be browsed and manipulated, and then +written to disk or another output stream. You can also construct an XML document +from scratch with C++ objects and write this to disk or another output +stream. + +TinyXML is designed to be easy and fast to learn. It is two headers +and four cpp files. Simply add these to your project and off you go. +There is an example file - xmltest.cpp - to get you started. + +TinyXML is released under the ZLib license, +so you can use it in open source or commercial code. The details +of the license are at the top of every source file. + +TinyXML attempts to be a flexible parser, but with truly correct and +compliant XML output. TinyXML should compile on any reasonably C++ +compliant system. It does not rely on exceptions or RTTI. It can be +compiled with or without STL support. TinyXML fully supports +the UTF-8 encoding, and the first 64k character entities. + + +

What it doesn't do.

+ +TinyXML doesn't parse or use DTDs (Document Type Definitions) or XSLs +(eXtensible Stylesheet Language.) There are other parsers out there +(check out www.sourceforge.org, search for XML) that are much more fully +featured. But they are also much bigger, take longer to set up in +your project, have a higher learning curve, and often have a more +restrictive license. If you are working with browsers or have more +complete XML needs, TinyXML is not the parser for you. + +The following DTD syntax will not parse at this time in TinyXML: + +@verbatim + + ]> +@endverbatim + +because TinyXML sees this as a !DOCTYPE node with an illegally +embedded !ELEMENT node. This may be addressed in the future. + +

Tutorials.

+ +For the impatient, here is a tutorial to get you going. A great way to get started, +but it is worth your time to read this (very short) manual completely. + +- @subpage tutorial0 + +

Code Status.

+ +TinyXML is mature, tested code. It is very stable. If you find +bugs, please file a bug report on the sourceforge web site +(www.sourceforge.net/projects/tinyxml). We'll get them straightened +out as soon as possible. + +There are some areas of improvement; please check sourceforge if you are +interested in working on TinyXML. + +

Related Projects

+ +TinyXML projects you may find useful! (Descriptions provided by the projects.) + +
    +
  • TinyXPath (http://tinyxpath.sourceforge.net). TinyXPath is a small footprint + XPath syntax decoder, written in C++.
  • +
  • TinyXML++ (http://code.google.com/p/ticpp/). TinyXML++ is a completely new + interface to TinyXML that uses MANY of the C++ strengths. Templates, + exceptions, and much better error handling.
  • +
+ +

Features

+ +

Using STL

+ +TinyXML can be compiled to use or not use STL. When using STL, TinyXML +uses the std::string class, and fully supports std::istream, std::ostream, +operator<<, and operator>>. Many API methods have both 'const char*' and +'const std::string&' forms. + +When STL support is compiled out, no STL files are included whatsoever. All +the string classes are implemented by TinyXML itself. API methods +all use the 'const char*' form for input. + +Use the compile time #define: + + TIXML_USE_STL + +to compile one version or the other. This can be passed by the compiler, +or set as the first line of "tinyxml.h". + +Note: If compiling the test code in Linux, setting the environment +variable TINYXML_USE_STL=YES/NO will control STL compilation. In the +Windows project file, STL and non STL targets are provided. In your project, +It's probably easiest to add the line "#define TIXML_USE_STL" as the first +line of tinyxml.h. + +

UTF-8

+ +TinyXML supports UTF-8 allowing to manipulate XML files in any language. TinyXML +also supports "legacy mode" - the encoding used before UTF-8 support and +probably best described as "extended ascii". + +Normally, TinyXML will try to detect the correct encoding and use it. However, +by setting the value of TIXML_DEFAULT_ENCODING in the header file, TinyXML +can be forced to always use one encoding. + +TinyXML will assume Legacy Mode until one of the following occurs: +
    +
  1. If the non-standard but common "UTF-8 lead bytes" (0xef 0xbb 0xbf) + begin the file or data stream, TinyXML will read it as UTF-8.
  2. +
  3. If the declaration tag is read, and it has an encoding="UTF-8", then + TinyXML will read it as UTF-8.
  4. +
  5. If the declaration tag is read, and it has no encoding specified, then TinyXML will + read it as UTF-8.
  6. +
  7. If the declaration tag is read, and it has an encoding="something else", then TinyXML + will read it as Legacy Mode. In legacy mode, TinyXML will work as it did before. It's + not clear what that mode does exactly, but old content should keep working.
  8. +
  9. Until one of the above criteria is met, TinyXML runs in Legacy Mode.
  10. +
+ +What happens if the encoding is incorrectly set or detected? TinyXML will try +to read and pass through text seen as improperly encoded. You may get some strange results or +mangled characters. You may want to force TinyXML to the correct mode. + +You may force TinyXML to Legacy Mode by using LoadFile( TIXML_ENCODING_LEGACY ) or +LoadFile( filename, TIXML_ENCODING_LEGACY ). You may force it to use legacy mode all +the time by setting TIXML_DEFAULT_ENCODING = TIXML_ENCODING_LEGACY. Likewise, you may +force it to TIXML_ENCODING_UTF8 with the same technique. + +For English users, using English XML, UTF-8 is the same as low-ASCII. You +don't need to be aware of UTF-8 or change your code in any way. You can think +of UTF-8 as a "superset" of ASCII. + +UTF-8 is not a double byte format - but it is a standard encoding of Unicode! +TinyXML does not use or directly support wchar, TCHAR, or Microsoft's _UNICODE at this time. +It is common to see the term "Unicode" improperly refer to UTF-16, a wide byte encoding +of unicode. This is a source of confusion. + +For "high-ascii" languages - everything not English, pretty much - TinyXML can +handle all languages, at the same time, as long as the XML is encoded +in UTF-8. That can be a little tricky, older programs and operating systems +tend to use the "default" or "traditional" code page. Many apps (and almost all +modern ones) can output UTF-8, but older or stubborn (or just broken) ones +still output text in the default code page. + +For example, Japanese systems traditionally use SHIFT-JIS encoding. +Text encoded as SHIFT-JIS can not be read by TinyXML. +A good text editor can import SHIFT-JIS and then save as UTF-8. + +The Skew.org link does a great +job covering the encoding issue. + +The test file "utf8test.xml" is an XML containing English, Spanish, Russian, +and Simplified Chinese. (Hopefully they are translated correctly). The file +"utf8test.gif" is a screen capture of the XML file, rendered in IE. Note that +if you don't have the correct fonts (Simplified Chinese or Russian) on your +system, you won't see output that matches the GIF file even if you can parse +it correctly. Also note that (at least on my Windows machine) console output +is in a Western code page, so that Print() or printf() cannot correctly display +the file. This is not a bug in TinyXML - just an OS issue. No data is lost or +destroyed by TinyXML. The console just doesn't render UTF-8. + + +

Entities

+TinyXML recognizes the pre-defined "character entities", meaning special +characters. Namely: + +@verbatim + & & + < < + > > + " " + ' ' +@endverbatim + +These are recognized when the XML document is read, and translated to there +UTF-8 equivalents. For instance, text with the XML of: + +@verbatim + Far & Away +@endverbatim + +will have the Value() of "Far & Away" when queried from the TiXmlText object, +and will be written back to the XML stream/file as an ampersand. Older versions +of TinyXML "preserved" character entities, but the newer versions will translate +them into characters. + +Additionally, any character can be specified by its Unicode code point: +The syntax " " or " " are both to the non-breaking space characher. + +

Printing

+TinyXML can print output in several different ways that all have strengths and limitations. + +- Print( FILE* ). Output to a std-C stream, which includes all C files as well as stdout. + - "Pretty prints", but you don't have control over printing options. + - The output is streamed directly to the FILE object, so there is no memory overhead + in the TinyXML code. + - used by Print() and SaveFile() + +- operator<<. Output to a c++ stream. + - Integrates with standart C++ iostreams. + - Outputs in "network printing" mode without line breaks. Good for network transmission + and moving XML between C++ objects, but hard for a human to read. + +- TiXmlPrinter. Output to a std::string or memory buffer. + - API is less concise + - Future printing options will be put here. + - Printing may change slightly in future versions as it is refined and expanded. + +

Streams

+With TIXML_USE_STL on TinyXML supports C++ streams (operator <<,>>) streams as well +as C (FILE*) streams. There are some differences that you may need to be aware of. + +C style output: + - based on FILE* + - the Print() and SaveFile() methods + + Generates formatted output, with plenty of white space, intended to be as + human-readable as possible. They are very fast, and tolerant of ill formed + XML documents. For example, an XML document that contains 2 root elements + and 2 declarations, will still print. + +C style input: + - based on FILE* + - the Parse() and LoadFile() methods + + A fast, tolerant read. Use whenever you don't need the C++ streams. + +C++ style output: + - based on std::ostream + - operator<< + + Generates condensed output, intended for network transmission rather than + readability. Depending on your system's implementation of the ostream class, + these may be somewhat slower. (Or may not.) Not tolerant of ill formed XML: + a document should contain the correct one root element. Additional root level + elements will not be streamed out. + +C++ style input: + - based on std::istream + - operator>> + + Reads XML from a stream, making it useful for network transmission. The tricky + part is knowing when the XML document is complete, since there will almost + certainly be other data in the stream. TinyXML will assume the XML data is + complete after it reads the root element. Put another way, documents that + are ill-constructed with more than one root element will not read correctly. + Also note that operator>> is somewhat slower than Parse, due to both + implementation of the STL and limitations of TinyXML. + +

White space

+The world simply does not agree on whether white space should be kept, or condensed. +For example, pretend the '_' is a space, and look at "Hello____world". HTML, and +at least some XML parsers, will interpret this as "Hello_world". They condense white +space. Some XML parsers do not, and will leave it as "Hello____world". (Remember +to keep pretending the _ is a space.) Others suggest that __Hello___world__ should become +Hello___world. + +It's an issue that hasn't been resolved to my satisfaction. TinyXML supports the +first 2 approaches. Call TiXmlBase::SetCondenseWhiteSpace( bool ) to set the desired behavior. +The default is to condense white space. + +If you change the default, you should call TiXmlBase::SetCondenseWhiteSpace( bool ) +before making any calls to Parse XML data, and I don't recommend changing it after +it has been set. + + +

Handles

+ +Where browsing an XML document in a robust way, it is important to check +for null returns from method calls. An error safe implementation can +generate a lot of code like: + +@verbatim +TiXmlElement* root = document.FirstChildElement( "Document" ); +if ( root ) +{ + TiXmlElement* element = root->FirstChildElement( "Element" ); + if ( element ) + { + TiXmlElement* child = element->FirstChildElement( "Child" ); + if ( child ) + { + TiXmlElement* child2 = child->NextSiblingElement( "Child" ); + if ( child2 ) + { + // Finally do something useful. +@endverbatim + +Handles have been introduced to clean this up. Using the TiXmlHandle class, +the previous code reduces to: + +@verbatim +TiXmlHandle docHandle( &document ); +TiXmlElement* child2 = docHandle.FirstChild( "Document" ).FirstChild( "Element" ).Child( "Child", 1 ).ToElement(); +if ( child2 ) +{ + // do something useful +@endverbatim + +Which is much easier to deal with. See TiXmlHandle for more information. + + +

Row and Column tracking

+Being able to track nodes and attributes back to their origin location +in source files can be very important for some applications. Additionally, +knowing where parsing errors occured in the original source can be very +time saving. + +TinyXML can tracks the row and column origin of all nodes and attributes +in a text file. The TiXmlBase::Row() and TiXmlBase::Column() methods return +the origin of the node in the source text. The correct tabs can be +configured in TiXmlDocument::SetTabSize(). + + +

Using and Installing

+ +To Compile and Run xmltest: + +A Linux Makefile and a Windows Visual C++ .dsw file is provided. +Simply compile and run. It will write the file demotest.xml to your +disk and generate output on the screen. It also tests walking the +DOM by printing out the number of nodes found using different +techniques. + +The Linux makefile is very generic and runs on many systems - it +is currently tested on mingw and +MacOSX. You do not need to run 'make depend'. The dependecies have been +hard coded. + +

Windows project file for VC6

+
    +
  • tinyxml: tinyxml library, non-STL
  • +
  • tinyxmlSTL: tinyxml library, STL
  • +
  • tinyXmlTest: test app, non-STL
  • +
  • tinyXmlTestSTL: test app, STL
  • +
+ +

Makefile

+At the top of the makefile you can set: + +PROFILE, DEBUG, and TINYXML_USE_STL. Details (such that they are) are in +the makefile. + +In the tinyxml directory, type "make clean" then "make". The executable +file 'xmltest' will be created. + + + +

To Use in an Application:

+ +Add tinyxml.cpp, tinyxml.h, tinyxmlerror.cpp, tinyxmlparser.cpp, tinystr.cpp, and tinystr.h to your +project or make file. That's it! It should compile on any reasonably +compliant C++ system. You do not need to enable exceptions or +RTTI for TinyXML. + + +

How TinyXML works.

+ +An example is probably the best way to go. Take: +@verbatim + + + + Go to the Toy store! + Do bills + +@endverbatim + +Its not much of a To Do list, but it will do. To read this file +(say "demo.xml") you would create a document, and parse it in: +@verbatim + TiXmlDocument doc( "demo.xml" ); + doc.LoadFile(); +@endverbatim + +And its ready to go. Now lets look at some lines and how they +relate to the DOM. + +@verbatim + +@endverbatim + + The first line is a declaration, and gets turned into the + TiXmlDeclaration class. It will be the first child of the + document node. + + This is the only directive/special tag parsed by TinyXML. + Generally directive tags are stored in TiXmlUnknown so the + commands wont be lost when it is saved back to disk. + +@verbatim + +@endverbatim + + A comment. Will become a TiXmlComment object. + +@verbatim + +@endverbatim + + The "ToDo" tag defines a TiXmlElement object. This one does not have + any attributes, but does contain 2 other elements. + +@verbatim + +@endverbatim + + Creates another TiXmlElement which is a child of the "ToDo" element. + This element has 1 attribute, with the name "priority" and the value + "1". + +@verbatim +Go to the +@endverbatim + + A TiXmlText. This is a leaf node and cannot contain other nodes. + It is a child of the "Item" TiXmlElement. + +@verbatim + +@endverbatim + + + Another TiXmlElement, this one a child of the "Item" element. + +Etc. + +Looking at the entire object tree, you end up with: +@verbatim +TiXmlDocument "demo.xml" + TiXmlDeclaration "version='1.0'" "standalone=no" + TiXmlComment " Our to do list data" + TiXmlElement "ToDo" + TiXmlElement "Item" Attribtutes: priority = 1 + TiXmlText "Go to the " + TiXmlElement "bold" + TiXmlText "Toy store!" + TiXmlElement "Item" Attributes: priority=2 + TiXmlText "Do bills" +@endverbatim + +

Documentation

+ +The documentation is build with Doxygen, using the 'dox' +configuration file. + +

License

+ +TinyXML is released under the zlib license: + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any +damages arising from the use of this software. + +Permission is granted to anyone to use this software for any +purpose, including commercial applications, and to alter it and +redistribute it freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must +not claim that you wrote the original software. If you use this +software in a product, an acknowledgment in the product documentation +would be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and +must not be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source +distribution. + +

References

+ +The World Wide Web Consortium is the definitive standard body for +XML, and their web pages contain huge amounts of information. + +The definitive spec: +http://www.w3.org/TR/2004/REC-xml-20040204/ + +I also recommend "XML Pocket Reference" by Robert Eckstein and published by +OReilly...the book that got the whole thing started. + +

Contributors, Contacts, and a Brief History

+ +Thanks very much to everyone who sends suggestions, bugs, ideas, and +encouragement. It all helps, and makes this project fun. A special thanks +to the contributors on the web pages that keep it lively. + +So many people have sent in bugs and ideas, that rather than list here +we try to give credit due in the "changes.txt" file. + +TinyXML was originally written by Lee Thomason. (Often the "I" still +in the documentation.) Lee reviews changes and releases new versions, +with the help of Yves Berquin, Andrew Ellerton, and the tinyXml community. + +We appreciate your suggestions, and would love to know if you +use TinyXML. Hopefully you will enjoy it and find it useful. +Please post questions, comments, file bugs, or contact us at: + +www.sourceforge.net/projects/tinyxml + +Lee Thomason, Yves Berquin, Andrew Ellerton +*/ diff --git a/libs/tinyxml/tinystr.cpp b/libs/tinyxml/tinystr.cpp new file mode 100644 index 00000000..e0f1594e --- /dev/null +++ b/libs/tinyxml/tinystr.cpp @@ -0,0 +1,112 @@ +/* +www.sourceforge.net/projects/tinyxml +Original file by Yves Berquin. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any +damages arising from the use of this software. + +Permission is granted to anyone to use this software for any +purpose, including commercial applications, and to alter it and +redistribute it freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must +not claim that you wrote the original software. If you use this +software in a product, an acknowledgment in the product documentation +would be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and +must not be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source +distribution. +*/ + +/* + * THIS FILE WAS ALTERED BY Tyge Løvset, 7. April 2005. + */ + + +#ifndef TIXML_USE_STL + +#include "tinystr.h" + +// Error value for find primitive +const TiXmlString::size_type TiXmlString::npos = static_cast< TiXmlString::size_type >(-1); + + +// Null rep. +TiXmlString::Rep TiXmlString::nullrep_ = { 0, 0, { '\0' } }; + + +void TiXmlString::reserve (size_type cap) +{ + if (cap > capacity()) { + TiXmlString tmp; + tmp.init(length(), cap); + memcpy(tmp.start(), data(), length()); + swap(tmp); + } +} + + +TiXmlString& TiXmlString::assign(const char* str, size_type len) +{ + size_type cap = capacity(); + if (len > cap || cap > 3*(len + 8)) { + TiXmlString tmp; + tmp.init(len); + memcpy(tmp.start(), str, len); + swap(tmp); + } else { + memmove(start(), str, len); + set_size(len); + } + return *this; +} + + +TiXmlString& TiXmlString::append(const char* str, size_type len) +{ + size_type newsize = length() + len; + if (newsize > capacity()) { + reserve (newsize + capacity()); + } + memmove(finish(), str, len); + set_size(newsize); + return *this; +} + + +TiXmlString operator + (const TiXmlString & a, const TiXmlString & b) +{ + TiXmlString tmp; + tmp.reserve(a.length() + b.length()); + tmp += a; + tmp += b; + return tmp; +} + +TiXmlString operator + (const TiXmlString & a, const char* b) +{ + TiXmlString tmp; + TiXmlString::size_type b_len = static_cast( strlen(b) ); + tmp.reserve(a.length() + b_len); + tmp += a; + tmp.append(b, b_len); + return tmp; +} + +TiXmlString operator + (const char* a, const TiXmlString & b) +{ + TiXmlString tmp; + TiXmlString::size_type a_len = static_cast( strlen(a) ); + tmp.reserve(a_len + b.length()); + tmp.append(a, a_len); + tmp += b; + return tmp; +} + + +#endif // TIXML_USE_STL + diff --git a/libs/tinyxml/tinystr.h b/libs/tinyxml/tinystr.h new file mode 100644 index 00000000..b1d793cc --- /dev/null +++ b/libs/tinyxml/tinystr.h @@ -0,0 +1,338 @@ +/* +www.sourceforge.net/projects/tinyxml +Original file by Yves Berquin. + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any +damages arising from the use of this software. + +Permission is granted to anyone to use this software for any +purpose, including commercial applications, and to alter it and +redistribute it freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must +not claim that you wrote the original software. If you use this +software in a product, an acknowledgment in the product documentation +would be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and +must not be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source +distribution. +*/ + +/* + * THIS FILE WAS ALTERED BY Tyge Lovset, 7. April 2005. + * + * - completely rewritten. compact, clean, and fast implementation. + * - sizeof(TiXmlString) = pointer size (4 bytes on 32-bit systems) + * - fixed reserve() to work as per specification. + * - fixed buggy compares operator==(), operator<(), and operator>() + * - fixed operator+=() to take a const ref argument, following spec. + * - added "copy" constructor with length, and most compare operators. + * - added swap(), clear(), size(), capacity(), operator+(). + */ + +#ifndef TIXML_USE_STL + +#ifndef TIXML_STRING_INCLUDED +#define TIXML_STRING_INCLUDED + +#include +#include + +/* The support for explicit isn't that universal, and it isn't really + required - it is used to check that the TiXmlString class isn't incorrectly + used. Be nice to old compilers and macro it here: +*/ +#if defined(_MSC_VER) && (_MSC_VER >= 1200 ) +// Microsoft visual studio, version 6 and higher. +#define TIXML_EXPLICIT explicit +#elif defined(__GNUC__) && (__GNUC__ >= 3 ) +// GCC version 3 and higher.s +#define TIXML_EXPLICIT explicit +#else +#define TIXML_EXPLICIT +#endif + + +/* + TiXmlString is an emulation of a subset of the std::string template. + Its purpose is to allow compiling TinyXML on compilers with no or poor STL support. + Only the member functions relevant to the TinyXML project have been implemented. + The buffer allocation is made by a simplistic power of 2 like mechanism : if we increase + a string and there's no more room, we allocate a buffer twice as big as we need. +*/ +class TiXmlString +{ +public : + // The size type used + typedef size_t size_type; + + // Error value for find primitive + static const size_type npos; // = -1; + + + // TiXmlString empty constructor + TiXmlString () : rep_(&nullrep_) { + } + + // TiXmlString copy constructor + TiXmlString ( const TiXmlString & copy) : rep_(0) { + init(copy.length()); + memcpy(start(), copy.data(), length()); + } + + // TiXmlString constructor, based on a string + TIXML_EXPLICIT TiXmlString ( const char * copy) : rep_(0) { + init( static_cast( strlen(copy) )); + memcpy(start(), copy, length()); + } + + // TiXmlString constructor, based on a string + TIXML_EXPLICIT TiXmlString ( const char * str, size_type len) : rep_(0) { + init(len); + memcpy(start(), str, len); + } + + // TiXmlString destructor + ~TiXmlString () { + quit(); + } + + // = operator + TiXmlString& operator = (const char * copy) { + return assign( copy, (size_type)strlen(copy)); + } + + // = operator + TiXmlString& operator = (const TiXmlString & copy) { + return assign(copy.start(), copy.length()); + } + + + // += operator. Maps to append + TiXmlString& operator += (const char * suffix) { + return append(suffix, static_cast( strlen(suffix) )); + } + + // += operator. Maps to append + TiXmlString& operator += (char single) { + return append(&single, 1); + } + + // += operator. Maps to append + TiXmlString& operator += (const TiXmlString & suffix) { + return append(suffix.data(), suffix.length()); + } + + + // Convert a TiXmlString into a null-terminated char * + const char * c_str () const { + return rep_->str; + } + + // Convert a TiXmlString into a char * (need not be null terminated). + const char * data () const { + return rep_->str; + } + + // Return the length of a TiXmlString + size_type length () const { + return rep_->size; + } + + // Alias for length() + size_type size () const { + return rep_->size; + } + + // Checks if a TiXmlString is empty + bool empty () const { + return rep_->size == 0; + } + + // Return capacity of string + size_type capacity () const { + return rep_->capacity; + } + + + // single char extraction + const char& at (size_type index) const { + assert( index < length() ); + return rep_->str[ index ]; + } + + // [] operator + char& operator [] (size_type index) const { + assert( index < length() ); + return rep_->str[ index ]; + } + + // find a char in a string. Return TiXmlString::npos if not found + size_type find (char lookup) const { + return find(lookup, 0); + } + + // find a char in a string from an offset. Return TiXmlString::npos if not found + size_type find (char tofind, size_type offset) const { + if (offset >= length()) return npos; + + for (const char* p = c_str() + offset; *p != '\0'; ++p) { + if (*p == tofind) return static_cast< size_type >( p - c_str() ); + } + return npos; + } + + void clear () { + //Lee: + //The original was just too strange, though correct: + // TiXmlString().swap(*this); + //Instead use the quit & re-init: + quit(); + init(0,0); + } + + /* Function to reserve a big amount of data when we know we'll need it. Be aware that this + function DOES NOT clear the content of the TiXmlString if any exists. + */ + void reserve (size_type cap); + + TiXmlString& assign (const char* str, size_type len); + + TiXmlString& append (const char* str, size_type len); + + void swap (TiXmlString& other) { + Rep* r = rep_; + rep_ = other.rep_; + other.rep_ = r; + } + +private: + + void init(size_type sz) { + init(sz, sz); + } + void set_size(size_type sz) { + rep_->str[ rep_->size = sz ] = '\0'; + } + char* start() const { + return rep_->str; + } + char* finish() const { + return rep_->str + rep_->size; + } + + struct Rep { + size_type size, capacity; + char str[1]; + }; + + void init(size_type sz, size_type cap) { + if (cap) { + // Lee: the original form: + // rep_ = static_cast(operator new(sizeof(Rep) + cap)); + // doesn't work in some cases of new being overloaded. Switching + // to the normal allocation, although use an 'int' for systems + // that are overly picky about structure alignment. + const size_type bytesNeeded = sizeof(Rep) + cap; + const size_type intsNeeded = ( bytesNeeded + sizeof(int) - 1 ) / sizeof( int ); + rep_ = reinterpret_cast( new int[ intsNeeded ] ); + + rep_->str[ rep_->size = sz ] = '\0'; + rep_->capacity = cap; + } else { + rep_ = &nullrep_; + } + } + + void quit() { + if (rep_ != &nullrep_) { + // The rep_ is really an array of ints. (see the allocator, above). + // Cast it back before delete, so the compiler won't incorrectly call destructors. + delete [] ( reinterpret_cast( rep_ ) ); + } + } + + Rep * rep_; + static Rep nullrep_; + +} ; + + +inline bool operator == (const TiXmlString & a, const TiXmlString & b) +{ + return ( a.length() == b.length() ) // optimization on some platforms + && ( strcmp(a.c_str(), b.c_str()) == 0 ); // actual compare +} +inline bool operator < (const TiXmlString & a, const TiXmlString & b) +{ + return strcmp(a.c_str(), b.c_str()) < 0; +} + +inline bool operator != (const TiXmlString & a, const TiXmlString & b) +{ + return !(a == b); +} +inline bool operator > (const TiXmlString & a, const TiXmlString & b) +{ + return b < a; +} +inline bool operator <= (const TiXmlString & a, const TiXmlString & b) +{ + return !(b < a); +} +inline bool operator >= (const TiXmlString & a, const TiXmlString & b) +{ + return !(a < b); +} + +inline bool operator == (const TiXmlString & a, const char* b) +{ + return strcmp(a.c_str(), b) == 0; +} +inline bool operator == (const char* a, const TiXmlString & b) +{ + return b == a; +} +inline bool operator != (const TiXmlString & a, const char* b) +{ + return !(a == b); +} +inline bool operator != (const char* a, const TiXmlString & b) +{ + return !(b == a); +} + +TiXmlString operator + (const TiXmlString & a, const TiXmlString & b); +TiXmlString operator + (const TiXmlString & a, const char* b); +TiXmlString operator + (const char* a, const TiXmlString & b); + + +/* + TiXmlOutStream is an emulation of std::ostream. It is based on TiXmlString. + Only the operators that we need for TinyXML have been developped. +*/ +class TiXmlOutStream : public TiXmlString +{ +public : + + // TiXmlOutStream << operator. + TiXmlOutStream & operator << (const TiXmlString & in) { + *this += in; + return *this; + } + + // TiXmlOutStream << operator. + TiXmlOutStream & operator << (const char * in) { + *this += in; + return *this; + } + +} ; + +#endif // TIXML_STRING_INCLUDED +#endif // TIXML_USE_STL + diff --git a/libs/tinyxml/tinyxml.cpp b/libs/tinyxml/tinyxml.cpp new file mode 100644 index 00000000..958a303e --- /dev/null +++ b/libs/tinyxml/tinyxml.cpp @@ -0,0 +1,1748 @@ +/* +www.sourceforge.net/projects/tinyxml +Original code (2.0 and earlier )copyright (c) 2000-2006 Lee Thomason (www.grinninglizard.com) + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any +damages arising from the use of this software. + +Permission is granted to anyone to use this software for any +purpose, including commercial applications, and to alter it and +redistribute it freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must +not claim that you wrote the original software. If you use this +software in a product, an acknowledgment in the product documentation +would be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and +must not be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source +distribution. +*/ + +#include + +#ifdef TIXML_USE_STL +#include +#include +#endif + +#include "tinyxml.h" + +FILE* TiXmlFOpen( const char* filename, const char* mode ); + +bool TiXmlBase::condenseWhiteSpace = true; + +// Microsoft compiler security +FILE* TiXmlFOpen( const char* filename, const char* mode ) +{ +#if defined(_MSC_VER) && (_MSC_VER >= 1400 ) + FILE* fp = 0; + errno_t err = fopen_s( &fp, filename, mode ); + if ( !err && fp ) + return fp; + return 0; +#else + return fopen( filename, mode ); +#endif +} + +void TiXmlBase::EncodeString( const TIXML_STRING& str, TIXML_STRING* outString ) +{ + int i=0; + + while( i<(int)str.length() ) { + unsigned char c = (unsigned char) str[i]; + + if ( c == '&' + && i < ( (int)str.length() - 2 ) + && str[i+1] == '#' + && str[i+2] == 'x' ) { + // Hexadecimal character reference. + // Pass through unchanged. + // © -- copyright symbol, for example. + // + // The -1 is a bug fix from Rob Laveaux. It keeps + // an overflow from happening if there is no ';'. + // There are actually 2 ways to exit this loop - + // while fails (error case) and break (semicolon found). + // However, there is no mechanism (currently) for + // this function to return an error. + while ( i<(int)str.length()-1 ) { + outString->append( str.c_str() + i, 1 ); + ++i; + if ( str[i] == ';' ) + break; + } + } else if ( c == '&' ) { + outString->append( entity[0].str, entity[0].strLength ); + ++i; + } else if ( c == '<' ) { + outString->append( entity[1].str, entity[1].strLength ); + ++i; + } else if ( c == '>' ) { + outString->append( entity[2].str, entity[2].strLength ); + ++i; + } else if ( c == '\"' ) { + outString->append( entity[3].str, entity[3].strLength ); + ++i; + } else if ( c == '\'' ) { + outString->append( entity[4].str, entity[4].strLength ); + ++i; + } else if ( c < 32 ) { + // Easy pass at non-alpha/numeric/symbol + // Below 32 is symbolic. + char buf[ 32 ]; + +#if defined(TIXML_SNPRINTF) + TIXML_SNPRINTF( buf, sizeof(buf), "&#x%02X;", (unsigned) ( c & 0xff ) ); +#else + sprintf( buf, "&#x%02X;", (unsigned) ( c & 0xff ) ); +#endif + + //*ME: warning C4267: convert 'size_t' to 'int' + //*ME: Int-Cast to make compiler happy ... + outString->append( buf, (int)strlen( buf ) ); + ++i; + } else { + //char realc = (char) c; + //outString->append( &realc, 1 ); + *outString += (char) c; // somewhat more efficient function call. + ++i; + } + } +} + + +TiXmlNode::TiXmlNode( NodeType _type ) : TiXmlBase() +{ + parent = 0; + type = _type; + firstChild = 0; + lastChild = 0; + prev = 0; + next = 0; +} + + +TiXmlNode::~TiXmlNode() +{ + TiXmlNode* node = firstChild; + TiXmlNode* temp = 0; + + while ( node ) { + temp = node; + node = node->next; + delete temp; + } +} + + +void TiXmlNode::CopyTo( TiXmlNode* target ) const +{ + target->SetValue (value.c_str() ); + target->userData = userData; + target->location = location; +} + + +void TiXmlNode::Clear() +{ + TiXmlNode* node = firstChild; + TiXmlNode* temp = 0; + + while ( node ) { + temp = node; + node = node->next; + delete temp; + } + + firstChild = 0; + lastChild = 0; +} + + +TiXmlNode* TiXmlNode::LinkEndChild( TiXmlNode* node ) +{ + assert( node->parent == 0 || node->parent == this ); + assert( node->GetDocument() == 0 || node->GetDocument() == this->GetDocument() ); + + if ( node->Type() == TiXmlNode::TINYXML_DOCUMENT ) { + delete node; + if ( GetDocument() ) GetDocument()->SetError( TIXML_ERROR_DOCUMENT_TOP_ONLY, 0, 0, TIXML_ENCODING_UNKNOWN ); + return 0; + } + + node->parent = this; + + node->prev = lastChild; + node->next = 0; + + if ( lastChild ) + lastChild->next = node; + else + firstChild = node; // it was an empty list. + + lastChild = node; + return node; +} + + +TiXmlNode* TiXmlNode::InsertEndChild( const TiXmlNode& addThis ) +{ + if ( addThis.Type() == TiXmlNode::TINYXML_DOCUMENT ) { + if ( GetDocument() ) GetDocument()->SetError( TIXML_ERROR_DOCUMENT_TOP_ONLY, 0, 0, TIXML_ENCODING_UNKNOWN ); + return 0; + } + TiXmlNode* node = addThis.Clone(); + if ( !node ) + return 0; + + return LinkEndChild( node ); +} + + +TiXmlNode* TiXmlNode::InsertBeforeChild( TiXmlNode* beforeThis, const TiXmlNode& addThis ) +{ + if ( !beforeThis || beforeThis->parent != this ) { + return 0; + } + if ( addThis.Type() == TiXmlNode::TINYXML_DOCUMENT ) { + if ( GetDocument() ) GetDocument()->SetError( TIXML_ERROR_DOCUMENT_TOP_ONLY, 0, 0, TIXML_ENCODING_UNKNOWN ); + return 0; + } + + TiXmlNode* node = addThis.Clone(); + if ( !node ) + return 0; + node->parent = this; + + node->next = beforeThis; + node->prev = beforeThis->prev; + if ( beforeThis->prev ) { + beforeThis->prev->next = node; + } else { + assert( firstChild == beforeThis ); + firstChild = node; + } + beforeThis->prev = node; + return node; +} + + +TiXmlNode* TiXmlNode::InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis ) +{ + if ( !afterThis || afterThis->parent != this ) { + return 0; + } + if ( addThis.Type() == TiXmlNode::TINYXML_DOCUMENT ) { + if ( GetDocument() ) GetDocument()->SetError( TIXML_ERROR_DOCUMENT_TOP_ONLY, 0, 0, TIXML_ENCODING_UNKNOWN ); + return 0; + } + + TiXmlNode* node = addThis.Clone(); + if ( !node ) + return 0; + node->parent = this; + + node->prev = afterThis; + node->next = afterThis->next; + if ( afterThis->next ) { + afterThis->next->prev = node; + } else { + assert( lastChild == afterThis ); + lastChild = node; + } + afterThis->next = node; + return node; +} + + +TiXmlNode* TiXmlNode::ReplaceChild( TiXmlNode* replaceThis, const TiXmlNode& withThis ) +{ + if ( !replaceThis ) + return 0; + + if ( replaceThis->parent != this ) + return 0; + + if ( withThis.ToDocument() ) { + // A document can never be a child. Thanks to Noam. + TiXmlDocument* document = GetDocument(); + if ( document ) + document->SetError( TIXML_ERROR_DOCUMENT_TOP_ONLY, 0, 0, TIXML_ENCODING_UNKNOWN ); + return 0; + } + + TiXmlNode* node = withThis.Clone(); + if ( !node ) + return 0; + + node->next = replaceThis->next; + node->prev = replaceThis->prev; + + if ( replaceThis->next ) + replaceThis->next->prev = node; + else + lastChild = node; + + if ( replaceThis->prev ) + replaceThis->prev->next = node; + else + firstChild = node; + + delete replaceThis; + node->parent = this; + return node; +} + + +bool TiXmlNode::RemoveChild( TiXmlNode* removeThis ) +{ + if ( !removeThis ) { + return false; + } + + if ( removeThis->parent != this ) { + assert( 0 ); + return false; + } + + if ( removeThis->next ) + removeThis->next->prev = removeThis->prev; + else + lastChild = removeThis->prev; + + if ( removeThis->prev ) + removeThis->prev->next = removeThis->next; + else + firstChild = removeThis->next; + + delete removeThis; + return true; +} + +const TiXmlNode* TiXmlNode::FirstChild( const char * _value ) const +{ + const TiXmlNode* node; + for ( node = firstChild; node; node = node->next ) { + if ( strcmp( node->Value(), _value ) == 0 ) + return node; + } + return 0; +} + + +const TiXmlNode* TiXmlNode::LastChild( const char * _value ) const +{ + const TiXmlNode* node; + for ( node = lastChild; node; node = node->prev ) { + if ( strcmp( node->Value(), _value ) == 0 ) + return node; + } + return 0; +} + + +const TiXmlNode* TiXmlNode::IterateChildren( const TiXmlNode* previous ) const +{ + if ( !previous ) { + return FirstChild(); + } else { + assert( previous->parent == this ); + return previous->NextSibling(); + } +} + + +const TiXmlNode* TiXmlNode::IterateChildren( const char * val, const TiXmlNode* previous ) const +{ + if ( !previous ) { + return FirstChild( val ); + } else { + assert( previous->parent == this ); + return previous->NextSibling( val ); + } +} + + +const TiXmlNode* TiXmlNode::NextSibling( const char * _value ) const +{ + const TiXmlNode* node; + for ( node = next; node; node = node->next ) { + if ( strcmp( node->Value(), _value ) == 0 ) + return node; + } + return 0; +} + + +const TiXmlNode* TiXmlNode::PreviousSibling( const char * _value ) const +{ + const TiXmlNode* node; + for ( node = prev; node; node = node->prev ) { + if ( strcmp( node->Value(), _value ) == 0 ) + return node; + } + return 0; +} + + +void TiXmlElement::RemoveAttribute( const char * name ) +{ +#ifdef TIXML_USE_STL + TIXML_STRING str( name ); + TiXmlAttribute* node = attributeSet.Find( str ); +#else + TiXmlAttribute* node = attributeSet.Find( name ); +#endif + if ( node ) { + attributeSet.Remove( node ); + delete node; + } +} + +const TiXmlElement* TiXmlNode::FirstChildElement() const +{ + const TiXmlNode* node; + + for ( node = FirstChild(); + node; + node = node->NextSibling() ) { + if ( node->ToElement() ) + return node->ToElement(); + } + return 0; +} + + +const TiXmlElement* TiXmlNode::FirstChildElement( const char * _value ) const +{ + const TiXmlNode* node; + + for ( node = FirstChild( _value ); + node; + node = node->NextSibling( _value ) ) { + if ( node->ToElement() ) + return node->ToElement(); + } + return 0; +} + + +const TiXmlElement* TiXmlNode::NextSiblingElement() const +{ + const TiXmlNode* node; + + for ( node = NextSibling(); + node; + node = node->NextSibling() ) { + if ( node->ToElement() ) + return node->ToElement(); + } + return 0; +} + + +const TiXmlElement* TiXmlNode::NextSiblingElement( const char * _value ) const +{ + const TiXmlNode* node; + + for ( node = NextSibling( _value ); + node; + node = node->NextSibling( _value ) ) { + if ( node->ToElement() ) + return node->ToElement(); + } + return 0; +} + + +const TiXmlDocument* TiXmlNode::GetDocument() const +{ + const TiXmlNode* node; + + for( node = this; node; node = node->parent ) { + if ( node->ToDocument() ) + return node->ToDocument(); + } + return 0; +} + + +TiXmlElement::TiXmlElement (const char * _value) + : TiXmlNode( TiXmlNode::TINYXML_ELEMENT ) +{ + firstChild = lastChild = 0; + value = _value; +} + + +#ifdef TIXML_USE_STL +TiXmlElement::TiXmlElement( const std::string& _value ) + : TiXmlNode( TiXmlNode::TINYXML_ELEMENT ) +{ + firstChild = lastChild = 0; + value = _value; +} +#endif + + +TiXmlElement::TiXmlElement( const TiXmlElement& copy) + : TiXmlNode( TiXmlNode::TINYXML_ELEMENT ) +{ + firstChild = lastChild = 0; + copy.CopyTo( this ); +} + + +void TiXmlElement::operator=( const TiXmlElement& base ) +{ + ClearThis(); + base.CopyTo( this ); +} + + +TiXmlElement::~TiXmlElement() +{ + ClearThis(); +} + + +void TiXmlElement::ClearThis() +{ + Clear(); + while( attributeSet.First() ) { + TiXmlAttribute* node = attributeSet.First(); + attributeSet.Remove( node ); + delete node; + } +} + + +const char* TiXmlElement::Attribute( const char* name ) const +{ + const TiXmlAttribute* node = attributeSet.Find( name ); + if ( node ) + return node->Value(); + return 0; +} + + +#ifdef TIXML_USE_STL +const std::string* TiXmlElement::Attribute( const std::string& name ) const +{ + const TiXmlAttribute* attrib = attributeSet.Find( name ); + if ( attrib ) + return &attrib->ValueStr(); + return 0; +} +#endif + + +const char* TiXmlElement::Attribute( const char* name, int* i ) const +{ + const TiXmlAttribute* attrib = attributeSet.Find( name ); + const char* result = 0; + + if ( attrib ) { + result = attrib->Value(); + if ( i ) { + attrib->QueryIntValue( i ); + } + } + return result; +} + + +#ifdef TIXML_USE_STL +const std::string* TiXmlElement::Attribute( const std::string& name, int* i ) const +{ + const TiXmlAttribute* attrib = attributeSet.Find( name ); + const std::string* result = 0; + + if ( attrib ) { + result = &attrib->ValueStr(); + if ( i ) { + attrib->QueryIntValue( i ); + } + } + return result; +} +#endif + + +const char* TiXmlElement::Attribute( const char* name, double* d ) const +{ + const TiXmlAttribute* attrib = attributeSet.Find( name ); + const char* result = 0; + + if ( attrib ) { + result = attrib->Value(); + if ( d ) { + attrib->QueryDoubleValue( d ); + } + } + return result; +} + + +#ifdef TIXML_USE_STL +const std::string* TiXmlElement::Attribute( const std::string& name, double* d ) const +{ + const TiXmlAttribute* attrib = attributeSet.Find( name ); + const std::string* result = 0; + + if ( attrib ) { + result = &attrib->ValueStr(); + if ( d ) { + attrib->QueryDoubleValue( d ); + } + } + return result; +} +#endif + + +int TiXmlElement::QueryIntAttribute( const char* name, int* ival ) const +{ + const TiXmlAttribute* attrib = attributeSet.Find( name ); + if ( !attrib ) + return TIXML_NO_ATTRIBUTE; + return attrib->QueryIntValue( ival ); +} + + +#ifdef TIXML_USE_STL +int TiXmlElement::QueryIntAttribute( const std::string& name, int* ival ) const +{ + const TiXmlAttribute* attrib = attributeSet.Find( name ); + if ( !attrib ) + return TIXML_NO_ATTRIBUTE; + return attrib->QueryIntValue( ival ); +} +#endif + + +int TiXmlElement::QueryDoubleAttribute( const char* name, double* dval ) const +{ + const TiXmlAttribute* attrib = attributeSet.Find( name ); + if ( !attrib ) + return TIXML_NO_ATTRIBUTE; + return attrib->QueryDoubleValue( dval ); +} + + +#ifdef TIXML_USE_STL +int TiXmlElement::QueryDoubleAttribute( const std::string& name, double* dval ) const +{ + const TiXmlAttribute* attrib = attributeSet.Find( name ); + if ( !attrib ) + return TIXML_NO_ATTRIBUTE; + return attrib->QueryDoubleValue( dval ); +} +#endif + + +void TiXmlElement::SetAttribute( const char * name, int val ) +{ + TiXmlAttribute* attrib = attributeSet.FindOrCreate( name ); + if ( attrib ) { + attrib->SetIntValue( val ); + } +} + + +#ifdef TIXML_USE_STL +void TiXmlElement::SetAttribute( const std::string& name, int val ) +{ + TiXmlAttribute* attrib = attributeSet.FindOrCreate( name ); + if ( attrib ) { + attrib->SetIntValue( val ); + } +} +#endif + + +void TiXmlElement::SetDoubleAttribute( const char * name, double val ) +{ + TiXmlAttribute* attrib = attributeSet.FindOrCreate( name ); + if ( attrib ) { + attrib->SetDoubleValue( val ); + } +} + + +#ifdef TIXML_USE_STL +void TiXmlElement::SetDoubleAttribute( const std::string& name, double val ) +{ + TiXmlAttribute* attrib = attributeSet.FindOrCreate( name ); + if ( attrib ) { + attrib->SetDoubleValue( val ); + } +} +#endif + + +void TiXmlElement::SetAttribute( const char * cname, const char * cvalue ) +{ + TiXmlAttribute* attrib = attributeSet.FindOrCreate( cname ); + if ( attrib ) { + attrib->SetValue( cvalue ); + } +} + + +#ifdef TIXML_USE_STL +void TiXmlElement::SetAttribute( const std::string& _name, const std::string& _value ) +{ + TiXmlAttribute* attrib = attributeSet.FindOrCreate( _name ); + if ( attrib ) { + attrib->SetValue( _value ); + } +} +#endif + + +void TiXmlElement::Print( FILE* cfile, int depth ) const +{ + int i; + assert( cfile ); + for ( i=0; iNext() ) { + fprintf( cfile, " " ); + attrib->Print( cfile, depth ); + } + + // There are 3 different formatting approaches: + // 1) An element without children is printed as a node + // 2) An element with only a text child is printed as text + // 3) An element with children is printed on multiple lines. + TiXmlNode* node; + if ( !firstChild ) { + fprintf( cfile, " />" ); + } else if ( firstChild == lastChild && firstChild->ToText() ) { + fprintf( cfile, ">" ); + firstChild->Print( cfile, depth + 1 ); + fprintf( cfile, "", value.c_str() ); + } else { + fprintf( cfile, ">" ); + + for ( node = firstChild; node; node=node->NextSibling() ) { + if ( !node->ToText() ) { + fprintf( cfile, "\n" ); + } + node->Print( cfile, depth+1 ); + } + fprintf( cfile, "\n" ); + for( i=0; i", value.c_str() ); + } +} + + +void TiXmlElement::CopyTo( TiXmlElement* target ) const +{ + // superclass: + TiXmlNode::CopyTo( target ); + + // Element class: + // Clone the attributes, then clone the children. + const TiXmlAttribute* attribute = 0; + for( attribute = attributeSet.First(); + attribute; + attribute = attribute->Next() ) { + target->SetAttribute( attribute->Name(), attribute->Value() ); + } + + TiXmlNode* node = 0; + for ( node = firstChild; node; node = node->NextSibling() ) { + target->LinkEndChild( node->Clone() ); + } +} + +bool TiXmlElement::Accept( TiXmlVisitor* visitor ) const +{ + if ( visitor->VisitEnter( *this, attributeSet.First() ) ) { + for ( const TiXmlNode* node=FirstChild(); node; node=node->NextSibling() ) { + if ( !node->Accept( visitor ) ) + break; + } + } + return visitor->VisitExit( *this ); +} + + +TiXmlNode* TiXmlElement::Clone() const +{ + TiXmlElement* clone = new TiXmlElement( Value() ); + if ( !clone ) + return 0; + + CopyTo( clone ); + return clone; +} + + +const char* TiXmlElement::GetText() const +{ + const TiXmlNode* child = this->FirstChild(); + if ( child ) { + const TiXmlText* childText = child->ToText(); + if ( childText ) { + return childText->Value(); + } + } + return 0; +} + + +TiXmlDocument::TiXmlDocument() : TiXmlNode( TiXmlNode::TINYXML_DOCUMENT ) +{ + tabsize = 4; + useMicrosoftBOM = false; + ClearError(); +} + +TiXmlDocument::TiXmlDocument( const char * documentName ) : TiXmlNode( TiXmlNode::TINYXML_DOCUMENT ) +{ + tabsize = 4; + useMicrosoftBOM = false; + value = documentName; + ClearError(); +} + + +#ifdef TIXML_USE_STL +TiXmlDocument::TiXmlDocument( const std::string& documentName ) : TiXmlNode( TiXmlNode::TINYXML_DOCUMENT ) +{ + tabsize = 4; + useMicrosoftBOM = false; + value = documentName; + ClearError(); +} +#endif + + +TiXmlDocument::TiXmlDocument( const TiXmlDocument& copy ) : TiXmlNode( TiXmlNode::TINYXML_DOCUMENT ) +{ + copy.CopyTo( this ); +} + + +void TiXmlDocument::operator=( const TiXmlDocument& copy ) +{ + Clear(); + copy.CopyTo( this ); +} + + +bool TiXmlDocument::LoadFile( TiXmlEncoding encoding ) +{ + return LoadFile( Value(), encoding ); +} + + +bool TiXmlDocument::SaveFile() const +{ + return SaveFile( Value() ); +} + +bool TiXmlDocument::LoadFile( const char* _filename, TiXmlEncoding encoding ) +{ + TIXML_STRING filename( _filename ); + value = filename; + + // reading in binary mode so that tinyxml can normalize the EOL + FILE* file = TiXmlFOpen( value.c_str (), "rb" ); + + if ( file ) { + bool result = LoadFile( file, encoding ); + fclose( file ); + return result; + } else { + SetError( TIXML_ERROR_OPENING_FILE, 0, 0, TIXML_ENCODING_UNKNOWN ); + return false; + } +} + +bool TiXmlDocument::LoadFile( FILE* file, TiXmlEncoding encoding ) +{ + if ( !file ) { + SetError( TIXML_ERROR_OPENING_FILE, 0, 0, TIXML_ENCODING_UNKNOWN ); + return false; + } + + // Delete the existing data: + Clear(); + location.Clear(); + + // Get the file size, so we can pre-allocate the string. HUGE speed impact. + long length = 0; + fseek( file, 0, SEEK_END ); + length = ftell( file ); + fseek( file, 0, SEEK_SET ); + + // Strange case, but good to handle up front. + if ( length <= 0 ) { + SetError( TIXML_ERROR_DOCUMENT_EMPTY, 0, 0, TIXML_ENCODING_UNKNOWN ); + return false; + } + + // Subtle bug here. TinyXml did use fgets. But from the XML spec: + // 2.11 End-of-Line Handling + // + // + // ...the XML processor MUST behave as if it normalized all line breaks in external + // parsed entities (including the document entity) on input, before parsing, by translating + // both the two-character sequence #xD #xA and any #xD that is not followed by #xA to + // a single #xA character. + // + // + // It is not clear fgets does that, and certainly isn't clear it works cross platform. + // Generally, you expect fgets to translate from the convention of the OS to the c/unix + // convention, and not work generally. + + /* + while( fgets( buf, sizeof(buf), file ) ) + { + data += buf; + } + */ + + char* buf = new char[ length+1 ]; + buf[0] = 0; + + if ( fread( buf, length, 1, file ) != 1 ) { + delete [] buf; + SetError( TIXML_ERROR_OPENING_FILE, 0, 0, TIXML_ENCODING_UNKNOWN ); + return false; + } + + // Process the buffer in place to normalize new lines. (See comment above.) + // Copies from the 'p' to 'q' pointer, where p can advance faster if + // a newline-carriage return is hit. + // + // Wikipedia: + // Systems based on ASCII or a compatible character set use either LF (Line feed, '\n', 0x0A, 10 in decimal) or + // CR (Carriage return, '\r', 0x0D, 13 in decimal) individually, or CR followed by LF (CR+LF, 0x0D 0x0A)... + // * LF: Multics, Unix and Unix-like systems (GNU/Linux, AIX, Xenix, Mac OS X, FreeBSD, etc.), BeOS, Amiga, RISC OS, and others + // * CR+LF: DEC RT-11 and most other early non-Unix, non-IBM OSes, CP/M, MP/M, DOS, OS/2, Microsoft Windows, Symbian OS + // * CR: Commodore 8-bit machines, Apple II family, Mac OS up to version 9 and OS-9 + + const char* p = buf; // the read head + char* q = buf; // the write head + const char CR = 0x0d; + const char LF = 0x0a; + + buf[length] = 0; + while( *p ) { + assert( p < (buf+length) ); + assert( q <= (buf+length) ); + assert( q <= p ); + + if ( *p == CR ) { + *q++ = LF; + p++; + if ( *p == LF ) { // check for CR+LF (and skip LF) + p++; + } + } else { + *q++ = *p++; + } + } + assert( q <= (buf+length) ); + *q = 0; + + Parse( buf, 0, encoding ); + + delete [] buf; + return !Error(); +} + + +bool TiXmlDocument::SaveFile( const char * filename ) const +{ + // The old c stuff lives on... + FILE* fp = TiXmlFOpen( filename, "w" ); + if ( fp ) { + bool result = SaveFile( fp ); + fclose( fp ); + return result; + } + return false; +} + + +bool TiXmlDocument::SaveFile( FILE* fp ) const +{ + if ( useMicrosoftBOM ) { + const unsigned char TIXML_UTF_LEAD_0 = 0xefU; + const unsigned char TIXML_UTF_LEAD_1 = 0xbbU; + const unsigned char TIXML_UTF_LEAD_2 = 0xbfU; + + fputc( TIXML_UTF_LEAD_0, fp ); + fputc( TIXML_UTF_LEAD_1, fp ); + fputc( TIXML_UTF_LEAD_2, fp ); + } + Print( fp, 0 ); + return (ferror(fp) == 0); +} + + +void TiXmlDocument::CopyTo( TiXmlDocument* target ) const +{ + TiXmlNode::CopyTo( target ); + + target->error = error; + target->errorId = errorId; + target->errorDesc = errorDesc; + target->tabsize = tabsize; + target->errorLocation = errorLocation; + target->useMicrosoftBOM = useMicrosoftBOM; + + TiXmlNode* node = 0; + for ( node = firstChild; node; node = node->NextSibling() ) { + target->LinkEndChild( node->Clone() ); + } +} + + +TiXmlNode* TiXmlDocument::Clone() const +{ + TiXmlDocument* clone = new TiXmlDocument(); + if ( !clone ) + return 0; + + CopyTo( clone ); + return clone; +} + + +void TiXmlDocument::Print( FILE* cfile, int depth ) const +{ + assert( cfile ); + for ( const TiXmlNode* node=FirstChild(); node; node=node->NextSibling() ) { + node->Print( cfile, depth ); + fprintf( cfile, "\n" ); + } +} + + +bool TiXmlDocument::Accept( TiXmlVisitor* visitor ) const +{ + if ( visitor->VisitEnter( *this ) ) { + for ( const TiXmlNode* node=FirstChild(); node; node=node->NextSibling() ) { + if ( !node->Accept( visitor ) ) + break; + } + } + return visitor->VisitExit( *this ); +} + + +const TiXmlAttribute* TiXmlAttribute::Next() const +{ + // We are using knowledge of the sentinel. The sentinel + // have a value or name. + if ( next->value.empty() && next->name.empty() ) + return 0; + return next; +} + +/* +TiXmlAttribute* TiXmlAttribute::Next() +{ + // We are using knowledge of the sentinel. The sentinel + // have a value or name. + if ( next->value.empty() && next->name.empty() ) + return 0; + return next; +} +*/ + +const TiXmlAttribute* TiXmlAttribute::Previous() const +{ + // We are using knowledge of the sentinel. The sentinel + // have a value or name. + if ( prev->value.empty() && prev->name.empty() ) + return 0; + return prev; +} + +/* +TiXmlAttribute* TiXmlAttribute::Previous() +{ + // We are using knowledge of the sentinel. The sentinel + // have a value or name. + if ( prev->value.empty() && prev->name.empty() ) + return 0; + return prev; +} +*/ + +void TiXmlAttribute::Print( FILE* cfile, int /*depth*/, TIXML_STRING* str ) const +{ + TIXML_STRING n, v; + + EncodeString( name, &n ); + EncodeString( value, &v ); + + if (value.find ('\"') == TIXML_STRING::npos) { + if ( cfile ) { + fprintf (cfile, "%s=\"%s\"", n.c_str(), v.c_str() ); + } + if ( str ) { + (*str) += n; + (*str) += "=\""; + (*str) += v; + (*str) += "\""; + } + } else { + if ( cfile ) { + fprintf (cfile, "%s='%s'", n.c_str(), v.c_str() ); + } + if ( str ) { + (*str) += n; + (*str) += "='"; + (*str) += v; + (*str) += "'"; + } + } +} + + +int TiXmlAttribute::QueryIntValue( int* ival ) const +{ + if ( TIXML_SSCANF( value.c_str(), "%d", ival ) == 1 ) + return TIXML_SUCCESS; + return TIXML_WRONG_TYPE; +} + +int TiXmlAttribute::QueryDoubleValue( double* dval ) const +{ + if ( TIXML_SSCANF( value.c_str(), "%lf", dval ) == 1 ) + return TIXML_SUCCESS; + return TIXML_WRONG_TYPE; +} + +void TiXmlAttribute::SetIntValue( int _value ) +{ + char buf [64]; +#if defined(TIXML_SNPRINTF) + TIXML_SNPRINTF(buf, sizeof(buf), "%d", _value); +#else + sprintf (buf, "%d", _value); +#endif + SetValue (buf); +} + +void TiXmlAttribute::SetDoubleValue( double _value ) +{ + char buf [256]; +#if defined(TIXML_SNPRINTF) + TIXML_SNPRINTF( buf, sizeof(buf), "%g", _value); +#else + sprintf (buf, "%g", _value); +#endif + SetValue (buf); +} + +int TiXmlAttribute::IntValue() const +{ + return atoi (value.c_str ()); +} + +double TiXmlAttribute::DoubleValue() const +{ + return atof (value.c_str ()); +} + + +TiXmlComment::TiXmlComment( const TiXmlComment& copy ) : TiXmlNode( TiXmlNode::TINYXML_COMMENT ) +{ + copy.CopyTo( this ); +} + + +void TiXmlComment::operator=( const TiXmlComment& base ) +{ + Clear(); + base.CopyTo( this ); +} + + +void TiXmlComment::Print( FILE* cfile, int depth ) const +{ + assert( cfile ); + for ( int i=0; i", value.c_str() ); +} + + +void TiXmlComment::CopyTo( TiXmlComment* target ) const +{ + TiXmlNode::CopyTo( target ); +} + + +bool TiXmlComment::Accept( TiXmlVisitor* visitor ) const +{ + return visitor->Visit( *this ); +} + + +TiXmlNode* TiXmlComment::Clone() const +{ + TiXmlComment* clone = new TiXmlComment(); + + if ( !clone ) + return 0; + + CopyTo( clone ); + return clone; +} + + +void TiXmlText::Print( FILE* cfile, int depth ) const +{ + assert( cfile ); + if ( cdata ) { + int i; + fprintf( cfile, "\n" ); + for ( i=0; i\n", value.c_str() ); // unformatted output + } else { + TIXML_STRING buffer; + EncodeString( value, &buffer ); + fprintf( cfile, "%s", buffer.c_str() ); + } +} + + +void TiXmlText::CopyTo( TiXmlText* target ) const +{ + TiXmlNode::CopyTo( target ); + target->cdata = cdata; +} + + +bool TiXmlText::Accept( TiXmlVisitor* visitor ) const +{ + return visitor->Visit( *this ); +} + + +TiXmlNode* TiXmlText::Clone() const +{ + TiXmlText* clone = 0; + clone = new TiXmlText( "" ); + + if ( !clone ) + return 0; + + CopyTo( clone ); + return clone; +} + + +TiXmlDeclaration::TiXmlDeclaration( const char * _version, + const char * _encoding, + const char * _standalone ) + : TiXmlNode( TiXmlNode::TINYXML_DECLARATION ) +{ + version = _version; + encoding = _encoding; + standalone = _standalone; +} + + +#ifdef TIXML_USE_STL +TiXmlDeclaration::TiXmlDeclaration( const std::string& _version, + const std::string& _encoding, + const std::string& _standalone ) + : TiXmlNode( TiXmlNode::TINYXML_DECLARATION ) +{ + version = _version; + encoding = _encoding; + standalone = _standalone; +} +#endif + + +TiXmlDeclaration::TiXmlDeclaration( const TiXmlDeclaration& copy ) + : TiXmlNode( TiXmlNode::TINYXML_DECLARATION ) +{ + copy.CopyTo( this ); +} + + +void TiXmlDeclaration::operator=( const TiXmlDeclaration& copy ) +{ + Clear(); + copy.CopyTo( this ); +} + + +void TiXmlDeclaration::Print( FILE* cfile, int /*depth*/, TIXML_STRING* str ) const +{ + if ( cfile ) fprintf( cfile, "" ); + if ( str ) (*str) += "?>"; +} + + +void TiXmlDeclaration::CopyTo( TiXmlDeclaration* target ) const +{ + TiXmlNode::CopyTo( target ); + + target->version = version; + target->encoding = encoding; + target->standalone = standalone; +} + + +bool TiXmlDeclaration::Accept( TiXmlVisitor* visitor ) const +{ + return visitor->Visit( *this ); +} + + +TiXmlNode* TiXmlDeclaration::Clone() const +{ + TiXmlDeclaration* clone = new TiXmlDeclaration(); + + if ( !clone ) + return 0; + + CopyTo( clone ); + return clone; +} + + +void TiXmlUnknown::Print( FILE* cfile, int depth ) const +{ + for ( int i=0; i", value.c_str() ); +} + + +void TiXmlUnknown::CopyTo( TiXmlUnknown* target ) const +{ + TiXmlNode::CopyTo( target ); +} + + +bool TiXmlUnknown::Accept( TiXmlVisitor* visitor ) const +{ + return visitor->Visit( *this ); +} + + +TiXmlNode* TiXmlUnknown::Clone() const +{ + TiXmlUnknown* clone = new TiXmlUnknown(); + + if ( !clone ) + return 0; + + CopyTo( clone ); + return clone; +} + + +TiXmlAttributeSet::TiXmlAttributeSet() +{ + sentinel.next = &sentinel; + sentinel.prev = &sentinel; +} + + +TiXmlAttributeSet::~TiXmlAttributeSet() +{ + assert( sentinel.next == &sentinel ); + assert( sentinel.prev == &sentinel ); +} + + +void TiXmlAttributeSet::Add( TiXmlAttribute* addMe ) +{ +#ifdef TIXML_USE_STL + assert( !Find( TIXML_STRING( addMe->Name() ) ) ); // Shouldn't be multiply adding to the set. +#else + assert( !Find( addMe->Name() ) ); // Shouldn't be multiply adding to the set. +#endif + + addMe->next = &sentinel; + addMe->prev = sentinel.prev; + + sentinel.prev->next = addMe; + sentinel.prev = addMe; +} + +void TiXmlAttributeSet::Remove( TiXmlAttribute* removeMe ) +{ + TiXmlAttribute* node; + + for( node = sentinel.next; node != &sentinel; node = node->next ) { + if ( node == removeMe ) { + node->prev->next = node->next; + node->next->prev = node->prev; + node->next = 0; + node->prev = 0; + return; + } + } + assert( 0 ); // we tried to remove a non-linked attribute. +} + + +#ifdef TIXML_USE_STL +TiXmlAttribute* TiXmlAttributeSet::Find( const std::string& name ) const +{ + for( TiXmlAttribute* node = sentinel.next; node != &sentinel; node = node->next ) { + if ( node->name == name ) + return node; + } + return 0; +} + +TiXmlAttribute* TiXmlAttributeSet::FindOrCreate( const std::string& _name ) +{ + TiXmlAttribute* attrib = Find( _name ); + if ( !attrib ) { + attrib = new TiXmlAttribute(); + Add( attrib ); + attrib->SetName( _name ); + } + return attrib; +} +#endif + + +TiXmlAttribute* TiXmlAttributeSet::Find( const char* name ) const +{ + for( TiXmlAttribute* node = sentinel.next; node != &sentinel; node = node->next ) { + if ( strcmp( node->name.c_str(), name ) == 0 ) + return node; + } + return 0; +} + + +TiXmlAttribute* TiXmlAttributeSet::FindOrCreate( const char* _name ) +{ + TiXmlAttribute* attrib = Find( _name ); + if ( !attrib ) { + attrib = new TiXmlAttribute(); + Add( attrib ); + attrib->SetName( _name ); + } + return attrib; +} + + +#ifdef TIXML_USE_STL +std::istream& operator>> (std::istream & in, TiXmlNode & base) +{ + TIXML_STRING tag; + tag.reserve( 8 * 1000 ); + base.StreamIn( &in, &tag ); + + base.Parse( tag.c_str(), 0, TIXML_DEFAULT_ENCODING ); + return in; +} +#endif + + +#ifdef TIXML_USE_STL +std::ostream& operator<< (std::ostream & out, const TiXmlNode & base) +{ + TiXmlPrinter printer; + printer.SetStreamPrinting(); + base.Accept( &printer ); + out << printer.Str(); + + return out; +} + + +std::string& operator<< (std::string& out, const TiXmlNode& base ) +{ + TiXmlPrinter printer; + printer.SetStreamPrinting(); + base.Accept( &printer ); + out.append( printer.Str() ); + + return out; +} +#endif + + +TiXmlHandle TiXmlHandle::FirstChild() const +{ + if ( node ) { + TiXmlNode* child = node->FirstChild(); + if ( child ) + return TiXmlHandle( child ); + } + return TiXmlHandle( 0 ); +} + + +TiXmlHandle TiXmlHandle::FirstChild( const char * value ) const +{ + if ( node ) { + TiXmlNode* child = node->FirstChild( value ); + if ( child ) + return TiXmlHandle( child ); + } + return TiXmlHandle( 0 ); +} + + +TiXmlHandle TiXmlHandle::FirstChildElement() const +{ + if ( node ) { + TiXmlElement* child = node->FirstChildElement(); + if ( child ) + return TiXmlHandle( child ); + } + return TiXmlHandle( 0 ); +} + + +TiXmlHandle TiXmlHandle::FirstChildElement( const char * value ) const +{ + if ( node ) { + TiXmlElement* child = node->FirstChildElement( value ); + if ( child ) + return TiXmlHandle( child ); + } + return TiXmlHandle( 0 ); +} + + +TiXmlHandle TiXmlHandle::Child( int count ) const +{ + if ( node ) { + int i; + TiXmlNode* child = node->FirstChild(); + for ( i=0; + child && iNextSibling(), ++i ) { + // nothing + } + if ( child ) + return TiXmlHandle( child ); + } + return TiXmlHandle( 0 ); +} + + +TiXmlHandle TiXmlHandle::Child( const char* value, int count ) const +{ + if ( node ) { + int i; + TiXmlNode* child = node->FirstChild( value ); + for ( i=0; + child && iNextSibling( value ), ++i ) { + // nothing + } + if ( child ) + return TiXmlHandle( child ); + } + return TiXmlHandle( 0 ); +} + + +TiXmlHandle TiXmlHandle::ChildElement( int count ) const +{ + if ( node ) { + int i; + TiXmlElement* child = node->FirstChildElement(); + for ( i=0; + child && iNextSiblingElement(), ++i ) { + // nothing + } + if ( child ) + return TiXmlHandle( child ); + } + return TiXmlHandle( 0 ); +} + + +TiXmlHandle TiXmlHandle::ChildElement( const char* value, int count ) const +{ + if ( node ) { + int i; + TiXmlElement* child = node->FirstChildElement( value ); + for ( i=0; + child && iNextSiblingElement( value ), ++i ) { + // nothing + } + if ( child ) + return TiXmlHandle( child ); + } + return TiXmlHandle( 0 ); +} + + +bool TiXmlPrinter::VisitEnter( const TiXmlDocument& ) +{ + return true; +} + +bool TiXmlPrinter::VisitExit( const TiXmlDocument& ) +{ + return true; +} + +bool TiXmlPrinter::VisitEnter( const TiXmlElement& element, const TiXmlAttribute* firstAttribute ) +{ + DoIndent(); + buffer += "<"; + buffer += element.Value(); + + for( const TiXmlAttribute* attrib = firstAttribute; attrib; attrib = attrib->Next() ) { + buffer += " "; + attrib->Print( 0, 0, &buffer ); + } + + if ( !element.FirstChild() ) { + buffer += " />"; + DoLineBreak(); + } else { + buffer += ">"; + if ( element.FirstChild()->ToText() + && element.LastChild() == element.FirstChild() + && element.FirstChild()->ToText()->CDATA() == false ) { + simpleTextPrint = true; + // no DoLineBreak()! + } else { + DoLineBreak(); + } + } + ++depth; + return true; +} + + +bool TiXmlPrinter::VisitExit( const TiXmlElement& element ) +{ + --depth; + if ( !element.FirstChild() ) { + // nothing. + } else { + if ( simpleTextPrint ) { + simpleTextPrint = false; + } else { + DoIndent(); + } + buffer += ""; + DoLineBreak(); + } + return true; +} + + +bool TiXmlPrinter::Visit( const TiXmlText& text ) +{ + if ( text.CDATA() ) { + DoIndent(); + buffer += ""; + DoLineBreak(); + } else if ( simpleTextPrint ) { + TIXML_STRING str; + TiXmlBase::EncodeString( text.ValueTStr(), &str ); + buffer += str; + } else { + DoIndent(); + TIXML_STRING str; + TiXmlBase::EncodeString( text.ValueTStr(), &str ); + buffer += str; + DoLineBreak(); + } + return true; +} + + +bool TiXmlPrinter::Visit( const TiXmlDeclaration& declaration ) +{ + DoIndent(); + declaration.Print( 0, 0, &buffer ); + DoLineBreak(); + return true; +} + + +bool TiXmlPrinter::Visit( const TiXmlComment& comment ) +{ + DoIndent(); + buffer += ""; + DoLineBreak(); + return true; +} + + +bool TiXmlPrinter::Visit( const TiXmlUnknown& unknown ) +{ + DoIndent(); + buffer += "<"; + buffer += unknown.Value(); + buffer += ">"; + DoLineBreak(); + return true; +} + + diff --git a/libs/tinyxml/tinyxml.h b/libs/tinyxml/tinyxml.h new file mode 100644 index 00000000..1e316dd8 --- /dev/null +++ b/libs/tinyxml/tinyxml.h @@ -0,0 +1,2040 @@ +/* +www.sourceforge.net/projects/tinyxml +Original code (2.0 and earlier )copyright (c) 2000-2006 Lee Thomason (www.grinninglizard.com) + +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any +damages arising from the use of this software. + +Permission is granted to anyone to use this software for any +purpose, including commercial applications, and to alter it and +redistribute it freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must +not claim that you wrote the original software. If you use this +software in a product, an acknowledgment in the product documentation +would be appreciated but is not required. + +2. Altered source versions must be plainly marked as such, and +must not be misrepresented as being the original software. + +3. This notice may not be removed or altered from any source +distribution. +*/ + + +#ifndef TINYXML_INCLUDED +#define TINYXML_INCLUDED + +#ifdef _MSC_VER +#pragma warning( push ) +#pragma warning( disable : 4530 ) +#pragma warning( disable : 4786 ) +#endif + +#include +#include +#include +#include +#include + +// Help out windows: +#if defined( _DEBUG ) && !defined( DEBUG ) +#define DEBUG +#endif + +#ifdef TIXML_USE_STL +#include +#include +#include +#define TIXML_STRING std::string +#else +#include "tinystr.h" +#define TIXML_STRING TiXmlString +#endif + +// Deprecated library function hell. Compilers want to use the +// new safe versions. This probably doesn't fully address the problem, +// but it gets closer. There are too many compilers for me to fully +// test. If you get compilation troubles, undefine TIXML_SAFE +#define TIXML_SAFE + +#ifdef TIXML_SAFE +#if defined(_MSC_VER) && (_MSC_VER >= 1400 ) +// Microsoft visual studio, version 2005 and higher. +#define TIXML_SNPRINTF _snprintf_s +#define TIXML_SSCANF sscanf_s +#elif defined(_MSC_VER) && (_MSC_VER >= 1200 ) +// Microsoft visual studio, version 6 and higher. +//#pragma message( "Using _sn* functions." ) +#define TIXML_SNPRINTF _snprintf +#define TIXML_SSCANF sscanf +#elif defined(__GNUC__) && (__GNUC__ >= 3 ) +// GCC version 3 and higher.s +//#warning( "Using sn* functions." ) +#define TIXML_SNPRINTF snprintf +#define TIXML_SSCANF sscanf +#else +#define TIXML_SNPRINTF snprintf +#define TIXML_SSCANF sscanf +#endif +#endif + +class TiXmlDocument; +class TiXmlElement; +class TiXmlComment; +class TiXmlUnknown; +class TiXmlAttribute; +class TiXmlText; +class TiXmlDeclaration; +class TiXmlParsingData; + +const int TIXML_MAJOR_VERSION = 2; +const int TIXML_MINOR_VERSION = 6; +const int TIXML_PATCH_VERSION = 1; + +/* Internal structure for tracking location of items + in the XML file. +*/ +struct TiXmlCursor { + TiXmlCursor() { + Clear(); + } + void Clear() { + row = col = -1; + } + + int row; // 0 based. + int col; // 0 based. +}; + + +/** + Implements the interface to the "Visitor pattern" (see the Accept() method.) + If you call the Accept() method, it requires being passed a TiXmlVisitor + class to handle callbacks. For nodes that contain other nodes (Document, Element) + you will get called with a VisitEnter/VisitExit pair. Nodes that are always leaves + are simply called with Visit(). + + If you return 'true' from a Visit method, recursive parsing will continue. If you return + false, no children of this node or its sibilings will be Visited. + + All flavors of Visit methods have a default implementation that returns 'true' (continue + visiting). You need to only override methods that are interesting to you. + + Generally Accept() is called on the TiXmlDocument, although all nodes suppert Visiting. + + You should never change the document from a callback. + + @sa TiXmlNode::Accept() +*/ +class TiXmlVisitor +{ +public: + virtual ~TiXmlVisitor() {} + + /// Visit a document. + virtual bool VisitEnter( const TiXmlDocument& /*doc*/ ) { + return true; + } + /// Visit a document. + virtual bool VisitExit( const TiXmlDocument& /*doc*/ ) { + return true; + } + + /// Visit an element. + virtual bool VisitEnter( const TiXmlElement& /*element*/, const TiXmlAttribute* /*firstAttribute*/ ) { + return true; + } + /// Visit an element. + virtual bool VisitExit( const TiXmlElement& /*element*/ ) { + return true; + } + + /// Visit a declaration + virtual bool Visit( const TiXmlDeclaration& /*declaration*/ ) { + return true; + } + /// Visit a text node + virtual bool Visit( const TiXmlText& /*text*/ ) { + return true; + } + /// Visit a comment node + virtual bool Visit( const TiXmlComment& /*comment*/ ) { + return true; + } + /// Visit an unknow node + virtual bool Visit( const TiXmlUnknown& /*unknown*/ ) { + return true; + } +}; + +// Only used by Attribute::Query functions +enum { + TIXML_SUCCESS, + TIXML_NO_ATTRIBUTE, + TIXML_WRONG_TYPE +}; + + +// Used by the parsing routines. +enum TiXmlEncoding { + TIXML_ENCODING_UNKNOWN, + TIXML_ENCODING_UTF8, + TIXML_ENCODING_LEGACY +}; + +const TiXmlEncoding TIXML_DEFAULT_ENCODING = TIXML_ENCODING_UNKNOWN; + +/** TiXmlBase is a base class for every class in TinyXml. + It does little except to establish that TinyXml classes + can be printed and provide some utility functions. + + In XML, the document and elements can contain + other elements and other types of nodes. + + @verbatim + A Document can contain: Element (container or leaf) + Comment (leaf) + Unknown (leaf) + Declaration( leaf ) + + An Element can contain: Element (container or leaf) + Text (leaf) + Attributes (not on tree) + Comment (leaf) + Unknown (leaf) + + A Decleration contains: Attributes (not on tree) + @endverbatim +*/ +class TiXmlBase +{ + friend class TiXmlNode; + friend class TiXmlElement; + friend class TiXmlDocument; + +public: + TiXmlBase() : userData(0) {} + virtual ~TiXmlBase() {} + + /** All TinyXml classes can print themselves to a filestream + or the string class (TiXmlString in non-STL mode, std::string + in STL mode.) Either or both cfile and str can be null. + + This is a formatted print, and will insert + tabs and newlines. + + (For an unformatted stream, use the << operator.) + */ + virtual void Print( FILE* cfile, int depth ) const = 0; + + /** The world does not agree on whether white space should be kept or + not. In order to make everyone happy, these global, static functions + are provided to set whether or not TinyXml will condense all white space + into a single space or not. The default is to condense. Note changing this + value is not thread safe. + */ + static void SetCondenseWhiteSpace( bool condense ) { + condenseWhiteSpace = condense; + } + + /// Return the current white space setting. + static bool IsWhiteSpaceCondensed() { + return condenseWhiteSpace; + } + + /** Return the position, in the original source file, of this node or attribute. + The row and column are 1-based. (That is the first row and first column is + 1,1). If the returns values are 0 or less, then the parser does not have + a row and column value. + + Generally, the row and column value will be set when the TiXmlDocument::Load(), + TiXmlDocument::LoadFile(), or any TiXmlNode::Parse() is called. It will NOT be set + when the DOM was created from operator>>. + + The values reflect the initial load. Once the DOM is modified programmatically + (by adding or changing nodes and attributes) the new values will NOT update to + reflect changes in the document. + + There is a minor performance cost to computing the row and column. Computation + can be disabled if TiXmlDocument::SetTabSize() is called with 0 as the value. + + @sa TiXmlDocument::SetTabSize() + */ + int Row() const { + return location.row + 1; + } + int Column() const { + return location.col + 1; ///< See Row() + } + + void SetUserData( void* user ) { + userData = user; ///< Set a pointer to arbitrary user data. + } + void* GetUserData() { + return userData; ///< Get a pointer to arbitrary user data. + } + const void* GetUserData() const { + return userData; ///< Get a pointer to arbitrary user data. + } + + // Table that returs, for a given lead byte, the total number of bytes + // in the UTF-8 sequence. + static const int utf8ByteTable[256]; + + virtual const char* Parse( const char* p, + TiXmlParsingData* data, + TiXmlEncoding encoding /*= TIXML_ENCODING_UNKNOWN */ ) = 0; + + /** Expands entities in a string. Note this should not contian the tag's '<', '>', etc, + or they will be transformed into entities! + */ + static void EncodeString( const TIXML_STRING& str, TIXML_STRING* out ); + + enum { + TIXML_NO_ERROR = 0, + TIXML_ERROR, + TIXML_ERROR_OPENING_FILE, + TIXML_ERROR_PARSING_ELEMENT, + TIXML_ERROR_FAILED_TO_READ_ELEMENT_NAME, + TIXML_ERROR_READING_ELEMENT_VALUE, + TIXML_ERROR_READING_ATTRIBUTES, + TIXML_ERROR_PARSING_EMPTY, + TIXML_ERROR_READING_END_TAG, + TIXML_ERROR_PARSING_UNKNOWN, + TIXML_ERROR_PARSING_COMMENT, + TIXML_ERROR_PARSING_DECLARATION, + TIXML_ERROR_DOCUMENT_EMPTY, + TIXML_ERROR_EMBEDDED_NULL, + TIXML_ERROR_PARSING_CDATA, + TIXML_ERROR_DOCUMENT_TOP_ONLY, + + TIXML_ERROR_STRING_COUNT + }; + +protected: + + static const char* SkipWhiteSpace( const char*, TiXmlEncoding encoding ); + + inline static bool IsWhiteSpace( char c ) { + return ( isspace( (unsigned char) c ) || c == '\n' || c == '\r' ); + } + inline static bool IsWhiteSpace( int c ) { + if ( c < 256 ) + return IsWhiteSpace( (char) c ); + return false; // Again, only truly correct for English/Latin...but usually works. + } + +#ifdef TIXML_USE_STL + static bool StreamWhiteSpace( std::istream * in, TIXML_STRING * tag ); + static bool StreamTo( std::istream * in, int character, TIXML_STRING * tag ); +#endif + + /* Reads an XML name into the string provided. Returns + a pointer just past the last character of the name, + or 0 if the function has an error. + */ + static const char* ReadName( const char* p, TIXML_STRING* name, TiXmlEncoding encoding ); + + /* Reads text. Returns a pointer past the given end tag. + Wickedly complex options, but it keeps the (sensitive) code in one place. + */ + static const char* ReadText( const char* in, // where to start + TIXML_STRING* text, // the string read + bool ignoreWhiteSpace, // whether to keep the white space + const char* endTag, // what ends this text + bool ignoreCase, // whether to ignore case in the end tag + TiXmlEncoding encoding ); // the current encoding + + // If an entity has been found, transform it into a character. + static const char* GetEntity( const char* in, char* value, int* length, TiXmlEncoding encoding ); + + // Get a character, while interpreting entities. + // The length can be from 0 to 4 bytes. + inline static const char* GetChar( const char* p, char* _value, int* length, TiXmlEncoding encoding ) { + assert( p ); + if ( encoding == TIXML_ENCODING_UTF8 ) { + *length = utf8ByteTable[ *((const unsigned char*)p) ]; + assert( *length >= 0 && *length < 5 ); + } else { + *length = 1; + } + + if ( *length == 1 ) { + if ( *p == '&' ) + return GetEntity( p, _value, length, encoding ); + *_value = *p; + return p+1; + } else if ( *length ) { + //strncpy( _value, p, *length ); // lots of compilers don't like this function (unsafe), + // and the null terminator isn't needed + for( int i=0; p[i] && i<*length; ++i ) { + _value[i] = p[i]; + } + return p + (*length); + } else { + // Not valid text. + return 0; + } + } + + // Return true if the next characters in the stream are any of the endTag sequences. + // Ignore case only works for english, and should only be relied on when comparing + // to English words: StringEqual( p, "version", true ) is fine. + static bool StringEqual( const char* p, + const char* endTag, + bool ignoreCase, + TiXmlEncoding encoding ); + + static const char* errorString[ TIXML_ERROR_STRING_COUNT ]; + + TiXmlCursor location; + + /// Field containing a generic user pointer + void* userData; + + // None of these methods are reliable for any language except English. + // Good for approximation, not great for accuracy. + static int IsAlpha( unsigned char anyByte, TiXmlEncoding encoding ); + static int IsAlphaNum( unsigned char anyByte, TiXmlEncoding encoding ); + inline static int ToLower( int v, TiXmlEncoding encoding ) { + if ( encoding == TIXML_ENCODING_UTF8 ) { + if ( v < 128 ) return tolower( v ); + return v; + } else { + return tolower( v ); + } + } + static void ConvertUTF32ToUTF8( unsigned long input, char* output, int* length ); + +private: + TiXmlBase( const TiXmlBase& ); // not implemented. + void operator=( const TiXmlBase& base ); // not allowed. + + struct Entity { + const char* str; + unsigned int strLength; + char chr; + }; + enum { + NUM_ENTITY = 5, + MAX_ENTITY_LENGTH = 6 + + }; + static Entity entity[ NUM_ENTITY ]; + static bool condenseWhiteSpace; +}; + + +/** The parent class for everything in the Document Object Model. + (Except for attributes). + Nodes have siblings, a parent, and children. A node can be + in a document, or stand on its own. The type of a TiXmlNode + can be queried, and it can be cast to its more defined type. +*/ +class TiXmlNode : public TiXmlBase +{ + friend class TiXmlDocument; + friend class TiXmlElement; + +public: +#ifdef TIXML_USE_STL + + /** An input stream operator, for every class. Tolerant of newlines and + formatting, but doesn't expect them. + */ + friend std::istream& operator >> (std::istream& in, TiXmlNode& base); + + /** An output stream operator, for every class. Note that this outputs + without any newlines or formatting, as opposed to Print(), which + includes tabs and new lines. + + The operator<< and operator>> are not completely symmetric. Writing + a node to a stream is very well defined. You'll get a nice stream + of output, without any extra whitespace or newlines. + + But reading is not as well defined. (As it always is.) If you create + a TiXmlElement (for example) and read that from an input stream, + the text needs to define an element or junk will result. This is + true of all input streams, but it's worth keeping in mind. + + A TiXmlDocument will read nodes until it reads a root element, and + all the children of that root element. + */ + friend std::ostream& operator<< (std::ostream& out, const TiXmlNode& base); + + /// Appends the XML node or attribute to a std::string. + friend std::string& operator<< (std::string& out, const TiXmlNode& base ); + +#endif + + /** The types of XML nodes supported by TinyXml. (All the + unsupported types are picked up by UNKNOWN.) + */ + enum NodeType { + TINYXML_DOCUMENT, + TINYXML_ELEMENT, + TINYXML_COMMENT, + TINYXML_UNKNOWN, + TINYXML_TEXT, + TINYXML_DECLARATION, + TINYXML_TYPECOUNT + }; + + virtual ~TiXmlNode(); + + /** The meaning of 'value' changes for the specific type of + TiXmlNode. + @verbatim + Document: filename of the xml file + Element: name of the element + Comment: the comment text + Unknown: the tag contents + Text: the text string + @endverbatim + + The subclasses will wrap this function. + */ + const char *Value() const { + return value.c_str (); + } + +#ifdef TIXML_USE_STL + /** Return Value() as a std::string. If you only use STL, + this is more efficient than calling Value(). + Only available in STL mode. + */ + const std::string& ValueStr() const { + return value; + } +#endif + + const TIXML_STRING& ValueTStr() const { + return value; + } + + /** Changes the value of the node. Defined as: + @verbatim + Document: filename of the xml file + Element: name of the element + Comment: the comment text + Unknown: the tag contents + Text: the text string + @endverbatim + */ + void SetValue(const char * _value) { + value = _value; + } + +#ifdef TIXML_USE_STL + /// STL std::string form. + void SetValue( const std::string& _value ) { + value = _value; + } +#endif + + /// Delete all the children of this node. Does not affect 'this'. + void Clear(); + + /// One step up the DOM. + TiXmlNode* Parent() { + return parent; + } + const TiXmlNode* Parent() const { + return parent; + } + + const TiXmlNode* FirstChild() const { + return firstChild; ///< The first child of this node. Will be null if there are no children. + } + TiXmlNode* FirstChild() { + return firstChild; + } + const TiXmlNode* FirstChild( const char * value ) const; ///< The first child of this node with the matching 'value'. Will be null if none found. + /// The first child of this node with the matching 'value'. Will be null if none found. + TiXmlNode* FirstChild( const char * _value ) { + // Call through to the const version - safe since nothing is changed. Exiting syntax: cast this to a const (always safe) + // call the method, cast the return back to non-const. + return const_cast< TiXmlNode* > ((const_cast< const TiXmlNode* >(this))->FirstChild( _value )); + } + const TiXmlNode* LastChild() const { + return lastChild; /// The last child of this node. Will be null if there are no children. + } + TiXmlNode* LastChild() { + return lastChild; + } + + const TiXmlNode* LastChild( const char * value ) const; /// The last child of this node matching 'value'. Will be null if there are no children. + TiXmlNode* LastChild( const char * _value ) { + return const_cast< TiXmlNode* > ((const_cast< const TiXmlNode* >(this))->LastChild( _value )); + } + +#ifdef TIXML_USE_STL + const TiXmlNode* FirstChild( const std::string& _value ) const { + return FirstChild (_value.c_str ()); ///< STL std::string form. + } + TiXmlNode* FirstChild( const std::string& _value ) { + return FirstChild (_value.c_str ()); ///< STL std::string form. + } + const TiXmlNode* LastChild( const std::string& _value ) const { + return LastChild (_value.c_str ()); ///< STL std::string form. + } + TiXmlNode* LastChild( const std::string& _value ) { + return LastChild (_value.c_str ()); ///< STL std::string form. + } +#endif + + /** An alternate way to walk the children of a node. + One way to iterate over nodes is: + @verbatim + for( child = parent->FirstChild(); child; child = child->NextSibling() ) + @endverbatim + + IterateChildren does the same thing with the syntax: + @verbatim + child = 0; + while( child = parent->IterateChildren( child ) ) + @endverbatim + + IterateChildren takes the previous child as input and finds + the next one. If the previous child is null, it returns the + first. IterateChildren will return null when done. + */ + const TiXmlNode* IterateChildren( const TiXmlNode* previous ) const; + TiXmlNode* IterateChildren( const TiXmlNode* previous ) { + return const_cast< TiXmlNode* >( (const_cast< const TiXmlNode* >(this))->IterateChildren( previous ) ); + } + + /// This flavor of IterateChildren searches for children with a particular 'value' + const TiXmlNode* IterateChildren( const char * value, const TiXmlNode* previous ) const; + TiXmlNode* IterateChildren( const char * _value, const TiXmlNode* previous ) { + return const_cast< TiXmlNode* >( (const_cast< const TiXmlNode* >(this))->IterateChildren( _value, previous ) ); + } + +#ifdef TIXML_USE_STL + const TiXmlNode* IterateChildren( const std::string& _value, const TiXmlNode* previous ) const { + return IterateChildren (_value.c_str (), previous); ///< STL std::string form. + } + TiXmlNode* IterateChildren( const std::string& _value, const TiXmlNode* previous ) { + return IterateChildren (_value.c_str (), previous); ///< STL std::string form. + } +#endif + + /** Add a new node related to this. Adds a child past the LastChild. + Returns a pointer to the new object or NULL if an error occured. + */ + TiXmlNode* InsertEndChild( const TiXmlNode& addThis ); + + + /** Add a new node related to this. Adds a child past the LastChild. + + NOTE: the node to be added is passed by pointer, and will be + henceforth owned (and deleted) by tinyXml. This method is efficient + and avoids an extra copy, but should be used with care as it + uses a different memory model than the other insert functions. + + @sa InsertEndChild + */ + TiXmlNode* LinkEndChild( TiXmlNode* addThis ); + + /** Add a new node related to this. Adds a child before the specified child. + Returns a pointer to the new object or NULL if an error occured. + */ + TiXmlNode* InsertBeforeChild( TiXmlNode* beforeThis, const TiXmlNode& addThis ); + + /** Add a new node related to this. Adds a child after the specified child. + Returns a pointer to the new object or NULL if an error occured. + */ + TiXmlNode* InsertAfterChild( TiXmlNode* afterThis, const TiXmlNode& addThis ); + + /** Replace a child of this node. + Returns a pointer to the new object or NULL if an error occured. + */ + TiXmlNode* ReplaceChild( TiXmlNode* replaceThis, const TiXmlNode& withThis ); + + /// Delete a child of this node. + bool RemoveChild( TiXmlNode* removeThis ); + + /// Navigate to a sibling node. + const TiXmlNode* PreviousSibling() const { + return prev; + } + TiXmlNode* PreviousSibling() { + return prev; + } + + /// Navigate to a sibling node. + const TiXmlNode* PreviousSibling( const char * ) const; + TiXmlNode* PreviousSibling( const char *_prev ) { + return const_cast< TiXmlNode* >( (const_cast< const TiXmlNode* >(this))->PreviousSibling( _prev ) ); + } + +#ifdef TIXML_USE_STL + const TiXmlNode* PreviousSibling( const std::string& _value ) const { + return PreviousSibling (_value.c_str ()); ///< STL std::string form. + } + TiXmlNode* PreviousSibling( const std::string& _value ) { + return PreviousSibling (_value.c_str ()); ///< STL std::string form. + } + const TiXmlNode* NextSibling( const std::string& _value) const { + return NextSibling (_value.c_str ()); ///< STL std::string form. + } + TiXmlNode* NextSibling( const std::string& _value) { + return NextSibling (_value.c_str ()); ///< STL std::string form. + } +#endif + + /// Navigate to a sibling node. + const TiXmlNode* NextSibling() const { + return next; + } + TiXmlNode* NextSibling() { + return next; + } + + /// Navigate to a sibling node with the given 'value'. + const TiXmlNode* NextSibling( const char * ) const; + TiXmlNode* NextSibling( const char* _next ) { + return const_cast< TiXmlNode* >( (const_cast< const TiXmlNode* >(this))->NextSibling( _next ) ); + } + + /** Convenience function to get through elements. + Calls NextSibling and ToElement. Will skip all non-Element + nodes. Returns 0 if there is not another element. + */ + const TiXmlElement* NextSiblingElement() const; + TiXmlElement* NextSiblingElement() { + return const_cast< TiXmlElement* >( (const_cast< const TiXmlNode* >(this))->NextSiblingElement() ); + } + + /** Convenience function to get through elements. + Calls NextSibling and ToElement. Will skip all non-Element + nodes. Returns 0 if there is not another element. + */ + const TiXmlElement* NextSiblingElement( const char * ) const; + TiXmlElement* NextSiblingElement( const char *_next ) { + return const_cast< TiXmlElement* >( (const_cast< const TiXmlNode* >(this))->NextSiblingElement( _next ) ); + } + +#ifdef TIXML_USE_STL + const TiXmlElement* NextSiblingElement( const std::string& _value) const { + return NextSiblingElement (_value.c_str ()); ///< STL std::string form. + } + TiXmlElement* NextSiblingElement( const std::string& _value) { + return NextSiblingElement (_value.c_str ()); ///< STL std::string form. + } +#endif + + /// Convenience function to get through elements. + const TiXmlElement* FirstChildElement() const; + TiXmlElement* FirstChildElement() { + return const_cast< TiXmlElement* >( (const_cast< const TiXmlNode* >(this))->FirstChildElement() ); + } + + /// Convenience function to get through elements. + const TiXmlElement* FirstChildElement( const char * _value ) const; + TiXmlElement* FirstChildElement( const char * _value ) { + return const_cast< TiXmlElement* >( (const_cast< const TiXmlNode* >(this))->FirstChildElement( _value ) ); + } + +#ifdef TIXML_USE_STL + const TiXmlElement* FirstChildElement( const std::string& _value ) const { + return FirstChildElement (_value.c_str ()); ///< STL std::string form. + } + TiXmlElement* FirstChildElement( const std::string& _value ) { + return FirstChildElement (_value.c_str ()); ///< STL std::string form. + } +#endif + + /** Query the type (as an enumerated value, above) of this node. + The possible types are: DOCUMENT, ELEMENT, COMMENT, + UNKNOWN, TEXT, and DECLARATION. + */ + int Type() const { + return type; + } + + /** Return a pointer to the Document this node lives in. + Returns null if not in a document. + */ + const TiXmlDocument* GetDocument() const; + TiXmlDocument* GetDocument() { + return const_cast< TiXmlDocument* >( (const_cast< const TiXmlNode* >(this))->GetDocument() ); + } + + /// Returns true if this node has no children. + bool NoChildren() const { + return !firstChild; + } + + virtual const TiXmlDocument* ToDocument() const { + return 0; ///< Cast to a more defined type. Will return null if not of the requested type. + } + virtual const TiXmlElement* ToElement() const { + return 0; ///< Cast to a more defined type. Will return null if not of the requested type. + } + virtual const TiXmlComment* ToComment() const { + return 0; ///< Cast to a more defined type. Will return null if not of the requested type. + } + virtual const TiXmlUnknown* ToUnknown() const { + return 0; ///< Cast to a more defined type. Will return null if not of the requested type. + } + virtual const TiXmlText* ToText() const { + return 0; ///< Cast to a more defined type. Will return null if not of the requested type. + } + virtual const TiXmlDeclaration* ToDeclaration() const { + return 0; ///< Cast to a more defined type. Will return null if not of the requested type. + } + + virtual TiXmlDocument* ToDocument() { + return 0; ///< Cast to a more defined type. Will return null if not of the requested type. + } + virtual TiXmlElement* ToElement() { + return 0; ///< Cast to a more defined type. Will return null if not of the requested type. + } + virtual TiXmlComment* ToComment() { + return 0; ///< Cast to a more defined type. Will return null if not of the requested type. + } + virtual TiXmlUnknown* ToUnknown() { + return 0; ///< Cast to a more defined type. Will return null if not of the requested type. + } + virtual TiXmlText* ToText() { + return 0; ///< Cast to a more defined type. Will return null if not of the requested type. + } + virtual TiXmlDeclaration* ToDeclaration() { + return 0; ///< Cast to a more defined type. Will return null if not of the requested type. + } + + /** Create an exact duplicate of this node and return it. The memory must be deleted + by the caller. + */ + virtual TiXmlNode* Clone() const = 0; + + /** Accept a hierchical visit the nodes in the TinyXML DOM. Every node in the + XML tree will be conditionally visited and the host will be called back + via the TiXmlVisitor interface. + + This is essentially a SAX interface for TinyXML. (Note however it doesn't re-parse + the XML for the callbacks, so the performance of TinyXML is unchanged by using this + interface versus any other.) + + The interface has been based on ideas from: + + - http://www.saxproject.org/ + - http://c2.com/cgi/wiki?HierarchicalVisitorPattern + + Which are both good references for "visiting". + + An example of using Accept(): + @verbatim + TiXmlPrinter printer; + tinyxmlDoc.Accept( &printer ); + const char* xmlcstr = printer.CStr(); + @endverbatim + */ + virtual bool Accept( TiXmlVisitor* visitor ) const = 0; + +protected: + TiXmlNode( NodeType _type ); + + // Copy to the allocated object. Shared functionality between Clone, Copy constructor, + // and the assignment operator. + void CopyTo( TiXmlNode* target ) const; + +#ifdef TIXML_USE_STL + // The real work of the input operator. + virtual void StreamIn( std::istream* in, TIXML_STRING* tag ) = 0; +#endif + + // Figure out what is at *p, and parse it. Returns null if it is not an xml node. + TiXmlNode* Identify( const char* start, TiXmlEncoding encoding ); + + TiXmlNode* parent; + NodeType type; + + TiXmlNode* firstChild; + TiXmlNode* lastChild; + + TIXML_STRING value; + + TiXmlNode* prev; + TiXmlNode* next; + +private: + TiXmlNode( const TiXmlNode& ); // not implemented. + void operator=( const TiXmlNode& base ); // not allowed. +}; + + +/** An attribute is a name-value pair. Elements have an arbitrary + number of attributes, each with a unique name. + + @note The attributes are not TiXmlNodes, since they are not + part of the tinyXML document object model. There are other + suggested ways to look at this problem. +*/ +class TiXmlAttribute : public TiXmlBase +{ + friend class TiXmlAttributeSet; + +public: + /// Construct an empty attribute. + TiXmlAttribute() : TiXmlBase() { + document = 0; + prev = next = 0; + } + +#ifdef TIXML_USE_STL + /// std::string constructor. + TiXmlAttribute( const std::string& _name, const std::string& _value ) { + name = _name; + value = _value; + document = 0; + prev = next = 0; + } +#endif + + /// Construct an attribute with a name and value. + TiXmlAttribute( const char * _name, const char * _value ) { + name = _name; + value = _value; + document = 0; + prev = next = 0; + } + + const char* Name() const { + return name.c_str(); ///< Return the name of this attribute. + } + const char* Value() const { + return value.c_str(); ///< Return the value of this attribute. + } +#ifdef TIXML_USE_STL + const std::string& ValueStr() const { + return value; ///< Return the value of this attribute. + } +#endif + int IntValue() const; ///< Return the value of this attribute, converted to an integer. + double DoubleValue() const; ///< Return the value of this attribute, converted to a double. + + // Get the tinyxml string representation + const TIXML_STRING& NameTStr() const { + return name; + } + + /** QueryIntValue examines the value string. It is an alternative to the + IntValue() method with richer error checking. + If the value is an integer, it is stored in 'value' and + the call returns TIXML_SUCCESS. If it is not + an integer, it returns TIXML_WRONG_TYPE. + + A specialized but useful call. Note that for success it returns 0, + which is the opposite of almost all other TinyXml calls. + */ + int QueryIntValue( int* _value ) const; + /// QueryDoubleValue examines the value string. See QueryIntValue(). + int QueryDoubleValue( double* _value ) const; + + void SetName( const char* _name ) { + name = _name; ///< Set the name of this attribute. + } + void SetValue( const char* _value ) { + value = _value; ///< Set the value. + } + + void SetIntValue( int _value ); ///< Set the value from an integer. + void SetDoubleValue( double _value ); ///< Set the value from a double. + +#ifdef TIXML_USE_STL + /// STL std::string form. + void SetName( const std::string& _name ) { + name = _name; + } + /// STL std::string form. + void SetValue( const std::string& _value ) { + value = _value; + } +#endif + + /// Get the next sibling attribute in the DOM. Returns null at end. + const TiXmlAttribute* Next() const; + TiXmlAttribute* Next() { + return const_cast< TiXmlAttribute* >( (const_cast< const TiXmlAttribute* >(this))->Next() ); + } + + /// Get the previous sibling attribute in the DOM. Returns null at beginning. + const TiXmlAttribute* Previous() const; + TiXmlAttribute* Previous() { + return const_cast< TiXmlAttribute* >( (const_cast< const TiXmlAttribute* >(this))->Previous() ); + } + + bool operator==( const TiXmlAttribute& rhs ) const { + return rhs.name == name; + } + bool operator<( const TiXmlAttribute& rhs ) const { + return name < rhs.name; + } + bool operator>( const TiXmlAttribute& rhs ) const { + return name > rhs.name; + } + + /* Attribute parsing starts: first letter of the name + returns: the next char after the value end quote + */ + virtual const char* Parse( const char* p, TiXmlParsingData* data, TiXmlEncoding encoding ); + + // Prints this Attribute to a FILE stream. + virtual void Print( FILE* cfile, int depth ) const { + Print( cfile, depth, 0 ); + } + void Print( FILE* cfile, int depth, TIXML_STRING* str ) const; + + // [internal use] + // Set the document pointer so the attribute can report errors. + void SetDocument( TiXmlDocument* doc ) { + document = doc; + } + +private: + TiXmlAttribute( const TiXmlAttribute& ); // not implemented. + void operator=( const TiXmlAttribute& base ); // not allowed. + + TiXmlDocument* document; // A pointer back to a document, for error reporting. + TIXML_STRING name; + TIXML_STRING value; + TiXmlAttribute* prev; + TiXmlAttribute* next; +}; + + +/* A class used to manage a group of attributes. + It is only used internally, both by the ELEMENT and the DECLARATION. + + The set can be changed transparent to the Element and Declaration + classes that use it, but NOT transparent to the Attribute + which has to implement a next() and previous() method. Which makes + it a bit problematic and prevents the use of STL. + + This version is implemented with circular lists because: + - I like circular lists + - it demonstrates some independence from the (typical) doubly linked list. +*/ +class TiXmlAttributeSet +{ +public: + TiXmlAttributeSet(); + ~TiXmlAttributeSet(); + + void Add( TiXmlAttribute* attribute ); + void Remove( TiXmlAttribute* attribute ); + + const TiXmlAttribute* First() const { + return ( sentinel.next == &sentinel ) ? 0 : sentinel.next; + } + TiXmlAttribute* First() { + return ( sentinel.next == &sentinel ) ? 0 : sentinel.next; + } + const TiXmlAttribute* Last() const { + return ( sentinel.prev == &sentinel ) ? 0 : sentinel.prev; + } + TiXmlAttribute* Last() { + return ( sentinel.prev == &sentinel ) ? 0 : sentinel.prev; + } + + TiXmlAttribute* Find( const char* _name ) const; + TiXmlAttribute* FindOrCreate( const char* _name ); + +# ifdef TIXML_USE_STL + TiXmlAttribute* Find( const std::string& _name ) const; + TiXmlAttribute* FindOrCreate( const std::string& _name ); +# endif + + +private: + //*ME: Because of hidden/disabled copy-construktor in TiXmlAttribute (sentinel-element), + //*ME: this class must be also use a hidden/disabled copy-constructor !!! + TiXmlAttributeSet( const TiXmlAttributeSet& ); // not allowed + void operator=( const TiXmlAttributeSet& ); // not allowed (as TiXmlAttribute) + + TiXmlAttribute sentinel; +}; + + +/** The element is a container class. It has a value, the element name, + and can contain other elements, text, comments, and unknowns. + Elements also contain an arbitrary number of attributes. +*/ +class TiXmlElement : public TiXmlNode +{ +public: + /// Construct an element. + TiXmlElement (const char * in_value); + +#ifdef TIXML_USE_STL + /// std::string constructor. + TiXmlElement( const std::string& _value ); +#endif + + TiXmlElement( const TiXmlElement& ); + + void operator=( const TiXmlElement& base ); + + virtual ~TiXmlElement(); + + /** Given an attribute name, Attribute() returns the value + for the attribute of that name, or null if none exists. + */ + const char* Attribute( const char* name ) const; + + /** Given an attribute name, Attribute() returns the value + for the attribute of that name, or null if none exists. + If the attribute exists and can be converted to an integer, + the integer value will be put in the return 'i', if 'i' + is non-null. + */ + const char* Attribute( const char* name, int* i ) const; + + /** Given an attribute name, Attribute() returns the value + for the attribute of that name, or null if none exists. + If the attribute exists and can be converted to an double, + the double value will be put in the return 'd', if 'd' + is non-null. + */ + const char* Attribute( const char* name, double* d ) const; + + /** QueryIntAttribute examines the attribute - it is an alternative to the + Attribute() method with richer error checking. + If the attribute is an integer, it is stored in 'value' and + the call returns TIXML_SUCCESS. If it is not + an integer, it returns TIXML_WRONG_TYPE. If the attribute + does not exist, then TIXML_NO_ATTRIBUTE is returned. + */ + int QueryIntAttribute( const char* name, int* _value ) const; + /// QueryDoubleAttribute examines the attribute - see QueryIntAttribute(). + int QueryDoubleAttribute( const char* name, double* _value ) const; + /// QueryFloatAttribute examines the attribute - see QueryIntAttribute(). + int QueryFloatAttribute( const char* name, float* _value ) const { + double d; + int result = QueryDoubleAttribute( name, &d ); + if ( result == TIXML_SUCCESS ) { + *_value = (float)d; + } + return result; + } + +#ifdef TIXML_USE_STL + /// QueryStringAttribute examines the attribute - see QueryIntAttribute(). + int QueryStringAttribute( const char* name, std::string* _value ) const { + const char* cstr = Attribute( name ); + if ( cstr ) { + *_value = std::string( cstr ); + return TIXML_SUCCESS; + } + return TIXML_NO_ATTRIBUTE; + } + + /** Template form of the attribute query which will try to read the + attribute into the specified type. Very easy, very powerful, but + be careful to make sure to call this with the correct type. + + NOTE: This method doesn't work correctly for 'string' types that contain spaces. + + @return TIXML_SUCCESS, TIXML_WRONG_TYPE, or TIXML_NO_ATTRIBUTE + */ + template< typename T > int QueryValueAttribute( const std::string& name, T* outValue ) const { + const TiXmlAttribute* node = attributeSet.Find( name ); + if ( !node ) + return TIXML_NO_ATTRIBUTE; + + std::stringstream sstream( node->ValueStr() ); + sstream >> *outValue; + if ( !sstream.fail() ) + return TIXML_SUCCESS; + return TIXML_WRONG_TYPE; + } + + int QueryValueAttribute( const std::string& name, std::string* outValue ) const { + const TiXmlAttribute* node = attributeSet.Find( name ); + if ( !node ) + return TIXML_NO_ATTRIBUTE; + *outValue = node->ValueStr(); + return TIXML_SUCCESS; + } +#endif + + /** Sets an attribute of name to a given value. The attribute + will be created if it does not exist, or changed if it does. + */ + void SetAttribute( const char* name, const char * _value ); + +#ifdef TIXML_USE_STL + const std::string* Attribute( const std::string& name ) const; + const std::string* Attribute( const std::string& name, int* i ) const; + const std::string* Attribute( const std::string& name, double* d ) const; + int QueryIntAttribute( const std::string& name, int* _value ) const; + int QueryDoubleAttribute( const std::string& name, double* _value ) const; + + /// STL std::string form. + void SetAttribute( const std::string& name, const std::string& _value ); + ///< STL std::string form. + void SetAttribute( const std::string& name, int _value ); + ///< STL std::string form. + void SetDoubleAttribute( const std::string& name, double value ); +#endif + + /** Sets an attribute of name to a given value. The attribute + will be created if it does not exist, or changed if it does. + */ + void SetAttribute( const char * name, int value ); + + /** Sets an attribute of name to a given value. The attribute + will be created if it does not exist, or changed if it does. + */ + void SetDoubleAttribute( const char * name, double value ); + + /** Deletes an attribute with the given name. + */ + void RemoveAttribute( const char * name ); +#ifdef TIXML_USE_STL + void RemoveAttribute( const std::string& name ) { + RemoveAttribute (name.c_str ()); ///< STL std::string form. + } +#endif + + const TiXmlAttribute* FirstAttribute() const { + return attributeSet.First(); ///< Access the first attribute in this element. + } + TiXmlAttribute* FirstAttribute() { + return attributeSet.First(); + } + const TiXmlAttribute* LastAttribute() const { + return attributeSet.Last(); ///< Access the last attribute in this element. + } + TiXmlAttribute* LastAttribute() { + return attributeSet.Last(); + } + + /** Convenience function for easy access to the text inside an element. Although easy + and concise, GetText() is limited compared to getting the TiXmlText child + and accessing it directly. + + If the first child of 'this' is a TiXmlText, the GetText() + returns the character string of the Text node, else null is returned. + + This is a convenient method for getting the text of simple contained text: + @verbatim + This is text + const char* str = fooElement->GetText(); + @endverbatim + + 'str' will be a pointer to "This is text". + + Note that this function can be misleading. If the element foo was created from + this XML: + @verbatim + This is text + @endverbatim + + then the value of str would be null. The first child node isn't a text node, it is + another element. From this XML: + @verbatim + This is text + @endverbatim + GetText() will return "This is ". + + WARNING: GetText() accesses a child node - don't become confused with the + similarly named TiXmlHandle::Text() and TiXmlNode::ToText() which are + safe type casts on the referenced node. + */ + const char* GetText() const; + + /// Creates a new Element and returns it - the returned element is a copy. + virtual TiXmlNode* Clone() const; + // Print the Element to a FILE stream. + virtual void Print( FILE* cfile, int depth ) const; + + /* Attribtue parsing starts: next char past '<' + returns: next char past '>' + */ + virtual const char* Parse( const char* p, TiXmlParsingData* data, TiXmlEncoding encoding ); + + virtual const TiXmlElement* ToElement() const { + return this; ///< Cast to a more defined type. Will return null not of the requested type. + } + virtual TiXmlElement* ToElement() { + return this; ///< Cast to a more defined type. Will return null not of the requested type. + } + + /** Walk the XML tree visiting this node and all of its children. + */ + virtual bool Accept( TiXmlVisitor* visitor ) const; + +protected: + + void CopyTo( TiXmlElement* target ) const; + void ClearThis(); // like clear, but initializes 'this' object as well + + // Used to be public [internal use] +#ifdef TIXML_USE_STL + virtual void StreamIn( std::istream * in, TIXML_STRING * tag ); +#endif + /* [internal use] + Reads the "value" of the element -- another element, or text. + This should terminate with the current end tag. + */ + const char* ReadValue( const char* in, TiXmlParsingData* prevData, TiXmlEncoding encoding ); + +private: + TiXmlAttributeSet attributeSet; +}; + + +/** An XML comment. +*/ +class TiXmlComment : public TiXmlNode +{ +public: + /// Constructs an empty comment. + TiXmlComment() : TiXmlNode( TiXmlNode::TINYXML_COMMENT ) {} + /// Construct a comment from text. + TiXmlComment( const char* _value ) : TiXmlNode( TiXmlNode::TINYXML_COMMENT ) { + SetValue( _value ); + } + TiXmlComment( const TiXmlComment& ); + void operator=( const TiXmlComment& base ); + + virtual ~TiXmlComment() {} + + /// Returns a copy of this Comment. + virtual TiXmlNode* Clone() const; + // Write this Comment to a FILE stream. + virtual void Print( FILE* cfile, int depth ) const; + + /* Attribtue parsing starts: at the ! of the !-- + returns: next char past '>' + */ + virtual const char* Parse( const char* p, TiXmlParsingData* data, TiXmlEncoding encoding ); + + virtual const TiXmlComment* ToComment() const { + return this; ///< Cast to a more defined type. Will return null not of the requested type. + } + virtual TiXmlComment* ToComment() { + return this; ///< Cast to a more defined type. Will return null not of the requested type. + } + + /** Walk the XML tree visiting this node and all of its children. + */ + virtual bool Accept( TiXmlVisitor* visitor ) const; + +protected: + void CopyTo( TiXmlComment* target ) const; + + // used to be public +#ifdef TIXML_USE_STL + virtual void StreamIn( std::istream * in, TIXML_STRING * tag ); +#endif +// virtual void StreamOut( TIXML_OSTREAM * out ) const; + +private: + +}; + + +/** XML text. A text node can have 2 ways to output the next. "normal" output + and CDATA. It will default to the mode it was parsed from the XML file and + you generally want to leave it alone, but you can change the output mode with + SetCDATA() and query it with CDATA(). +*/ +class TiXmlText : public TiXmlNode +{ + friend class TiXmlElement; +public: + /** Constructor for text element. By default, it is treated as + normal, encoded text. If you want it be output as a CDATA text + element, set the parameter _cdata to 'true' + */ + TiXmlText (const char * initValue ) : TiXmlNode (TiXmlNode::TINYXML_TEXT) { + SetValue( initValue ); + cdata = false; + } + virtual ~TiXmlText() {} + +#ifdef TIXML_USE_STL + /// Constructor. + TiXmlText( const std::string& initValue ) : TiXmlNode (TiXmlNode::TINYXML_TEXT) { + SetValue( initValue ); + cdata = false; + } +#endif + + TiXmlText( const TiXmlText& copy ) : TiXmlNode( TiXmlNode::TINYXML_TEXT ) { + copy.CopyTo( this ); + } + void operator=( const TiXmlText& base ) { + base.CopyTo( this ); + } + + // Write this text object to a FILE stream. + virtual void Print( FILE* cfile, int depth ) const; + + /// Queries whether this represents text using a CDATA section. + bool CDATA() const { + return cdata; + } + /// Turns on or off a CDATA representation of text. + void SetCDATA( bool _cdata ) { + cdata = _cdata; + } + + virtual const char* Parse( const char* p, TiXmlParsingData* data, TiXmlEncoding encoding ); + + virtual const TiXmlText* ToText() const { + return this; ///< Cast to a more defined type. Will return null not of the requested type. + } + virtual TiXmlText* ToText() { + return this; ///< Cast to a more defined type. Will return null not of the requested type. + } + + /** Walk the XML tree visiting this node and all of its children. + */ + virtual bool Accept( TiXmlVisitor* content ) const; + +protected : + /// [internal use] Creates a new Element and returns it. + virtual TiXmlNode* Clone() const; + void CopyTo( TiXmlText* target ) const; + + bool Blank() const; // returns true if all white space and new lines + // [internal use] +#ifdef TIXML_USE_STL + virtual void StreamIn( std::istream * in, TIXML_STRING * tag ); +#endif + +private: + bool cdata; // true if this should be input and output as a CDATA style text element +}; + + +/** In correct XML the declaration is the first entry in the file. + @verbatim + + @endverbatim + + TinyXml will happily read or write files without a declaration, + however. There are 3 possible attributes to the declaration: + version, encoding, and standalone. + + Note: In this version of the code, the attributes are + handled as special cases, not generic attributes, simply + because there can only be at most 3 and they are always the same. +*/ +class TiXmlDeclaration : public TiXmlNode +{ +public: + /// Construct an empty declaration. + TiXmlDeclaration() : TiXmlNode( TiXmlNode::TINYXML_DECLARATION ) {} + +#ifdef TIXML_USE_STL + /// Constructor. + TiXmlDeclaration( const std::string& _version, + const std::string& _encoding, + const std::string& _standalone ); +#endif + + /// Construct. + TiXmlDeclaration( const char* _version, + const char* _encoding, + const char* _standalone ); + + TiXmlDeclaration( const TiXmlDeclaration& copy ); + void operator=( const TiXmlDeclaration& copy ); + + virtual ~TiXmlDeclaration() {} + + /// Version. Will return an empty string if none was found. + const char *Version() const { + return version.c_str (); + } + /// Encoding. Will return an empty string if none was found. + const char *Encoding() const { + return encoding.c_str (); + } + /// Is this a standalone document? + const char *Standalone() const { + return standalone.c_str (); + } + + /// Creates a copy of this Declaration and returns it. + virtual TiXmlNode* Clone() const; + // Print this declaration to a FILE stream. + virtual void Print( FILE* cfile, int depth, TIXML_STRING* str ) const; + virtual void Print( FILE* cfile, int depth ) const { + Print( cfile, depth, 0 ); + } + + virtual const char* Parse( const char* p, TiXmlParsingData* data, TiXmlEncoding encoding ); + + virtual const TiXmlDeclaration* ToDeclaration() const { + return this; ///< Cast to a more defined type. Will return null not of the requested type. + } + virtual TiXmlDeclaration* ToDeclaration() { + return this; ///< Cast to a more defined type. Will return null not of the requested type. + } + + /** Walk the XML tree visiting this node and all of its children. + */ + virtual bool Accept( TiXmlVisitor* visitor ) const; + +protected: + void CopyTo( TiXmlDeclaration* target ) const; + // used to be public +#ifdef TIXML_USE_STL + virtual void StreamIn( std::istream * in, TIXML_STRING * tag ); +#endif + +private: + + TIXML_STRING version; + TIXML_STRING encoding; + TIXML_STRING standalone; +}; + + +/** Any tag that tinyXml doesn't recognize is saved as an + unknown. It is a tag of text, but should not be modified. + It will be written back to the XML, unchanged, when the file + is saved. + + DTD tags get thrown into TiXmlUnknowns. +*/ +class TiXmlUnknown : public TiXmlNode +{ +public: + TiXmlUnknown() : TiXmlNode( TiXmlNode::TINYXML_UNKNOWN ) {} + virtual ~TiXmlUnknown() {} + + TiXmlUnknown( const TiXmlUnknown& copy ) : TiXmlNode( TiXmlNode::TINYXML_UNKNOWN ) { + copy.CopyTo( this ); + } + void operator=( const TiXmlUnknown& copy ) { + copy.CopyTo( this ); + } + + /// Creates a copy of this Unknown and returns it. + virtual TiXmlNode* Clone() const; + // Print this Unknown to a FILE stream. + virtual void Print( FILE* cfile, int depth ) const; + + virtual const char* Parse( const char* p, TiXmlParsingData* data, TiXmlEncoding encoding ); + + virtual const TiXmlUnknown* ToUnknown() const { + return this; ///< Cast to a more defined type. Will return null not of the requested type. + } + virtual TiXmlUnknown* ToUnknown() { + return this; ///< Cast to a more defined type. Will return null not of the requested type. + } + + /** Walk the XML tree visiting this node and all of its children. + */ + virtual bool Accept( TiXmlVisitor* content ) const; + +protected: + void CopyTo( TiXmlUnknown* target ) const; + +#ifdef TIXML_USE_STL + virtual void StreamIn( std::istream * in, TIXML_STRING * tag ); +#endif + +private: + +}; + + +/** Always the top level node. A document binds together all the + XML pieces. It can be saved, loaded, and printed to the screen. + The 'value' of a document node is the xml file name. +*/ +class TiXmlDocument : public TiXmlNode +{ +public: + /// Create an empty document, that has no name. + TiXmlDocument(); + /// Create a document with a name. The name of the document is also the filename of the xml. + TiXmlDocument( const char * documentName ); + +#ifdef TIXML_USE_STL + /// Constructor. + TiXmlDocument( const std::string& documentName ); +#endif + + TiXmlDocument( const TiXmlDocument& copy ); + void operator=( const TiXmlDocument& copy ); + + virtual ~TiXmlDocument() {} + + /** Load a file using the current document value. + Returns true if successful. Will delete any existing + document data before loading. + */ + bool LoadFile( TiXmlEncoding encoding = TIXML_DEFAULT_ENCODING ); + /// Save a file using the current document value. Returns true if successful. + bool SaveFile() const; + /// Load a file using the given filename. Returns true if successful. + bool LoadFile( const char * filename, TiXmlEncoding encoding = TIXML_DEFAULT_ENCODING ); + /// Save a file using the given filename. Returns true if successful. + bool SaveFile( const char * filename ) const; + /** Load a file using the given FILE*. Returns true if successful. Note that this method + doesn't stream - the entire object pointed at by the FILE* + will be interpreted as an XML file. TinyXML doesn't stream in XML from the current + file location. Streaming may be added in the future. + */ + bool LoadFile( FILE*, TiXmlEncoding encoding = TIXML_DEFAULT_ENCODING ); + /// Save a file using the given FILE*. Returns true if successful. + bool SaveFile( FILE* ) const; + +#ifdef TIXML_USE_STL + bool LoadFile( const std::string& filename, TiXmlEncoding encoding = TIXML_DEFAULT_ENCODING ) { ///< STL std::string version. + return LoadFile( filename.c_str(), encoding ); + } + bool SaveFile( const std::string& filename ) const { ///< STL std::string version. + return SaveFile( filename.c_str() ); + } +#endif + + /** Parse the given null terminated block of xml data. Passing in an encoding to this + method (either TIXML_ENCODING_LEGACY or TIXML_ENCODING_UTF8 will force TinyXml + to use that encoding, regardless of what TinyXml might otherwise try to detect. + */ + virtual const char* Parse( const char* p, TiXmlParsingData* data = 0, TiXmlEncoding encoding = TIXML_DEFAULT_ENCODING ); + + /** Get the root element -- the only top level element -- of the document. + In well formed XML, there should only be one. TinyXml is tolerant of + multiple elements at the document level. + */ + const TiXmlElement* RootElement() const { + return FirstChildElement(); + } + TiXmlElement* RootElement() { + return FirstChildElement(); + } + + /** If an error occurs, Error will be set to true. Also, + - The ErrorId() will contain the integer identifier of the error (not generally useful) + - The ErrorDesc() method will return the name of the error. (very useful) + - The ErrorRow() and ErrorCol() will return the location of the error (if known) + */ + bool Error() const { + return error; + } + + /// Contains a textual (english) description of the error if one occurs. + const char * ErrorDesc() const { + return errorDesc.c_str (); + } + + /** Generally, you probably want the error string ( ErrorDesc() ). But if you + prefer the ErrorId, this function will fetch it. + */ + int ErrorId() const { + return errorId; + } + + /** Returns the location (if known) of the error. The first column is column 1, + and the first row is row 1. A value of 0 means the row and column wasn't applicable + (memory errors, for example, have no row/column) or the parser lost the error. (An + error in the error reporting, in that case.) + + @sa SetTabSize, Row, Column + */ + int ErrorRow() const { + return errorLocation.row+1; + } + int ErrorCol() const { + return errorLocation.col+1; ///< The column where the error occured. See ErrorRow() + } + + /** SetTabSize() allows the error reporting functions (ErrorRow() and ErrorCol()) + to report the correct values for row and column. It does not change the output + or input in any way. + + By calling this method, with a tab size + greater than 0, the row and column of each node and attribute is stored + when the file is loaded. Very useful for tracking the DOM back in to + the source file. + + The tab size is required for calculating the location of nodes. If not + set, the default of 4 is used. The tabsize is set per document. Setting + the tabsize to 0 disables row/column tracking. + + Note that row and column tracking is not supported when using operator>>. + + The tab size needs to be enabled before the parse or load. Correct usage: + @verbatim + TiXmlDocument doc; + doc.SetTabSize( 8 ); + doc.Load( "myfile.xml" ); + @endverbatim + + @sa Row, Column + */ + void SetTabSize( int _tabsize ) { + tabsize = _tabsize; + } + + int TabSize() const { + return tabsize; + } + + /** If you have handled the error, it can be reset with this call. The error + state is automatically cleared if you Parse a new XML block. + */ + void ClearError() { + error = false; + errorId = 0; + errorDesc = ""; + errorLocation.row = errorLocation.col = 0; + //errorLocation.last = 0; + } + + /** Write the document to standard out using formatted printing ("pretty print"). */ + void Print() const { + Print( stdout, 0 ); + } + + /* Write the document to a string using formatted printing ("pretty print"). This + will allocate a character array (new char[]) and return it as a pointer. The + calling code pust call delete[] on the return char* to avoid a memory leak. + */ + //char* PrintToMemory() const; + + /// Print this Document to a FILE stream. + virtual void Print( FILE* cfile, int depth = 0 ) const; + // [internal use] + void SetError( int err, const char* errorLocation, TiXmlParsingData* prevData, TiXmlEncoding encoding ); + + virtual const TiXmlDocument* ToDocument() const { + return this; ///< Cast to a more defined type. Will return null not of the requested type. + } + virtual TiXmlDocument* ToDocument() { + return this; ///< Cast to a more defined type. Will return null not of the requested type. + } + + /** Walk the XML tree visiting this node and all of its children. + */ + virtual bool Accept( TiXmlVisitor* content ) const; + +protected : + // [internal use] + virtual TiXmlNode* Clone() const; +#ifdef TIXML_USE_STL + virtual void StreamIn( std::istream * in, TIXML_STRING * tag ); +#endif + +private: + void CopyTo( TiXmlDocument* target ) const; + + bool error; + int errorId; + TIXML_STRING errorDesc; + int tabsize; + TiXmlCursor errorLocation; + bool useMicrosoftBOM; // the UTF-8 BOM were found when read. Note this, and try to write. +}; + + +/** + A TiXmlHandle is a class that wraps a node pointer with null checks; this is + an incredibly useful thing. Note that TiXmlHandle is not part of the TinyXml + DOM structure. It is a separate utility class. + + Take an example: + @verbatim + + + + + + + @endverbatim + + Assuming you want the value of "attributeB" in the 2nd "Child" element, it's very + easy to write a *lot* of code that looks like: + + @verbatim + TiXmlElement* root = document.FirstChildElement( "Document" ); + if ( root ) + { + TiXmlElement* element = root->FirstChildElement( "Element" ); + if ( element ) + { + TiXmlElement* child = element->FirstChildElement( "Child" ); + if ( child ) + { + TiXmlElement* child2 = child->NextSiblingElement( "Child" ); + if ( child2 ) + { + // Finally do something useful. + @endverbatim + + And that doesn't even cover "else" cases. TiXmlHandle addresses the verbosity + of such code. A TiXmlHandle checks for null pointers so it is perfectly safe + and correct to use: + + @verbatim + TiXmlHandle docHandle( &document ); + TiXmlElement* child2 = docHandle.FirstChild( "Document" ).FirstChild( "Element" ).Child( "Child", 1 ).ToElement(); + if ( child2 ) + { + // do something useful + @endverbatim + + Which is MUCH more concise and useful. + + It is also safe to copy handles - internally they are nothing more than node pointers. + @verbatim + TiXmlHandle handleCopy = handle; + @endverbatim + + What they should not be used for is iteration: + + @verbatim + int i=0; + while ( true ) + { + TiXmlElement* child = docHandle.FirstChild( "Document" ).FirstChild( "Element" ).Child( "Child", i ).ToElement(); + if ( !child ) + break; + // do something + ++i; + } + @endverbatim + + It seems reasonable, but it is in fact two embedded while loops. The Child method is + a linear walk to find the element, so this code would iterate much more than it needs + to. Instead, prefer: + + @verbatim + TiXmlElement* child = docHandle.FirstChild( "Document" ).FirstChild( "Element" ).FirstChild( "Child" ).ToElement(); + + for( child; child; child=child->NextSiblingElement() ) + { + // do something + } + @endverbatim +*/ +class TiXmlHandle +{ +public: + /// Create a handle from any node (at any depth of the tree.) This can be a null pointer. + TiXmlHandle( TiXmlNode* _node ) { + this->node = _node; + } + /// Copy constructor + TiXmlHandle( const TiXmlHandle& ref ) { + this->node = ref.node; + } + TiXmlHandle operator=( const TiXmlHandle& ref ) { + this->node = ref.node; + return *this; + } + + /// Return a handle to the first child node. + TiXmlHandle FirstChild() const; + /// Return a handle to the first child node with the given name. + TiXmlHandle FirstChild( const char * value ) const; + /// Return a handle to the first child element. + TiXmlHandle FirstChildElement() const; + /// Return a handle to the first child element with the given name. + TiXmlHandle FirstChildElement( const char * value ) const; + + /** Return a handle to the "index" child with the given name. + The first child is 0, the second 1, etc. + */ + TiXmlHandle Child( const char* value, int index ) const; + /** Return a handle to the "index" child. + The first child is 0, the second 1, etc. + */ + TiXmlHandle Child( int index ) const; + /** Return a handle to the "index" child element with the given name. + The first child element is 0, the second 1, etc. Note that only TiXmlElements + are indexed: other types are not counted. + */ + TiXmlHandle ChildElement( const char* value, int index ) const; + /** Return a handle to the "index" child element. + The first child element is 0, the second 1, etc. Note that only TiXmlElements + are indexed: other types are not counted. + */ + TiXmlHandle ChildElement( int index ) const; + +#ifdef TIXML_USE_STL + TiXmlHandle FirstChild( const std::string& _value ) const { + return FirstChild( _value.c_str() ); + } + TiXmlHandle FirstChildElement( const std::string& _value ) const { + return FirstChildElement( _value.c_str() ); + } + + TiXmlHandle Child( const std::string& _value, int index ) const { + return Child( _value.c_str(), index ); + } + TiXmlHandle ChildElement( const std::string& _value, int index ) const { + return ChildElement( _value.c_str(), index ); + } +#endif + + /** Return the handle as a TiXmlNode. This may return null. + */ + TiXmlNode* ToNode() const { + return node; + } + /** Return the handle as a TiXmlElement. This may return null. + */ + TiXmlElement* ToElement() const { + return ( ( node && node->ToElement() ) ? node->ToElement() : 0 ); + } + /** Return the handle as a TiXmlText. This may return null. + */ + TiXmlText* ToText() const { + return ( ( node && node->ToText() ) ? node->ToText() : 0 ); + } + /** Return the handle as a TiXmlUnknown. This may return null. + */ + TiXmlUnknown* ToUnknown() const { + return ( ( node && node->ToUnknown() ) ? node->ToUnknown() : 0 ); + } + + /** @deprecated use ToNode. + Return the handle as a TiXmlNode. This may return null. + */ + TiXmlNode* Node() const { + return ToNode(); + } + /** @deprecated use ToElement. + Return the handle as a TiXmlElement. This may return null. + */ + TiXmlElement* Element() const { + return ToElement(); + } + /** @deprecated use ToText() + Return the handle as a TiXmlText. This may return null. + */ + TiXmlText* Text() const { + return ToText(); + } + /** @deprecated use ToUnknown() + Return the handle as a TiXmlUnknown. This may return null. + */ + TiXmlUnknown* Unknown() const { + return ToUnknown(); + } + +private: + TiXmlNode* node; +}; + + +/** Print to memory functionality. The TiXmlPrinter is useful when you need to: + + -# Print to memory (especially in non-STL mode) + -# Control formatting (line endings, etc.) + + When constructed, the TiXmlPrinter is in its default "pretty printing" mode. + Before calling Accept() you can call methods to control the printing + of the XML document. After TiXmlNode::Accept() is called, the printed document can + be accessed via the CStr(), Str(), and Size() methods. + + TiXmlPrinter uses the Visitor API. + @verbatim + TiXmlPrinter printer; + printer.SetIndent( "\t" ); + + doc.Accept( &printer ); + fprintf( stdout, "%s", printer.CStr() ); + @endverbatim +*/ +class TiXmlPrinter : public TiXmlVisitor +{ +public: + TiXmlPrinter() : depth( 0 ), simpleTextPrint( false ), + buffer(), indent( " " ), lineBreak( "\n" ) {} + + virtual bool VisitEnter( const TiXmlDocument& doc ); + virtual bool VisitExit( const TiXmlDocument& doc ); + + virtual bool VisitEnter( const TiXmlElement& element, const TiXmlAttribute* firstAttribute ); + virtual bool VisitExit( const TiXmlElement& element ); + + virtual bool Visit( const TiXmlDeclaration& declaration ); + virtual bool Visit( const TiXmlText& text ); + virtual bool Visit( const TiXmlComment& comment ); + virtual bool Visit( const TiXmlUnknown& unknown ); + + /** Set the indent characters for printing. By default 4 spaces + but tab (\t) is also useful, or null/empty string for no indentation. + */ + void SetIndent( const char* _indent ) { + indent = _indent ? _indent : "" ; + } + /// Query the indention string. + const char* Indent() { + return indent.c_str(); + } + /** Set the line breaking string. By default set to newline (\n). + Some operating systems prefer other characters, or can be + set to the null/empty string for no indenation. + */ + void SetLineBreak( const char* _lineBreak ) { + lineBreak = _lineBreak ? _lineBreak : ""; + } + /// Query the current line breaking string. + const char* LineBreak() { + return lineBreak.c_str(); + } + + /** Switch over to "stream printing" which is the most dense formatting without + linebreaks. Common when the XML is needed for network transmission. + */ + void SetStreamPrinting() { + indent = ""; + lineBreak = ""; + } + /// Return the result. + const char* CStr() { + return buffer.c_str(); + } + /// Return the length of the result string. + size_t Size() { + return buffer.size(); + } + +#ifdef TIXML_USE_STL + /// Return the result. + const std::string& Str() { + return buffer; + } +#endif + +private: + void DoIndent() { + for( int i=0; i +#include + +#include "tinyxml.h" + +//#define DEBUG_PARSER +#if defined( DEBUG_PARSER ) +# if defined( DEBUG ) && defined( _MSC_VER ) +# include +# define TIXML_LOG OutputDebugString +# else +# define TIXML_LOG printf +# endif +#endif + +// Note tha "PutString" hardcodes the same list. This +// is less flexible than it appears. Changing the entries +// or order will break putstring. +TiXmlBase::Entity TiXmlBase::entity[ NUM_ENTITY ] = { + { "&", 5, '&' }, + { "<", 4, '<' }, + { ">", 4, '>' }, + { """, 6, '\"' }, + { "'", 6, '\'' } +}; + +// Bunch of unicode info at: +// http://www.unicode.org/faq/utf_bom.html +// Including the basic of this table, which determines the #bytes in the +// sequence from the lead byte. 1 placed for invalid sequences -- +// although the result will be junk, pass it through as much as possible. +// Beware of the non-characters in UTF-8: +// ef bb bf (Microsoft "lead bytes") +// ef bf be +// ef bf bf + +const unsigned char TIXML_UTF_LEAD_0 = 0xefU; +const unsigned char TIXML_UTF_LEAD_1 = 0xbbU; +const unsigned char TIXML_UTF_LEAD_2 = 0xbfU; + +const int TiXmlBase::utf8ByteTable[256] = { + // 0 1 2 3 4 5 6 7 8 9 a b c d e f + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 0x00 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 0x10 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 0x20 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 0x30 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 0x40 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 0x50 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 0x60 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 0x70 End of ASCII range + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 0x80 0x80 to 0xc1 invalid + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 0x90 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 0xa0 + 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, // 0xb0 + 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, // 0xc0 0xc2 to 0xdf 2 byte + 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, // 0xd0 + 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, // 0xe0 0xe0 to 0xef 3 byte + 4, 4, 4, 4, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 // 0xf0 0xf0 to 0xf4 4 byte, 0xf5 and higher invalid +}; + + +void TiXmlBase::ConvertUTF32ToUTF8( unsigned long input, char* output, int* length ) +{ + const unsigned long BYTE_MASK = 0xBF; + const unsigned long BYTE_MARK = 0x80; + const unsigned long FIRST_BYTE_MARK[7] = { 0x00, 0x00, 0xC0, 0xE0, 0xF0, 0xF8, 0xFC }; + + if (input < 0x80) + *length = 1; + else if ( input < 0x800 ) + *length = 2; + else if ( input < 0x10000 ) + *length = 3; + else if ( input < 0x200000 ) + *length = 4; + else { + *length = 0; // This code won't covert this correctly anyway. + return; + } + + output += *length; + + // Scary scary fall throughs. + switch (*length) { + case 4: + --output; + *output = (char)((input | BYTE_MARK) & BYTE_MASK); + input >>= 6; + case 3: + --output; + *output = (char)((input | BYTE_MARK) & BYTE_MASK); + input >>= 6; + case 2: + --output; + *output = (char)((input | BYTE_MARK) & BYTE_MASK); + input >>= 6; + case 1: + --output; + *output = (char)(input | FIRST_BYTE_MARK[*length]); + } +} + + +/*static*/ int TiXmlBase::IsAlpha( unsigned char anyByte, TiXmlEncoding /*encoding*/ ) +{ + // This will only work for low-ascii, everything else is assumed to be a valid + // letter. I'm not sure this is the best approach, but it is quite tricky trying + // to figure out alhabetical vs. not across encoding. So take a very + // conservative approach. + +// if ( encoding == TIXML_ENCODING_UTF8 ) +// { + if ( anyByte < 127 ) + return isalpha( anyByte ); + else + return 1; // What else to do? The unicode set is huge...get the english ones right. +// } +// else +// { +// return isalpha( anyByte ); +// } +} + + +/*static*/ int TiXmlBase::IsAlphaNum( unsigned char anyByte, TiXmlEncoding /*encoding*/ ) +{ + // This will only work for low-ascii, everything else is assumed to be a valid + // letter. I'm not sure this is the best approach, but it is quite tricky trying + // to figure out alhabetical vs. not across encoding. So take a very + // conservative approach. + +// if ( encoding == TIXML_ENCODING_UTF8 ) +// { + if ( anyByte < 127 ) + return isalnum( anyByte ); + else + return 1; // What else to do? The unicode set is huge...get the english ones right. +// } +// else +// { +// return isalnum( anyByte ); +// } +} + + +class TiXmlParsingData +{ + friend class TiXmlDocument; +public: + void Stamp( const char* now, TiXmlEncoding encoding ); + + const TiXmlCursor& Cursor() { + return cursor; + } + +private: + // Only used by the document! + TiXmlParsingData( const char* start, int _tabsize, int row, int col ) { + assert( start ); + stamp = start; + tabsize = _tabsize; + cursor.row = row; + cursor.col = col; + } + + TiXmlCursor cursor; + const char* stamp; + int tabsize; +}; + + +void TiXmlParsingData::Stamp( const char* now, TiXmlEncoding encoding ) +{ + assert( now ); + + // Do nothing if the tabsize is 0. + if ( tabsize < 1 ) { + return; + } + + // Get the current row, column. + int row = cursor.row; + int col = cursor.col; + const char* p = stamp; + assert( p ); + + while ( p < now ) { + // Treat p as unsigned, so we have a happy compiler. + const unsigned char* pU = (const unsigned char*)p; + + // Code contributed by Fletcher Dunn: (modified by lee) + switch (*pU) { + case 0: + // We *should* never get here, but in case we do, don't + // advance past the terminating null character, ever + return; + + case '\r': + // bump down to the next line + ++row; + col = 0; + // Eat the character + ++p; + + // Check for \r\n sequence, and treat this as a single character + if (*p == '\n') { + ++p; + } + break; + + case '\n': + // bump down to the next line + ++row; + col = 0; + + // Eat the character + ++p; + + // Check for \n\r sequence, and treat this as a single + // character. (Yes, this bizarre thing does occur still + // on some arcane platforms...) + if (*p == '\r') { + ++p; + } + break; + + case '\t': + // Eat the character + ++p; + + // Skip to next tab stop + col = (col / tabsize + 1) * tabsize; + break; + + case TIXML_UTF_LEAD_0: + if ( encoding == TIXML_ENCODING_UTF8 ) { + if ( *(p+1) && *(p+2) ) { + // In these cases, don't advance the column. These are + // 0-width spaces. + if ( *(pU+1)==TIXML_UTF_LEAD_1 && *(pU+2)==TIXML_UTF_LEAD_2 ) + p += 3; + else if ( *(pU+1)==0xbfU && *(pU+2)==0xbeU ) + p += 3; + else if ( *(pU+1)==0xbfU && *(pU+2)==0xbfU ) + p += 3; + else { + p +=3; // A normal character. + ++col; + } + } + } else { + ++p; + ++col; + } + break; + + default: + if ( encoding == TIXML_ENCODING_UTF8 ) { + // Eat the 1 to 4 byte utf8 character. + int step = TiXmlBase::utf8ByteTable[*((const unsigned char*)p)]; + if ( step == 0 ) + step = 1; // Error case from bad encoding, but handle gracefully. + p += step; + + // Just advance one column, of course. + ++col; + } else { + ++p; + ++col; + } + break; + } + } + cursor.row = row; + cursor.col = col; + assert( cursor.row >= -1 ); + assert( cursor.col >= -1 ); + stamp = p; + assert( stamp ); +} + + +const char* TiXmlBase::SkipWhiteSpace( const char* p, TiXmlEncoding encoding ) +{ + if ( !p || !*p ) { + return 0; + } + if ( encoding == TIXML_ENCODING_UTF8 ) { + while ( *p ) { + const unsigned char* pU = (const unsigned char*)p; + + // Skip the stupid Microsoft UTF-8 Byte order marks + if ( *(pU+0)==TIXML_UTF_LEAD_0 + && *(pU+1)==TIXML_UTF_LEAD_1 + && *(pU+2)==TIXML_UTF_LEAD_2 ) { + p += 3; + continue; + } else if(*(pU+0)==TIXML_UTF_LEAD_0 + && *(pU+1)==0xbfU + && *(pU+2)==0xbeU ) { + p += 3; + continue; + } else if(*(pU+0)==TIXML_UTF_LEAD_0 + && *(pU+1)==0xbfU + && *(pU+2)==0xbfU ) { + p += 3; + continue; + } + + if ( IsWhiteSpace( *p ) ) // Still using old rules for white space. + ++p; + else + break; + } + } else { + while ( *p && IsWhiteSpace( *p ) ) + ++p; + } + + return p; +} + +#ifdef TIXML_USE_STL +/*static*/ bool TiXmlBase::StreamWhiteSpace( std::istream * in, TIXML_STRING * tag ) +{ + for( ;; ) { + if ( !in->good() ) return false; + + int c = in->peek(); + // At this scope, we can't get to a document. So fail silently. + if ( !IsWhiteSpace( c ) || c <= 0 ) + return true; + + *tag += (char) in->get(); + } +} + +/*static*/ bool TiXmlBase::StreamTo( std::istream * in, int character, TIXML_STRING * tag ) +{ + //assert( character > 0 && character < 128 ); // else it won't work in utf-8 + while ( in->good() ) { + int c = in->peek(); + if ( c == character ) + return true; + if ( c <= 0 ) // Silent failure: can't get document at this scope + return false; + + in->get(); + *tag += (char) c; + } + return false; +} +#endif + +// One of TinyXML's more performance demanding functions. Try to keep the memory overhead down. The +// "assign" optimization removes over 10% of the execution time. +// +const char* TiXmlBase::ReadName( const char* p, TIXML_STRING * name, TiXmlEncoding encoding ) +{ + // Oddly, not supported on some comilers, + //name->clear(); + // So use this: + *name = ""; + assert( p ); + + // Names start with letters or underscores. + // Of course, in unicode, tinyxml has no idea what a letter *is*. The + // algorithm is generous. + // + // After that, they can be letters, underscores, numbers, + // hyphens, or colons. (Colons are valid ony for namespaces, + // but tinyxml can't tell namespaces from names.) + if ( p && *p + && ( IsAlpha( (unsigned char) *p, encoding ) || *p == '_' ) ) { + const char* start = p; + while( p && *p + && ( IsAlphaNum( (unsigned char ) *p, encoding ) + || *p == '_' + || *p == '-' + || *p == '.' + || *p == ':' ) ) { + //(*name) += *p; // expensive + ++p; + } + if ( p-start > 0 ) { + name->assign( start, p-start ); + } + return p; + } + return 0; +} + +const char* TiXmlBase::GetEntity( const char* p, char* value, int* length, TiXmlEncoding encoding ) +{ + // Presume an entity, and pull it out. + TIXML_STRING ent; + int i; + *length = 0; + + if ( *(p+1) && *(p+1) == '#' && *(p+2) ) { + unsigned long ucs = 0; + ptrdiff_t delta = 0; + unsigned mult = 1; + + if ( *(p+2) == 'x' ) { + // Hexadecimal. + if ( !*(p+3) ) return 0; + + const char* q = p+3; + q = strchr( q, ';' ); + + if ( !q || !*q ) return 0; + + delta = q-p; + --q; + + while ( *q != 'x' ) { + if ( *q >= '0' && *q <= '9' ) + ucs += mult * (*q - '0'); + else if ( *q >= 'a' && *q <= 'f' ) + ucs += mult * (*q - 'a' + 10); + else if ( *q >= 'A' && *q <= 'F' ) + ucs += mult * (*q - 'A' + 10 ); + else + return 0; + mult *= 16; + --q; + } + } else { + // Decimal. + if ( !*(p+2) ) return 0; + + const char* q = p+2; + q = strchr( q, ';' ); + + if ( !q || !*q ) return 0; + + delta = q-p; + --q; + + while ( *q != '#' ) { + if ( *q >= '0' && *q <= '9' ) + ucs += mult * (*q - '0'); + else + return 0; + mult *= 10; + --q; + } + } + if ( encoding == TIXML_ENCODING_UTF8 ) { + // convert the UCS to UTF-8 + ConvertUTF32ToUTF8( ucs, value, length ); + } else { + *value = (char)ucs; + *length = 1; + } + return p + delta + 1; + } + + // Now try to match it. + for( i=0; iappend( cArr, len ); + } + } else { + bool whitespace = false; + + // Remove leading white space: + p = SkipWhiteSpace( p, encoding ); + while ( p && *p + && !StringEqual( p, endTag, caseInsensitive, encoding ) ) { + if ( *p == '\r' || *p == '\n' ) { + whitespace = true; + ++p; + } else if ( IsWhiteSpace( *p ) ) { + whitespace = true; + ++p; + } else { + // If we've found whitespace, add it before the + // new character. Any whitespace just becomes a space. + if ( whitespace ) { + (*text) += ' '; + whitespace = false; + } + int len; + char cArr[4] = { 0, 0, 0, 0 }; + p = GetChar( p, cArr, &len, encoding ); + if ( len == 1 ) + (*text) += cArr[0]; // more efficient + else + text->append( cArr, len ); + } + } + } + if ( p && *p ) + p += strlen( endTag ); + return p; +} + +#ifdef TIXML_USE_STL + +void TiXmlDocument::StreamIn( std::istream * in, TIXML_STRING * tag ) +{ + // The basic issue with a document is that we don't know what we're + // streaming. Read something presumed to be a tag (and hope), then + // identify it, and call the appropriate stream method on the tag. + // + // This "pre-streaming" will never read the closing ">" so the + // sub-tag can orient itself. + + if ( !StreamTo( in, '<', tag ) ) { + SetError( TIXML_ERROR_PARSING_EMPTY, 0, 0, TIXML_ENCODING_UNKNOWN ); + return; + } + + while ( in->good() ) { + int tagIndex = (int) tag->length(); + while ( in->good() && in->peek() != '>' ) { + int c = in->get(); + if ( c <= 0 ) { + SetError( TIXML_ERROR_EMBEDDED_NULL, 0, 0, TIXML_ENCODING_UNKNOWN ); + break; + } + (*tag) += (char) c; + } + + if ( in->good() ) { + // We now have something we presume to be a node of + // some sort. Identify it, and call the node to + // continue streaming. + TiXmlNode* node = Identify( tag->c_str() + tagIndex, TIXML_DEFAULT_ENCODING ); + + if ( node ) { + node->StreamIn( in, tag ); + bool isElement = node->ToElement() != 0; + delete node; + node = 0; + + // If this is the root element, we're done. Parsing will be + // done by the >> operator. + if ( isElement ) { + return; + } + } else { + SetError( TIXML_ERROR, 0, 0, TIXML_ENCODING_UNKNOWN ); + return; + } + } + } + // We should have returned sooner. + SetError( TIXML_ERROR, 0, 0, TIXML_ENCODING_UNKNOWN ); +} + +#endif + +const char* TiXmlDocument::Parse( const char* p, TiXmlParsingData* prevData, TiXmlEncoding encoding ) +{ + ClearError(); + + // Parse away, at the document level. Since a document + // contains nothing but other tags, most of what happens + // here is skipping white space. + if ( !p || !*p ) { + SetError( TIXML_ERROR_DOCUMENT_EMPTY, 0, 0, TIXML_ENCODING_UNKNOWN ); + return 0; + } + + // Note that, for a document, this needs to come + // before the while space skip, so that parsing + // starts from the pointer we are given. + location.Clear(); + if ( prevData ) { + location.row = prevData->cursor.row; + location.col = prevData->cursor.col; + } else { + location.row = 0; + location.col = 0; + } + TiXmlParsingData data( p, TabSize(), location.row, location.col ); + location = data.Cursor(); + + if ( encoding == TIXML_ENCODING_UNKNOWN ) { + // Check for the Microsoft UTF-8 lead bytes. + const unsigned char* pU = (const unsigned char*)p; + if ( *(pU+0) && *(pU+0) == TIXML_UTF_LEAD_0 + && *(pU+1) && *(pU+1) == TIXML_UTF_LEAD_1 + && *(pU+2) && *(pU+2) == TIXML_UTF_LEAD_2 ) { + encoding = TIXML_ENCODING_UTF8; + useMicrosoftBOM = true; + } + } + + p = SkipWhiteSpace( p, encoding ); + if ( !p ) { + SetError( TIXML_ERROR_DOCUMENT_EMPTY, 0, 0, TIXML_ENCODING_UNKNOWN ); + return 0; + } + + while ( p && *p ) { + TiXmlNode* node = Identify( p, encoding ); + if ( node ) { + p = node->Parse( p, &data, encoding ); + LinkEndChild( node ); + } else { + break; + } + + // Did we get encoding info? + if ( encoding == TIXML_ENCODING_UNKNOWN + && node->ToDeclaration() ) { + TiXmlDeclaration* dec = node->ToDeclaration(); + const char* enc = dec->Encoding(); + assert( enc ); + + if ( *enc == 0 ) + encoding = TIXML_ENCODING_UTF8; + else if ( StringEqual( enc, "UTF-8", true, TIXML_ENCODING_UNKNOWN ) ) + encoding = TIXML_ENCODING_UTF8; + else if ( StringEqual( enc, "UTF8", true, TIXML_ENCODING_UNKNOWN ) ) + encoding = TIXML_ENCODING_UTF8; // incorrect, but be nice + else + encoding = TIXML_ENCODING_LEGACY; + } + + p = SkipWhiteSpace( p, encoding ); + } + + // Was this empty? + if ( !firstChild ) { + SetError( TIXML_ERROR_DOCUMENT_EMPTY, 0, 0, encoding ); + return 0; + } + + // All is well. + return p; +} + +void TiXmlDocument::SetError( int err, const char* pError, TiXmlParsingData* data, TiXmlEncoding encoding ) +{ + // The first error in a chain is more accurate - don't set again! + if ( error ) + return; + + assert( err > 0 && err < TIXML_ERROR_STRING_COUNT ); + error = true; + errorId = err; + errorDesc = errorString[ errorId ]; + + errorLocation.Clear(); + if ( pError && data ) { + data->Stamp( pError, encoding ); + errorLocation = data->Cursor(); + } +} + + +TiXmlNode* TiXmlNode::Identify( const char* p, TiXmlEncoding encoding ) +{ + TiXmlNode* returnNode = 0; + + p = SkipWhiteSpace( p, encoding ); + if( !p || !*p || *p != '<' ) { + return 0; + } + + p = SkipWhiteSpace( p, encoding ); + + if ( !p || !*p ) { + return 0; + } + + // What is this thing? + // - Elements start with a letter or underscore, but xml is reserved. + // - Comments: "; + + if ( !StringEqual( p, startTag, false, encoding ) ) { + document->SetError( TIXML_ERROR_PARSING_COMMENT, p, data, encoding ); + return 0; + } + p += strlen( startTag ); + + // [ 1475201 ] TinyXML parses entities in comments + // Oops - ReadText doesn't work, because we don't want to parse the entities. + // p = ReadText( p, &value, false, endTag, false, encoding ); + // + // from the XML spec: + /* + [Definition: Comments may appear anywhere in a document outside other markup; in addition, + they may appear within the document type declaration at places allowed by the grammar. + They are not part of the document's character data; an XML processor MAY, but need not, + make it possible for an application to retrieve the text of comments. For compatibility, + the string "--" (double-hyphen) MUST NOT occur within comments.] Parameter entity + references MUST NOT be recognized within comments. + + An example of a comment: + + + */ + + value = ""; + // Keep all the white space. + while ( p && *p && !StringEqual( p, endTag, false, encoding ) ) { + value.append( p, 1 ); + ++p; + } + if ( p && *p ) + p += strlen( endTag ); + + return p; +} + + +const char* TiXmlAttribute::Parse( const char* p, TiXmlParsingData* data, TiXmlEncoding encoding ) +{ + p = SkipWhiteSpace( p, encoding ); + if ( !p || !*p ) return 0; + + if ( data ) { + data->Stamp( p, encoding ); + location = data->Cursor(); + } + // Read the name, the '=' and the value. + const char* pErr = p; + p = ReadName( p, &name, encoding ); + if ( !p || !*p ) { + if ( document ) document->SetError( TIXML_ERROR_READING_ATTRIBUTES, pErr, data, encoding ); + return 0; + } + p = SkipWhiteSpace( p, encoding ); + if ( !p || !*p || *p != '=' ) { + if ( document ) document->SetError( TIXML_ERROR_READING_ATTRIBUTES, p, data, encoding ); + return 0; + } + + ++p; // skip '=' + p = SkipWhiteSpace( p, encoding ); + if ( !p || !*p ) { + if ( document ) document->SetError( TIXML_ERROR_READING_ATTRIBUTES, p, data, encoding ); + return 0; + } + + const char* end; + const char SINGLE_QUOTE = '\''; + const char DOUBLE_QUOTE = '\"'; + + if ( *p == SINGLE_QUOTE ) { + ++p; + end = "\'"; // single quote in string + p = ReadText( p, &value, false, end, false, encoding ); + } else if ( *p == DOUBLE_QUOTE ) { + ++p; + end = "\""; // double quote in string + p = ReadText( p, &value, false, end, false, encoding ); + } else { + // All attribute values should be in single or double quotes. + // But this is such a common error that the parser will try + // its best, even without them. + value = ""; + while ( p && *p // existence + && !IsWhiteSpace( *p ) // whitespace + && *p != '/' && *p != '>' ) { // tag end + if ( *p == SINGLE_QUOTE || *p == DOUBLE_QUOTE ) { + // [ 1451649 ] Attribute values with trailing quotes not handled correctly + // We did not have an opening quote but seem to have a + // closing one. Give up and throw an error. + if ( document ) document->SetError( TIXML_ERROR_READING_ATTRIBUTES, p, data, encoding ); + return 0; + } + value += *p; + ++p; + } + } + return p; +} + +#ifdef TIXML_USE_STL +void TiXmlText::StreamIn( std::istream * in, TIXML_STRING * tag ) +{ + while ( in->good() ) { + int c = in->peek(); + if ( !cdata && (c == '<' ) ) { + return; + } + if ( c <= 0 ) { + TiXmlDocument* document = GetDocument(); + if ( document ) + document->SetError( TIXML_ERROR_EMBEDDED_NULL, 0, 0, TIXML_ENCODING_UNKNOWN ); + return; + } + + (*tag) += (char) c; + in->get(); // "commits" the peek made above + + if ( cdata && c == '>' && tag->size() >= 3 ) { + size_t len = tag->size(); + if ( (*tag)[len-2] == ']' && (*tag)[len-3] == ']' ) { + // terminator of cdata. + return; + } + } + } +} +#endif + +const char* TiXmlText::Parse( const char* p, TiXmlParsingData* data, TiXmlEncoding encoding ) +{ + value = ""; + TiXmlDocument* document = GetDocument(); + + if ( data ) { + data->Stamp( p, encoding ); + location = data->Cursor(); + } + + const char* const startTag = ""; + + if ( cdata || StringEqual( p, startTag, false, encoding ) ) { + cdata = true; + + if ( !StringEqual( p, startTag, false, encoding ) ) { + document->SetError( TIXML_ERROR_PARSING_CDATA, p, data, encoding ); + return 0; + } + p += strlen( startTag ); + + // Keep all the white space, ignore the encoding, etc. + while ( p && *p + && !StringEqual( p, endTag, false, encoding ) + ) { + value += *p; + ++p; + } + + TIXML_STRING dummy; + p = ReadText( p, &dummy, false, endTag, false, encoding ); + return p; + } else { + bool ignoreWhite = true; + + const char* end = "<"; + p = ReadText( p, &value, ignoreWhite, end, false, encoding ); + if ( p ) + return p-1; // don't truncate the '<' + return 0; + } +} + +#ifdef TIXML_USE_STL +void TiXmlDeclaration::StreamIn( std::istream * in, TIXML_STRING * tag ) +{ + while ( in->good() ) { + int c = in->get(); + if ( c <= 0 ) { + TiXmlDocument* document = GetDocument(); + if ( document ) + document->SetError( TIXML_ERROR_EMBEDDED_NULL, 0, 0, TIXML_ENCODING_UNKNOWN ); + return; + } + (*tag) += (char) c; + + if ( c == '>' ) { + // All is well. + return; + } + } +} +#endif + +const char* TiXmlDeclaration::Parse( const char* p, TiXmlParsingData* data, TiXmlEncoding _encoding ) +{ + p = SkipWhiteSpace( p, _encoding ); + // Find the beginning, find the end, and look for + // the stuff in-between. + TiXmlDocument* document = GetDocument(); + if ( !p || !*p || !StringEqual( p, "SetError( TIXML_ERROR_PARSING_DECLARATION, 0, 0, _encoding ); + return 0; + } + if ( data ) { + data->Stamp( p, _encoding ); + location = data->Cursor(); + } + p += 5; + + version = ""; + encoding = ""; + standalone = ""; + + while ( p && *p ) { + if ( *p == '>' ) { + ++p; + return p; + } + + p = SkipWhiteSpace( p, _encoding ); + if ( StringEqual( p, "version", true, _encoding ) ) { + TiXmlAttribute attrib; + p = attrib.Parse( p, data, _encoding ); + version = attrib.Value(); + } else if ( StringEqual( p, "encoding", true, _encoding ) ) { + TiXmlAttribute attrib; + p = attrib.Parse( p, data, _encoding ); + encoding = attrib.Value(); + } else if ( StringEqual( p, "standalone", true, _encoding ) ) { + TiXmlAttribute attrib; + p = attrib.Parse( p, data, _encoding ); + standalone = attrib.Value(); + } else { + // Read over whatever it is. + while( p && *p && *p != '>' && !IsWhiteSpace( *p ) ) + ++p; + } + } + return 0; +} + +bool TiXmlText::Blank() const +{ + for ( unsigned i=0; i