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

SettingsPage.h « FileManager « UI « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e7e5d73e1b04a42635aee49960f69eec142a7033 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// SettingsPage.h
 
#ifndef __SETTINGS_PAGE_H
#define __SETTINGS_PAGE_H

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

class CSettingsPage: public NWindows::NControl::CPropertyPage
{
  // void EnableSubItems();
  bool OnButtonClicked(int buttonID, HWND buttonHWND);
public:
  virtual bool OnInit();
  virtual void OnNotifyHelp();
  virtual LONG OnApply();
};

#endif