diff options
Diffstat (limited to 'Source/MFCDialog/PropertyList.h')
-rw-r--r-- | Source/MFCDialog/PropertyList.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/MFCDialog/PropertyList.h b/Source/MFCDialog/PropertyList.h index d54861d..235588b 100644 --- a/Source/MFCDialog/PropertyList.h +++ b/Source/MFCDialog/PropertyList.h @@ -55,6 +55,9 @@ public: // Operations public: + bool IsDirty() { return m_Dirty; } + void ClearDirty() { m_Dirty = false; } + int AddItem(CString txt); int AddProperty(const char* name, const char* value, @@ -107,7 +110,8 @@ protected: void InvertLine(CDC* pDC,CPoint ptFrom,CPoint ptTo); void DisplayButton(CRect region); int AddPropItem(CPropertyItem* pItem); - + void InvalidateList(); + CComboBox m_cmbBox; CEdit m_editBox; CButton m_btnCtrl; |