⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 partfileconvert.h

📁 电驴的源代码
💻 H
字号:
//this file is part of eMule
//Copyright (C)2002 Merkur ( devs@emule-project.net / http://www.emule-project.net )
//
//This program is free software; you can redistribute it and/or
//modify it under the terms of the GNU General Public License
//as published by the Free Software Foundation; either
//version 2 of the License, or (at your option) any later version.
//
//This program is distributed in the hope that it will be useful,
//but WITHOUT ANY WARRANTY; without even the implied warranty of
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//GNU General Public License for more details.
//
//You should have received a copy of the GNU General Public License
//along with this program; if not, write to the Free Software
//Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#pragma once
#include "ResizableLib\ResizableDialog.h"
#include "Loggable.h"
#include "ProgressCtrlX.h"

struct ConvertJob;

class CPartFileConvert: public CLoggable
{
public:
	static int	ScanFolderToAdd(CString folder,bool deletesource=false);
	static void ConvertToeMule(CString folder,bool deletesource=false);
	static void CPartFileConvert::StartThread();
	static void ShowGUI();
	static void UpdateGUI(float percent,CString text, bool fullinfo=false);	// current file information
	static void UpdateGUI(ConvertJob* job); // listcontrol update
	static void CloseGUI();
	static void ClosedGUI();
	static void RemoveAllJobs();
	static void RemoveAllSuccJobs();
	static void RemoveJob(ConvertJob* job);
	static CString GetReturncodeText(int ret);
	static void Localize();

private:
	CPartFileConvert(void); // Just use static recover method

	static int performConvertToeMule(CString folder);
	static UINT AFX_CDECL run(LPVOID lpParam);
	static void	ReConvertNewEDPartfile(CString folder);
	static UINT	PFConvertThread(LPVOID param);
};

class CModeless : public CResizableDialog
{
	DECLARE_DYNAMIC(CModeless)

public:

	friend class CPartFileConvert;

	CModeless(CWnd* pParent = NULL);   // standard constructor
	virtual ~CModeless();

	void AddJob(ConvertJob* job);
	void RemoveJob(ConvertJob* job);
	void UpdateJobInfo(ConvertJob* job);
// Dialog Data
	enum { IDD = IDD_CONVERTPARTFILES };

protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	virtual void PostNcDestroy();

	DECLARE_MESSAGE_MAP()
	afx_msg void OnBnClickedOk();
	afx_msg void OnAddFolder();
	afx_msg void OnCancel();
	afx_msg void RetrySel();
	afx_msg void RemoveSel();
	afx_msg void ShowInfo();

public:
	CWnd* m_pParent;

private:
	CProgressCtrlX pb_current;
	CListCtrl	   joblist;
};


static CWinThread*	convertPfThread;
static CList<ConvertJob*,ConvertJob*> m_jobs;
static ConvertJob*	pfconverting;
static CModeless*	m_convertgui;

⌨️ 快捷键说明

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