-
Notifications
You must be signed in to change notification settings - Fork 810
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "WIP: Webpage Compare: Add Location Pane"
This reverts commit f8a3342.
- Loading branch information
Showing
48 changed files
with
389 additions
and
238 deletions.
There are no files selected for viewing
Submodule winwebdiff
updated
11 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
// WebPageDiffDlg.cpp : implementation file | ||
// | ||
|
||
#include "stdafx.h" | ||
#include "WebPageDiffBar.h" | ||
#include "MergeApp.h" | ||
|
||
#ifdef _DEBUG | ||
#define new DEBUG_NEW | ||
#endif | ||
|
||
///////////////////////////////////////////////////////////////////////////// | ||
// CWebPageDiffBar dialog | ||
|
||
|
||
CWebPageDiffBar::CWebPageDiffBar() | ||
{ | ||
//{{AFX_DATA_INIT(CWebPageDiffBar) | ||
// NOTE: the ClassWizard will add member initialization here | ||
//}}AFX_DATA_INIT | ||
} | ||
|
||
|
||
void CWebPageDiffBar::DoDataExchange(CDataExchange* pDX) | ||
{ | ||
CDialogBar::DoDataExchange(pDX); | ||
//{{AFX_DATA_MAP(CWebPageDiffBar) | ||
// NOTE: the ClassWizard will add DDX and DDV calls here | ||
//}}AFX_DATA_MAP | ||
} | ||
|
||
|
||
BEGIN_MESSAGE_MAP(CWebPageDiffBar, CTrDialogBar) | ||
//{{AFX_MSG_MAP(CWebPageDiffBar) | ||
ON_UPDATE_COMMAND_UI(IDC_COMPARE, OnUpdateBnClickedCompare) | ||
//}}AFX_MSG_MAP | ||
END_MESSAGE_MAP() | ||
|
||
///////////////////////////////////////////////////////////////////////////// | ||
// CWebPageDiffBar message handlers | ||
|
||
BOOL CWebPageDiffBar::Create(CWnd *pParentWnd) | ||
{ | ||
if (! CTrDialogBar::Create(pParentWnd, CWebPageDiffBar::IDD, | ||
CBRS_TOP | CBRS_TOOLTIPS | CBRS_FLYBY, CWebPageDiffBar::IDD)) | ||
return FALSE; | ||
|
||
return TRUE; // return TRUE unless you set the focus to a control | ||
// EXCEPTION: OCX Property Pages should return FALSE | ||
} | ||
|
||
void CWebPageDiffBar::OnUpdateBnClickedCompare(CCmdUI* pCmdUI) | ||
{ | ||
pCmdUI->Enable(true); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
// WebPageDiffBar.h : header file | ||
// | ||
|
||
#pragma once | ||
|
||
#include "TrDialogs.h" | ||
|
||
///////////////////////////////////////////////////////////////////////////// | ||
// CWebPageDiffBar dialog | ||
|
||
class CWebPageDiffBar : public CTrDialogBar | ||
{ | ||
// Construction | ||
public: | ||
CWebPageDiffBar(); | ||
|
||
BOOL Create(CWnd* pParentWnd); | ||
|
||
// Dialog Data | ||
//{{AFX_DATA(CWebPageDiffBar) | ||
enum { IDD = IDD_WEBPAGEDIFF_BAR }; | ||
// NOTE: the ClassWizard will add data members here | ||
//}}AFX_DATA | ||
|
||
|
||
// Overrides | ||
// ClassWizard generated virtual function overrides | ||
//{{AFX_VIRTUAL(CWebPageDiffBar) | ||
protected: | ||
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support | ||
//}}AFX_VIRTUAL | ||
|
||
// Implementation | ||
protected: | ||
|
||
// Generated message map functions | ||
//{{AFX_MSG(CWebPageDiffBar) | ||
afx_msg void OnUpdateBnClickedCompare(CCmdUI* pCmdUI); | ||
//}}AFX_MSG | ||
DECLARE_MESSAGE_MAP() | ||
|
||
private: | ||
|
||
public: | ||
}; |
Oops, something went wrong.