This commit is contained in:
Igor Pavlov
2022-06-23 11:43:16 +01:00
committed by Kornel
parent c3529a41f5
commit ec44a8a070
1248 changed files with 15242 additions and 2443 deletions

5
CPP/7zip/UI/FileManager/MenuPage.h Normal file → Executable file
View File

@@ -4,6 +4,7 @@
#define __MENU_PAGE_H
#include "../../../Windows/Control/PropertyPage.h"
#include "../../../Windows/Control/ComboBox.h"
#include "../../../Windows/Control/ListView.h"
struct CShellDll
@@ -24,6 +25,7 @@ class CMenuPage: public NWindows::NControl::CPropertyPage
bool _cascaded_Changed;
bool _menuIcons_Changed;
bool _elimDup_Changed;
bool _writeZone_Changed;
bool _flags_Changed;
void Clear_MenuChanged()
@@ -31,6 +33,7 @@ class CMenuPage: public NWindows::NControl::CPropertyPage
_cascaded_Changed = false;
_menuIcons_Changed = false;
_elimDup_Changed = false;
_writeZone_Changed = false;
_flags_Changed = false;
}
@@ -39,6 +42,7 @@ class CMenuPage: public NWindows::NControl::CPropertyPage
#endif
NWindows::NControl::CListView _listView;
NWindows::NControl::CComboBox _zoneCombo;
virtual bool OnInit();
virtual void OnNotifyHelp();
@@ -46,6 +50,7 @@ class CMenuPage: public NWindows::NControl::CPropertyPage
virtual bool OnItemChanged(const NMLISTVIEW *info);
virtual LONG OnApply();
virtual bool OnButtonClicked(int buttonID, HWND buttonHWND);
virtual bool OnCommand(int code, int itemID, LPARAM param);
public:
};