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

SystemPage.h « Explorer « UI « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 75fdeb2bef0b82db5f723205cb45420cebd1e31b (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/LoadCodecs.h"

class CSystemPage: public NWindows::NControl::CPropertyPage
{
  bool _initMode;
  CObjectVector<CArcInfoEx> m_Archivers;
  NWindows::NControl::CListView m_ListView;
public:
  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);
};

#endif