OSDN Git Service

Commit dialog support check conflict and mark resolve function.
[tortoisegit/TortoiseGitJp.git] / src / TortoiseGitBlame / EditGotoDlg.cpp
1 // EditGoto.cpp : implementation file\r
2 //\r
3 \r
4 #include "stdafx.h"\r
5 #include "TortoiseGitBlame.h"\r
6 #include "EditGotoDlg.h"\r
7 \r
8 \r
9 // CEditGotoDlg dialog\r
10 \r
11 IMPLEMENT_DYNAMIC(CEditGotoDlg, CDialog)\r
12 \r
13 CEditGotoDlg::CEditGotoDlg(CWnd* pParent /*=NULL*/)\r
14         : CDialog(CEditGotoDlg::IDD, pParent)\r
15     , m_LineNumber(0)\r
16 {\r
17 \r
18 }\r
19 \r
20 CEditGotoDlg::~CEditGotoDlg()\r
21 {\r
22 }\r
23 \r
24 void CEditGotoDlg::DoDataExchange(CDataExchange* pDX)\r
25 {\r
26     CDialog::DoDataExchange(pDX);\r
27     DDX_Text(pDX, IDC_LINENUMBER, m_LineNumber);\r
28         DDV_MinMaxUInt(pDX, m_LineNumber, 0, 40000000);\r
29 }\r
30 \r
31 \r
32 BEGIN_MESSAGE_MAP(CEditGotoDlg, CDialog)\r
33     ON_EN_CHANGE(IDC_LINENUMBER, &CEditGotoDlg::OnEnChangeLinenumber)\r
34 END_MESSAGE_MAP()\r
35 \r
36 \r
37 // CEditGotoDlg message handlers\r
38 \r
39 void CEditGotoDlg::OnEnChangeLinenumber()\r
40 {\r
41     // TODO:  If this is a RICHEDIT control, the control will not\r
42     // send this notification unless you override the CDialog::OnInitDialog()\r
43     // function and call CRichEditCtrl().SetEventMask()\r
44     // with the ENM_CHANGE flag ORed into the mask.\r
45 \r
46     // TODO:  Add your control notification handler code here\r
47 }\r