taskdetailreport.h

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

H
27
字号
#ifndef _TASK_DETAIL_REPORT_H
#define _TASK_DETAIL_REPORT_H

#include <wx/wx.h>
#include <wx/listctrl.h>
#include "common.h"

class CTaskDetailReport : public wxListView
{

public:
    CTaskDetailReport( wxWindow* parent );
    void ShowTaskDetail( _TaskAttr& tsk );	//也可以用于更新显示
    void DynamicLang();

protected:
    int AddInfo( wxString name, wxString value );
    void OnSize( wxEvent& event );
    void OnColumnResize( wxListEvent& event );
    void OnErase( wxEraseEvent& event );
    DECLARE_EVENT_TABLE()

};

#endif

⌨️ 快捷键说明

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