// The contents of this file are subject to the Mozilla Public License // Version 1.0 (the "License"); you may not use this file except in // compliance with the License. You may obtain a copy of the License at // http://www.mozilla.org/MPL/ // // Software distributed under the License is distributed on an "AS IS" // basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the // License for the specific language governing rights and limitations // under the License. // // The Original Code is the Berkeley Open Infrastructure for Network Computing. // // The Initial Developer of the Original Code is the SETI@home project. // Portions created by the SETI@home project are Copyright (C) 2002 // University of California at Berkeley. All Rights Reserved. // // Contributor(s): // #ifndef __WIN_DIALOG_H_ #define __WIN_DIALOG_H_ #include "wingui.h" ////////// // class: CLoginDialog // parent: CDialog // description: gets login information from user. class CLoginDialog : public CDialog { public: CLoginDialog(UINT, LPCTSTR, LPCTSTR); afx_msg BOOL OnInitDialog(); CString m_strUrl; CString m_strAuth; protected: CString m_strUrlTT; CString m_strAuthTT; void LoadLanguage(); afx_msg void OnOK(); afx_msg BOOL OnToolTipNotify(UINT, NMHDR*, LRESULT*); DECLARE_MESSAGE_MAP() }; ////////// // class: CQuitDialog // parent: CDialog // description: gets project quit information from user. class CQuitDialog : public CDialog { public: CQuitDialog(UINT); afx_msg BOOL OnInitDialog(); int m_nSel; protected: CString m_strSelTT; void LoadLanguage(); afx_msg void OnOK(); afx_msg BOOL OnToolTipNotify(UINT, NMHDR*, LRESULT*); DECLARE_MESSAGE_MAP() }; ////////// // class: CProxyDialog // parent: CDialog // description: allows user to set up proxy information class CProxyDialog : public CDialog { public: CProxyDialog(UINT); afx_msg BOOL OnInitDialog(); protected: void EnableHttp(BOOL bEnable); void EnableSocks(BOOL bEnable); void LoadLanguage(); afx_msg void OnHttp(); afx_msg void OnSocks(); afx_msg void OnOK(); DECLARE_MESSAGE_MAP() }; ////////// // class: CConnectDialog // parent: CDialog // description: request users permission to connect to the network class CConnectDialog : public CDialog { public: CConnectDialog(UINT); afx_msg BOOL OnInitDialog(); BOOL m_bDontAsk; protected: void LoadLanguage(); afx_msg void OnOK(); DECLARE_MESSAGE_MAP() }; ////////// // class: CAboutDialog // parent: CDialog // description: displays information about BOINC class CAboutDialog : public CDialog { public: CAboutDialog(UINT); afx_msg BOOL OnInitDialog(); protected: void LoadLanguage(); DECLARE_MESSAGE_MAP() }; #endif