Files
nsis-plugin-ns7zip/versions/26.00/CPP/7zip/UI/FileManager/SettingsPage.h
T
Simone d074cc7c07 chore: initial commit (extracted from Launchers monorepo)
Plugin: ns7zip v2.0.0
Architectures: x86-ansi, x86-unicode, amd64-unicode
License: LGPL-2.1-or-later
2026-04-29 14:07:51 +02:00

38 lines
990 B
C++

// 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 _memx_wasChanged;
bool _initMode;
/*
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;
void EnableSpin(bool enable);
public:
};
#endif