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