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

SystemPage.h « SystemPage « Explorer « UI « 7zip - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a7de7c7905b48b02f4c23eeed904f91f4fc6819f (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
// SystemPage.h
 
#ifndef __SYSTEMPAGE_H
#define __SYSTEMPAGE_H

#include "Windows/Control/PropertyPage.h"
#include "Windows/Control/ListView.h"

#include "../../Common/ArchiverInfo.h"

class CSystemPage: public NWindows::NControl::CPropertyPage
{
  bool _initMode;
  CObjectVector<CArchiverInfo> m_Archivers;
  NWindows::NControl::CListView m_ListView;
public:
  virtual bool OnInit();
  virtual void OnNotifyHelp();
  virtual bool OnNotify(UINT aControlID, LPNMHDR lParam);
  virtual bool OnItemChanged(const NMLISTVIEW *info);
  virtual LONG OnApply();
  virtual bool OnButtonClicked(int aButtonID, HWND aButtonHWND);
};

#endif