Click here to Skip to main content
15,888,968 members
Articles / Desktop Programming / MFC

RGDiff - Visual Diff Tool

Rate me:
Please Sign up or sign in to vote.
4.62/5 (17 votes)
2 Mar 20035 min read 168.8K   3.9K   51  
Capture results from GNU Diff and display visually.
#pragma once


// CFileDirDlg dialog

class CFileDirDlg : public CDialog
{
	DECLARE_DYNAMIC(CFileDirDlg)

public:
	CFileDirDlg(CWnd* pParent = NULL);   // standard constructor
	virtual ~CFileDirDlg();

// Dialog Data
	enum { IDD = IDD_DLG_FILE_DIR };

	bool mbDirectories;
protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support

	DECLARE_MESSAGE_MAP()
public:
	afx_msg void OnBnClickedButton1();
	afx_msg void OnBnClickedButton2();
	CString mstrFile1;
	CString mstrFile2;
	virtual BOOL OnInitDialog();
	void PickDir(CString& strDir);
	void PickFile(CString& strFile);
protected:
	virtual void OnOK();
};

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United Kingdom United Kingdom
Software developer using C/C++, ASP, .NET and SQL Server/Oracle relational databases.

Comments and Discussions