www.pudn.com > CIVStringSet.zip > StringSetSampleDlg.h


// StringSetSampleDlg.h : header file 
 
#pragma once 
 
#include "StringSet.H" 
 
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
// CStringSetSampleDlg 
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
 
class CStringSetSampleDlg : public CDialog 
{ 
    // Construction 
    public: 
        CStringSetSampleDlg( CWnd * pParent = NULL ) ;  // standard constructor 
 
    // Dialog Data 
    protected: 
        //{{AFX_DATA(CStringSetSampleDlg) 
        enum { IDD = IDD_STRINGSETSAMPLE_DIALOG } ; 
        CEdit       m_editSearch ; 
        CString     m_strSearch ; 
        CEdit       m_editSeekTokens ; 
        CListBox    m_lbSeekTokens ; 
        CListBox    m_lbFoundTokens ; 
        //}}AFX_DATA 
        CIVStringSet m_setStrings ; 
 
    // ClassWizard generated virtual function overrides 
        //{{AFX_VIRTUAL(CStringSetSampleDlg) 
    protected: 
        virtual void DoDataExchange( CDataExchange * pDX ) ;    // DDX/DDV support 
        virtual BOOL OnInitDialog() ; 
        //}}AFX_VIRTUAL 
 
    // Implementation 
    protected: 
        HICON m_hIcon ; 
 
    // Generated message map functions 
        //{{AFX_MSG(CStringSetSampleDlg) 
        afx_msg void OnSysCommand( UINT nID, LPARAM lParam ) ; 
        afx_msg void OnPaint() ; 
        afx_msg HCURSOR OnQueryDragIcon() ; 
        afx_msg void OnKillFocusStringsToSeek() ; 
        afx_msg void OnSearch() ; 
        //}}AFX_MSG 
    DECLARE_MESSAGE_MAP() 
} ; 
 
//{{AFX_INSERT_LOCATION}}