]> Git Repo - VerusCoin.git/blob - src/noui.cpp
Merge pull request #4611
[VerusCoin.git] / src / noui.cpp
1 // Copyright (c) 2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2014 The Bitcoin developers
3 // Distributed under the MIT/X11 software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
6 #include "noui.h"
7
8 #include "ui_interface.h"
9 #include "util.h"
10
11 #include <cstdio>
12 #include <stdint.h>
13 #include <string>
14
15 static bool noui_ThreadSafeMessageBox(const std::string& message, const std::string& caption, unsigned int style)
16 {
17     std::string strCaption;
18     // Check for usage of predefined caption
19     switch (style) {
20     case CClientUIInterface::MSG_ERROR:
21         strCaption += _("Error");
22         break;
23     case CClientUIInterface::MSG_WARNING:
24         strCaption += _("Warning");
25         break;
26     case CClientUIInterface::MSG_INFORMATION:
27         strCaption += _("Information");
28         break;
29     default:
30         strCaption += caption; // Use supplied caption (can be empty)
31     }
32
33     LogPrintf("%s: %s\n", strCaption, message);
34     fprintf(stderr, "%s: %s\n", strCaption.c_str(), message.c_str());
35     return false;
36 }
37
38 static void noui_InitMessage(const std::string &message)
39 {
40     LogPrintf("init message: %s\n", message);
41 }
42
43 void noui_connect()
44 {
45     // Connect bitcoind signal handlers
46     uiInterface.ThreadSafeMessageBox.connect(noui_ThreadSafeMessageBox);
47     uiInterface.InitMessage.connect(noui_InitMessage);
48 }
This page took 0.027452 seconds and 4 git commands to generate.