mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 15:14:59 -06:00
27 lines
618 B
C++
Executable File
27 lines
618 B
C++
Executable File
// PluginsPage.h
|
|
|
|
#include "Windows/Control/ListView.h"
|
|
|
|
#ifndef __PLUGINSPAGE_H
|
|
#define __PLUGINSPAGE_H
|
|
|
|
#include "Windows/Control/PropertyPage.h"
|
|
#include "Windows/Control/ComboBox.h"
|
|
|
|
#include "RegistryPlugins.h"
|
|
|
|
class CPluginsPage: public NWindows::NControl::CPropertyPage
|
|
{
|
|
NWindows::NControl::CListView _listView;
|
|
CObjectVector<CPluginInfo> _plugins;
|
|
public:
|
|
virtual bool OnInit();
|
|
virtual void OnNotifyHelp();
|
|
virtual bool OnButtonClicked(int buttonID, HWND buttonHWND);
|
|
virtual void OnButtonOptions();
|
|
virtual LONG OnApply();
|
|
virtual bool OnNotify(UINT controlID, LPNMHDR lParam);
|
|
};
|
|
|
|
#endif
|