OSDN Git Service

Fix Create Repository path problem
[tortoisegit/TortoiseGitJp.git] / src / TortoiseProc / AboutDlg.h
1 // TortoiseSVN - a Windows shell extension for easy version control\r
2 \r
3 // Copyright (C) 2003-2006 - Stefan Kueng\r
4 \r
5 // This program is free software; you can redistribute it and/or\r
6 // modify it under the terms of the GNU General Public License\r
7 // as published by the Free Software Foundation; either version 2\r
8 // of the License, or (at your option) any later version.\r
9 \r
10 // This program is distributed in the hope that it will be useful,\r
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of\r
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
13 // GNU General Public License for more details.\r
14 \r
15 // You should have received a copy of the GNU General Public License\r
16 // along with this program; if not, write to the Free Software Foundation,\r
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.\r
18 //\r
19 #pragma once\r
20 \r
21 #include "StandAloneDlg.h"\r
22 #include "Watereffect.h"\r
23 #include "Dib.h"\r
24 #include "HyperLink.h"\r
25 #include "StandAloneDlg.h"\r
26 \r
27 #define ID_EFFECTTIMER 1111\r
28 #define ID_DROPTIMER 1112\r
29 \r
30 /**\r
31  * \ingroup TortoiseProc\r
32  * Class for showing an About box of TortoiseSVN. Contains a Picture\r
33  * with the TortoiseSVN logo with a nice water effect. See CWaterEffect\r
34  * for the implementation.\r
35  */\r
36 class CAboutDlg : public CStandAloneDialog\r
37 {\r
38         DECLARE_DYNAMIC(CAboutDlg)\r
39 \r
40 public:\r
41         CAboutDlg(CWnd* pParent = NULL);   // standard constructor\r
42         virtual ~CAboutDlg();\r
43 \r
44         enum { IDD = IDD_ABOUT };\r
45 \r
46 protected:\r
47         virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support\r
48         virtual BOOL OnInitDialog();\r
49 \r
50         afx_msg void OnTimer(UINT_PTR nIDEvent);\r
51         afx_msg void OnMouseMove(UINT nFlags, CPoint point);\r
52         afx_msg void OnBnClickedUpdate();\r
53 \r
54         DECLARE_MESSAGE_MAP()\r
55 \r
56 private:\r
57         CWaterEffect m_waterEffect;\r
58         CDib m_renderSrc;\r
59         CDib m_renderDest;\r
60         CHyperLink m_cWebLink;\r
61         CHyperLink m_cSupportLink;\r
62 };\r