/*************************************************************** * 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 #include #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,Profile *_profile); virtual ~Summary(); void RefreshData(); void ResetProfile(Profile *p); void AddData(HistoryData *d) { Data.push_back(d); }; // void SetProfile(Profile *p); HistoryData *ahidata,*pressure,*leak,*usage,*bedtime,*waketime,*pressure_iap,*pressure_eap; HistoryData *pressure_min,*pressure_max; gGraphWindow *AHI,*PRESSURE,*LEAK,*USAGE; gLayer *prmax,*prmin,*iap,*eap,*pr; wxBitmap Logo; protected: virtual void OnRBSelect( wxCommandEvent& event ); virtual void OnStartDateChanged( wxDateEvent& event ); virtual void OnEndDateChanged( wxDateEvent& event ); virtual void OnClose(wxCloseEvent &event); void EnableDatePickers(bool b); Profile *profile; list Data; Day *dummyday; }; /*class MyListBox:public wxListBox { public: // DECLARE_DYNAMIC_CLASS(MyListBox) MyListBox(wxWindow* parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, int n = 0, const wxString choices[] = NULL, long style = 0, const wxValidator& validator = wxDefaultValidator, const wxString& name = wxT("listBox")); virtual wxSize DoGetBestSize() const; }; */ class Daily:public DailyPanel { public: Daily(wxWindow *win,Profile *p); virtual ~Daily(); void ResetDate(); void RefreshData(); // void SetProfile(Profile *p); protected: virtual void OnCalendarDay( wxCalendarEvent& event ); virtual void OnCalendarMonth( wxCalendarEvent& event ); virtual void OnClose(wxCloseEvent &event); virtual void OnSelectSession( wxCommandEvent& event ); virtual void OnEventTreeSelection( wxTreeEvent& event ); void AddData(gPointData *d) { Data.push_back(d); }; void UpdateGraphs(Day *day); bool foobar_datehack; gPointData *tap,*tap_eap,*tap_iap,*g_ahi,*frw,*prd,*leakdata,*pressure_iap,*pressure_eap; gPointData *flags[10]; gGraphWindow *PRD,*FRW,*G_AHI,*TAP,*LEAK,*SF,*TAP_EAP,*TAP_IAP; Profile *profile; list Data; wxHtmlWindow *HTMLInfo; wxTreeCtrl *EventTree; //wxListBox *SessionList; }; const wxEventType wxEVT_DO_SCREENSHOT = wxNewEventType(); const wxEventType wxEVT_MACHINE_SELECTED = wxNewEventType(); const int ProfileMenuID=wxID_HIGHEST; 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 OnScreenshot(wxCommandEvent& event); virtual void OnFullscreen(wxCommandEvent& event); virtual void DoScreenshot(wxCommandEvent& event); virtual void OnImportSD(wxCommandEvent& event); virtual void OnViewMenuDaily(wxCommandEvent& event); virtual void OnViewMenuSummary(wxCommandEvent& event); virtual void OnShowSerial(wxCommandEvent& event); virtual void OnProfileSelected(wxCommandEvent& event); virtual void UpdateProfiles(); Summary *summary; Daily *daily; Machine *machine; Profile *profile; vectorcpap_machines; int current_machine; }; #endif // SLEEPYHEADMAIN_H