📄 transferwnd.h
字号:
//this file is part of eMule
//Copyright (C)2002 Merkur ( merkur-@users.sourceforge.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 "uploadlistctrl.h"
#include "downloadlistctrl.h"
#include "ResizableLib\ResizableDialog.h"
#include "SplitterControl.h"
#include "queuelistctrl.h"
#include "clientlistctrl.h"
#include "BtnST.h"
#include "CatDialog.h"
// CTransferWnd dialog
class CTransferWnd : public CResizableDialog
{
DECLARE_DYNAMIC(CTransferWnd)
public:
CTransferWnd(CWnd* pParent = NULL); // standard constructor
virtual ~CTransferWnd();
void ShowQueueCount(uint32 number);
void SwitchUploadList();
void OnBnClickedQueueRefreshButton();
void Localize();
bool isUploadQueueVisible() { return (windowtransferstate == 0); }
bool downloadlistactive;
// Dialog Data
enum { IDD = IDD_TRANSFER };
CUploadListCtrl uploadlistctrl;
CDownloadListCtrl downloadlistctrl;
CQueueListCtrl queuelistctrl;
CClientListCtrl clientlistctrl;
CToolTipCtrl m_ttip;
protected:
void DoResize(int delta);
void UpdateSplitterRange();
void SetInitLayout();
virtual BOOL PreTranslateMessage(MSG* pMsg);
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
virtual BOOL OnInitDialog();
virtual LRESULT DefWindowProc(UINT message, WPARAM wParam, LPARAM lParam);
afx_msg BOOL OnToolTipNotify(UINT id, NMHDR *pNMH, LRESULT *pResult);
void DoSplitResize(int delta);
void UpdateToolTips(void);
int GetItemUnderMouse(CListCtrl* ctrl);
CSplitterControl m_wndSplitter;
DECLARE_MESSAGE_MAP()
private:
int GetTabUnderMouse(CPoint* point);
CString m_strToolTip;
int m_iOldToolTipItemDown;
int m_iOldToolTipItemUp;
int m_iOldToolTipItemQueue;
int m_iOldToolTipItemDowning;
int m_iOldToolTipItemConnect;
uint8 windowtransferstate;
CButtonST m_uplBtn;
CTabCtrl m_dlTab;
int rightclickindex;
void EditCatTabLabel(int index,CString newlabel);
int m_nDragIndex;
int m_nDropIndex;
bool m_bIsDragging;
CImageList* m_pDragImage;
public:
afx_msg void OnHoverUploadList(NMHDR *pNMHDR, LRESULT *pResult);
afx_msg void OnHoverDownloadList(NMHDR *pNMHDR, LRESULT *pResult);
afx_msg void OnTcnSelchangeDltab(NMHDR *pNMHDR, LRESULT *pResult);
afx_msg void OnNMRclickDltab(NMHDR *pNMHDR, LRESULT *pResult);
afx_msg void OnLvnBegindrag(NMHDR *pNMHDR, LRESULT *pResult);
void OnMouseMove(UINT nFlags, CPoint point);
void OnLButtonUp(UINT nFlags, CPoint point);
virtual BOOL OnCommand(WPARAM wParam,LPARAM lParam );
int AddCategorie(CString newtitle,CString newincoming,CString newcomment,bool addTab=true);
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -