blob: 08bb7717b0a7f5ce690ec91f068b9421e12b4e3f [file] [log] [blame]
Dennis Syrovatsky139d7832005-11-02 05:36:05 +00001/* Copyright (C) 2005 TightVNC Team. All Rights Reserved.
2 *
3 * This is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This software is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this software; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
16 * USA.
17 *
18 * TightVNC distribution homepage on the Web: http://www.tightvnc.com/
19 *
20 */
21
22// -=- FTDialog.cxx
23
24#include <vncviewer/FTDialog.h>
25
26using namespace rfb;
27using namespace rfb::win32;
28
29FTDialog::FTDialog(HINSTANCE hInst, FileTransfer *pFT) : Dialog(hInst)
30{
31 m_pFileTransfer = pFT;
32 m_hInstance = hInst;
33 m_bDlgShown = false;
34 m_szLocalPath[0] = '\0';
35 m_szRemotePath[0] = '\0';
36 m_szLocalPathTmp[0] = '\0';
37 m_szRemotePathTmp[0] = '\0';
38}
39
40FTDialog::~FTDialog()
41{
42 closeFTDialog();
43}
44
45bool
46FTDialog::createFTDialog()
47{
48 return false;
49}
50
51bool
52FTDialog::initFTDialog()
53{
54 return false;
55}
56
57void
58FTDialog::closeFTDialog()
59{
60}
61
62BOOL CALLBACK
63FTDialog::FTDialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
64{
65 FTDialog *_this = (FTDialog *) GetWindowLong(hwnd, GWL_USERDATA);
66 return FALSE;
67}
68
69void
70FTDialog::reloadLocalFileList()
71{
72}
73
74void
75FTDialog::reloadRemoteFileList()
76{
77}
78
79void
80FTDialog::onLocalItemActivate(LPNMITEMACTIVATE lpnmia)
81{
82}
83
84void
85FTDialog::onRemoteItemActivate(LPNMITEMACTIVATE lpnmia)
86{
87}
88
89void
90FTDialog::addLocalLVItems(FileInfo *pFI)
91{
92}
93
94void
95FTDialog::addRemoteLVItems(FileInfo *pFI)
96{
97}
98
99void
100FTDialog::onLocalOneUpFolder(char *pPath)
101{
102}
103
104void
105FTDialog::onRemoteOneUpFolder(char *pPath)
106{
107}