mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 06:06:00 -06:00
24 lines
359 B
C++
24 lines
359 B
C++
#ifndef _PopUp_PopUp_h
|
|
#define _PopUp_PopUp_h
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
#define LAYOUTFILE <PopUp/PopUp.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
|
|
|
|
class popup : public WithpopupLayout<TopWindow> {
|
|
public:
|
|
typedef popup CLASSNAME;
|
|
|
|
WithDlgPopUp<StaticRect> dlg;
|
|
void PopDlg();
|
|
void DlgClose();
|
|
Rect rr;
|
|
Size ss;
|
|
|
|
popup();
|
|
};
|
|
|
|
#endif
|