summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDennis Syrovatsky <dennis@tightvnc.com>2005-12-14 11:56:25 +0000
committerDennis Syrovatsky <dennis@tightvnc.com>2005-12-14 11:56:25 +0000
commit555884dfac31f0291542e5b54feae7a24be0805c (patch)
treecb97b391b88fa6ca88eed171bcb4fb28c64ffab8
parent05c424e7c4af69b434d9b5bf2823c6d044f2d91f (diff)
downloadtigervnc-555884dfac31f0291542e5b54feae7a24be0805c.tar.gz
tigervnc-555884dfac31f0291542e5b54feae7a24be0805c.zip
Added CreateFolderDlg class : public rfb_win32::Dialog.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@447 3789f03b-4d11-0410-bbf8-ca57d06f2519
-rw-r--r--vncviewer/FTDialog.h15
1 files changed, 14 insertions, 1 deletions
diff --git a/vncviewer/FTDialog.h b/vncviewer/FTDialog.h
index e3d1d376..ed3afa97 100644
--- a/vncviewer/FTDialog.h
+++ b/vncviewer/FTDialog.h
@@ -28,6 +28,7 @@
#include <commctrl.h>
#include <rfb/FileInfo.h>
+#include <rfb_win32/Dialog.h>
#include <vncviewer/FileTransfer.h>
#include <vncviewer/FTListView.h>
#include <vncviewer/FTProgress.h>
@@ -181,8 +182,20 @@ namespace rfb {
bool close(bool bResult);
};
- private:
+ private:
CancelingDlg *m_pCancelingDlg;
+
+ public:
+ class CreateFolderDlg : public Dialog
+ {
+ public:
+ CreateFolderDlg(FTDialog *pFTDlg);
+ ~CreateFolderDlg();
+
+ };
+
+ private:
+ CreateFolderDlg *m_pCreateFolderDlg;
};
}
}