diff options
author | Ash Wolf <ninji@wuffs.org> | 2023-06-28 22:22:32 +0100 |
---|---|---|
committer | Ash Wolf <ninji@wuffs.org> | 2023-06-28 22:22:32 +0100 |
commit | c0c336500955a23e344651e5412c9d9d441ef4ee (patch) | |
tree | 790769c748db307cf3314f6e896e2f61c68561a2 /src/T2DLL/T2SearchDialog.h | |
parent | 37e364b2c6cc7487a1c888d256a73e5337bb7189 (diff) | |
download | t2win-c0c336500955a23e344651e5412c9d9d441ef4ee.tar.gz t2win-c0c336500955a23e344651e5412c9d9d441ef4ee.zip |
first pass of T2DLL
Diffstat (limited to '')
-rw-r--r-- | src/T2DLL/T2SearchDialog.h | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/src/T2DLL/T2SearchDialog.h b/src/T2DLL/T2SearchDialog.h index eaa3b4c..34cb975 100644 --- a/src/T2DLL/T2SearchDialog.h +++ b/src/T2DLL/T2SearchDialog.h @@ -1,9 +1,19 @@ #pragma once #include "common.h" +#include "T2Dialog.h" -class T2SearchDialog { +class AFX_EXT_CLASS T2SearchDialog : public T2Dialog { public: - T2SearchDialog(T2TowerDoc*); + T2SearchDialog(T2TowerDoc* inDoc); virtual ~T2SearchDialog(); - virtual int OnT2DialogCommand(unsigned int, long); + virtual BOOL OnT2DialogCommand(WPARAM inWParam, LPARAM inLParam); + +protected: + T2TowerDoc *mDocument; + PeopleSearchDlg *mPeopleSearchDlg; + TenantSearchDlg *mTenantSearchDlg; + MoverSearchDlg *mMoverSearchDlg; + int m108; + T2ImageObj *mImageObj; + T2BitImage *mImage; }; |