wxPlot 1.8
Real time plot library for wxWidgets
Loading...
Searching...
No Matches
mainframe.hpp
1#pragma once
2
3#include <wx/wx.h>
4#include "../../wxplot.hpp"
5
17class MainFrame : public wxFrame
18{
19private:
20
21 wxPlot* plot;
22
32 void OnHello(wxCommandEvent& event);
33
43 void OnExit(wxCommandEvent& event);
44
54 void OnSize(wxSizeEvent& event);
55
56public:
64 MainFrame();
65};
This class represents the main example window for the application.
Definition mainframe.hpp:18
MainFrame()
Constructor for the MainFrame class.
Definition mainframe.cpp:4
Main class for wxPlot. This is the only class the user going to work with.
Definition wxplot.hpp:11