BT-MatML-Editor 0.1.4
Editor for the MatML 3.1 XML Schema
BT_MatML_Graph_GUI.h
1
2// Name: BT_MatML_Graph_GUI.h
3// Purpose: Classes of Graph_GUI Base and Derived.
4// Author: Paul McGrath
5// Modified by:
6// Created:
7// Copyright: (c) Paul McGrath
8// Licence: CC licence
10#pragma once
11
12
13// For compilers that support precompilation, includes "wx/wx.h".
14#include "wx/wxprec.h"
15
16
17#ifndef WX_PRECOMP
18#include "wx/wx.h"
19#endif
20
21#include "wx/dcsvg.h"
22#include "wx/notebook.h"
23
24#include <math.h>
25#include "matml31.hxx"
26
27#include "BT_MatML_Base_GUI.h"
28#include "BT_MatML_MatMLInfo_GUI.h"
29
30#include "BT_MatML_GUI.h"
31#include "BT_MatML_MatMLTreeItemData.h"
32#include "BT_MatML_TreeCtrlSorted.h"
33
34namespace bellshire {
35
36 class GraphDisplay : public wxScrolledWindow
37 {
38 public:
39 GraphDisplay(wxNotebook* parent, wxTextCtrl* graphtextctrl);
40 virtual void OnDraw(wxDC& dc) wxOVERRIDE;
41 private:
42 wxTextCtrl* m_GraphTextCtrl = nullptr;
43 };
44
46 {
47 public:
48 wxTextCtrl* m_graphtextctrl;
49 GraphDisplay* m_graphdisplay;
50 wxNotebook* m_GUI;
51
53 Graph_GUI_Base(wxWindow* parent);
54 static wxNotebook* Create(wxWindow* parent, wxTextCtrl*& graphtextctrl, GraphDisplay*& graphdisplay);
55 virtual ~Graph_GUI_Base();
56
57 void Show(bool show=true) { if (m_GUI != nullptr) m_GUI->Show(show); };
58 wxNotebook* get() { return m_GUI; };
59
60 void Update( Graph* element);
61 static wxTreeItemId SetupMatMLTreeCtrl(TreeCtrlSorted*& MatMLTreeCtrl,
62 const wxTreeItemId& ParentId,
63 Graph& Element,
64 const wxTreeItemId& PreviousId
65 );
66
67 void SetConnect() {};
68
69 virtual void OnBumpDown(wxCommandEvent& event) { event.Skip(); }
70 virtual void OnBumpUp(wxCommandEvent& event) { event.Skip(); }
71
72 private:
73 };
74
76 {
77 public:
78
79 TreeCtrlSorted* m_MatMLTreeCtrl;//Required before Event Handling.
80
81 Graph_GUI();
82 Graph_GUI(wxWindow* parent);
83 virtual ~Graph_GUI();
84
85 void SetEvtHandlerVar(TreeCtrlSorted*& MatMLTreeCtrl);//Required before Event Handling.
86 void SetMatMLTreeCtrl(TreeCtrlSorted*& MatMLTreeCtrl);
87
88 void OnBumpDown(wxCommandEvent& event);
89 void OnBumpUp(wxCommandEvent& event);
90
91 private:
92 };
93
94}; //namespace bellshire end
Definition: matml31.hxx:1705
Definition: matml31.hxx:5768
Definition: BT_MatML_Graph_GUI.h:46
static wxTreeItemId SetupMatMLTreeCtrl(TreeCtrlSorted *&MatMLTreeCtrl, const wxTreeItemId &ParentId, Graph &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_Graph_GUI.cpp:137
static wxNotebook * Create(wxWindow *parent, wxTextCtrl *&graphtextctrl, GraphDisplay *&graphdisplay)
Create the GUI for the Graph MatML Data and Info
Definition: BT_MatML_Graph_GUI.cpp:27
Definition: BT_MatML_Graph_GUI.h:76
void SetMatMLTreeCtrl(TreeCtrlSorted *&MatMLTreeCtrl)
Set the Event Handler associated with the MatML wxTreeCtrl Required before using the derived class's ...
Definition: BT_MatML_Graph_GUI.cpp:203
void SetEvtHandlerVar(TreeCtrlSorted *&MatMLTreeCtrl)
Function used to set up this objects member variables which is used in the EventHandler's functions....
Definition: BT_MatML_Graph_GUI.cpp:193
Graph_GUI()
Constructor for the derived class
Definition: BT_MatML_Graph_GUI.cpp:165
virtual ~Graph_GUI()
Destructor for the derived class
Definition: BT_MatML_Graph_GUI.cpp:184
Definition: BT_MatML_Graph_GUI.h:37
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