Fixed issue #1507: Submodule Diff Dialog should show dirty state only on working...
[TortoiseGit.git] / src / TortoiseMerge / LocatorBar.h
blob5a9de632c4adcb04a0436c3953061651081e5b06
1 // TortoiseMerge - a Diff/Patch program
3 // Copyright (C) 2006-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.
19 #pragma once
21 class CMainFrame;
23 /**
24 * \ingroup TortoiseMerge
26 * A Toolbar showing the differences in the views. The Toolbar
27 * is best attached to the left of the mainframe. The Toolbar
28 * also scrolls the views to the location the user clicks
29 * on the bar.
31 class CLocatorBar : public CPaneDialog
33 DECLARE_DYNAMIC(CLocatorBar)
35 public:
36 CLocatorBar();
37 virtual ~CLocatorBar();
38 BOOL Create(CWnd* pParentWnd, UINT nIDTemplate, UINT nStyle, UINT nID)
40 BOOL bRet = CPaneDialog::Create(pParentWnd, nIDTemplate, nStyle, nID);
41 m_dwControlBarStyle = 0; // can't float, resize, close, slide
42 return bRet;
45 void DocumentUpdated();
47 protected:
48 afx_msg void OnPaint();
49 afx_msg void OnSize(UINT nType, int cx, int cy);
50 afx_msg BOOL OnEraseBkgnd(CDC* pDC);
51 afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
52 afx_msg void OnMouseMove(UINT nFlags, CPoint point);
53 LRESULT OnMouseLeave(WPARAM, LPARAM);
55 CBitmap * m_pCacheBitmap;
57 int m_nLines;
58 CPoint m_MousePos;
59 BOOL m_bMouseWithin;
60 CDWordArray m_arLeftIdent;
61 CDWordArray m_arLeftState;
62 CDWordArray m_arRightIdent;
63 CDWordArray m_arRightState;
64 CDWordArray m_arBottomIdent;
65 CDWordArray m_arBottomState;
67 DECLARE_MESSAGE_MAP()
68 public:
69 CMainFrame * m_pMainFrm;