💾 Archived View for blitter.com › OLGA › OLGA › AUTO › AUTODLG.H captured on 2022-06-04 at 01:36:15.

View Raw

More Information

⬅️ Previous capture (2021-12-17)

-=-=-=-=-=-=-

// autoDlg.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// CAutoDlg dialog

class CAutoDlg : public CDialog
{
// Construction
public:
	void CreateImageList();
	BOOL m_searchOk;
	CString m_text;
	CAutoDlg(CWnd* pParent = NULL);	// standard constructor
	int m_lineCount;
	void  LineCount();
	CImageList	*m_ImageList;
	BOOL	m_can_resize;
// Dialog Data
	//{{AFX_DATA(CAutoDlg)
	enum { IDD = IDD_AUTO_DIALOG };
	CButton	m_ps;
	CButton	m_Quit;
	CButton	m_Stop;
	CButton	m_Start;
	CProgressCtrl	m_progress;
	CEdit	m_search_string;
	CButton	m_check_all;
	CButton	m_check_tab;
	CButton	m_check_chord;
	CButton	m_check_btab;
	CListCtrl	m_list;
	//}}AFX_DATA

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



// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CAutoDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnStartSearch();
	afx_msg void OnCheckAll();
	afx_msg void OnSize(UINT nType, int cx, int cy);
	afx_msg void OnCheckBtab();
	afx_msg void OnCheckChord();
	afx_msg void OnCheckTab();
	afx_msg void OnCancelSearch();
	afx_msg void OnClickList1(NMHDR* pNMHDR, LRESULT* pResult);
	afx_msg void OnColumnclickList1(NMHDR* pNMHDR, LRESULT* pResult);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
	afx_msg LONG OnThreadDone( UINT, LONG );
	void SetStartButton();
	static int CALLBACK AutoSort(LPARAM one, LPARAM two, LPARAM col);
	static CListCtrl *m_list_ptr;

};