mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
21 lines
354 B
C++
21 lines
354 B
C++
#ifndef _EditField_EditField_h
|
|
#define _EditField_EditField_h
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
#define LAYOUTFILE <EditField/EditField.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
|
|
|
|
class EditFieldApp : public WithEditFieldLayout<TopWindow> {
|
|
public:
|
|
void Set();
|
|
|
|
typedef EditFieldApp CLASSNAME;
|
|
EditFieldApp();
|
|
};
|
|
|
|
#endif
|