From c3b8370a456085dd835349a8c50e7a9e0a117c45 Mon Sep 17 00:00:00 2001 From: Thales Lima Oliveira Date: Tue, 25 Apr 2017 19:29:34 -0300 Subject: wxMathPlot implemented on chart view --- Project/ChartViewBase.h | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'Project/ChartViewBase.h') diff --git a/Project/ChartViewBase.h b/Project/ChartViewBase.h index e83ab94..1b67f7b 100644 --- a/Project/ChartViewBase.h +++ b/Project/ChartViewBase.h @@ -19,7 +19,6 @@ #include #include #include -#include #if wxVERSION_NUMBER >= 2900 #include #include @@ -57,7 +56,6 @@ protected: wxPropertyGridManager* m_pgMgr; wxPGProperty* m_pgPropLineProp; wxPGProperty* m_pgPropDraw; - wxPGProperty* m_pgPropColor; wxPGProperty* m_pgProplineThick; wxPGProperty* m_pgProplineType; wxPGProperty* m_pgProplineAxis; @@ -75,15 +73,14 @@ protected: wxPGProperty* m_pgPropXMax; wxPGProperty* m_pgPropYMin; wxPGProperty* m_pgPropYMax; - wxPanel* m_panelChart; protected: + virtual void OnPropertyGridChange(wxPropertyGridEvent& event) { event.Skip(); } public: wxMenuBar* GetMenuBar() { return m_menuBar; } wxTreeCtrl* GetTreeCtrl() { return m_treeCtrl; } wxPropertyGridManager* GetPgMgr() { return m_pgMgr; } - wxPanel* GetPanelChart() { return m_panelChart; } ChartViewBase(wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("Chart view"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize(-1,-1), long style = wxDEFAULT_FRAME_STYLE); virtual ~ChartViewBase(); }; -- cgit