ultimatepp/reference/PromptRedirect/main.cpp
cxl 4a04a07d40 .reference
git-svn-id: svn://ultimatepp.org/upp/trunk@10266 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2016-10-04 11:21:40 +00:00

21 lines
474 B
C++

#include <CtrlLib/CtrlLib.h>
using namespace Upp;
int MyPrompt(Event<const String&> WhenLink,
const char *title, const Image& iconbmp, const char *qtf, bool okcancel,
const char *button1, const char *button2, const char *button3,
int cx, Image im1, Image im2, Image im3)
{
LOG(title << ": " << qtf << "\n");
return IDCANCEL;
}
INITBLOCK {
RedirectPrompts(MyPrompt);
}
GUI_APP_MAIN
{
PromptYesNo("Test");
}