summaryrefslogtreecommitdiffstats
path: root/Project/ElementForm.h
diff options
context:
space:
mode:
authorThales1330 <thaleslima.ufu@gmail.com>2017-01-28 14:50:12 -0200
committerThales1330 <thaleslima.ufu@gmail.com>2017-01-28 14:50:12 -0200
commit5e7c19ae397164dd718b2593663cee5d1be687cd (patch)
treeea14141c3f4bb83ea8448cf017dfeb5b211611a0 /Project/ElementForm.h
parent10bb7105946bc0a892a9daf42ec5181ad9994fcf (diff)
downloadPSP.git-5e7c19ae397164dd718b2593663cee5d1be687cd.tar.gz
PSP.git-5e7c19ae397164dd718b2593663cee5d1be687cd.tar.xz
PSP.git-5e7c19ae397164dd718b2593663cee5d1be687cd.zip
Node bug fixes, tf form implemented
Diffstat (limited to 'Project/ElementForm.h')
-rw-r--r--Project/ElementForm.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/Project/ElementForm.h b/Project/ElementForm.h
index 9756bc8..f7c9ebb 100644
--- a/Project/ElementForm.h
+++ b/Project/ElementForm.h
@@ -771,4 +771,34 @@ public:
virtual ~TextFormBase();
};
+
+class TransferFunctionFormBase : public wxDialog
+{
+protected:
+ wxNotebook* m_notebook;
+ wxPanel* m_panelGeneral;
+ wxStaticText* m_staticTextNumerator;
+ wxTextCtrl* m_textCtrlNumerator;
+ wxStaticText* m_staticTextDenominator;
+ wxTextCtrl* m_textCtrlDenominator;
+ wxButton* m_buttonOK;
+ wxButton* m_ButtonCancel;
+
+protected:
+ virtual void OnOKClick(wxCommandEvent& event) { event.Skip(); }
+ virtual void OnCancelClick(wxCommandEvent& event) { event.Skip(); }
+
+public:
+ wxStaticText* GetStaticTextNumerator() { return m_staticTextNumerator; }
+ wxTextCtrl* GetTextCtrlNumerator() { return m_textCtrlNumerator; }
+ wxStaticText* GetStaticTextDenominator() { return m_staticTextDenominator; }
+ wxTextCtrl* GetTextCtrlDenominator() { return m_textCtrlDenominator; }
+ wxPanel* GetPanelGeneral() { return m_panelGeneral; }
+ wxNotebook* GetNotebook() { return m_notebook; }
+ wxButton* GetButtonOK() { return m_buttonOK; }
+ wxButton* GetButtonCancel() { return m_ButtonCancel; }
+ TransferFunctionFormBase(wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = _("Transfer function"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize(-1,-1), long style = wxDEFAULT_DIALOG_STYLE);
+ virtual ~TransferFunctionFormBase();
+};
+
#endif