Overview
Examples
Screenshots
Comparisons
Applications
Download
Documentation
Tutorials
UppHub
Status & Roadmap
FAQ
Authors & License
Forums
Funding U++
Search on this site











SourceForge.net Logo

SourceForge.net Logo

GitHub Logo

Discord Logo

PromptRedirect

 

Prompt redirection

 

 

main.cpp

 

#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");

}

 

 

 

 

Do you want to contribute?