listpanel.h

来自「是自己开发的程序」· C头文件 代码 · 共 44 行

H
44
字号
#ifndef LISTPANEL_H_INCLUDED
#define LISTPANEL_H_INCLUDED
#include "Common.h"#include "Log.h"extern "C" {class ListPanel: public wxPanel, public Log{	public:		ListPanel(wxWindow *parent,		        const wxPoint& point,                const wxSize& size,                long style);		~ListPanel();	private:        enum Identifiers		{		    ID_Button_Disk = ID_ListPanel_SubControl,		    ID_Button_Network,		    ID_Button_PlayBack,		    ID_Button_Start,		    ID_Button_Stop,		    CLIENT_ID		};		wxButton* pButtonDisk;		wxButton* pButtonNetwork;		wxButton* pButtonPlayBack;		wxButton* pButtonStart;		wxButton* pButtonStop;		void OnPaint(wxPaintEvent& event);		void OnButtonDisk(wxCommandEvent& event);		void OnButtonNetwork(wxCommandEvent& event);		void OnButtonPlayBack(wxCommandEvent& event);		void OnButtonStart(wxCommandEvent& event);		void OnButtonStop(wxCommandEvent& event);		DECLARE_EVENT_TABLE();};}


#endif // LISTPANEL_H_INCLUDED

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?