?? mainfrm.cpp
字號:
// MainFrm.cpp : implementation of the CMainFrame class
//
#include "stdafx.h"
#include "xiongFtp.h"
#include "XiongFtpView.h"
#include "MainFrm.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMainFrame
BOOL IsFree;
//CFtpInfoView*
CMainFrame* pMain;
CInfoListView* pview;
//CInfoListView* pFtpInfoView;
CLocFileView* pLocView;
CServFileView* pServView;
char szAppName[256];
char szFtpName[256];
char szFtpUser[20];
char szFtpPassword[20];
char Ftpdirectory[MAX_PATH];
char Localdirectory[MAX_PATH];
int nPort;
int nCount;
IMPLEMENT_DYNCREATE(CMainFrame, CFrameWnd)
BEGIN_MESSAGE_MAP(CMainFrame, CFrameWnd)
ON_COMMAND_EX(CG_ID_VIEW_MYDIALOGBAR, OnBarCheck)
ON_UPDATE_COMMAND_UI(CG_ID_VIEW_MYDIALOGBAR, OnUpdateControlBarMenu)
//{{AFX_MSG_MAP(CMainFrame)
ON_WM_CREATE()
ON_BN_CLICKED(IDC_QUICKCONNECT, OnQuickconnect)
ON_COMMAND(ID_FILE_DISCONNECT, OnFileDisconnect)
ON_COMMAND(ID_FILE_STOP, OnFileStop)
ON_UPDATE_COMMAND_UI(ID_FILE_DISCONNECT, OnUpdateFileDisconnect)
ON_COMMAND(IDC_FILE_RECONNECT, OnFileReconnect)
ON_WM_SIZE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
static UINT indicators[] =
{
ID_SEPARATOR, // status line indicator
ID_INDICATOR_CAPS,
ID_INDICATOR_NUM,
ID_INDICATOR_SCRL,
};
/////////////////////////////////////////////////////////////////////////////
// CMainFrame construction/destruction
CMainFrame::CMainFrame()
{
m_bConnected=FALSE;
isok=0;
}
CMainFrame::~CMainFrame()
{
}
int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
{
CImageList imageList;
CBitmap bitmap;
if (CFrameWnd::OnCreate(lpCreateStruct) == -1)
return -1;
if (!m_wndToolBar.CreateEx(this, TBSTYLE_FLAT, WS_CHILD | WS_VISIBLE | CBRS_TOP
| CBRS_GRIPPER | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_SIZE_DYNAMIC) ||
!m_wndToolBar.LoadToolBar(IDR_MAINFRAME))
{
TRACE0("Failed to create toolbar\n");
return -1; // fail to create
}
if (!m_wndStatusBar.Create(this) ||
!m_wndStatusBar.SetIndicators(indicators,
sizeof(indicators)/sizeof(UINT)))
{
TRACE0("Failed to create status bar\n");
return -1; // fail to create
}
// TODO: Delete these three lines if you don't want the toolbar to
// be dockable
m_wndToolBar.EnableDocking(CBRS_ALIGN_ANY);
EnableDocking(CBRS_ALIGN_ANY);
DockControlBar(&m_wndToolBar);
// TODO: Add a menu item that will toggle the visibility of the // dialog bar named "My Dialog Bar": // 1. In ResourceView, open the menu resource that is used by // the CMainFrame class // 2. Select the View submenu // 3. Double-click on the blank item at the bottom of the submenu // 4. Assign the new item an ID: CG_ID_VIEW_MYDIALOGBAR // 5. Assign the item a Caption: My Dialog Bar // TODO: Change the value of CG_ID_VIEW_MYDIALOGBAR to an appropriate value: // 1. Open the file resource.h // CG: The following block was inserted by the 'Dialog Bar' component { // Initialize dialog bar m_wndMyDialogBar if (!m_wndMyDialogBar.Create(this, CG_IDD_MYDIALOGBAR, CBRS_TOP | CBRS_TOOLTIPS | CBRS_FLYBY | CBRS_HIDE_INPLACE, CG_ID_VIEW_MYDIALOGBAR)) { TRACE0("Failed to create dialog bar m_wndMyDialogBar\n"); return -1; // fail to create } m_wndMyDialogBar.EnableDocking(CBRS_ALIGN_TOP | CBRS_ALIGN_BOTTOM); EnableDocking(CBRS_ALIGN_ANY); DockControlBar(&m_wndMyDialogBar);
m_wndMyDialogBar.SetDlgItemText(IDC_FTPPORT,"21");
m_wndMyDialogBar.SetDlgItemText(IDC_FTPNAME,"127.0.0.1");
m_wndMyDialogBar.SetDlgItemText(IDC_FTPUSER,"anonymous");
m_wndMyDialogBar.SetDlgItemText(IDC_FTPPASSWORD,"yi@gait.com"); } pMain=this;
return 0;
}
BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
{
if( !CFrameWnd::PreCreateWindow(cs) )
return FALSE;
// TODO: Modify the Window class or styles here by modifying
// the CREATESTRUCT cs
return TRUE;
}
CString CMainFrame::GetFtpName()
{
CString str;
m_wndMyDialogBar.GetDlgItemText(IDC_FTPNAME,str);
return str;
}
int CMainFrame::GetFtpPort()
{
CString str;
m_wndMyDialogBar.GetDlgItemText(IDC_FTPPORT,str);
int i=atoi(str);
return i;
}
CString CMainFrame::GetFtpUser()
{
CString str;
m_wndMyDialogBar.GetDlgItemText(IDC_FTPUSER,str);
return str;
}
CString CMainFrame::GetFtpPassword()
{
CString str;
m_wndMyDialogBar.GetDlgItemText(IDC_FTPPASSWORD,str);
return str;
}
void CMainFrame::OnQuickconnect()
{
GetFtpPara(&(pServView->m_ctServDir));
if(!pServView->BeginFindServFile())
AfxMessageBox("建立網絡線程失敗");
m_bConnected=TRUE;
}
void CMainFrame::GetFtpPara(CComboBoxEx* pCombo)
{
CString str;
strcpy(szAppName,AfxGetAppName());
strcpy(szFtpPassword,GetFtpPassword());
strcpy(szFtpName,GetFtpName());
nPort=GetFtpPort();
pCombo->GetWindowText(str);
strcpy(Ftpdirectory,str);
strcpy(szFtpUser,GetFtpUser());
}
/////////////////////////////////////////////////////////////////////////////
// CMainFrame diagnostics
#ifdef _DEBUG
void CMainFrame::AssertValid() const
{
CFrameWnd::AssertValid();
}
void CMainFrame::Dump(CDumpContext& dc) const
{
CFrameWnd::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CMainFrame message handlers
//////////////////////////////////////////////////////////////////////
// CFtpParaClass Class
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
CFtpParaClass::CFtpParaClass()
{
HIMAGELIST hImageList;
SHFILEINFO shFi;
hImageList=(HIMAGELIST)SHGetFileInfo("C:\\",0,&shFi,sizeof(shFi),
SHGFI_SYSICONINDEX|SHGFI_SMALLICON);
if(!hImageList)
return ;
m_ctImageList.m_hImageList=hImageList;
m_hDragCursor=AfxGetApp()->LoadIcon(IDI_CURSOR);
m_bDragging=FALSE;
}
CFtpParaClass::~CFtpParaClass()
{
if(m_ctImageList.m_hImageList)
m_ctImageList.Detach();
}
void CFtpParaClass::SetFileColumns(CListCtrl* pListCtrl)
{
static struct
{
LPSTR pszText;
int uiFormat;
}columns[]={
_T("文件名"),LVCFMT_LEFT,
_T("日期"),LVCFMT_CENTER,
_T("字節數"),LVCFMT_CENTER
};
for(int i=0,j=120;i<sizeof(columns)/sizeof(columns[0]);i++,j-=10)
pListCtrl->InsertColumn(i,columns[i].pszText,columns[i].uiFormat,j);
}
void CFtpParaClass::SetPopMenu(int nIndex)
{
CMenu dMenu;
if(!dMenu.LoadMenu(IDR_LOC_SERV_MENU))
AfxThrowResourceException();
CMenu* pPopMenu=dMenu.GetSubMenu(nIndex);
ASSERT(pPopMenu!=NULL);
POINT pt;
::GetCursorPos(&pt);
pPopMenu->TrackPopupMenu(TPM_LEFTALIGN|TPM_RIGHTBUTTON,pt.x,pt.y,AfxGetMainWnd());
}
BOOL CFtpParaClass::SetImageList(CListCtrl* pListCtrl,CComboBoxEx* pCombo)
{
pListCtrl->SetImageList(&m_ctImageList,LVSIL_SMALL);
if(!pCombo)
return TRUE;
pCombo->SetImageList(&m_ctImageList);
return TRUE;
}
void CFtpParaClass::GetFileIcon(CString& fileName,int* iIcon,int* iIconSel)
{
CString str=fileName;
if(str.Right(1)!="\\")
str+="\\";
SHFILEINFO shFi;
if(!SHGetFileInfo(str,0,&shFi,sizeof(shFi),SHGFI_ICON|SHGFI_SMALLICON|SHGFI_DISPLAYNAME))
{
AfxMessageBox("111");
return;
}
*iIcon=shFi.iIcon;
DestroyIcon(shFi.hIcon);
if(iIconSel)
{
if(!SHGetFileInfo(str,0,&shFi,sizeof(shFi),SHGFI_ICON|SHGFI_SMALLICON|SHGFI_OPENICON|SHGFI_DISPLAYNAME))
{
AfxMessageBox("222");
return;
}
*iIconSel=shFi.iIcon;
DestroyIcon(shFi.hIcon);
}
// fileName=shFi.szDisplayName;
return ;
}
void CFtpParaClass::OnInsertFile(CListCtrl* pListCtrl,LPVOID pIn,LPARAM lParam)
{
FILE_FTP_INFO*fileInfo=(FILE_FTP_INFO*)pIn;
LVITEM lvIt;
int iIcon,nItem;
if(fileInfo->nType==DIRECTORYICON)
nItem=0;
else
nItem=pListCtrl->GetItemCount();
CString fileName=fileInfo->szFileName;;
if((int)lParam==LOCFILE)
GetFileIcon(fileName,&iIcon);
else
iIcon=fileInfo->nType;
lvIt.mask=LVIF_TEXT|LVIF_IMAGE|LVIF_PARAM;
lvIt.iImage=iIcon;
lvIt.lParam=fileInfo->nType;
lvIt.pszText=fileInfo->szFileName;
lvIt.iSubItem=0;
lvIt.iItem=nItem;
int iPos=pListCtrl->InsertItem(&lvIt);
lvIt.mask=LVIF_TEXT;
lvIt.iItem=iPos;
lvIt.pszText=fileInfo->szFileDate;
lvIt.iSubItem=1;
pListCtrl->SetItem(&lvIt);
lvIt.pszText=fileInfo->szFileSize;
lvIt.iSubItem=2;
pListCtrl->SetItem(&lvIt);
IsFree=TRUE;
}
void CFtpParaClass::OnFileName(CListCtrl* pListCtrl)
{
POSITION iPos=pListCtrl->GetFirstSelectedItemPosition();
CString str;
int nItem=pListCtrl->GetNextSelectedItem(iPos);
str=pListCtrl->GetItemText(nItem,0);
MyEdit* pEdit=new MyEdit(nItem,0,str,pListCtrl);
CRect rect;
pListCtrl->GetItemRect(nItem,&rect,LVIR_LABEL);
rect.left+=1;
rect.right-=10;
rect.top+=26;
rect.bottom+=26;
pEdit->Create(WS_CHILD|WS_VISIBLE|ES_LEFT|WS_BORDER|ES_MULTILINE|ES_AUTOVSCROLL,rect,pListCtrl->GetParent(),IDD_INPUT_EDIT);
}
/////////////////////////////////////////////////////////////////////////////
// CLocFileView
IMPLEMENT_DYNCREATE(CLocFileView, CFormView)
CLocFileView::CLocFileView()
: CFormView(CLocFileView::IDD)
{
m_bHaveDotFlag=FALSE;
m_pSendFileThread=NULL;
//{{AFX_DATA_INIT(CLocFileView)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
}
CLocFileView::~CLocFileView()
{
if(m_pFindLocFileThread)
{
m_pFindLocFileThread->ResumeThread();
::WaitForSingleObject(m_pFindLocFileThread->m_hThread,100);
delete m_pFindLocFileThread;
m_pFindLocFileThread=NULL;
}
if(m_pSendFileThread)
{ m_pSendFileThread->ResumeThread();
::WaitForSingleObject(m_pSendFileThread->m_hThread,100);
delete m_pSendFileThread;
m_pSendFileThread=NULL;
}
}
void CLocFileView::DoDataExchange(CDataExchange* pDX)
{
CFormView::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CLocFileView)
DDX_Control(pDX, IDC_LOC_FILE, m_ctLocFile);
DDX_Control(pDX, IDC_LOC_DIR, m_ctLocDir);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CLocFileView, CFormView)
//{{AFX_MSG_MAP(CLocFileView)
ON_NOTIFY(NM_DBLCLK, IDC_LOC_FILE, OnDblclkLocFile)
ON_WM_SIZE()
ON_CBN_SELCHANGE(IDC_LOC_DIR, OnSelchangeLocDir)
ON_CBN_DROPDOWN(IDC_LOC_DIR, OnDropdownLocDir)
ON_NOTIFY(LVN_BEGINDRAG, IDC_LOC_FILE, OnBegindragLocFile)
ON_WM_MOUSEMOVE()
ON_WM_LBUTTONUP()
ON_NOTIFY(NM_RCLICK, IDC_LOC_FILE, OnRclickLocFile)
ON_NOTIFY(LVN_BEGINLABELEDIT, IDC_LOC_FILE, OnBeginlabeleditLocFile)
ON_NOTIFY(LVN_ENDLABELEDIT, IDC_LOC_FILE, OnEndlabeleditLocFile)
//}}AFX_MSG_MAP
ON_MESSAGE(WM_SETFILE,CLocFileView::OnInsertLocFile)
ON_MESSAGE(WM_SETREDRAWFLAG,CLocFileView::OnSetLocRedrawFlag)
ON_MESSAGE(WM_SETDIRECTORYDISPLAY,CLocFileView::OnSetLocDirectoryDisplay)
ON_MESSAGE(WM_REDISPLAYFILE,CLocFileView::OnReDisplayLocFile)
ON_MESSAGE(WM_SETDIR,CLocFileView::OnSetLocDir)
ON_COMMAND(ID_FILE_DELETE,CLocFileView::OnLocFileDelete)
ON_COMMAND(ID_FILE_SEND,CLocFileView::OnLocFileSend)
ON_COMMAND(ID_FILE_RENAME,CLocFileView::OnLocFileReName)
ON_COMMAND(ID_FILE_EXECUTE,CLocFileView::OnLocFileOpen)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CLocFileView diagnostics
#ifdef _DEBUG
void CLocFileView::AssertValid() const
{
CFormView::AssertValid();
}
void CLocFileView::Dump(CDumpContext& dc) const
{
CFormView::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CLocFileView message handlers
/////////////////////////////////////////////////////////////////////////////
// CServFileView
IMPLEMENT_DYNCREATE(CServFileView, CFormView)
CServFileView::CServFileView()
: CFormView(CServFileView::IDD)
{
m_bHaveDotFlag=FALSE;
m_pRenameFileThread=NULL;
m_pReceiveFileThread=NULL;
m_pFindServFileThread=NULL;
m_pDeleteFileThread=NULL;
//{{AFX_DATA_INIT(CServFileView)
//}}AFX_DATA_INIT
}
CServFileView::~CServFileView()
{
if(m_ctServImageList.m_hImageList)
m_ctServImageList.Detach();
if(m_pFindServFileThread)
{
::WaitForSingleObject(m_pFindServFileThread->m_hThread,100);
delete m_pFindServFileThread;
}
if(m_pReceiveFileThread)
{
::WaitForSingleObject(m_pReceiveFileThread->m_hThread,100);
delete m_pReceiveFileThread;
}
if(m_pDeleteFileThread)
{
::WaitForSingleObject(m_pDeleteFileThread->m_hThread,100);
delete m_pDeleteFileThread;
}
if(m_pRenameFileThread)
{
::WaitForSingleObject(m_pRenameFileThread->m_hThread,100);
delete m_pRenameFileThread;
}
DeleteObject(hBitmap);
}
void CServFileView::DoDataExchange(CDataExchange* pDX)
{
CFormView::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CServFileView)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -