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

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

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

class CEditPage: public NWindows::NControl::CPropertyPage
{
  NWindows::NControl::CEdit _editorEdit;
public:
  virtual bool OnInit();
  virtual void OnNotifyHelp();
  virtual bool OnCommand(int code, int itemID, LPARAM param);
  virtual LONG OnApply();
  virtual bool OnButtonClicked(int buttonID, HWND buttonHWND);
};

#endif