summaryrefslogtreecommitdiffstats
path: root/vncviewer/FTDialog.h
blob: bfedf3156ddeaae7e1ec8b7b25e8f0b5086d713b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/* Copyright (C) 2005 TightVNC Team.  All Rights Reserved.
 *    
 * This 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 software 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 software; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
 * USA.
 *
 * TightVNC distribution homepage on the Web: http://www.tightvnc.com/
 *
 */

// -=- FTDialog.h

#ifndef __RFB_WIN32_FTDIALOG_H__
#define __RFB_WIN32_FTDIALOG_H__

#include <windows.h>
#include <commctrl.h>

#include <rfb/FileInfo.h>
#include <vncviewer/FileTransfer.h>
#include <vncviewer/FTListView.h>
#include <vncviewer/FTProgress.h>
#include <vncviewer/resource.h>

namespace rfb {
  namespace win32 {
    class FileTransfer;

    class FTDialog
    {
    public:
      FTDialog(HINSTANCE hInst, FileTransfer *pFT);
      ~FTDialog();
      
      bool createFTDialog(HWND hwndParent);
      bool closeFTDialog();
      void destroyFTDialog();
      
      static BOOL CALLBACK FTDialogProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
      
      void addRemoteLVItems(FileInfo *pFI);
      void reqFolderUnavailable();
      
    private:
      FileTransfer *m_pFileTransfer;
      
      HWND m_hwndFTDialog;
      HWND m_hwndLocalPath;
      HWND m_hwndRemotePath;
      HINSTANCE m_hInstance;
      
      void showLocalLVItems();
      void showRemoteLVItems();

      void onLocalItemActivate(LPNMITEMACTIVATE lpnmia);
      void onRemoteItemActivate(LPNMITEMACTIVATE lpnmia);

      void onLocalReload();
      void onRemoteReload();

      void onLocalRButton();
      void onRemoteRButton();
      void showFTMenu(bool copyBtnState, bool createFldBtnState, 
                      bool renameBtnState, bool deleteBtnState, 
                      bool cancelBtnState);
      void onFTMenuCommand(int command);

      void onUpload();
      void onDownload();

      void onLocalRename();
      void onRemoteRename();

      void onLocalDelete();
      void onRemoteDelete();

      void onFTCancel();

      void setIcon(int dest, int idIcon);
      bool initFTDialog();
      
      void onLocalOneUpFolder();
      void onRemoteOneUpFolder();
      int makeOneUpFolder(char *pPath);

      void refreshBtnState();
      void setButtonsState();
      
      bool m_bDlgShown;

      FTListView *m_pLocalLV;
      FTListView *m_pRemoteLV;

      FTProgress *m_pProgress;

      int m_FTMenuSource;

      char m_szLocalPath[FT_FILENAME_SIZE];
      char m_szRemotePath[FT_FILENAME_SIZE];
      char m_szLocalPathTmp[FT_FILENAME_SIZE];
      char m_szRemotePathTmp[FT_FILENAME_SIZE];

      typedef struct tagFTBUTTONSSTATE
      {
        bool uploadBtn;
        bool downloadBtn;
        bool createLocalFldBtn;
        bool createRemoteFldBtn;
        bool renameLocalBtn;
        bool renameRemoteBtn;
        bool deleteLocalBtn;
        bool deleteRemoteBtn;
        bool cancelBtn;
      } FTBUTTONSSTATE;

      FTBUTTONSSTATE m_BtnState;
    };
  }
}

#endif // __RFB_WIN32_FTDIALOG_H__