Audio 1.0.0
menu.h
Go to the documentation of this file.
1
11#ifndef MENU_H
12#define MENU_H
13
14#include <wx/wx.h>
15
21class Menu : public wxMenuBar
22{
23 private:
24 wxMenu* file = nullptr;
25 wxMenu* help = nullptr;
26
27 protected:
28 void onQuit(wxCommandEvent& evt);
29 void onAbout(wxCommandEvent& evt);
30 void onCheckForUpdates(wxCommandEvent& evt);
31 void onDocumentation(wxCommandEvent& evt);
32 void onReleaseNotes(wxCommandEvent& evt);
34
35 public:
37};
38
39#endif
Menu bar.
Definition: menu.h:22
void onReleaseNotes(wxCommandEvent &evt)
Open Release Notes event.
Definition: menu.cpp:108
wxDECLARE_EVENT_TABLE()
void onQuit(wxCommandEvent &evt)
On quit event.
Definition: menu.cpp:47
void onAbout(wxCommandEvent &evt)
About event.
Definition: menu.cpp:57
void onDocumentation(wxCommandEvent &evt)
Open documentation event.
Definition: menu.cpp:98
void onCheckForUpdates(wxCommandEvent &evt)
Check for updated event.
Definition: menu.cpp:67