OSDN Git Service

Fixed issue #113: (11) Push and push times out on WebDAV passwords
[tortoisegit/TortoiseGitJp.git] / src / TortoiseMerge / LineDiffBar.h
1 // TortoiseMerge - a Diff/Patch program\r
2 \r
3 // Copyright (C) 2006, 2008 - TortoiseSVN\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 class CMainFrame;\r
22 \r
23 /**\r
24  * \ingroup TortoiseMerge\r
25  *\r
26  * A Toolbar showing the differences in the views. The Toolbar\r
27  * is best attached to the left of the mainframe. The Toolbar\r
28  * also scrolls the views to the location the user clicks\r
29  * on the bar.\r
30  */\r
31 class CLineDiffBar : public CPaneDialog\r
32 {\r
33         DECLARE_DYNAMIC(CLineDiffBar)\r
34 \r
35 public:\r
36         CLineDiffBar();\r
37         virtual ~CLineDiffBar();\r
38         BOOL Create(CWnd* pParentWnd, UINT nIDTemplate, UINT nStyle, UINT nID)\r
39         {\r
40                 BOOL bRet = CPaneDialog::Create(pParentWnd, nIDTemplate, nStyle, nID);\r
41                 m_dwControlBarStyle = 0; // can't float, resize, close, slide\r
42                 return bRet;\r
43         }\r
44 \r
45         CSize CalcFixedLayout(BOOL, BOOL)\r
46         {\r
47                 return CSize(32767, 2*m_nLineHeight);\r
48         }\r
49 \r
50         void                    ShowLines(int nLineIndex);\r
51         void                    DocumentUpdated();\r
52 \r
53 protected:\r
54         afx_msg void    OnPaint();\r
55         afx_msg void    OnSize(UINT nType, int cx, int cy);\r
56         afx_msg BOOL    OnEraseBkgnd(CDC* pDC);\r
57 \r
58         CBitmap *               m_pCacheBitmap;\r
59 \r
60         int                             m_nLineIndex;\r
61         int                             m_nLineHeight;\r
62 \r
63 \r
64         DECLARE_MESSAGE_MAP()\r
65 public:\r
66         CMainFrame *    m_pMainFrm;\r
67 };\r
68 \r
69 \r