mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-07 22:06:59 -06:00
20 lines
416 B
C++
20 lines
416 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
|
|
{
|
|
// void EnableSubItems();
|
|
bool OnButtonClicked(int buttonID, HWND buttonHWND);
|
|
public:
|
|
virtual bool OnInit();
|
|
virtual void OnNotifyHelp();
|
|
virtual LONG OnApply();
|
|
};
|
|
|
|
#endif
|