Scope
MovementPage.h
1 #pragma once
2 
3 #include "MovementSettingsSheet.h"
4 #include "resource.h"
5 
6 namespace scope {
7  namespace gui {
8 
11  public CPropertyPageImpl<CMovementPage> {
12 
13 protected:
16 
17 public:
18  enum { IDD = IDD_MOVEMENT_PROPPAGE };
19 
20  BEGIN_MSG_MAP_EX(CMovementPage)
21  MSG_WM_INITDIALOG(OnInitDialog);
22  REFLECT_NOTIFICATIONS()
23  END_MSG_MAP()
24 
28  BOOL OnInitDialog(CWindow wndFocus, LPARAM lInitParam);
30 };
31 
32 }
33 }
Property page for stage settings.
Definition: MovementPage.h:10
BOOL OnInitDialog(CWindow wndFocus, LPARAM lInitParam)
Replace the placeholder with the CMovementSettingsSheet.
Definition: MovementPage.cpp:8
Settings sheet that has settings pages for all movement/stages related stuff, resided inside the CMov...
CMovementSettingsSheet settings_sheet
the setting sheets that contains the real stuff
Definition: MovementPage.h:15