//-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- // // SETUP.H // Main classes declarations for SETUP.CPP file. // //-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- // // You can use this sample at your own risk. // //-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- // // Use this file with SETUP.CPP and CSETUP.DLL. // If you want to compile this file, you must use Visual C++ and MFC 2.0 library. // //-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- #ifndef __AFXWIN_H__ #error include 'stdafx.h' before including this file for PCH #endif #include "resource.h" // main symbols ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // CSetupApp: // See setup.cpp for the implementation of this class // class CSetupApp : public CWinApp { public: CSetupApp(); virtual BOOL InitInstance(); virtual int ExitInstance(); //{{AFX_MSG(CSetupApp) // NOTE - the ClassWizard will add and remove member functions here. // DO NOT EDIT what you see in these blocks of generated code ! //}}AFX_MSG DECLARE_MESSAGE_MAP() }; //{{AFX_VBX_REGISTER() //}}AFX_VBX_REGISTER ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // CFirst dialog class CFirst : public CDialog { BOOL FirstCanClose; public: CFirst(CWnd* pParent = NULL); // standard constructor //{{AFX_DATA(CFirst) enum { IDD = IDD_FIRST }; // NOTE: the ClassWizard will add data members here //}}AFX_DATA protected: HFONT hfontDlg; LOGFONT lFont; virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support //{{AFX_MSG(CFirst) virtual BOOL OnInitDialog(); afx_msg LRESULT OnFirstPrivate( WPARAM wParam, LPARAM lParam ); afx_msg void OnClose(); afx_msg void OnDestroy(); //}}AFX_MSG DECLARE_MESSAGE_MAP() }; ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // CMain dialog class CMain : public CDialog { public: CMain(CWnd* pParent = NULL); // standard constructor //{{AFX_DATA(CMain) enum { IDD = IDD_MAIN }; // NOTE: the ClassWizard will add data members here //}}AFX_DATA protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support //{{AFX_MSG(CMain) virtual BOOL OnInitDialog(); afx_msg LRESULT OnFirstPrivate( WPARAM wParam, LPARAM lParam ); afx_msg LRESULT OnNewDisk( WPARAM wParam, LPARAM lParam ); afx_msg void OnPaint(); afx_msg void OnNcPaint(); //}}AFX_MSG DECLARE_MESSAGE_MAP() }; ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // CChoice1 dialog class CChoice1 : public CDialog { public: CChoice1(CWnd* pParent = NULL); // standard constructor //{{AFX_DATA(CChoice1) enum { IDD = IDD_CHOICE1 }; // NOTE: the ClassWizard will add data members here //}}AFX_DATA protected: HFONT hfontDlg; LOGFONT lFont; virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support //{{AFX_MSG(CChoice1) virtual BOOL OnInitDialog(); afx_msg void OnClickedRadioenglish(); afx_msg void OnClickedRadiofrench(); afx_msg void OnChangeEditsrcpath(); virtual void OnOK(); afx_msg void OnDestroy(); afx_msg void OnBrowse(); //}}AFX_MSG DECLARE_MESSAGE_MAP() }; ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// // CChoice2 dialog class CChoice2 : public CDialog { public: CChoice2(CWnd* pParent = NULL); // standard constructor //{{AFX_DATA(CChoice2) enum { IDD = IDD_CHOICE2 }; // NOTE: the ClassWizard will add data members here //}}AFX_DATA protected: HFONT hfontDlg; LOGFONT lFont; void HandleCheckBox( int iD ); virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support //{{AFX_MSG(CChoice2) virtual BOOL OnInitDialog(); afx_msg void OnClickedChangepath(); virtual void OnOK(); afx_msg void OnClickedCheck1(); afx_msg void OnClickedCheck2(); afx_msg void OnClickedCheck3(); afx_msg void OnClickedCheck4(); afx_msg void OnClickedCheck5(); afx_msg void OnClickedCheck6(); afx_msg void OnClickedCheck7(); afx_msg void OnClickedCheck8(); afx_msg void OnClickedCheck9(); afx_msg void OnClickedCheck10(); afx_msg void OnClickedCheck11(); afx_msg void OnClickedCheck12(); afx_msg void OnClickedCheck13(); afx_msg void OnClickedCheck14(); afx_msg void OnClickedCheck15(); afx_msg void OnDestroy(); //}}AFX_MSG DECLARE_MESSAGE_MAP() };