Dennis Syrovatsky | 139d783 | 2005-11-02 05:36:05 +0000 | [diff] [blame^] | 1 | /* 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 | |
| 26 | using namespace rfb; |
| 27 | using namespace rfb::win32; |
| 28 | |
| 29 | FTDialog::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 | |
| 40 | FTDialog::~FTDialog() |
| 41 | { |
| 42 | closeFTDialog(); |
| 43 | } |
| 44 | |
| 45 | bool |
| 46 | FTDialog::createFTDialog() |
| 47 | { |
| 48 | return false; |
| 49 | } |
| 50 | |
| 51 | bool |
| 52 | FTDialog::initFTDialog() |
| 53 | { |
| 54 | return false; |
| 55 | } |
| 56 | |
| 57 | void |
| 58 | FTDialog::closeFTDialog() |
| 59 | { |
| 60 | } |
| 61 | |
| 62 | BOOL CALLBACK |
| 63 | FTDialog::FTDialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam) |
| 64 | { |
| 65 | FTDialog *_this = (FTDialog *) GetWindowLong(hwnd, GWL_USERDATA); |
| 66 | return FALSE; |
| 67 | } |
| 68 | |
| 69 | void |
| 70 | FTDialog::reloadLocalFileList() |
| 71 | { |
| 72 | } |
| 73 | |
| 74 | void |
| 75 | FTDialog::reloadRemoteFileList() |
| 76 | { |
| 77 | } |
| 78 | |
| 79 | void |
| 80 | FTDialog::onLocalItemActivate(LPNMITEMACTIVATE lpnmia) |
| 81 | { |
| 82 | } |
| 83 | |
| 84 | void |
| 85 | FTDialog::onRemoteItemActivate(LPNMITEMACTIVATE lpnmia) |
| 86 | { |
| 87 | } |
| 88 | |
| 89 | void |
| 90 | FTDialog::addLocalLVItems(FileInfo *pFI) |
| 91 | { |
| 92 | } |
| 93 | |
| 94 | void |
| 95 | FTDialog::addRemoteLVItems(FileInfo *pFI) |
| 96 | { |
| 97 | } |
| 98 | |
| 99 | void |
| 100 | FTDialog::onLocalOneUpFolder(char *pPath) |
| 101 | { |
| 102 | } |
| 103 | |
| 104 | void |
| 105 | FTDialog::onRemoteOneUpFolder(char *pPath) |
| 106 | { |
| 107 | } |