23 lines
362 B
C++
23 lines
362 B
C++
#ifndef MAINFRAME_H
|
|
#define MAINFRAME_H
|
|
|
|
#include "mainpanel.h"
|
|
#include <wx/wx.h>
|
|
|
|
class CMainFrame : public wxFrame
|
|
{
|
|
public:
|
|
explicit CMainFrame(const wxString& title);
|
|
|
|
public:
|
|
void InitFrame();
|
|
void ManLayout();
|
|
|
|
private:
|
|
CMainPanel* panela_{};
|
|
CMainPanel* panelb_{};
|
|
wxCheckListBox* listbox_{};
|
|
wxToolBar* toolbar_{};
|
|
};
|
|
|
|
#endif |