Merge branch 'restructure-tree'
[TortoiseGit.git] / src / TortoiseProc / AboutDlg.cpp
blobb61f4ae3a5680a634790a15f7af77932e1dba941
1 // TortoiseSVN - a Windows shell extension for easy version control
3 // Copyright (C) 2003-2008 - TortoiseSVN
5 // This program is free software; you can redistribute it and/or
6 // modify it under the terms of the GNU General Public License
7 // as published by the Free Software Foundation; either version 2
8 // of the License, or (at your option) any later version.
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software Foundation,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #include "stdafx.h"
21 #include "TortoiseProc.h"
22 #include "AboutDlg.h"
23 //#include "svn_version.h"
24 #include "..\version.h"
25 #include "AppUtils.h"
26 #include "git.h"
28 //IMPLEMENT_DYNAMIC(CAboutDlg, CStandAloneDialog)
29 CAboutDlg::CAboutDlg(CWnd* pParent /*=NULL*/)
30 : CStandAloneDialog(CAboutDlg::IDD, pParent)
34 CAboutDlg::~CAboutDlg()
38 void CAboutDlg::DoDataExchange(CDataExchange* pDX)
40 CStandAloneDialog::DoDataExchange(pDX);
41 DDX_Control(pDX, IDC_WEBLINK, m_cWebLink);
42 DDX_Control(pDX, IDC_SUPPORTLINK, m_cSupportLink);
45 BEGIN_MESSAGE_MAP(CAboutDlg, CStandAloneDialog)
46 ON_WM_TIMER()
47 ON_WM_MOUSEMOVE()
48 ON_BN_CLICKED(IDC_UPDATE, OnBnClickedUpdate)
49 END_MESSAGE_MAP()
51 BOOL CAboutDlg::OnInitDialog()
53 CStandAloneDialog::OnInitDialog();
54 CAppUtils::MarkWindowAsUnpinnable(m_hWnd);
56 // set the version string
57 CString temp;
59 CString cmd,out;
60 cmd=_T("git.exe --version");
61 if(g_Git.Run(cmd,&out,CP_ACP))
62 out=_T("git not found");
63 int start =0;
64 out=out.Tokenize(_T("\n"),start);
66 CAppUtils::GetMsysgitVersion(&out);
68 temp.Format(IDS_ABOUTVERSION, TSVN_VERMAJOR, TSVN_VERMINOR, TSVN_VERMICRO, TSVN_VERBUILD,out);
69 #if 0
70 const svn_version_t * svnver = svn_client_version();
72 temp.Format(IDS_ABOUTVERSION, TSVN_VERMAJOR, TSVN_VERMINOR, TSVN_VERMICRO, TSVN_VERBUILD, _T(TSVN_PLATFORM), _T(TSVN_VERDATE),
73 svnver->major, svnver->minor, svnver->patch, CString(svnver->tag),
74 APR_MAJOR_VERSION, APR_MINOR_VERSION, APR_PATCH_VERSION,
75 APU_MAJOR_VERSION, APU_MINOR_VERSION, APU_PATCH_VERSION,
76 _T(NEON_VERSION),
77 _T(OPENSSL_VERSION_TEXT),
78 _T(ZLIB_VERSION));
79 #endif
80 SetDlgItemText(IDC_VERSIONABOUT, temp);
82 this->SetWindowText(_T("TortoiseGit"));
84 CPictureHolder tmpPic;
85 tmpPic.CreateFromBitmap(IDB_LOGOFLIPPED);
86 m_renderSrc.Create32BitFromPicture(&tmpPic,468,64);
87 m_renderDest.Create32BitFromPicture(&tmpPic,468,64);
89 m_waterEffect.Create(468,64);
90 SetTimer(ID_EFFECTTIMER, 40, NULL);
91 SetTimer(ID_DROPTIMER, 1500, NULL);
93 m_cWebLink.SetURL(_T("http://code.google.com/p/tortoisegit/"));
94 m_cSupportLink.SetURL(_T("https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=GJGTG75GV5PL6&lc=C2&item_name=TortoiseGit&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted"));
96 CenterWindow(CWnd::FromHandle(hWndExplorer));
97 GetDlgItem(IDOK)->SetFocus();
98 return FALSE;
101 void CAboutDlg::OnTimer(UINT_PTR nIDEvent)
103 if (nIDEvent == ID_EFFECTTIMER)
105 m_waterEffect.Render((DWORD*)m_renderSrc.GetDIBits(), (DWORD*)m_renderDest.GetDIBits());
106 CClientDC dc(this);
107 CPoint ptOrigin(15,20);
108 m_renderDest.Draw(&dc,ptOrigin);
110 if (nIDEvent == ID_DROPTIMER)
112 CRect r;
113 r.left = 15;
114 r.top = 20;
115 r.right = r.left + m_renderSrc.GetWidth();
116 r.bottom = r.top + m_renderSrc.GetHeight();
117 m_waterEffect.Blob(random(r.left,r.right), random(r.top, r.bottom), 5, 800, m_waterEffect.m_iHpage);
119 CStandAloneDialog::OnTimer(nIDEvent);
122 void CAboutDlg::OnMouseMove(UINT nFlags, CPoint point)
124 CRect r;
125 r.left = 15;
126 r.top = 20;
127 r.right = r.left + m_renderSrc.GetWidth();
128 r.bottom = r.top + m_renderSrc.GetHeight();
130 if(r.PtInRect(point) == TRUE)
132 // dibs are drawn upside down...
133 point.y -= 20;
134 point.y = 64-point.y;
136 if (nFlags & MK_LBUTTON)
137 m_waterEffect.Blob(point.x -15,point.y,10,1600,m_waterEffect.m_iHpage);
138 else
139 m_waterEffect.Blob(point.x -15,point.y,5,50,m_waterEffect.m_iHpage);
144 CStandAloneDialog::OnMouseMove(nFlags, point);
147 void CAboutDlg::OnBnClickedUpdate()
149 TCHAR com[MAX_PATH+100];
150 GetModuleFileName(NULL, com, MAX_PATH);
151 _tcscat_s(com, MAX_PATH+100, _T(" /command:updatecheck /visible"));
153 CAppUtils::LaunchApplication(com, 0, false);