Click here to Skip to main content
15,881,882 members
Articles / Web Development / HTML

Style Inspector

Rate me:
Please Sign up or sign in to vote.
4.86/5 (41 votes)
12 Dec 2004CPOL7 min read 112.3K   2.4K   59  
Free tool (with source code) to inspect style.
// Author:		Dr. Puiu
// Creation:	2004

#if !defined(AFX_MYINFODLG_H__1E672201_1B02_4810_AF8E_33D8FD616F16__INCLUDED_)
#define AFX_MYINFODLG_H__1E672201_1B02_4810_AF8E_33D8FD616F16__INCLUDED_

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

/////////////////////////////////////////////////////////////////////////////
// CMyInfoDlg dialog

class CMyInfoDlg : public CDialog
{
// Construction
public:
	void ActOnSelchangeListWindows();
	CMyInfoDlg(CWnd* pParent = NULL);   // standard constructor

// Dialog Data
	//{{AFX_DATA(CMyInfoDlg)
	enum { IDD = IDD_DIALOG_INFO };
	CListBox	m_lbWindows;
	CString	m_strLink;
	CString	m_strStyleClass;
	//}}AFX_DATA


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CMyInfoDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CMyInfoDlg)
	afx_msg void OnSelchangeListWindows();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_MYINFODLG_H__1E672201_1B02_4810_AF8E_33D8FD616F16__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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Europe Europe
More than 30 years of software development experience.
(also playing the SCRUM Master role depending on the project)

Comments and Discussions