21#include "wx/notebook.h"
26#include "BT_MatML_Base_GUI.h"
27#include "BT_MatML_MatMLInfo_GUI.h"
29#include "BT_MatML_GUI.h"
30#include "BT_MatML_MatMLTreeItemData.h"
31#include "BT_MatML_TreeCtrlSorted.h"
39 wxTextCtrl* m_NotesTextCtrl;
43 static wxNotebook*
Create(wxWindow* parent, wxTextCtrl*& NotesTextCtrl);
46 void Show(
bool show =
true) {
if (m_GUI !=
nullptr) m_GUI->Show(show); };
47 wxNotebook* get() {
return m_GUI; };
49 void Update(
Notes* element);
52 const wxTreeItemId& ParentId,
54 const wxTreeItemId& PreviousId
58 virtual void OnNotesTextCtrl(wxCommandEvent& event) {
event.Skip(); }
78 void OnNotesTextCtrl(wxCommandEvent& event);
Definition: matml31.hxx:1705
Definition: matml31.hxx:2721
Definition: BT_MatML_Base_GUI.h:163
Definition: BT_MatML_Notes_GUI.h:36
static wxNotebook * Create(wxWindow *parent, wxTextCtrl *&NotesTextCtrl)
Create the GUI for the Notes MatML Data and Info
Definition: BT_MatML_Notes_GUI.cpp:30
static wxTreeItemId SetupMatMLTreeCtrl(TreeCtrlSorted *&MatMLTreeCtrl, const wxTreeItemId &ParentId, Notes &Element, const wxTreeItemId &PreviousId)
This set-up the Parent MatML Data into a wxTreeCtrl element and then call on the Children to do the s...
Definition: BT_MatML_Notes_GUI.cpp:90
Definition: BT_MatML_Notes_GUI.h:64
void SetMatMLTreeCtrl(TreeCtrlSorted *&MatMLTreeCtrl)
Set the Event Handler associated with the MatML wxTreeCtrl Required before using the derived class's ...
Definition: BT_MatML_Notes_GUI.cpp:165
virtual ~Notes_GUI()
Destructor for the derived class
Definition: BT_MatML_Notes_GUI.cpp:145
void SetEvtHandlerVar(TreeCtrlSorted *&MatMLTreeCtrl)
Function used to set up this objects member variables which is used in the EventHandler's functions....
Definition: BT_MatML_Notes_GUI.cpp:155
Notes_GUI()
Constructor for the derived class
Definition: BT_MatML_Notes_GUI.cpp:126
Definition: BT_MatML_TreeCtrlSorted.h:19
Contains the GUI and GUI associated classes. OnInit() calls the creation of the MaterialFrame GUI
Definition: BT_MatML_App.h:39