1 // Copyright (c) 2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2016 The Bitcoin Core developers
3 // Distributed under the MIT software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
8 #include "ui_interface.h"
15 static bool noui_ThreadSafeMessageBox(const std::string
& message
, const std::string
& caption
, unsigned int style
)
17 bool fSecure
= style
& CClientUIInterface::SECURE
;
18 style
&= ~CClientUIInterface::SECURE
;
20 std::string strCaption
;
21 // Check for usage of predefined caption
23 case CClientUIInterface::MSG_ERROR
:
24 strCaption
+= _("Error");
26 case CClientUIInterface::MSG_WARNING
:
27 strCaption
+= _("Warning");
29 case CClientUIInterface::MSG_INFORMATION
:
30 strCaption
+= _("Information");
33 strCaption
+= caption
; // Use supplied caption (can be empty)
37 LogPrintf("%s: %s\n", strCaption
, message
);
38 fprintf(stderr
, "%s: %s\n", strCaption
.c_str(), message
.c_str());
42 static bool noui_ThreadSafeQuestion(const std::string
& /* ignored interactive message */, const std::string
& message
, const std::string
& caption
, unsigned int style
)
44 return noui_ThreadSafeMessageBox(message
, caption
, style
);
47 static void noui_InitMessage(const std::string
& message
)
49 LogPrintf("init message: %s\n", message
);
54 // Connect bitcoind signal handlers
55 uiInterface
.ThreadSafeMessageBox
.connect(noui_ThreadSafeMessageBox
);
56 uiInterface
.ThreadSafeQuestion
.connect(noui_ThreadSafeQuestion
);
57 uiInterface
.InitMessage
.connect(noui_InitMessage
);