mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-14 04:11:37 -06:00
4.44 beta
This commit is contained in:
committed by
Kornel Lesiński
parent
804edc5756
commit
d9666cf046
40
CPP/7zip/FileManager/Resource/SystemPage/SystemPage.h
Executable file
40
CPP/7zip/FileManager/Resource/SystemPage/SystemPage.h
Executable file
@@ -0,0 +1,40 @@
|
||||
// SystemPage.h
|
||||
|
||||
#ifndef __SYSTEMPAGE_H
|
||||
#define __SYSTEMPAGE_H
|
||||
|
||||
#include "Windows/Control/PropertyPage.h"
|
||||
#include "Windows/Control/ListView.h"
|
||||
|
||||
#include "../../FilePlugins.h"
|
||||
|
||||
class CSystemPage: public NWindows::NControl::CPropertyPage
|
||||
{
|
||||
bool _initMode;
|
||||
CExtDatabase _extDatabase;
|
||||
|
||||
// CObjectVector<NZipRootRegistry::CArchiverInfo> m_Archivers;
|
||||
NWindows::NControl::CListView _listViewExt;
|
||||
NWindows::NControl::CListView _listViewPlugins;
|
||||
|
||||
void SetMainPluginText(int itemIndex, int indexInDatabase);
|
||||
|
||||
int GetSelectedExtIndex();
|
||||
void RefreshPluginsList(int selectIndex);
|
||||
void MovePlugin(bool upDirection);
|
||||
void UpdateDatabase();
|
||||
void SelectAll();
|
||||
|
||||
public:
|
||||
virtual bool OnMessage(UINT message, WPARAM wParam, LPARAM lParam);
|
||||
virtual bool OnInit();
|
||||
virtual void OnNotifyHelp();
|
||||
virtual bool OnNotify(UINT controlID, LPNMHDR lParam);
|
||||
virtual bool OnItemChanged(const NMLISTVIEW *info);
|
||||
|
||||
virtual LONG OnApply();
|
||||
virtual bool OnButtonClicked(int buttonID, HWND buttonHWND);
|
||||
bool OnPluginsKeyDown(LPNMLVKEYDOWN keyDownInfo);
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user