2011-05-26 13:59:21 +00:00
/***************************************************************
* 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 <wx/app.h>
2011-05-30 22:53:48 +00:00
# include <wx/icon.h>
2011-05-26 13:59:21 +00:00
# include <wx/msgdlg.h>
# include <wx/dirdlg.h>
# include <wx/progdlg.h>
2011-05-27 04:13:16 +00:00
# include <wx/bitmap.h>
# include <wx/log.h>
# include <wx/dcscreen.h>
2011-05-28 05:38:43 +00:00
# include <wx/dcmemory.h>
# include <wx/filedlg.h>
2011-05-30 11:59:20 +00:00
# include <wx/fs_mem.h>
2011-06-01 13:08:44 +00:00
# include <wx/aui/aui.h>
2011-05-30 11:59:20 +00:00
# include "SleepyHeadMain.h"
2011-05-26 13:59:21 +00:00
# include "sleeplib/profiles.h"
2011-05-31 02:18:41 +00:00
# include "sleeplib/machine_loader.h"
2011-05-26 13:59:21 +00:00
# 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 ;
}
2011-05-27 04:13:16 +00:00
2011-05-26 13:59:21 +00:00
SleepyHeadFrame : : SleepyHeadFrame ( wxFrame * frame )
: GUIFrame ( frame )
{
wxString title = wxTheApp - > GetAppName ( ) + wxT ( " v " ) + wxString ( AutoVersion : : FULLVERSION_STRING , wxConvUTF8 ) ;
SetTitle ( title ) ;
2011-05-28 13:02:39 +00:00
profile = Profiles : : Get ( ) ;
if ( ! profile ) {
wxLogError ( wxT ( " Couldn't get active profile " ) ) ;
abort ( ) ;
}
2011-05-30 11:59:20 +00:00
UpdateProfiles ( ) ;
if ( pref . Exists ( " ShowSerialNumbers " ) ) ViewMenuSerial - > Check ( pref [ " ShowSerialNumbers " ] ) ;
2011-05-28 13:02:39 +00:00
2011-05-30 11:59:20 +00:00
// wxDisableAsserts();
2011-05-26 13:59:21 +00:00
// Create AUINotebook Tabs
wxCommandEvent dummy ;
2011-05-28 09:16:46 +00:00
OnViewMenuSummary ( dummy ) ; // Summary Page
2011-05-30 11:59:20 +00:00
OnViewMenuDaily ( dummy ) ; // Daily Page
2011-05-27 04:13:16 +00:00
this - > Connect ( wxID_ANY , wxEVT_DO_SCREENSHOT , wxCommandEventHandler ( SleepyHeadFrame : : DoScreenshot ) ) ;
2011-05-28 13:02:39 +00:00
//this->Connect(wxID_ANY, wxEVT_MACHINE_SELECTED, wxCommandEventHandler(SleepyHeadFrame::OnMachineSelected));
2011-05-27 04:13:16 +00:00
//this->Connect(wxID_ANY, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(SleepyHeadFrame::DoScreenshot));
2011-05-26 13:59:21 +00:00
# if wxUSE_STATUSBAR
//statusBar->SetStatusText(_("Hello!"), 0);
statusBar - > SetStatusText ( wxbuildinfo ( long_f ) , 1 ) ;
# endif
}
SleepyHeadFrame : : ~ SleepyHeadFrame ( )
{
2011-05-31 02:18:41 +00:00
//delete summary;
//DestroyLoaders();
2011-05-26 13:59:21 +00:00
}
2011-05-30 11:59:20 +00:00
void SleepyHeadFrame : : UpdateProfiles ( )
2011-05-28 13:02:39 +00:00
{
2011-05-30 11:59:20 +00:00
// cpap_machines=profile->GetMachines(MT_CPAP);
wxMenuItemList z = ProfileMenu - > GetMenuItems ( ) ;
2011-05-28 13:02:39 +00:00
2011-05-30 11:59:20 +00:00
int i = ProfileMenuID ;
for ( unsigned int j = 0 ; j < z . size ( ) ; j + + ) {
2011-05-29 11:11:48 +00:00
wxMenuItem * mi = z [ j ] ;
2011-05-30 11:59:20 +00:00
this - > Disconnect ( i , wxEVT_COMMAND_MENU_SELECTED , wxCommandEventHandler ( SleepyHeadFrame : : OnProfileSelected ) ) ;
ProfileMenu - > Remove ( mi ) ;
2011-05-28 13:02:39 +00:00
i + + ;
}
2011-05-30 11:59:20 +00:00
i = ProfileMenuID ;
2011-05-28 13:02:39 +00:00
2011-06-02 04:42:37 +00:00
for ( map < wxString , Profile * > : : iterator p = Profiles : : profiles . begin ( ) ; p ! = Profiles : : profiles . end ( ) ; p + + ) {
2011-05-30 11:59:20 +00:00
Profile & pro = * ( Profiles : : profiles [ p - > first ] ) ;
wxMenuItem * item = ProfileMenu - > AppendRadioItem ( i , pro [ " Realname " ] , wxEmptyString ) ;
2011-05-28 13:02:39 +00:00
2011-05-30 11:59:20 +00:00
if ( p - > first = = pref [ " Profile " ] . GetString ( ) ) {
item - > Check ( true ) ;
}
2011-05-28 13:02:39 +00:00
2011-05-30 11:59:20 +00:00
this - > Connect ( i , wxEVT_COMMAND_MENU_SELECTED , wxCommandEventHandler ( SleepyHeadFrame : : OnProfileSelected ) ) ;
i + + ;
}
2011-05-28 13:02:39 +00:00
}
2011-05-26 13:59:21 +00:00
void SleepyHeadFrame : : OnClose ( wxCloseEvent & event )
{
2011-05-31 02:18:41 +00:00
int idx = main_auinotebook - > GetPageIndex ( daily ) ;
if ( idx ! = wxNOT_FOUND ) {
daily - > Close ( ) ;
}
idx = main_auinotebook - > GetPageIndex ( summary ) ;
if ( idx ! = wxNOT_FOUND ) {
summary - > Close ( ) ;
}
//delete summary
wxMenuItemList z = ProfileMenu - > GetMenuItems ( ) ;
int i = ProfileMenuID ;
for ( unsigned int j = 0 ; j < z . size ( ) ; j + + ) {
wxMenuItem * mi = z [ j ] ;
this - > Disconnect ( i , wxEVT_COMMAND_MENU_SELECTED , wxCommandEventHandler ( SleepyHeadFrame : : OnProfileSelected ) ) ;
ProfileMenu - > Remove ( mi ) ;
i + + ;
}
this - > Disconnect ( wxID_ANY , wxEVT_DO_SCREENSHOT , wxCommandEventHandler ( SleepyHeadFrame : : DoScreenshot ) ) ;
2011-05-26 13:59:21 +00:00
Destroy ( ) ;
}
void SleepyHeadFrame : : OnQuit ( wxCommandEvent & event )
{
Destroy ( ) ;
2011-05-27 04:13:16 +00:00
}
2011-05-28 05:38:43 +00:00
void SleepyHeadFrame : : OnFullscreen ( wxCommandEvent & event )
{
if ( ! IsFullScreen ( ) ) {
ShowFullScreen ( true , wxFULLSCREEN_NOBORDER | wxFULLSCREEN_NOCAPTION | wxFULLSCREEN_NOSTATUSBAR ) ;
} else {
ShowFullScreen ( false ) ;
}
}
2011-05-30 11:59:20 +00:00
void SleepyHeadFrame : : OnProfileSelected ( wxCommandEvent & event )
2011-05-28 13:02:39 +00:00
{
2011-05-30 11:59:20 +00:00
int id = event . GetId ( ) - ProfileMenuID ;
2011-05-29 11:11:48 +00:00
2011-05-30 11:59:20 +00:00
wxLogMessage ( wxT ( " Profile Selected: " ) + wxString : : Format ( wxT ( " %i " ) , id ) ) ;
/*Machine *m=cpap_machines[id];
2011-05-28 13:02:39 +00:00
if ( m ) {
pref [ wxT ( " DefaultMachine " ) ] = ( long ) id ;
}
int idx = main_auinotebook - > GetPageIndex ( daily ) ;
if ( idx ! = wxNOT_FOUND ) {
daily - > RefreshData ( m ) ;
2011-05-29 06:10:32 +00:00
daily - > Refresh ( ) ;
2011-05-28 13:02:39 +00:00
}
idx = main_auinotebook - > GetPageIndex ( summary ) ;
if ( idx ! = wxNOT_FOUND ) {
2011-05-30 11:59:20 +00:00
summary - > ResetProfile ( profile )
2011-05-29 06:10:32 +00:00
summary - > Refresh ( ) ;
2011-05-30 11:59:20 +00:00
} */
//event.Skip();
2011-05-29 06:10:32 +00:00
//Refresh();
2011-05-28 13:02:39 +00:00
}
2011-05-27 04:13:16 +00:00
void SleepyHeadFrame : : OnScreenshot ( wxCommandEvent & event )
{
2011-05-27 08:22:24 +00:00
ToolsMenu - > UpdateUI ( ) ;
//wxWindow::DoUpdateWindowUI();
wxWindow : : UpdateWindowUI ( ) ;
//Refresh(true); // Make sure the menu is closed.. (It pushes the Update event in front of the manual event we push next)
2011-05-30 11:59:20 +00:00
//Update(true);
2011-05-27 08:22:24 +00:00
2011-05-27 04:13:16 +00:00
wxCommandEvent MyEvent ( wxEVT_DO_SCREENSHOT ) ;
wxPostEvent ( this , MyEvent ) ;
}
2011-05-29 03:27:42 +00:00
void SleepyHeadFrame : : DoScreenshot ( wxCommandEvent & event )
{
wxRect r = GetRect ( ) ;
2011-05-30 11:59:20 +00:00
# if defined(__UNIX__) // Borrowed.. this need fixing.
2011-06-01 13:08:44 +00:00
/*int cx=r.x, cy=r.y;
2011-05-29 03:27:42 +00:00
ClientToScreen ( & cx , & cy ) ;
int border_width = cx - r . x ;
int title_bar_height = cy - r . y ;
r . width + = ( border_width * 2 ) ;
2011-06-01 13:08:44 +00:00
r . height + = title_bar_height + border_width ; */
2011-05-29 03:27:42 +00:00
# endif
wxScreenDC sdc ;
wxMemoryDC mdc ;
wxBitmap bmp ( r . width , r . height , - 1 ) ;
//wxBitMap *bmp=wxEmptyImage(r.width,r.height);
mdc . SelectObject ( bmp ) ;
mdc . Blit ( ( wxCoord ) 0 , ( wxCoord ) 0 , ( wxCoord ) r . width , ( wxCoord ) r . height , & sdc , ( wxCoord ) r . x , ( wxCoord ) r . y ) ;
mdc . SelectObject ( wxNullBitmap ) ;
wxDateTime d = wxDateTime : : Now ( ) ;
// wxDirDialog sfs(this,_("Choose a Directory")); //,wxT(""),wxT(""),style=wxFD_OPEN);
wxString filename = wxSaveFileSelector ( _ ( " Please give a filename for the screenshot " ) , wxT ( " png " ) , wxT ( " Sleepyhead- " ) + d . Format ( wxT ( " %Y%m%d-%H%M%S " ) ) , this ) ;
if ( ! filename . IsEmpty ( ) ) {
if ( ! filename . Lower ( ) . EndsWith ( wxT ( " .png " ) ) ) filename + = wxT ( " .png " ) ;
wxImage img = bmp . ConvertToImage ( ) ;
if ( ! img . SaveFile ( filename , wxBITMAP_TYPE_PNG ) ) {
wxLogError ( wxT ( " Couldn't save screenshot " ) + filename ) ;
}
}
}
2011-05-30 11:59:20 +00:00
void SleepyHeadFrame : : OnShowSerial ( wxCommandEvent & event )
{
pref [ " ShowSerialNumbers " ] = event . IsChecked ( ) ;
}
2011-05-26 13:59:21 +00:00
void SleepyHeadFrame : : OnAbout ( wxCommandEvent & event )
{
wxString msg = wxbuildinfo ( long_f ) ;
2011-06-01 13:08:44 +00:00
msg = wxTheApp - > GetAppName ( ) + wxT ( " v " ) + wxString ( AutoVersion : : FULLVERSION_STRING , wxConvUTF8 ) + wxT ( " \n Authors: Mark Watkins / Troy Schultz \n This is alpha software is guaranteed to break regularly! \n Use at your own risk. \n \n License: GPL " ) ; //,AutoVersion::DATE,AutoVersion::MONTH,AutoVersion::YEAR
2011-05-26 13:59:21 +00:00
wxMessageBox ( msg , _ ( " Welcome to... " ) , 0 , this ) ;
}
void SleepyHeadFrame : : OnImportSD ( wxCommandEvent & event )
{
wxDirDialog dd ( this , _ ( " Choose a Directory " ) ) ; //,wxT(""),wxT(""),style=wxFD_OPEN);
2011-05-28 13:02:39 +00:00
if ( dd . ShowModal ( ) ! = wxID_OK ) return ;
2011-05-31 02:18:41 +00:00
loader_progress = new wxProgressDialog ( wxT ( " SleepyHead " ) , wxT ( " Please Wait... " ) , 100 , this , wxPD_APP_MODAL | wxPD_AUTO_HIDE | wxPD_SMOOTH ) ;
loader_progress - > Hide ( ) ;
2011-05-28 13:02:39 +00:00
wxString path = dd . GetPath ( ) ;
loader_progress - > Update ( 0 ) ;
loader_progress - > Show ( ) ;
profile - > Import ( path ) ;
loader_progress - > Update ( 100 ) ;
loader_progress - > Show ( false ) ;
2011-05-31 02:18:41 +00:00
loader_progress - > Destroy ( ) ;
loader_progress = NULL ;
2011-05-28 13:02:39 +00:00
2011-05-26 13:59:21 +00:00
int idx = main_auinotebook - > GetPageIndex ( daily ) ;
if ( idx ! = wxNOT_FOUND ) {
2011-05-30 11:59:20 +00:00
daily - > ResetDate ( ) ;
daily - > RefreshData ( ) ;
2011-05-29 07:00:13 +00:00
daily - > Refresh ( ) ;
2011-05-26 13:59:21 +00:00
}
idx = main_auinotebook - > GetPageIndex ( summary ) ;
if ( idx ! = wxNOT_FOUND ) {
2011-05-30 11:59:20 +00:00
summary - > ResetProfile ( profile ) ; // resets the date ranges..
summary - > RefreshData ( ) ;
2011-05-29 07:00:13 +00:00
summary - > Refresh ( ) ;
2011-05-26 13:59:21 +00:00
}
2011-05-28 13:02:39 +00:00
2011-05-26 13:59:21 +00:00
}
void SleepyHeadFrame : : OnViewMenuDaily ( wxCommandEvent & event )
{
int idx = main_auinotebook - > GetPageIndex ( daily ) ;
2011-05-30 11:59:20 +00:00
unsigned int id ;
2011-05-26 13:59:21 +00:00
if ( idx = = wxNOT_FOUND ) {
2011-05-30 11:59:20 +00:00
daily = new Daily ( this , profile ) ;
2011-05-26 13:59:21 +00:00
main_auinotebook - > AddPage ( daily , _ ( " Daily " ) , true ) ;
2011-05-30 11:59:20 +00:00
daily - > RefreshData ( ) ;
2011-05-29 06:10:32 +00:00
daily - > Refresh ( ) ;
2011-05-26 13:59:21 +00:00
} else {
main_auinotebook - > SetSelection ( idx ) ;
}
2011-05-29 06:10:32 +00:00
2011-05-26 13:59:21 +00:00
}
void SleepyHeadFrame : : OnViewMenuSummary ( wxCommandEvent & event )
{
2011-05-29 06:10:32 +00:00
int id , idx = main_auinotebook - > GetPageIndex ( summary ) ;
2011-05-26 13:59:21 +00:00
if ( idx = = wxNOT_FOUND ) {
2011-05-30 11:59:20 +00:00
summary = new Summary ( this , profile ) ;
2011-05-26 13:59:21 +00:00
main_auinotebook - > AddPage ( summary , _ ( " Summary " ) , true ) ;
2011-05-30 11:59:20 +00:00
summary - > ResetProfile ( profile ) ;
summary - > RefreshData ( ) ;
2011-05-29 06:10:32 +00:00
summary - > Refresh ( ) ;
2011-05-26 13:59:21 +00:00
} else {
main_auinotebook - > SetSelection ( idx ) ;
}
}
2011-05-30 11:59:20 +00:00
Summary : : Summary ( wxWindow * win , Profile * _profile )
: SummaryPanel ( win ) , profile ( _profile )
2011-05-26 13:59:21 +00:00
{
2011-05-30 11:59:20 +00:00
AddData ( ahidata = new HistoryData ( profile ) ) ;
AddData ( pressure = new HistoryCodeData ( profile , CPAP_PressureAverage ) ) ;
2011-06-03 07:06:18 +00:00
AddData ( pressure_min = new HistoryCodeData ( profile , CPAP_PressureMin ) ) ;
AddData ( pressure_max = new HistoryCodeData ( profile , CPAP_PressureMax ) ) ;
2011-06-01 13:08:44 +00:00
2011-06-03 07:06:18 +00:00
AddData ( pressure_eap = new HistoryCodeData ( profile , BIPAP_EAPAverage ) ) ;
AddData ( pressure_iap = new HistoryCodeData ( profile , BIPAP_IAPAverage ) ) ;
2011-05-28 09:16:46 +00:00
2011-06-03 07:06:18 +00:00
// pressure->ForceMinY(3);
// pressure->ForceMaxY(12);
2011-05-30 11:59:20 +00:00
AddData ( leak = new HistoryCodeData ( profile , CPAP_LeakMedian ) ) ;
AddData ( usage = new UsageHistoryData ( profile , UHD_Hours ) ) ;
AddData ( waketime = new UsageHistoryData ( profile , UHD_Waketime ) ) ;
AddData ( bedtime = new UsageHistoryData ( profile , UHD_Bedtime ) ) ;
2011-05-28 09:16:46 +00:00
2011-06-03 07:06:18 +00:00
AHI = new gGraphWindow ( ScrolledWindow , - 1 , wxT ( " AHI " ) , wxPoint ( 0 , 0 ) , wxSize ( 400 , 180 ) , wxNO_BORDER ) ;
2011-05-31 04:28:11 +00:00
AHI - > SetMargins ( 10 , 15 , 65 , 80 ) ;
2011-05-26 13:59:21 +00:00
AHI - > AddLayer ( new gBarChart ( ahidata , wxRED ) ) ;
2011-05-30 22:53:48 +00:00
// AHI->AddLayer(new gXAxis(NULL,wxBLACK));
2011-05-28 09:16:46 +00:00
//AHI->AddLayer(new gLineChart(ahidata,wxRED));
2011-05-26 13:59:21 +00:00
fgSizer - > Add ( AHI , 1 , wxEXPAND ) ;
2011-06-03 07:06:18 +00:00
PRESSURE = new gGraphWindow ( ScrolledWindow , - 1 , wxT ( " Pressure " ) , wxPoint ( 0 , 0 ) , wxSize ( 400 , 180 ) , wxNO_BORDER ) ;
2011-05-31 04:28:11 +00:00
PRESSURE - > SetMargins ( 10 , 15 , 65 , 80 ) ;
2011-05-28 09:16:46 +00:00
//PRESSURE->AddLayer(new gBarChart(pressure,wxBLUE));
2011-06-01 13:08:44 +00:00
//PRESSURE->AddLayer(new gLineChart(pressure_eap,wxRED,6192,false,true));
//PRESSURE->AddLayer(new gLineChart(pressure_iap,wxBLUE,6192,false,true));
PRESSURE - > AddLayer ( new gYAxis ( wxBLACK ) ) ;
2011-05-31 04:50:06 +00:00
PRESSURE - > AddLayer ( new gXAxis ( wxBLACK ) ) ;
2011-06-03 07:06:18 +00:00
PRESSURE - > AddLayer ( prmax = new gLineChart ( pressure_max , wxBLUE , 6192 , false , true , true ) ) ;
PRESSURE - > AddLayer ( prmin = new gLineChart ( pressure_min , wxRED , 6192 , false , true , true ) ) ;
PRESSURE - > AddLayer ( eap = new gLineChart ( pressure_eap , wxBLUE , 6192 , false , true , true ) ) ;
PRESSURE - > AddLayer ( iap = new gLineChart ( pressure_iap , wxRED , 6192 , false , true , true ) ) ;
PRESSURE - > AddLayer ( pr = new gLineChart ( pressure , wxDARK_GREEN , 6192 , false , true , true ) ) ;
2011-05-30 22:53:48 +00:00
2011-05-26 13:59:21 +00:00
fgSizer - > Add ( PRESSURE , 1 , wxEXPAND ) ;
2011-06-03 07:06:18 +00:00
LEAK = new gGraphWindow ( ScrolledWindow , - 1 , wxT ( " Mask Leak " ) , wxPoint ( 0 , 0 ) , wxSize ( 400 , 180 ) , wxNO_BORDER ) ;
2011-05-31 04:28:11 +00:00
LEAK - > SetMargins ( 10 , 15 , 65 , 80 ) ;
2011-05-28 09:16:46 +00:00
//LEAK->AddLayer(new gBarChart(leak,wxYELLOW));
2011-05-31 04:50:06 +00:00
LEAK - > AddLayer ( new gXAxis ( wxBLACK ) ) ;
2011-06-01 13:08:44 +00:00
LEAK - > AddLayer ( new gLineChart ( leak , wxPURPLE , 6192 , false , false , true ) ) ;
2011-05-26 13:59:21 +00:00
fgSizer - > Add ( LEAK , 1 , wxEXPAND ) ;
2011-05-27 14:07:35 +00:00
2011-06-03 07:06:18 +00:00
USAGE = new gGraphWindow ( ScrolledWindow , - 1 , wxT ( " Usage (Hours) " ) , wxPoint ( 0 , 0 ) , wxSize ( 400 , 180 ) , wxNO_BORDER ) ;
2011-05-31 04:28:11 +00:00
USAGE - > SetMargins ( 10 , 15 , 65 , 80 ) ;
2011-05-27 14:07:35 +00:00
USAGE - > AddLayer ( new gBarChart ( usage , wxGREEN ) ) ;
2011-05-31 04:50:06 +00:00
//USAGE->AddLayer(new gXAxis(wxBLACK));
2011-05-30 22:53:48 +00:00
2011-05-28 09:16:46 +00:00
//USAGE->AddLayer(new gLineChart(usage,wxGREEN));
2011-05-27 14:07:35 +00:00
fgSizer - > Add ( USAGE , 1 , wxEXPAND ) ;
2011-05-30 11:59:20 +00:00
// Logo.LoadFile(wxT("./pic.png"));
//wxMemoryFSHandler::AddFile(_T("test.png"), Logo, wxBITMAP_TYPE_PNG);
2011-05-28 13:02:39 +00:00
// RefreshData();
2011-06-03 07:06:18 +00:00
dummyday = new Day ( NULL ) ;
2011-05-26 13:59:21 +00:00
}
Summary : : ~ Summary ( )
{
2011-06-03 07:06:18 +00:00
delete dummyday ;
2011-05-30 13:11:29 +00:00
// wxMemoryFSHandler::RemoveFile(_T("test.png"));
2011-05-26 13:59:21 +00:00
}
2011-05-30 11:59:20 +00:00
void Summary : : ResetProfile ( Profile * p )
{
profile = p ;
2011-06-01 15:35:20 +00:00
2011-05-30 11:59:20 +00:00
if ( profile - > FirstDay ( ) . IsValid ( ) ) {
2011-06-03 08:12:00 +00:00
wxDateTime last = profile - > LastDay ( ) + wxTimeSpan : : Day ( ) ;
wxDateTime first = profile - > FirstDay ( ) + wxTimeSpan : : Day ( ) ;
wxDateTime start = last - wxTimeSpan : : Days ( 30 ) ;
StartDatePicker - > SetRange ( first , last ) ;
EndDatePicker - > SetRange ( first , last ) ;
if ( start < first ) start = first ;
StartDatePicker - > SetValue ( start ) ;
EndDatePicker - > SetValue ( last ) ;
2011-06-02 04:42:37 +00:00
for ( list < HistoryData * > : : iterator h = Data . begin ( ) ; h ! = Data . end ( ) ; h + + ) {
2011-06-01 15:35:20 +00:00
( * h ) - > SetProfile ( p ) ;
( * h ) - > ResetDateRange ( ) ;
2011-06-03 08:12:00 +00:00
( * h ) - > Reload ( NULL ) ;
2011-06-01 15:35:20 +00:00
}
2011-05-30 11:59:20 +00:00
}
2011-06-01 15:35:20 +00:00
2011-05-30 11:59:20 +00:00
}
void Summary : : RefreshData ( )
2011-05-26 13:59:21 +00:00
{
2011-06-03 08:12:00 +00:00
wxDateTime first = StartDatePicker - > GetValue ( ) ;
wxDateTime last = EndDatePicker - > GetValue ( ) ;
2011-06-02 04:42:37 +00:00
for ( list < HistoryData * > : : iterator h = Data . begin ( ) ; h ! = Data . end ( ) ; h + + ) {
2011-06-03 08:12:00 +00:00
//(*h)->Update(dummyday);
( * h ) - > SetDateRange ( first , last ) ;
2011-05-27 14:07:35 +00:00
}
2011-05-26 13:59:21 +00:00
wxString submodel = _ ( " Unknown Model " ) ;
double ahi = ahidata - > GetAverage ( ) ;
double avp = pressure - > GetAverage ( ) ;
2011-06-01 13:08:44 +00:00
double apmin = pressure_min - > GetAverage ( ) ;
double apmax = pressure_max - > GetAverage ( ) ;
double aeap = pressure_eap - > GetAverage ( ) ;
double aiap = pressure_iap - > GetAverage ( ) ;
2011-05-27 14:07:35 +00:00
double bt = fmod ( bedtime - > GetAverage ( ) , 12.0 ) ;
double ua = usage - > GetAverage ( ) ;
2011-05-28 05:38:43 +00:00
double wt = waketime - > GetAverage ( ) ; //fmod(bt+ua,12.0);
2011-05-26 13:59:21 +00:00
2011-05-30 11:59:20 +00:00
wxString html = wxT ( " <html><body leftmargin=0 rightmargin=0 topmargin=0 marginwidth=0 marginheight=0> " ) ;
2011-05-26 13:59:21 +00:00
2011-05-30 11:59:20 +00:00
//html=html+wxT("<img src=\"memory:test.png\" width='180'>");
html = html + wxT ( " <table cellspacing=2 cellpadding=0> \n " ) ;
2011-06-03 08:12:00 +00:00
if ( avp > 0 ) {
2011-05-30 11:59:20 +00:00
html = html + wxT ( " <tr><td colspan=2 align=center><i> " ) + _ ( " Machine Information has been removed because this page has become machine agnostic. Not sure what to display here. " ) + wxT ( " </i></td></tr> \n " ) ;
/*if (machine->properties.find(wxT("SubModel"))!=machine->properties.end())
2011-05-26 13:59:21 +00:00
submodel = wxT ( " <br> \n " ) + machine - > properties [ wxT ( " SubModel " ) ] ;
html = html + wxT ( " <tr><td colspan=2 align=center><b> " ) + machine - > properties [ wxT ( " Brand " ) ] + wxT ( " </b> <br/> " ) + machine - > properties [ wxT ( " Model " ) ] + wxT ( " " ) + machine - > properties [ wxT ( " ModelNumber " ) ] + submodel + wxT ( " </td></tr> \n " ) ;
2011-05-30 11:59:20 +00:00
html = html + wxT ( " <tr><td colspan=2 align=center> " ) + _ ( " Firmware " ) + wxT ( " " ) + machine - > properties [ wxT ( " SoftwareVersion " ) ] + wxT ( " </td></tr> " ) ; */
2011-05-26 13:59:21 +00:00
html = html + wxT ( " <tr><td> </td><td> </td></tr> \n " ) ;
html = html + wxT ( " <tr><td colspan=2 align=left><i> " ) + _ ( " Indice Averages " ) + wxT ( " </i></td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " AHI " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %0.2f " ) , ahi ) + wxT ( " </td></tr> \n " ) ;
2011-06-01 13:08:44 +00:00
html = html + wxT ( " <tr><td><b> " ) + _ ( " Pressure Avg " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %0.2fcmH2O " ) , avp ) + wxT ( " </td></tr> \n " ) ;
if ( aiap > 0 ) {
html = html + wxT ( " <tr><td><b> " ) + _ ( " IPAP Avg " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %0.2fcmH2O " ) , aiap ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " EPAP Avg " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %0.2fcmH2O " ) , aeap ) + wxT ( " </td></tr> \n " ) ;
2011-06-03 07:06:18 +00:00
iap - > SetVisible ( true ) ;
eap - > SetVisible ( true ) ;
prmax - > SetVisible ( false ) ;
prmin - > SetVisible ( false ) ;
pr - > SetVisible ( false ) ;
2011-06-01 13:08:44 +00:00
} else {
if ( apmin ! = apmax ) {
2011-06-03 07:06:18 +00:00
prmax - > SetVisible ( true ) ;
prmin - > SetVisible ( true ) ;
pr - > SetVisible ( true ) ;
iap - > SetVisible ( false ) ;
eap - > SetVisible ( false ) ;
2011-06-01 13:08:44 +00:00
html = html + wxT ( " <tr><td><b> " ) + _ ( " Pressure Min " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %0.2fcmH2O " ) , apmin ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " Pressure Max " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %0.2fcmH2O " ) , apmax ) + wxT ( " </td></tr> \n " ) ;
2011-06-03 07:06:18 +00:00
} else {
pr - > SetVisible ( true ) ;
prmax - > SetVisible ( false ) ;
prmin - > SetVisible ( false ) ;
iap - > SetVisible ( false ) ;
eap - > SetVisible ( false ) ;
//prmax->SetVisible(false);
//prmin->SetVisible(false);
2011-06-01 13:08:44 +00:00
}
}
2011-05-27 14:07:35 +00:00
html = html + wxT ( " <tr><td> </td><td> </td></tr> \n " ) ;
2011-06-01 13:08:44 +00:00
html = html + wxT ( " <tr><td><b> " ) + _ ( " Mask Leaks " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %0.2f " ) , leak - > GetAverage ( ) ) + wxT ( " </td></tr> \n " ) ;
2011-05-27 14:07:35 +00:00
2011-06-01 13:08:44 +00:00
html = html + wxT ( " <tr><td> </td><td> </td></tr> \n " ) ;
2011-05-27 14:07:35 +00:00
html = html + wxT ( " <tr><td><b> " ) + _ ( " Bedtime " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %02.0f:%02i " ) , bt , int ( bt * 60 ) % 60 ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " Waketime " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %02.0f:%02i " ) , wt , int ( wt * 60 ) % 60 ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " Hours/Night " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %02.0f:%02i " ) , ua , int ( ua * 60 ) % 60 ) + wxT ( " </td></tr> \n " ) ;
2011-05-26 13:59:21 +00:00
html = html + wxT ( " </table> " ) ;
2011-06-03 08:12:00 +00:00
} else {
html + = wxT ( " <div align=center><h1>Welcome</h1><br/> <br/><i>Please import some data</i></div> " ) ;
}
2011-05-26 13:59:21 +00:00
html + = wxT ( " </body></html> " ) ;
HTMLInfo - > SetPage ( html ) ;
2011-05-30 11:59:20 +00:00
}
void Summary : : EnableDatePickers ( bool b )
{
StartDatePicker - > Enable ( b ) ;
sdLabel - > Enable ( b ) ;
EndDatePicker - > Enable ( b ) ;
edLabel - > Enable ( b ) ;
}
void Summary : : OnRBSelect ( wxCommandEvent & event )
{
wxDateTime start = StartDatePicker - > GetValue ( ) ;
wxDateTime end = EndDatePicker - > GetValue ( ) ;
if ( rbCustomDate - > GetValue ( ) ) {
EnableDatePickers ( true ) ;
} else if ( rbAll - > GetValue ( ) ) {
2011-05-31 02:18:41 +00:00
start = profile - > FirstDay ( ) + wxTimeSpan : : Day ( ) ;
end = profile - > LastDay ( ) + wxTimeSpan : : Day ( ) ;
EnableDatePickers ( false ) ;
2011-05-30 11:59:20 +00:00
} else if ( rbLastMonth - > GetValue ( ) ) {
2011-05-31 02:18:41 +00:00
end = profile - > LastDay ( ) + wxTimeSpan : : Day ( ) ;
start = end - wxTimeSpan : : Days ( 30 - 1 ) ;
EnableDatePickers ( false ) ;
2011-05-30 11:59:20 +00:00
} else if ( rbLastWeek - > GetValue ( ) ) {
2011-05-31 02:18:41 +00:00
end = profile - > LastDay ( ) + wxTimeSpan : : Day ( ) ;
start = end - wxTimeSpan : : Days ( 7 - 1 ) ;
EnableDatePickers ( false ) ;
2011-05-30 11:59:20 +00:00
}
StartDatePicker - > SetValue ( start ) ;
EndDatePicker - > SetValue ( end ) ;
2011-05-26 13:59:21 +00:00
2011-06-02 04:42:37 +00:00
for ( list < HistoryData * > : : iterator h = Data . begin ( ) ; h ! = Data . end ( ) ; h + + ) {
2011-06-01 15:35:20 +00:00
( * h ) - > SetDateRange ( start - wxTimeSpan : : Day ( ) , end ) ;
2011-05-30 11:59:20 +00:00
}
}
void Summary : : OnStartDateChanged ( wxDateEvent & event )
{
wxDateTime start = StartDatePicker - > GetValue ( ) - wxTimeSpan : : Days ( 2 ) ;
wxDateTime end = EndDatePicker - > GetValue ( ) - wxTimeSpan : : Day ( ) ;
2011-06-02 04:42:37 +00:00
for ( list < HistoryData * > : : iterator h = Data . begin ( ) ; h ! = Data . end ( ) ; h + + ) {
2011-05-30 11:59:20 +00:00
( * h ) - > SetDateRange ( start , end ) ;
}
}
void Summary : : OnEndDateChanged ( wxDateEvent & event )
{
wxDateTime start = StartDatePicker - > GetValue ( ) - wxTimeSpan : : Days ( 2 ) ;
wxDateTime end = EndDatePicker - > GetValue ( ) - wxTimeSpan : : Day ( ) ;
2011-06-02 04:42:37 +00:00
for ( list < HistoryData * > : : iterator h = Data . begin ( ) ; h ! = Data . end ( ) ; h + + ) {
2011-05-30 11:59:20 +00:00
( * h ) - > SetDateRange ( start , end ) ;
}
2011-05-26 13:59:21 +00:00
}
2011-05-31 02:18:41 +00:00
void Summary : : OnClose ( wxCloseEvent & event )
{
Destroy ( ) ;
}
2011-05-26 13:59:21 +00:00
2011-05-30 11:59:20 +00:00
2011-06-01 13:08:44 +00:00
/*
MyListBox : : MyListBox ( wxWindow * parent , wxWindowID id , const wxPoint & pos , const wxSize & size , int n , const wxString choices [ ] , long style , const wxValidator & validator , const wxString & name )
: wxListBox ( parent , id , pos , size , n , choices , style , validator , name )
{
InvalidateBestSize ( ) ;
Clear ( ) ;
}
wxSize MyListBox : : DoGetBestSize ( ) const
{
wxSize best ( 200 , 50 ) ;
// CacheBestSize(best);
return best ;
}
*/
2011-05-30 11:59:20 +00:00
Daily : : Daily ( wxWindow * win , Profile * p )
: DailyPanel ( win ) , profile ( p )
2011-05-26 13:59:21 +00:00
{
2011-06-01 13:08:44 +00:00
//SessionList=new wxListBox(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, 0, NULL, 0 );
//SessionList->SetMinSize(wxSize(200,50));
//SessionList->SetMaxSize(wxSize(200,50));
//m_mgr.AddPane(SessionList,wxLEFT,wxT("Sessions"));
2011-05-26 13:59:21 +00:00
2011-05-29 07:53:37 +00:00
AddData ( tap_eap = new TAPData ( CPAP_EAP ) ) ;
AddData ( tap_iap = new TAPData ( CPAP_IAP ) ) ;
AddData ( tap = new TAPData ( CPAP_Pressure ) ) ;
2011-05-31 04:28:11 +00:00
TAP = new gGraphWindow ( ScrolledWindow , - 1 , wxT ( " Time@Pressure " ) , wxPoint ( 0 , 0 ) , wxSize ( 600 , 60 ) , wxNO_BORDER ) ;
2011-05-26 13:59:21 +00:00
TAP - > SetMargins ( 20 , 15 , 5 , 50 ) ;
TAP - > AddLayer ( new gCandleStick ( tap ) ) ;
2011-05-31 04:28:11 +00:00
TAP_IAP = new gGraphWindow ( ScrolledWindow , - 1 , wxT ( " Time@IPAP " ) , wxPoint ( 0 , 0 ) , wxSize ( 600 , 60 ) , wxNO_BORDER ) ;
2011-05-29 07:53:37 +00:00
TAP_IAP - > SetMargins ( 20 , 15 , 5 , 50 ) ;
TAP_IAP - > AddLayer ( new gCandleStick ( tap_iap ) ) ;
2011-05-31 04:28:11 +00:00
TAP_EAP = new gGraphWindow ( ScrolledWindow , - 1 , wxT ( " Time@EPAP " ) , wxPoint ( 0 , 0 ) , wxSize ( 600 , 60 ) , wxNO_BORDER ) ;
2011-05-29 07:53:37 +00:00
TAP_EAP - > SetMargins ( 20 , 15 , 5 , 50 ) ;
TAP_EAP - > AddLayer ( new gCandleStick ( tap_eap ) ) ;
2011-05-31 04:28:11 +00:00
G_AHI = new gGraphWindow ( ScrolledWindow , - 1 , wxT ( " Event Breakdown " ) , wxPoint ( 0 , 0 ) , wxSize ( 600 , 60 ) , wxNO_BORDER ) ;
2011-05-26 13:59:21 +00:00
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 ) ) ;
2011-06-02 16:31:36 +00:00
//leakdata->ForceMinY(0);
//leakdata->ForceMaxY(120);
2011-05-31 02:18:41 +00:00
LEAK = new gGraphWindow ( ScrolledWindow , - 1 , wxT ( " Mask Leaks " ) , wxPoint ( 0 , 0 ) , wxSize ( 600 , 130 ) , wxNO_BORDER ) ;
2011-06-01 13:08:44 +00:00
LEAK - > AddLayer ( new gLineChart ( leakdata , wxPURPLE , 4096 , false , false , true ) ) ;
2011-05-31 04:50:06 +00:00
LEAK - > AddLayer ( new gXAxis ( wxBLACK ) ) ;
2011-05-26 13:59:21 +00:00
2011-05-27 06:08:39 +00:00
AddData ( pressure_iap = new PressureData ( CPAP_IAP ) ) ;
AddData ( pressure_eap = new PressureData ( CPAP_EAP ) ) ;
2011-05-26 13:59:21 +00:00
AddData ( prd = new PressureData ( CPAP_Pressure ) ) ;
2011-05-31 02:18:41 +00:00
PRD = new gGraphWindow ( ScrolledWindow , - 1 , wxT ( " Pressure " ) , wxPoint ( 0 , 0 ) , wxSize ( 600 , 130 ) , wxNO_BORDER ) ;
2011-06-01 13:08:44 +00:00
PRD - > AddLayer ( new gLineChart ( prd , wxDARK_GREEN , 4096 , false , false , true ) ) ;
PRD - > AddLayer ( new gLineChart ( pressure_iap , wxBLUE , 4096 , false , true , true ) ) ;
PRD - > AddLayer ( new gLineChart ( pressure_eap , wxRED , 4096 , false , true , true ) ) ;
2011-05-31 04:50:06 +00:00
PRD - > AddLayer ( new gXAxis ( wxBLACK ) ) ;
2011-05-26 13:59:21 +00:00
AddData ( frw = new FlowData ( ) ) ;
FRW = new gGraphWindow ( ScrolledWindow , - 1 , wxT ( " Flow Rate " ) , wxPoint ( 0 , 0 ) , wxSize ( 600 , 150 ) , wxNO_BORDER ) ;
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 ) ) ;
2011-05-27 09:54:12 +00:00
AddData ( flags [ 8 ] = new FlagData ( PRS1_VSnore2 , 1 ) ) ;
2011-05-27 10:53:00 +00:00
AddData ( flags [ 9 ] = new FlagData ( PRS1_Unknown0E , 1 ) ) ;
2011-05-26 13:59:21 +00:00
2011-05-29 05:58:00 +00:00
FRW - > AddLayer ( new gLineOverlayBar ( flags [ 0 ] , wxGREEN2 , wxT ( " CSR " ) ) ) ;
2011-05-26 13:59:21 +00:00
FRW - > AddLayer ( new gLineChart ( frw , wxBLACK , 200000 , true ) ) ;
2011-05-27 11:35:45 +00:00
FRW - > AddLayer ( new gLineOverlayBar ( flags [ 7 ] , wxRED , wxT ( " PR " ) , LOT_Dot ) ) ;
2011-05-26 13:59:21 +00:00
FRW - > AddLayer ( new gLineOverlayBar ( flags [ 6 ] , wxYELLOW , wxT ( " RE " ) ) ) ;
2011-05-27 10:53:00 +00:00
FRW - > AddLayer ( new gLineOverlayBar ( flags [ 9 ] , wxDARK_GREEN , wxT ( " U0E " ) ) ) ;
2011-05-26 13:59:21 +00:00
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 " ) ) ) ;
2011-05-29 05:58:00 +00:00
FRW - > AddLayer ( new gLineOverlayBar ( flags [ 1 ] , wxPURPLE , wxT ( " CA " ) ) ) ;
2011-05-31 04:50:06 +00:00
FRW - > AddLayer ( new gXAxis ( wxBLACK ) ) ;
2011-05-26 13:59:21 +00:00
2011-05-31 04:28:11 +00:00
SF = new gGraphWindow ( ScrolledWindow , - 1 , wxT ( " Event Flags " ) , wxPoint ( 0 , 0 ) , wxSize ( 600 , 180 ) , wxNO_BORDER ) ;
2011-05-30 22:53:48 +00:00
// SF->SetMargins(10,15,20,80);
2011-05-26 13:59:21 +00:00
2011-05-29 05:58:00 +00:00
SF - > LinkZoom ( FRW ) ;
2011-05-31 02:18:41 +00:00
FRW - > LinkZoom ( SF ) ;
2011-05-27 14:09:45 +00:00
# if defined(__UNIX__)
2011-05-29 03:27:42 +00:00
// SF->LinkZoom(PRD); // Uncomment to link in more graphs.. Too slow on windows.
// SF->LinkZoom(LEAK);
2011-05-27 14:09:45 +00:00
# endif
2011-05-27 10:53:00 +00:00
const int sfc = 9 ;
SF - > AddLayer ( new gFlagsLine ( flags [ 9 ] , wxDARK_GREEN , wxT ( " U0E " ) , 8 , sfc ) ) ;
2011-05-27 09:54:12 +00:00
SF - > AddLayer ( new gFlagsLine ( flags [ 8 ] , wxRED , wxT ( " VS2 " ) , 6 , sfc ) ) ;
SF - > AddLayer ( new gFlagsLine ( flags [ 6 ] , wxYELLOW , wxT ( " RE " ) , 7 , sfc ) ) ;
SF - > AddLayer ( new gFlagsLine ( flags [ 5 ] , wxRED , wxT ( " VS " ) , 5 , sfc ) ) ;
SF - > AddLayer ( new gFlagsLine ( flags [ 4 ] , wxBLACK , wxT ( " FL " ) , 4 , sfc ) ) ;
SF - > AddLayer ( new gFlagsLine ( flags [ 3 ] , wxBLUE , wxT ( " H " ) , 3 , sfc ) ) ;
SF - > AddLayer ( new gFlagsLine ( flags [ 2 ] , wxAQUA , wxT ( " OA " ) , 2 , sfc ) ) ;
SF - > AddLayer ( new gFlagsLine ( flags [ 1 ] , wxPURPLE , wxT ( " CA " ) , 1 , sfc ) ) ;
SF - > AddLayer ( new gFlagsLine ( flags [ 0 ] , wxGREEN2 , wxT ( " CSR " ) , 0 , sfc ) ) ;
2011-05-31 04:50:06 +00:00
SF - > AddLayer ( new gXAxis ( wxBLACK ) ) ;
SF - > AddLayer ( new gFooBar ( ) ) ;
2011-05-26 13:59:21 +00:00
fgSizer - > Add ( SF , 1 , wxEXPAND ) ;
fgSizer - > Add ( FRW , 1 , wxEXPAND ) ;
fgSizer - > Add ( PRD , 1 , wxEXPAND ) ;
fgSizer - > Add ( LEAK , 1 , wxEXPAND ) ;
2011-05-31 11:48:57 +00:00
fgSizer - > Add ( G_AHI , 1 , wxEXPAND ) ;
2011-05-26 13:59:21 +00:00
fgSizer - > Add ( TAP , 1 , wxEXPAND ) ;
2011-05-29 07:53:37 +00:00
fgSizer - > Add ( TAP_IAP , 1 , wxEXPAND ) ;
fgSizer - > Add ( TAP_EAP , 1 , wxEXPAND ) ;
2011-05-26 13:59:21 +00:00
2011-06-01 13:08:44 +00:00
2011-05-30 11:59:20 +00:00
ResetDate ( ) ;
2011-05-26 13:59:21 +00:00
}
Daily : : ~ Daily ( )
{
2011-06-01 13:08:44 +00:00
// delete SessionList;
2011-05-26 13:59:21 +00:00
}
2011-05-31 02:18:41 +00:00
void Daily : : OnClose ( wxCloseEvent & event )
{
Destroy ( ) ;
}
2011-05-30 11:59:20 +00:00
void Daily : : ResetDate ( )
2011-05-26 13:59:21 +00:00
{
2011-05-30 11:59:20 +00:00
foobar_datehack = false ; // this exists due to a wxGTK bug.
// RefreshData();
wxDateTime date ;
if ( profile - > LastDay ( ) . IsValid ( ) ) {
2011-05-30 13:11:29 +00:00
date = profile - > LastDay ( ) + wxTimeSpan : : Day ( ) ;
2011-05-30 11:59:20 +00:00
Calendar - > SetDate ( date ) ;
} else {
Calendar - > SetDate ( wxDateTime : : Today ( ) ) ;
}
2011-05-26 13:59:21 +00:00
wxCalendarEvent ev ;
2011-05-30 11:59:20 +00:00
ev . SetDate ( date ) ;
2011-05-26 13:59:21 +00:00
OnCalendarMonth ( ev ) ;
}
2011-05-30 11:59:20 +00:00
void Daily : : RefreshData ( )
2011-05-26 13:59:21 +00:00
{
2011-05-30 11:59:20 +00:00
wxDateTime date = Calendar - > GetDate ( ) ;
date . ResetTime ( ) ;
date . SetHour ( 0 ) ;
date - = wxTimeSpan : : Days ( 1 ) ;
Day * d = NULL ;
if ( profile - > daylist . find ( date ) ! = profile - > daylist . end ( ) ) {
vector < Day * > : : iterator di ;
for ( di = profile - > daylist [ date ] . begin ( ) ; di ! = profile - > daylist [ date ] . end ( ) ; di + + ) {
if ( ( * di ) - > machine_type ( ) = = MT_CPAP ) {
d = ( * di ) ;
break ;
}
}
2011-05-26 13:59:21 +00:00
}
2011-06-01 15:35:20 +00:00
2011-05-30 11:59:20 +00:00
UpdateGraphs ( d ) ;
if ( d ) {
2011-05-29 10:09:24 +00:00
CPAPMode mode = ( CPAPMode ) d - > summary_max ( CPAP_Mode ) ;
if ( mode ! = MODE_BIPAP ) {
TAP_EAP - > Show ( false ) ;
TAP_IAP - > Show ( false ) ;
TAP - > Show ( true ) ;
} else {
TAP - > Show ( false ) ;
TAP_IAP - > Show ( true ) ;
TAP_EAP - > Show ( true ) ;
}
fgSizer - > Layout ( ) ;
ScrolledWindow - > FitInside ( ) ;
2011-05-26 13:59:21 +00:00
PRTypes pr = ( PRTypes ) d - > summary_max ( CPAP_PressureReliefType ) ;
wxString epr = PressureReliefNames [ pr ] + wxString : : Format ( wxT ( " x%i " ) , ( int ) d - > summary_max ( CPAP_PressureReliefSetting ) ) ;
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 ( ) ;
2011-05-29 15:40:34 +00:00
float p90 = d - > percentile ( CPAP_Pressure , 0 , 0.9 ) ;
float eap90 = d - > percentile ( CPAP_EAP , 0 , 0.9 ) ;
float iap90 = d - > percentile ( CPAP_IAP , 0 , 0.9 ) ;
2011-05-26 13:59:21 +00:00
wxString submodel = _ ( " Unknown Model " ) ;
wxString html = wxT ( " <html><body leftmargin=0 rightmargin=0 topmargin=0 marginwidth=0 marginheight=0><table cellspacing=2 cellpadding=0> \n " ) ;
html = html + wxT ( " <tr><td colspan=2 align=center><i> " ) + _ ( " Machine Information " ) + wxT ( " </i></td></tr> \n " ) ;
2011-05-30 11:59:20 +00:00
if ( d - > machine - > properties . find ( wxT ( " SubModel " ) ) ! = d - > machine - > properties . end ( ) )
submodel = wxT ( " <br> " ) + d - > machine - > properties [ wxT ( " SubModel " ) ] ;
html = html + wxT ( " <tr><td colspan=2 align=center><b> " ) + d - > machine - > properties [ wxT ( " Brand " ) ] + wxT ( " </b> <br> " ) + d - > machine - > properties [ wxT ( " Model " ) ] + wxT ( " " ) + d - > machine - > properties [ wxT ( " ModelNumber " ) ] + submodel + wxT ( " </td></tr> \n " ) ;
if ( pref . Exists ( " ShowSerialNumbers " ) & & pref [ " ShowSerialNumbers " ] ) {
html = html + wxT ( " <tr><td colspan=2 align=center> " ) + d - > machine - > properties [ wxT ( " Serial " ) ] + wxT ( " </td></tr> \n " ) ;
}
2011-05-26 13:59:21 +00:00
html = html + wxT ( " <tr><td> </td><td> </td></tr> \n " ) ;
html = html + wxT ( " <tr><td colspan=2 align=center><i> " ) + _ ( " Sleep Times " ) + wxT ( " </i></td></tr> \n " ) ;
2011-05-30 11:59:20 +00:00
html = html + wxT ( " <tr><td><b> " ) + _ ( " Date " ) + wxT ( " </b></td><td> " ) + d - > first ( ) . Format ( wxT ( " %x " ) ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " Sleep " ) + wxT ( " </b></td><td> " ) + d - > first ( ) . Format ( wxT ( " %H:%M " ) ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " Wake " ) + wxT ( " </b></td><td> " ) + d - > last ( ) . Format ( wxT ( " %H:%M " ) ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " Total Time " ) + wxT ( " </b></td><td><i> " ) + d - > total_time ( ) . Format ( wxT ( " %H:%M hours " ) ) + wxT ( " </i></td></tr> \n " ) ;
2011-05-26 13:59:21 +00:00
html = html + wxT ( " <tr><td> </td><td> </td></tr> \n " ) ;
html = html + wxT ( " <tr><td colspan=2 align=center><i> " ) + _ ( " Indices " ) + wxT ( " </i></td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " AHI " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %0.2f " ) , ahi ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " Obstructive " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %0.2f " ) , oai ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " Hypopnea " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %0.2f " ) , hi ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " ClearAirway " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %0.2f " ) , cai ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " RERA " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %0.2f " ) , rei ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " FlowLimit " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %0.2f " ) , fli ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " Vsnore " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %0.2f " ) , vsi ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " CSR " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %0.2f%% " ) , csr ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td> </td><td> </td></tr> \n " ) ;
html = html + wxT ( " <tr><td colspan=2 align=center><i> " ) + _ ( " Other Information " ) + wxT ( " </i></td></tr> \n " ) ;
// html=html+wxT("<tr><td> </td><td> </td></tr>\n");
// html=html+wxT("<tr><td colspan=2 align=center><i>Session Informaton</i></td></tr>\n");
html = html + wxT ( " <tr><td><b> " ) + _ ( " Mode " ) + wxT ( " </b></td><td> " ) + modestr + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " Relief " ) + wxT ( " </b></td><td> " ) + epr + wxT ( " </td></tr> \n " ) ;
if ( mode = = MODE_CPAP ) {
html = html + wxT ( " <tr><td><b> " ) + _ ( " Pressure " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %.1fcmH2O " ) , d - > summary_min ( CPAP_PressureMin ) ) + wxT ( " </td></tr> \n " ) ;
} else if ( mode = = MODE_APAP ) {
2011-06-02 19:04:43 +00:00
html = html + wxT ( " <tr><td><b> " ) + _ ( " 90% Pressure " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %.1fcmH2O " ) , d - > summary_weighted_avg ( CPAP_PressurePercentValue ) ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " Avg Pressure " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %.2fcmH2O " ) , d - > summary_weighted_avg ( CPAP_PressureAverage ) ) + wxT ( " </td></tr> \n " ) ;
2011-05-29 05:58:00 +00:00
html = html + wxT ( " <tr><td><b> " ) + _ ( " Min Reached " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %.1fcmH2O " ) , d - > summary_min ( CPAP_PressureMinAchieved ) ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " Max Reached " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %.1fcmH2O " ) , d - > summary_max ( CPAP_PressureMaxAchieved ) ) + wxT ( " </td></tr> \n " ) ;
2011-06-02 19:04:43 +00:00
// html=html+wxT("<tr><td><b>")+_("90% Pressure")+wxT("</b></td><td>")+wxString::Format(wxT("%.1fcmH2O"),p90)+wxT("</td></tr>\n");
2011-05-29 05:58:00 +00:00
} else if ( mode = = MODE_BIPAP ) {
2011-05-29 11:29:32 +00:00
html = html + wxT ( " <tr><td><b> " ) + _ ( " Avg IPAP " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %.2fcmH2O " ) , d - > summary_avg ( BIPAP_IAPAverage ) ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " Avg EPAP " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %.1fcmH2O " ) , d - > summary_avg ( BIPAP_EAPAverage ) ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " Min IPAP " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %.2fcmH2O " ) , d - > summary_min ( BIPAP_IAPMin ) ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " Max IPAP " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %.1fcmH2O " ) , d - > summary_max ( BIPAP_IAPMax ) ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " Min EPAP " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %.1fcmH2O " ) , d - > summary_min ( BIPAP_EAPMin ) ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " Max EPAP " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %.1fcmH2O " ) , d - > summary_max ( BIPAP_EAPMax ) ) + wxT ( " </td></tr> \n " ) ;
2011-05-29 15:40:34 +00:00
html = html + wxT ( " <tr><td><b> " ) + _ ( " 90% IPAP " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %.1fcmH2O " ) , iap90 ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " 90% EPAP " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %.1fcmH2O " ) , eap90 ) + wxT ( " </td></tr> \n " ) ;
2011-05-29 05:58:00 +00:00
2011-05-26 13:59:21 +00:00
}
2011-06-02 19:04:43 +00:00
html = html + wxT ( " <tr><td><b> " ) + _ ( " Avg Leak " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %.2f " ) , d - > summary_weighted_avg ( CPAP_LeakAverage ) ) + wxT ( " </td></tr> \n " ) ;
2011-05-26 13:59:21 +00:00
html = html + wxT ( " <tr><td> </td><td> </td></tr> \n " ) ;
2011-05-30 11:59:20 +00:00
if ( d - > summary_avg ( CPAP_BrokenSummary ) = = 1 ) {
html = html + wxT ( " <tr><td colspan=2 align=center><i> " ) + _ ( " No System Settings Recorded " ) + wxT ( " </i></td></tr> \n " ) ;
} else {
html = html + wxT ( " <tr><td colspan=2 align=center><i> " ) + _ ( " System Settings " ) + wxT ( " </i></td></tr> \n " ) ;
if ( mode = = MODE_CPAP ) {
html = html + wxT ( " <tr><td><b> " ) + _ ( " Pressure " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %.1fcmH2O " ) , d - > summary_min ( CPAP_PressureMin ) ) + wxT ( " </td></tr> \n " ) ;
} else if ( mode = = MODE_APAP ) {
html = html + wxT ( " <tr><td><b> " ) + _ ( " Min Pressure " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %.1fcmH2O " ) , d - > summary_min ( CPAP_PressureMin ) ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " Max Pressure " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %.1fcmH2O " ) , d - > summary_max ( CPAP_PressureMax ) ) + wxT ( " </td></tr> \n " ) ;
} else if ( mode = = MODE_BIPAP ) {
html = html + wxT ( " <tr><td><b> " ) + _ ( " IPAP Pressure " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %.1fcmH2O " ) , d - > summary_min ( CPAP_PressureMin ) ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " EPAP Pressure " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %.1fcmH2O " ) , d - > summary_max ( CPAP_PressureMax ) ) + wxT ( " </td></tr> \n " ) ;
}
html = html + wxT ( " <tr><td><b> " ) + _ ( " Ramp-Time " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %imin " ) , ( int ) d - > summary_max ( CPAP_RampTime ) ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " Ramp-Prs. " ) + wxT ( " </b></td><td> " ) + wxString : : Format ( wxT ( " %.1fcmH2O " ) , d - > summary_min ( CPAP_RampStartingPressure ) ) + wxT ( " </td></tr> \n " ) ;
// check HumidiferStatus..
wxString str ;
if ( bool ( d - > summary_max ( CPAP_HumidifierStatus ) ) ) {
str = wxString : : Format ( wxT ( " x%i " ) , ( int ) d - > summary_max ( CPAP_HumidifierSetting ) ) ;
} else str = wxT ( " No " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " Humidifier " ) + wxT ( " </b></td><td> " ) + str + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " System-Lock " ) + wxT ( " </b></td><td> " ) + ( bool ( d - > summary_max ( PRS1_SystemLockStatus ) ) ? _ ( " On " ) : _ ( " Off " ) ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " Auto-Off " ) + wxT ( " </b></td><td> " ) + ( bool ( d - > summary_max ( PRS1_AutoOff ) ) ? _ ( " On " ) : _ ( " Off " ) ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " Mask-Alert " ) + wxT ( " </b></td><td> " ) + ( bool ( d - > summary_max ( PRS1_MaskAlert ) ) ? _ ( " On " ) : _ ( " Off " ) ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " Show-AHI " ) + wxT ( " </b></td><td> " ) + ( bool ( d - > summary_max ( PRS1_ShowAHI ) ) ? _ ( " On " ) : _ ( " Off " ) ) + wxT ( " </td></tr> \n " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " Hose-Size " ) + wxT ( " </b></td><td> " ) + ( bool ( d - > summary_max ( PRS1_HoseDiameter ) ) ? _ ( " 22mm " ) : _ ( " 15mm " ) ) + wxT ( " </td></tr> \n " ) ;
if ( bool ( d - > summary_max ( PRS1_SystemResistanceStatus ) ) ) {
str = wxString : : Format ( wxT ( " x%i " ) , ( int ) d - > summary_max ( PRS1_SystemResistanceSetting ) ) ;
} else str = wxT ( " No " ) ;
html = html + wxT ( " <tr><td><b> " ) + _ ( " Sys-Resist. " ) + wxT ( " </b></td><td> " ) + str + wxT ( " </td></tr> \n " ) ;
2011-05-29 05:58:00 +00:00
}
2011-05-27 08:22:24 +00:00
html = html + wxT ( " <tr><td> </td><td> </td></tr> \n " ) ;
html = html + wxT ( " <tr><td colspan=2 align=center><i> " ) + _ ( " Session Files " ) + wxT ( " </i></td></tr> \n " ) ;
2011-06-01 13:08:44 +00:00
//SessionList->Clear();
2011-06-02 04:42:37 +00:00
for ( vector < Session * > : : iterator i = d - > begin ( ) ; i ! = d - > end ( ) ; i + + ) {
2011-06-01 13:08:44 +00:00
//wxString a=wxString::Format(wxT("Session %i"),(*i)->session());
//SessionList->Append(a);
2011-05-27 08:22:24 +00:00
html = html + wxT ( " <tr><td colspan=2 align=center> " ) + ( * i ) - > first ( ) . Format ( wxT ( " %d-%m-%Y %H:%M:%S " ) ) + wxT ( " " ) + wxString : : Format ( wxT ( " %05i " ) , ( * i ) - > session ( ) ) + wxT ( " </td></tr> \n " ) ;
2011-06-01 13:08:44 +00:00
html = html + wxT ( " <tr><td colspan=2 align=center> " ) + ( * i ) - > last ( ) . Format ( wxT ( " %d-%m-%Y %H:%M:%S " ) ) + wxT ( " " ) + wxString : : Format ( wxT ( " %05i " ) , ( * i ) - > session ( ) ) + wxT ( " </td></tr> \n " ) ;
2011-05-27 08:22:24 +00:00
}
2011-06-01 13:08:44 +00:00
//SessionList->SetSelection(0);
2011-05-26 13:59:21 +00:00
html = html + wxT ( " </table> " ) ;
html + = wxT ( " </body></html> " ) ;
HTMLInfo - > SetPage ( html ) ;
2011-06-01 13:08:44 +00:00
/*
if ( d - > size ( ) > 1 ) {
if ( ! SessionList - > IsShown ( ) ) {
SessionList - > Show ( true ) ;
SessionList - > SetMinSize ( wxSize ( 200 , 45 ) ) ;
SessionList - > SetMaxSize ( wxSize ( 200 , 45 ) ) ;
m_mgr . AddPane ( SessionList , wxLEFT , wxEmptyString ) ;
m_mgr . GetPane ( SessionList ) . MinSize ( 200 , 45 ) ;
m_mgr . GetPane ( SessionList ) . MaxSize ( 200 , 45 ) ;
m_mgr . GetPane ( SessionList ) . CaptionVisible ( false ) ;
m_mgr . GetPane ( Calendar ) . Position ( 0 ) ;
m_mgr . GetPane ( SessionList ) . Position ( 1 ) ;
m_mgr . GetPane ( HTMLInfo ) . Position ( 2 ) ;
m_mgr . Update ( ) ;
//Refresh();
}
} else {
if ( SessionList - > IsShown ( ) ) {
m_mgr . DetachPane ( SessionList ) ;
SessionList - > Hide ( ) ;
m_mgr . Update ( ) ;
//Refresh();
}
//m_mgr.Update();
}
*/
2011-05-26 13:59:21 +00:00
} else {
2011-06-03 08:12:00 +00:00
HTMLInfo - > SetPage ( _ ( " <i>Please import some data</i> " ) ) ;
2011-06-01 13:08:44 +00:00
/*if (SessionList->IsShown()) {
m_mgr . DetachPane ( SessionList ) ;
SessionList - > Hide ( ) ;
m_mgr . Update ( ) ;
//Refresh();
} */
2011-05-26 13:59:21 +00:00
}
}
2011-06-01 13:08:44 +00:00
void Daily : : OnSelectSession ( wxCommandEvent & event )
{
if ( event . IsSelection ( ) ) {
int sessid = event . GetSelection ( ) ;
wxLogMessage ( wxT ( " Selected: " ) + wxString : : Format ( wxT ( " %i " ) , sessid ) ) ;
}
}
2011-05-30 11:59:20 +00:00
///usr/local/bin/upx ./bin/Windows/SleepyHead
void Daily : : OnCalendarDay ( wxCalendarEvent & event )
2011-05-26 13:59:21 +00:00
{
2011-05-30 11:59:20 +00:00
if ( foobar_datehack ) {
OnCalendarMonth ( event ) ;
foobar_datehack = false ;
2011-05-26 13:59:21 +00:00
}
2011-05-30 11:59:20 +00:00
RefreshData ( ) ;
}
void Daily : : UpdateGraphs ( Day * day )
{
//if (!day) return;
2011-06-02 03:28:11 +00:00
if ( day ) {
day - > OpenEvents ( ) ;
day - > OpenWaveforms ( ) ;
}
2011-06-02 04:42:37 +00:00
for ( list < gPointData * > : : iterator g = Data . begin ( ) ; g ! = Data . end ( ) ; g + + ) {
2011-05-26 13:59:21 +00:00
( * 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 ) ;
2011-05-30 11:59:20 +00:00
//if (!machine) return;
2011-05-26 13:59:21 +00:00
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 ) ;
2011-05-30 11:59:20 +00:00
if ( ( profile - > daylist . find ( d ) ! = profile - > daylist . end ( ) ) ) {
2011-05-26 13:59:21 +00:00
# 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);
}
}
}