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.
21 #include "TortoiseProc.h"
23 //#include "svn_version.h"
24 #include "..\version.h"
25 //#include "AppUtils.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
)
48 ON_BN_CLICKED(IDC_UPDATE
, OnBnClickedUpdate
)
51 BOOL
CAboutDlg::OnInitDialog()
53 CStandAloneDialog::OnInitDialog();
55 // set the version string
59 cmd
=_T("git.exe --version");
60 if(g_Git
.Run(cmd
,&out
,CP_ACP
))
61 out
=_T("git not found");
63 out
=out
.Tokenize(_T("\n"),start
);
65 temp
.Format(IDS_ABOUTVERSION
, TSVN_VERMAJOR
, TSVN_VERMINOR
, TSVN_VERMICRO
, TSVN_VERBUILD
,out
);
67 const svn_version_t
* svnver
= svn_client_version();
69 temp
.Format(IDS_ABOUTVERSION
, TSVN_VERMAJOR
, TSVN_VERMINOR
, TSVN_VERMICRO
, TSVN_VERBUILD
, _T(TSVN_PLATFORM
), _T(TSVN_VERDATE
),
70 svnver
->major
, svnver
->minor
, svnver
->patch
, CString(svnver
->tag
),
71 APR_MAJOR_VERSION
, APR_MINOR_VERSION
, APR_PATCH_VERSION
,
72 APU_MAJOR_VERSION
, APU_MINOR_VERSION
, APU_PATCH_VERSION
,
74 _T(OPENSSL_VERSION_TEXT
),
77 SetDlgItemText(IDC_VERSIONABOUT
, temp
);
79 this->SetWindowText(_T("TortoiseGit"));
81 CPictureHolder tmpPic
;
82 tmpPic
.CreateFromBitmap(IDB_LOGOFLIPPED
);
83 m_renderSrc
.Create32BitFromPicture(&tmpPic
,468,64);
84 m_renderDest
.Create32BitFromPicture(&tmpPic
,468,64);
86 m_waterEffect
.Create(468,64);
87 SetTimer(ID_EFFECTTIMER
, 40, NULL
);
88 SetTimer(ID_DROPTIMER
, 1500, NULL
);
90 m_cWebLink
.SetURL(_T("http://code.google.com/p/tortoisegit/"));
91 m_cSupportLink
.SetURL(_T("https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=GJGTG75GV5PL6&lc=C2&item_name=TortoiseGit¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted"));
93 CenterWindow(CWnd::FromHandle(hWndExplorer
));
94 GetDlgItem(IDOK
)->SetFocus();
98 void CAboutDlg::OnTimer(UINT_PTR nIDEvent
)
100 if (nIDEvent
== ID_EFFECTTIMER
)
102 m_waterEffect
.Render((DWORD
*)m_renderSrc
.GetDIBits(), (DWORD
*)m_renderDest
.GetDIBits());
104 CPoint
ptOrigin(15,20);
105 m_renderDest
.Draw(&dc
,ptOrigin
);
107 if (nIDEvent
== ID_DROPTIMER
)
112 r
.right
= r
.left
+ m_renderSrc
.GetWidth();
113 r
.bottom
= r
.top
+ m_renderSrc
.GetHeight();
114 m_waterEffect
.Blob(random(r
.left
,r
.right
), random(r
.top
, r
.bottom
), 5, 800, m_waterEffect
.m_iHpage
);
116 CStandAloneDialog::OnTimer(nIDEvent
);
119 void CAboutDlg::OnMouseMove(UINT nFlags
, CPoint point
)
124 r
.right
= r
.left
+ m_renderSrc
.GetWidth();
125 r
.bottom
= r
.top
+ m_renderSrc
.GetHeight();
127 if(r
.PtInRect(point
) == TRUE
)
129 // dibs are drawn upside down...
131 point
.y
= 64-point
.y
;
133 if (nFlags
& MK_LBUTTON
)
134 m_waterEffect
.Blob(point
.x
-15,point
.y
,10,1600,m_waterEffect
.m_iHpage
);
136 m_waterEffect
.Blob(point
.x
-15,point
.y
,5,50,m_waterEffect
.m_iHpage
);
141 CStandAloneDialog::OnMouseMove(nFlags
, point
);
144 void CAboutDlg::OnBnClickedUpdate()
146 TCHAR com
[MAX_PATH
+100];
147 GetModuleFileName(NULL
, com
, MAX_PATH
);
148 _tcscat_s(com
, MAX_PATH
+100, _T(" /command:updatecheck /visible"));
150 // CAppUtils::LaunchApplication(com, 0, false);