aboutsummaryrefslogtreecommitdiffstats
path: root/vncviewer/FTDialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'vncviewer/FTDialog.h')
-rw-r--r--vncviewer/FTDialog.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/vncviewer/FTDialog.h b/vncviewer/FTDialog.h
index 2e70db30..82e75367 100644
--- a/vncviewer/FTDialog.h
+++ b/vncviewer/FTDialog.h
@@ -56,6 +56,10 @@ namespace rfb {
HWND getWndHandle() { return m_hwndFTDialog; }
+ void postCheckTransferQueueMsg();
+ void postUploadFilePortionMsg();
+ void postDownloadFilePortionMsg();
+
FTProgress *m_pProgress;
private:
@@ -95,6 +99,7 @@ namespace rfb {
void setIcon(int dest, int idIcon);
bool initFTDialog();
+ bool initFTWndMsgs();
void onLocalOneUpFolder();
void onRemoteOneUpFolder();
@@ -105,6 +110,10 @@ namespace rfb {
bool m_bDlgShown;
+ UINT m_msgCheckTransferQueue;
+ UINT m_msgUploadFilePortion;
+ UINT m_msgDownloadFilePortion;
+
FTListView *m_pLocalLV;
FTListView *m_pRemoteLV;
@@ -115,6 +124,10 @@ namespace rfb {
char m_szLocalPathTmp[FT_FILENAME_SIZE];
char m_szRemotePathTmp[FT_FILENAME_SIZE];
+ static const char szCheckTransferQueueText[];
+ static const char szUploadFilePortionText[];
+ static const char szDownloadFilePortionText[];
+
typedef struct tagFTBUTTONSSTATE
{
bool uploadBtn;