AnyConnect Secure Mobility Client  3.1.07021
examples/GUI/PromptDialog.h
00001 /******************************************************************************\
00002  *  This sample is supplied as is with no implied warranty.  
00003  *  It is designed to assist you in using the Cisco AnyConnect VPN API. 
00004  *  It is assumed that you will build a production application and 
00005  *  refer to this sample as a reference only.
00006  \*****************************************************************************/
00007 
00008 #pragma once
00009 
00010 #include "stdafx.h"
00011 #include "MainDialog.h"
00012 // PromptDialog dialog
00013 
00014 class PromptDialog : public CDialog
00015 {
00016         DECLARE_DYNAMIC(PromptDialog)
00017 
00018 public:
00019         PromptDialog(MainDialog* pParent = NULL);   // standard constructor
00020         virtual ~PromptDialog();
00021 
00022 // Dialog Data
00023         enum { IDD = IDD_PROMPTDIALOG };
00024 
00025 protected:
00026         virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
00027     virtual BOOL OnInitDialog();
00028     MainDialog *parentWindow;
00029 
00030         DECLARE_MESSAGE_MAP()
00031 public:
00032     afx_msg void OnEnChangeEdit1();
00033     afx_msg void OnEnChangeEdit2();
00034     afx_msg void OnEnChangeEdit3();
00035     afx_msg void OnBnClickedOk();
00036 
00037     CString m_text1;
00038     CString m_text2;
00039     CString m_text3;
00040 };