diff options
author | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2019-04-26 17:52:32 -0300 |
---|---|---|
committer | Thales Lima Oliveira <thaleslima.ufu@gmail.com> | 2019-04-26 17:52:32 -0300 |
commit | 2b02ef22cc5f2025b09b700f1cb6e1cec94d80f6 (patch) | |
tree | 4aba955355f4b98138e2f38c58223f51bf4d697b /Project/ElementFormBase.h | |
parent | a40d5a405d60b4e429f6f578dcfe3c33ab5ad81a (diff) | |
download | PSP.git-2b02ef22cc5f2025b09b700f1cb6e1cec94d80f6.tar.gz PSP.git-2b02ef22cc5f2025b09b700f1cb6e1cec94d80f6.tar.xz PSP.git-2b02ef22cc5f2025b09b700f1cb6e1cec94d80f6.zip |
Power quality fully implemented
A formal filter element must be implemented in future
Diffstat (limited to 'Project/ElementFormBase.h')
-rw-r--r-- | Project/ElementFormBase.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Project/ElementFormBase.h b/Project/ElementFormBase.h index 284e2de..09d7cbc 100644 --- a/Project/ElementFormBase.h +++ b/Project/ElementFormBase.h @@ -87,6 +87,8 @@ class BusFormBase : public wxDialog wxStaticText* m_staticTextStabFaultReactance; wxTextCtrl* m_textCtrlStabFaultReactance; wxStaticText* m_staticTextPU_4; + wxPanel* m_panelPowerQuality; + wxCheckBox* m_checkBoxPlotPQData; wxButton* m_buttonOK; wxButton* m_ButtonCancel; @@ -137,6 +139,8 @@ class BusFormBase : public wxDialog wxTextCtrl* GetTextCtrlStabFaultReactance() { return m_textCtrlStabFaultReactance; } wxStaticText* GetStaticTextPU_4() { return m_staticTextPU_4; } wxPanel* GetPanelStability() { return m_panelStability; } + wxCheckBox* GetCheckBoxPlotPQData() { return m_checkBoxPlotPQData; } + wxPanel* GetPanelPowerQuality() { return m_panelPowerQuality; } wxNotebook* GetNotebook() { return m_notebook; } wxButton* GetButtonOK() { return m_buttonOK; } wxButton* GetButtonCancel() { return m_ButtonCancel; } |