mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 15:14:59 -06:00
20 lines
396 B
C++
Executable File
20 lines
396 B
C++
Executable File
// SettingsPage.h
|
|
|
|
#ifndef __SETTINGSPAGE_H
|
|
#define __SETTINGSPAGE_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
|