mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 05:15:00 -06:00
33 lines
843 B
C++
Executable File
33 lines
843 B
C++
Executable File
// FoldersPage.h
|
|
|
|
#ifndef ZIP7_INC_FOLDERS_PAGE_H
|
|
#define ZIP7_INC_FOLDERS_PAGE_H
|
|
|
|
#include "../../../Windows/Control/PropertyPage.h"
|
|
|
|
#include "../Common/ZipRegistry.h"
|
|
|
|
class CFoldersPage : public NWindows::NControl::CPropertyPage
|
|
{
|
|
NWorkDir::CInfo m_WorkDirInfo;
|
|
NWindows::NControl::CDialogChildControl m_WorkPath;
|
|
|
|
bool _needSave;
|
|
bool _initMode;
|
|
|
|
void MyEnableControls();
|
|
void ModifiedEvent();
|
|
|
|
void OnFoldersWorkButtonPath();
|
|
int GetWorkMode() const;
|
|
void GetWorkDir(NWorkDir::CInfo &workDirInfo);
|
|
// bool WasChanged();
|
|
virtual bool OnInit() Z7_override;
|
|
virtual bool OnCommand(unsigned code, unsigned itemID, LPARAM lParam) Z7_override;
|
|
virtual void OnNotifyHelp() Z7_override;
|
|
virtual LONG OnApply() Z7_override;
|
|
virtual bool OnButtonClicked(unsigned buttonID, HWND buttonHWND) Z7_override;
|
|
};
|
|
|
|
#endif
|