Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.2 KiB

  1. // EdtRulEl.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CEditRuleElement dialog
  5. class CEditRuleElement : public CDialog
  6. {
  7. // Construction
  8. public:
  9. CEditRuleElement(CWnd* pParent = NULL); // standard constructor
  10. virtual BOOL OnInitDialog();
  11. // overrides
  12. virtual void OnOK();
  13. // Dialog Data
  14. //{{AFX_DATA(CEditRuleElement)
  15. enum { IDD = IDD_EDIT_RULE_ELEMENT };
  16. CComboBox m_ccombobox_subfield;
  17. CComboBox m_ccombobox_field;
  18. CString m_sz_criteria;
  19. int m_int_field;
  20. CString m_sz_subfield;
  21. BOOL m_bool_match_case;
  22. //}}AFX_DATA
  23. // Overrides
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CEditRuleElement)
  26. protected:
  27. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  28. //}}AFX_VIRTUAL
  29. // Implementation
  30. protected:
  31. // Generated message map functions
  32. //{{AFX_MSG(CEditRuleElement)
  33. afx_msg void OnSelchangeFields();
  34. afx_msg void OnChangeSubfield();
  35. afx_msg void OnBtnHelp();
  36. //}}AFX_MSG
  37. DECLARE_MESSAGE_MAP()
  38. // temporary storage in the event of a disabled subfield
  39. CString m_szTempSubStorage;
  40. };