📄 catdialog.cpp
字号:
//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.
#include "stdafx.h"
#include "emule.h"
#include "CatDialog.h"
#include "Preferences.h"
#include "otherfunctions.h"
#include "SharedFileList.h"
#include "emuledlg.h"
#include "TransferWnd.h"
#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif
// CCatDialog dialog
IMPLEMENT_DYNAMIC(CCatDialog, CDialog)
CCatDialog::CCatDialog(int index)
: CDialog(CCatDialog::IDD, 0)
{
m_myCat=thePrefs.GetCategory(index);
if (m_myCat==NULL) return;
}
BOOL CCatDialog::OnInitDialog(){
CDialog::OnInitDialog();
InitWindowStyles(this);
Localize();
UpdateData();
m_bCancelled=false;
return true;
}
void CCatDialog::UpdateData(){
GetDlgItem(IDC_TITLE)->SetWindowText(m_myCat->title);
GetDlgItem(IDC_INCOMING)->SetWindowText(m_myCat->incomingpath);
GetDlgItem(IDC_COMMENT)->SetWindowText(m_myCat->comment);
COLORREF selcolor=m_myCat->color;
newcolor=m_myCat->color;
m_ctlColor.SetColor(selcolor);
// HoaX_69: AutoCat
GetDlgItem(IDC_AUTOCATEXT)->SetWindowText(m_myCat->autocat);
m_prio.SetCurSel(m_myCat->prio);
}
CCatDialog::~CCatDialog()
{
}
void CCatDialog::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
DDX_Control(pDX, IDC_CATCOLOR, m_ctlColor);
DDX_Control(pDX, IDC_PRIOCOMBO, m_prio);
}
BEGIN_MESSAGE_MAP(CCatDialog, CDialog)
ON_BN_CLICKED(IDC_BROWSE, OnBnClickedBrowse)
ON_BN_CLICKED(IDOK, OnBnClickedOk)
ON_BN_CLICKED(IDCANCEL, OnBnClickedCancel)
ON_MESSAGE(CPN_SELENDOK, OnSelChange) //CPN_SELCHANGE
END_MESSAGE_MAP()
// CCatDialog message handlers
void CCatDialog::Localize(){
GetDlgItem(IDC_STATIC_TITLE)->SetWindowText(GetResString(IDS_TITLE));
GetDlgItem(IDC_STATIC_INCOMING)->SetWindowText(GetResString(IDS_PW_INCOMING));
GetDlgItem(IDC_STATIC_COMMENT)->SetWindowText(GetResString(IDS_COMMENT));
GetDlgItem(IDCANCEL)->SetWindowText(GetResString(IDS_CANCEL));
GetDlgItem(IDC_STATIC_COLOR)->SetWindowText(GetResString(IDS_COLOR));
GetDlgItem(IDC_STATIC_PRIO)->SetWindowText(GetResString(IDS_STARTPRIO));
GetDlgItem(IDC_STATIC_AUTOCAT)->SetWindowText(GetResString(IDS_AUTOCAT_LABEL));
m_ctlColor.CustomText = GetResString(IDS_COL_MORECOLORS);
m_ctlColor.DefaultText = GetResString(IDS_DEFAULT);
m_ctlColor.SetDefaultColor(NULL);
SetWindowText(GetResString(IDS_EDITCAT));
while (m_prio.GetCount()>0) m_prio.DeleteString(0);
//m_prio.AddString(GetResString(IDS_DONTCHANGE)); //ZZ:DownloadManager
m_prio.AddString(GetResString(IDS_PRIOLOW));
m_prio.AddString(GetResString(IDS_PRIONORMAL));
m_prio.AddString(GetResString(IDS_PRIOHIGH));
//m_prio.AddString(GetResString(IDS_PRIOAUTO)); //ZZ:DownloadManager
m_prio.SetCurSel(m_myCat->prio);
}
void CCatDialog::OnBnClickedBrowse()
{
TCHAR buffer[MAX_PATH] = {0};
GetDlgItemText(IDC_INCOMING, buffer, ARRSIZE(buffer));
if(SelectDir(GetSafeHwnd(), buffer,GetResString(IDS_SELECT_INCOMINGDIR)))
GetDlgItem(IDC_INCOMING)->SetWindowText(buffer);
}
void CCatDialog::OnBnClickedOk()
{
CString oldpath = m_myCat->incomingpath;
if (GetDlgItem(IDC_TITLE)->GetWindowTextLength()>0)
GetDlgItem(IDC_TITLE)->GetWindowText(m_myCat->title, ARRSIZE(m_myCat->title));
if (GetDlgItem(IDC_INCOMING)->GetWindowTextLength()>2)
GetDlgItem(IDC_INCOMING)->GetWindowText(m_myCat->incomingpath, ARRSIZE(m_myCat->incomingpath));
GetDlgItem(IDC_COMMENT)->GetWindowText(m_myCat->comment, ARRSIZE(m_myCat->comment));
MakeFoldername(m_myCat->incomingpath);
if (!thePrefs.IsShareableDirectory(m_myCat->incomingpath)){
_sntprintf(m_myCat->incomingpath, ARRSIZE(m_myCat->incomingpath), _T("%s"), thePrefs.GetIncomingDir());
MakeFoldername(m_myCat->incomingpath);
}
if (!PathFileExists(m_myCat->incomingpath)){
if (!::CreateDirectory(m_myCat->incomingpath, 0)){
AfxMessageBox(GetResString(IDS_ERR_BADFOLDER));
_tcscpy(m_myCat->incomingpath,oldpath);
return;
}
}
if (CString(m_myCat->incomingpath).CompareNoCase(oldpath)!=0)
theApp.sharedfiles->Reload();
m_myCat->color=newcolor;
m_myCat->prio=m_prio.GetCurSel();
GetDlgItem(IDC_AUTOCATEXT)->GetWindowText(m_myCat->autocat);
theApp.emuledlg->transferwnd->downloadlistctrl.Invalidate();
OnOK();
}
void CCatDialog::OnBnClickedCancel()
{
m_bCancelled=true;
OnCancel();
}
LONG CCatDialog::OnSelChange(UINT lParam, LONG wParam)
{
if (lParam==CLR_DEFAULT)
newcolor=0;
else
newcolor=m_ctlColor.GetColor();
return TRUE;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -