63 lines
1.6 KiB
C++
63 lines
1.6 KiB
C++
#if !defined(AFX_SRCHVIEW_H__B72D0981_5043_11D4_964F_00C0F02C4B69__INCLUDED_)
|
|
#define AFX_SRCHVIEW_H__B72D0981_5043_11D4_964F_00C0F02C4B69__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
// SrchView.h : header file
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CSrchView dialog
|
|
#include "gzrset.h"
|
|
class CSrchView : public CDialog
|
|
{
|
|
// Construction
|
|
public:
|
|
~CSrchView();
|
|
GZRset* rsPrint;
|
|
CSpApp* m_pApp;
|
|
|
|
bool m_bQuickWO;
|
|
CString m_strWOID;
|
|
void FlagWord(CString strWord, bool bUnderline, bool bBold, bool bColour);
|
|
int m_nKeywords;
|
|
void HiLite();
|
|
CString* m_pstrText;
|
|
CStringList* m_pslHiWords;
|
|
CSrchView(CWnd* pParent = NULL); // standard constructor
|
|
|
|
// Dialog Data
|
|
//{{AFX_DATA(CSrchView)
|
|
enum { IDD = IDD_SRCHVIEW };
|
|
CRichEditCtrl m_red;
|
|
//}}AFX_DATA
|
|
|
|
|
|
// Overrides
|
|
// ClassWizard generated virtual function overrides
|
|
//{{AFX_VIRTUAL(CSrchView)
|
|
protected:
|
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
|
//}}AFX_VIRTUAL
|
|
|
|
// Implementation
|
|
protected:
|
|
|
|
// Generated message map functions
|
|
//{{AFX_MSG(CSrchView)
|
|
virtual BOOL OnInitDialog();
|
|
afx_msg void OnBtndone();
|
|
afx_msg void OnBtncopy();
|
|
afx_msg void OnBtnedit();
|
|
afx_msg void OnBtncopyall();
|
|
afx_msg void OnBtnprint();
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
//{{AFX_INSERT_LOCATION}}
|
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
|
|
|
#endif // !defined(AFX_SRCHVIEW_H__B72D0981_5043_11D4_964F_00C0F02C4B69__INCLUDED_)
|