mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 22:02:58 -06:00
26 lines
441 B
C++
26 lines
441 B
C++
#ifndef _PopUpTest_PopUpTest_h
|
|
#define _PopUpTest_PopUpTest_h
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
using namespace Upp;
|
|
|
|
#include <PopUpC/PopUpC.h>
|
|
|
|
#define LAYOUTFILE <PopUpTest/PopUpTest.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
class PopUpTest : public WithPopUpTestLayout<TopWindow> {
|
|
public:
|
|
typedef PopUpTest CLASSNAME;
|
|
PopUpTest();
|
|
|
|
void DoDrop();
|
|
void OkCB();
|
|
void CancelCB();
|
|
|
|
WithPopUpLay<PopUpC> pu;
|
|
};
|
|
|
|
#endif
|
|
|