mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 09:15:00 -06:00
24 lines
492 B
C++
24 lines
492 B
C++
// SettingsPage.h
|
|
|
|
#ifndef __SETTINGS_PAGE_H
|
|
#define __SETTINGS_PAGE_H
|
|
|
|
#include "../../../Windows/Control/PropertyPage.h"
|
|
#include "../../../Windows/Control/Edit.h"
|
|
|
|
class CSettingsPage: public NWindows::NControl::CPropertyPage
|
|
{
|
|
bool _wasChanged;
|
|
|
|
bool _largePages_wasChanged;
|
|
|
|
// void EnableSubItems();
|
|
bool OnButtonClicked(int buttonID, HWND buttonHWND);
|
|
public:
|
|
virtual bool OnInit();
|
|
virtual void OnNotifyHelp();
|
|
virtual LONG OnApply();
|
|
};
|
|
|
|
#endif
|