summaryrefslogtreecommitdiffstats
path: root/installerbuilder/libinstaller/3rdparty/p7zip_9.04/unix/CPP/Windows/Control/Edit.h
blob: e6930e5d4ef7c85e76cabddc0d01de408692e254 (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
// Windows/Control/Edit.h

#ifndef __WINDOWS_CONTROL_EDIT_H
#define __WINDOWS_CONTROL_EDIT_H

#include "Windows/Window.h"
#include "Windows/Defs.h"

namespace NWindows {
namespace NControl {

class CEdit: public CWindow
{
public:
	void SetPasswordChar(WPARAM c);
	void Show(int cmdShow);
	virtual void SetText(LPCWSTR s);
	virtual bool GetText(CSysString &s);
};

}}

#endif