Click here to Skip to main content
15,886,199 members
Articles / Desktop Programming / MFC

Be Sweet - a set of visual source code browsers

Rate me:
Please Sign up or sign in to vote.
4.85/5 (35 votes)
1 Jul 20038 min read 183.8K   4.9K   122  
A set of source code and project browsers to compliment Visual Studio.
#if !defined(AFX_CTAGSPROPERTYPANEL_H__ED9BA538_E04D_4BD6_AD72_C1EDF6E82342__INCLUDED_)
#define AFX_CTAGSPROPERTYPANEL_H__ED9BA538_E04D_4BD6_AD72_C1EDF6E82342__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// CTagsPropertyPanel.h : header file
//

#include "OptionPage.h"

#include <string>

/////////////////////////////////////////////////////////////////////////////
// CTagsPropertyPanel dialog

namespace CTags
{
   extern const std::string CTAGS_EXE;
   extern const std::string ADDITIONAL_OPTIONS;

class PropertyPanel : public COptionPage
{
private:

public:
  PropertyPanel();   // standard constructor

protected:
  virtual BOOL OnInitDialog();
  virtual BOOL OnApply();

	//{{AFX_DATA(CTags::PropertyPanel)
	enum { IDD = IDD_CTAGS_PROPERTIES_PANEL };
	CString	mAdditionalOptions;
	CString	mExe;
	//}}AFX_DATA


	//{{AFX_VIRTUAL(CTags::PropertyPanel)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

protected:

	//{{AFX_MSG(CTags::PropertyPanel)
	afx_msg void onAdditionalCtagsOptionsChanged();
	afx_msg void onCtagsExeChanged();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

} //namespace CTags

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_CTAGSPROPERTYPANEL_H__ED9BA538_E04D_4BD6_AD72_C1EDF6E82342__INCLUDED_)

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
Switzerland Switzerland
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions