📄 catdialog.cpp
字号:
//this file is part of eMule
//created by Ornis
//
//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.
// CatDialog.cpp : implementation file
#include "stdafx.h"
#include "eMule.h"
#include "CatDialog.h"
#include "Preferences.h"
#include "otherfunctions.h"
// CCatDialog dialog
IMPLEMENT_DYNAMIC(CCatDialog, CDialog)
CCatDialog::CCatDialog(int index)
: CDialog(CCatDialog::IDD, 0)
{
m_myCat=theApp.glob_prefs->GetCategory(index);
if (m_myCat==NULL) return;
}
BOOL CCatDialog::OnInitDialog(){
CDialog::OnInitDialog();
Localize();
UpdateData();
return true;
}
void CCatDialog::UpdateData(){
CString buffer;
buffer.Format("%s",m_myCat->title);
GetDlgItem(IDC_TITLE)->SetWindowText(buffer);
buffer.Format("%s",m_myCat->incomingpath);
GetDlgItem(IDC_INCOMING)->SetWindowText(buffer);
buffer.Format("%s",m_myCat->comment);
GetDlgItem(IDC_COMMENT)->SetWindowText(buffer);
COLORREF selcolor=m_myCat->color;
newcolor=m_myCat->color;
m_ctlColor.SetColor(selcolor);
}
CCatDialog::~CCatDialog()
{
}
void CCatDialog::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
DDX_Control(pDX, IDC_CATCOLOR, m_ctlColor);
}
BEGIN_MESSAGE_MAP(CCatDialog, CDialog)
ON_BN_CLICKED(IDC_BROWSE, OnBnClickedBrowse)
ON_BN_CLICKED(IDOK, OnBnClickedOk)
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));
m_ctlColor.CustomText = _T(GetResString(IDS_COL_MORECOLORS));
m_ctlColor.DefaultText = _T(GetResString(IDS_DEFAULT));
m_ctlColor.SetDefaultColor(NULL);
SetWindowText(GetResString(IDS_EDITCAT));
}
void CCatDialog::OnBnClickedBrowse()
{
char buffer[MAX_PATH];
if(SelectDir(GetSafeHwnd(), buffer,GetResString(IDS_SELECT_INCOMINGDIR)))
GetDlgItem(IDC_INCOMING)->SetWindowText(buffer);
}
void CCatDialog::OnBnClickedOk()
{
CString oldpath=CString(m_myCat->incomingpath);
if (GetDlgItem(IDC_TITLE)->GetWindowTextLength()>0) GetDlgItem(IDC_TITLE)->GetWindowText(m_myCat->title,64);
if (GetDlgItem(IDC_INCOMING)->GetWindowTextLength()>2) GetDlgItem(IDC_INCOMING)->GetWindowText(m_myCat->incomingpath,MAX_PATH);
GetDlgItem(IDC_COMMENT)->GetWindowText(m_myCat->comment,255);
MakeFoldername(m_myCat->incomingpath);
if (!PathFileExists(m_myCat->incomingpath)) ::CreateDirectory(m_myCat->incomingpath,0);
if (CString(m_myCat->incomingpath).CompareNoCase(oldpath)!=0) {
theApp.sharedfiles->AddFilesFromDirectory(m_myCat->incomingpath);
theApp.sharedfiles->Reload();
}
m_myCat->color=newcolor;
theApp.emuledlg->transferwnd.downloadlistctrl.Invalidate();
OnOK();
}
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 + -