Click here to Skip to main content
15,897,371 members
Articles / Desktop Programming / MFC

A Realtime Logfile Viewer

Rate me:
Please Sign up or sign in to vote.
4.98/5 (39 votes)
24 Feb 2004CPOL20 min read 234.6K   4.9K   151  
Part two of the logging service - the viewer
/*
 *	$Header :$
 *
 *	$History: FilterDlgBar.h $
 * 
 * *****************  Version 3  *****************
 * User: Administrator Date: 12/02/03   Time: 9:20p
 * Updated in $/logger/logviewer
 * Added pretty icons, version resource, tooltip support, fixed various
 * bugs in continuation record support.
 * 
 * *****************  Version 2  *****************
 * User: Administrator Date: 11/27/03   Time: 3:17p
 * Updated in $/logger/logviewer
 * Revamped the LogUpdateThread to post messages to the main thread for
 * dealing with the listcontrol.
 * 
 * *****************  Version 1  *****************
 * User: Administrator Date: 11/25/03   Time: 5:20p
 * Created in $/logger/logviewer
 */
#if !defined(AFX_FILTERDLGBAR_H__B305776B_7606_4939_975E_B099C4FD51D8__INCLUDED_)
#define AFX_FILTERDLGBAR_H__B305776B_7606_4939_975E_B099C4FD51D8__INCLUDED_

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

/////////////////////////////////////////////////////////////////////////////
// CFilterDlgBar dialog
class CFilterDlgBar : public CDialogBar
{
// Construction
public:
					CFilterDlgBar(CWnd* pParent = NULL);   // standard constructor

// Dialog Data
	//{{AFX_DATA(CFilterDlgBar)
	enum { IDD = IDR_MAINFRAME };
	CComboBox		m_threadCombo;
	CComboBox		m_moduleCombo;
	CComboBox		m_machineCombo;
	//}}AFX_DATA
	enum eControls
	{
		eModule,
		eThread,
		eMachine
	};

	BOOL			Create(CWnd* pParentWnd, UINT nIDTemplate, UINT nStyle, UINT nID);

	void			UpdateControls(CLogFilterData& rFilterData);
	void			UpdateSelections(CLogFilterData& rFilterData);
	void			UpdateFilter(CLogFilterData& rFilterData);

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

// Implementation
protected:
	void			UpdateControl(CComboBox& control, const CStringArray& array, const int iSelection);

	// Generated message map functions
	//{{AFX_MSG(CFilterDlgBar)
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_FILTERDLGBAR_H__B305776B_7606_4939_975E_B099C4FD51D8__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
United States United States
I've been programming for 35 years - started in machine language on the National Semiconductor SC/MP chip, moved via the 8080 to the Z80 - graduated through HP Rocky Mountain Basic and HPL - then to C and C++ and now C#.

I used (30 or so years ago when I worked for Hewlett Packard) to repair HP Oscilloscopes and Spectrum Analysers - for a while there I was the one repairing DC to daylight SpecAns in the Asia Pacific area.

Afterward I was the fourth team member added to the Australia Post EPOS project at Unisys Australia. We grew to become an A$400 million project. I wrote a few device drivers for the project under Microsoft OS/2 v 1.3 - did hardware qualification and was part of the rollout team dealing directly with the customer.

Born and bred in Melbourne Australia, now living in Scottsdale Arizona USA, became a US Citizen on September 29th, 2006.

I work for a medical insurance broker, learning how to create ASP.NET websites in VB.Net and C#. It's all good.

Oh, I'm also a Kentucky Colonel. http://www.kycolonels.org

Comments and Discussions