21#include <wx/notebook.h>
26#include "StringStream.h"
29#include "matml31_strongtypedef.h"
31#include "BT_MatML_Base_GUI.h"
32#include "BT_MatML_MatMLInfo_GUI.h"
34#include "BT_MatML_MatMLTreeItemData.h"
35#include "BT_MatML_TreeCtrlSorted.h"
44 wxTextCtrl* m_AbbreviationTextCtrl;
48 static wxNotebook*
Create(wxWindow* parent, wxTextCtrl*& AbbreviationTextCtrl);
51 void Show(
bool show =
true) {
if (m_GUI !=
nullptr) m_GUI->Show(show); };
52 bool IsShown() {
return m_GUI->IsShown(); };
53 wxNotebook* get() {
return m_GUI; };
56 const wxTreeItemId& ParentId,
57 GlossaryTerm::Abbreviation_type&
Element,
58 const wxTreeItemId& PreviousId
60 void Update( Abbreviation* element);
63 virtual void OnAbbreviationTextCtrl(wxCommandEvent& event) {
event.Skip(); }
65 virtual void OnBumpDown(wxCommandEvent& event) {
event.Skip(); }
66 virtual void OnBumpUp(wxCommandEvent& event) {
event.Skip(); }
87 void OnAbbreviationTextCtrl(wxCommandEvent& event);
89 void OnBumpDown(wxCommandEvent& event);
90 void OnBumpUp(wxCommandEvent& event);
Definition: matml31.hxx:1705
Definition: BT_MatML_Abbreviation_GUI.h:41
static wxTreeItemId SetupMatMLTreeCtrl(TreeCtrlSorted *&MatMLTreeCtrl, const wxTreeItemId &ParentId, GlossaryTerm::Abbreviation_type &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_Abbreviation_GUI.cpp:92
static wxNotebook * Create(wxWindow *parent, wxTextCtrl *&AbbreviationTextCtrl)
Create the GUI for the Abbreviation MatML Data and Info
Definition: BT_MatML_Abbreviation_GUI.cpp:32
Definition: BT_MatML_Abbreviation_GUI.h:73
void SetEvtHandlerVar(TreeCtrlSorted *&MatMLTreeCtrl)
Function used to set up this objects member variables which is used in the EventHandler's functions....
Definition: BT_MatML_Abbreviation_GUI.cpp:154
virtual ~Abbreviation_GUI()
Destructor for the derived class
Definition: BT_MatML_Abbreviation_GUI.cpp:145
void SetMatMLTreeCtrl(TreeCtrlSorted *&MatMLTreeCtrl)
Set the Event Handler associated with the MatML wxTreeCtrl Required before using the derived class's ...
Definition: BT_MatML_Abbreviation_GUI.cpp:164
Abbreviation_GUI()
Constructor for the derived class
Definition: BT_MatML_Abbreviation_GUI.cpp:126
Definition: BT_MatML_Base_GUI.h:163
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