2019-12-30 06:39:22 -03:00
|
|
|
// Copyright (c) 2013-2019 The Bitcoin Core developers
|
2014-12-13 01:09:33 -03:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2013-04-13 02:13:08 -03:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
|
|
|
#ifndef BITCOIN_NOUI_H
|
|
|
|
#define BITCOIN_NOUI_H
|
|
|
|
|
2018-09-06 15:49:40 -03:00
|
|
|
#include <string>
|
|
|
|
|
2020-04-11 11:47:17 -04:00
|
|
|
struct bilingual_str;
|
|
|
|
|
2018-09-06 15:49:40 -03:00
|
|
|
/** Non-GUI handler, which logs and prints messages. */
|
2020-04-11 11:47:17 -04:00
|
|
|
bool noui_ThreadSafeMessageBox(const bilingual_str& message, const std::string& caption, unsigned int style);
|
2018-09-06 15:49:40 -03:00
|
|
|
/** Non-GUI handler, which logs and prints questions. */
|
2020-04-11 11:47:17 -04:00
|
|
|
bool noui_ThreadSafeQuestion(const bilingual_str& /* ignored interactive message */, const std::string& message, const std::string& caption, unsigned int style);
|
2018-09-06 15:49:40 -03:00
|
|
|
/** Non-GUI handler, which only logs a message. */
|
|
|
|
void noui_InitMessage(const std::string& message);
|
|
|
|
|
|
|
|
/** Connect all bitcoind signal handlers */
|
|
|
|
void noui_connect();
|
2013-04-13 02:13:08 -03:00
|
|
|
|
2019-08-02 17:06:37 -04:00
|
|
|
/** Redirect all bitcoind signal handlers to LogPrintf. Used to check or suppress output during test runs that produce expected errors */
|
|
|
|
void noui_test_redirect();
|
2019-06-24 11:14:43 -04:00
|
|
|
|
2019-08-02 17:06:37 -04:00
|
|
|
/** Reconnects the regular Non-GUI handlers after having used noui_test_redirect */
|
2019-06-24 11:14:43 -04:00
|
|
|
void noui_reconnect();
|
|
|
|
|
2014-08-28 16:21:03 -04:00
|
|
|
#endif // BITCOIN_NOUI_H
|