Files
easy7zip/CPP/7zip/UI/FileManager/SettingsPage.h
Igor Pavlov a36c48cece 23.01
2023-12-22 17:17:05 +00:00

34 lines
914 B
C++
Executable File

// SettingsPage.h
#ifndef ZIP7_INC_SETTINGS_PAGE_H
#define ZIP7_INC_SETTINGS_PAGE_H
#include "../../../Windows/Control/PropertyPage.h"
#include "../../../Windows/Control/ComboBox.h"
#include "../../../Windows/Control/Edit.h"
class CSettingsPage: public NWindows::NControl::CPropertyPage
{
bool _wasChanged;
bool _largePages_wasChanged;
/*
bool _wasChanged_MemLimit;
NWindows::NControl::CComboBox _memCombo;
UStringVector _memLimitStrings;
UInt64 _ramSize;
UInt64 _ramSize_Defined;
int AddMemComboItem(UInt64 size, UInt64 percents = 0, bool isDefault = false);
*/
// void EnableSubItems();
// bool OnCommand(unsigned code, unsigned itemID, LPARAM param) Z7_override;
virtual bool OnButtonClicked(unsigned buttonID, HWND buttonHWND) Z7_override;
virtual bool OnInit() Z7_override;
virtual void OnNotifyHelp() Z7_override;
virtual LONG OnApply() Z7_override;
public:
};
#endif