BT-MatML-Editor 0.1.4
Editor for the MatML 3.1 XML Schema
HTMLFrame.h
1#ifndef __HTMLFRAME__
2#define __HTMLFRAME__
3
4#include <wx/html/htmprint.h>
5#include "HTMLFrameBase.h"
6
7namespace bellshire{
8
11{
12protected:
13 // Handlers for HTMLFrameBase events.
14 void OnHTMLPrintButton( wxCommandEvent& event );
15 void OnHTMLPreviewButton( wxCommandEvent& event );
16 void OnClose( wxCloseEvent& event );
17 void OnCloseButton( wxCommandEvent& event );
18 wxHtmlEasyPrinting* htmleasyprinting;
19public:
21 HTMLFrame( wxWindow* parent );
22 ~HTMLFrame();
23
24};
25}//namespace bellshire
26
27#endif // __HTMLFRAME__
Class HTMLFrameBase.
Definition: HTMLFrameBase.h:46
Definition: HTMLFrame.h:11
HTMLFrame(wxWindow *parent)
Definition: HTMLFrame.cpp:14
Contains the GUI and GUI associated classes. OnInit() calls the creation of the MaterialFrame GUI
Definition: BT_MatML_App.h:39