diff options
Diffstat (limited to 'CPP/Windows/Control/PropertyPage.h')
-rw-r--r-- | CPP/Windows/Control/PropertyPage.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/CPP/Windows/Control/PropertyPage.h b/CPP/Windows/Control/PropertyPage.h index b68fd8f..264a5d2 100644 --- a/CPP/Windows/Control/PropertyPage.h +++ b/CPP/Windows/Control/PropertyPage.h | |||
@@ -1,11 +1,11 @@ | |||
1 | // Windows/Control/PropertyPage.h | 1 | // Windows/Control/PropertyPage.h |
2 | 2 | ||
3 | #ifndef __WINDOWS_CONTROL_PROPERTYPAGE_H | 3 | #ifndef ZIP7_INC_WINDOWS_CONTROL_PROPERTYPAGE_H |
4 | #define __WINDOWS_CONTROL_PROPERTYPAGE_H | 4 | #define ZIP7_INC_WINDOWS_CONTROL_PROPERTYPAGE_H |
5 | 5 | ||
6 | #include "../../Common/MyWindows.h" | 6 | #include "../../Common/MyWindows.h" |
7 | 7 | ||
8 | #include <PrSht.h> | 8 | #include <prsht.h> |
9 | 9 | ||
10 | #include "Dialog.h" | 10 | #include "Dialog.h" |
11 | 11 | ||
@@ -17,23 +17,23 @@ INT_PTR APIENTRY ProperyPageProcedure(HWND dialogHWND, UINT message, WPARAM wPar | |||
17 | class CPropertyPage: public CDialog | 17 | class CPropertyPage: public CDialog |
18 | { | 18 | { |
19 | public: | 19 | public: |
20 | CPropertyPage(HWND window = NULL): CDialog(window){}; | 20 | CPropertyPage(HWND window = NULL): CDialog(window) {} |
21 | 21 | ||
22 | void Changed() { PropSheet_Changed(GetParent(), (HWND)*this); } | 22 | void Changed() { PropSheet_Changed(GetParent(), (HWND)*this); } |
23 | void UnChanged() { PropSheet_UnChanged(GetParent(), (HWND)*this); } | 23 | void UnChanged() { PropSheet_UnChanged(GetParent(), (HWND)*this); } |
24 | 24 | ||
25 | virtual bool OnNotify(UINT controlID, LPNMHDR lParam); | 25 | virtual bool OnNotify(UINT controlID, LPNMHDR lParam) Z7_override; |
26 | 26 | ||
27 | virtual bool OnKillActive() { return false; } // false = OK | 27 | virtual bool OnKillActive() { return false; } // false = OK |
28 | virtual bool OnKillActive(const PSHNOTIFY *) { return OnKillActive(); } | 28 | virtual bool OnKillActive2(const PSHNOTIFY *) { return OnKillActive(); } |
29 | virtual LONG OnSetActive() { return false; } // false = OK | 29 | virtual LONG OnSetActive() { return false; } // false = OK |
30 | virtual LONG OnSetActive(const PSHNOTIFY *) { return OnSetActive(); } | 30 | virtual LONG OnSetActive2(const PSHNOTIFY *) { return OnSetActive(); } |
31 | virtual LONG OnApply() { return PSNRET_NOERROR; } | 31 | virtual LONG OnApply() { return PSNRET_NOERROR; } |
32 | virtual LONG OnApply(const PSHNOTIFY *) { return OnApply(); } | 32 | virtual LONG OnApply2(const PSHNOTIFY *) { return OnApply(); } |
33 | virtual void OnNotifyHelp() {} | 33 | virtual void OnNotifyHelp() {} |
34 | virtual void OnNotifyHelp(const PSHNOTIFY *) { OnNotifyHelp(); } | 34 | virtual void OnNotifyHelp2(const PSHNOTIFY *) { OnNotifyHelp(); } |
35 | virtual void OnReset() {} | 35 | virtual void OnReset() {} |
36 | virtual void OnReset(const PSHNOTIFY *) { OnReset(); } | 36 | virtual void OnReset2(const PSHNOTIFY *) { OnReset(); } |
37 | }; | 37 | }; |
38 | 38 | ||
39 | struct CPageInfo | 39 | struct CPageInfo |