threadinfowindow.h

来自「一款LINUX下的下载软件」· C头文件 代码 · 共 43 行

H
43
字号

/*
        filename	:	threadinfowindow.hh
        create date	:	2006/07/12
        author		:	liubin
        email		:	multiget@gmail.com
        version		:	0.3
 
		***修订历史***
 
*/

#ifndef _THREADINFO_WINDOW_H
#define _THREADINFO_WINDOW_H

#include <wx/wx.h>
#include <wx/window.h>
#include <wx/listctrl.h>
#include <string>

#include "common.h"

class CThreadInfoWindow : public wxListView
{

public:
    CThreadInfoWindow( wxWindow* parent );
    void AddInfo( _MSGTYPE infotype, wxString info );
    void AddInfo( _MSGTYPE infotype, std::string info );
    void AddInfo( _MSGTYPE infotype, wxString info , int ntime );
    void AddInfo( _MSGTYPE infotype, std::string info , int ntime );

protected:
    void OnSize( wxEvent& event );
//    void OnErase( wxEraseEvent& event );

private:
    DECLARE_EVENT_TABLE()
};

#endif

⌨️ 快捷键说明

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