Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PluginsPage.h « FileManager « UI « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1dcd62d2cb198edad9bd8c8a1f5979752f75113e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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