mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 11:14:58 -06:00
34 lines
817 B
C++
34 lines
817 B
C++
// SettingsPage.h
|
|
|
|
#ifndef __SETTINGS_PAGE_H
|
|
#define __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(int code, int itemID, LPARAM param);
|
|
bool OnButtonClicked(int buttonID, HWND buttonHWND);
|
|
virtual bool OnInit();
|
|
virtual void OnNotifyHelp();
|
|
virtual LONG OnApply();
|
|
public:
|
|
};
|
|
|
|
#endif
|