Bitcoin ABC  0.26.3
P2P Digital Currency
ui_interface.h
Go to the documentation of this file.
1 // Copyright (c) 2010 Satoshi Nakamoto
2 // Copyright (c) 2012-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.
5 
6 #ifndef BITCOIN_NODE_UI_INTERFACE_H
7 #define BITCOIN_NODE_UI_INTERFACE_H
8 
9 #include <functional>
10 #include <memory>
11 #include <string>
12 
13 class CBlockIndex;
14 enum class SynchronizationState;
15 struct bilingual_str;
16 
17 namespace boost {
18 namespace signals2 {
19  class connection;
20 }
21 } // namespace boost
22 
25 public:
27  enum MessageBoxFlags : uint32_t {
29  ICON_WARNING = (1U << 0),
30  ICON_ERROR = (1U << 1),
36 
41  BTN_OK = 0x00000400U, // QMessageBox::Ok
42  BTN_YES = 0x00004000U, // QMessageBox::Yes
43  BTN_NO = 0x00010000U, // QMessageBox::No
44  BTN_ABORT = 0x00040000U, // QMessageBox::Abort
45  BTN_RETRY = 0x00080000U, // QMessageBox::Retry
46  BTN_IGNORE = 0x00100000U, // QMessageBox::Ignore
47  BTN_CLOSE = 0x00200000U, // QMessageBox::Close
48  BTN_CANCEL = 0x00400000U, // QMessageBox::Cancel
49  BTN_DISCARD = 0x00800000U, // QMessageBox::Discard
50  BTN_HELP = 0x01000000U, // QMessageBox::Help
51  BTN_APPLY = 0x02000000U, // QMessageBox::Apply
52  BTN_RESET = 0x04000000U, // QMessageBox::Reset
53 
61 
65  MODAL = 0x10000000U,
66 
68  SECURE = 0x40000000U,
69 
74  };
75 
76 #define ADD_SIGNALS_DECL_WRAPPER(signal_name, rtype, args...) \
77  rtype signal_name(args); \
78  using signal_name##Sig = rtype(args); \
79  boost::signals2::connection signal_name##_connect( \
80  std::function<signal_name##Sig> fn);
81 
86  const bilingual_str &message,
87  const std::string &caption, unsigned int style);
88 
94  ADD_SIGNALS_DECL_WRAPPER(ThreadSafeQuestion, bool,
95  const bilingual_str &message,
96  const std::string &noninteractive_message,
97  const std::string &caption, unsigned int style);
98 
100  ADD_SIGNALS_DECL_WRAPPER(InitMessage, void, const std::string &message);
101 
104  ADD_SIGNALS_DECL_WRAPPER(NotifyNumConnectionsChanged, void,
105  int newNumConnections);
106 
108  ADD_SIGNALS_DECL_WRAPPER(NotifyNetworkActiveChanged, void,
109  bool networkActive);
110 
114  ADD_SIGNALS_DECL_WRAPPER(NotifyAlertChanged, void, );
115 
121  ADD_SIGNALS_DECL_WRAPPER(ShowProgress, void, const std::string &title,
122  int nProgress, bool resume_possible);
123 
126  const CBlockIndex *);
127 
130  int64_t height, int64_t timestamp, bool presync);
131 
133  ADD_SIGNALS_DECL_WRAPPER(BannedListChanged, void, void);
134 };
135 
137 void InitWarning(const bilingual_str &str);
138 
140 bool InitError(const bilingual_str &str);
141 constexpr auto AbortError = InitError;
142 
144 
145 #endif // BITCOIN_NODE_UI_INTERFACE_H
static bool ThreadSafeMessageBox(BitcoinGUI *gui, const bilingual_str &message, const std::string &caption, unsigned int style)
The block chain is a tree shaped structure starting with the genesis block at the root,...
Definition: blockindex.h:26
Signals for UI communication.
Definition: ui_interface.h:24
ADD_SIGNALS_DECL_WRAPPER(BannedListChanged, void, void)
Banlist did change.
ADD_SIGNALS_DECL_WRAPPER(NotifyAlertChanged, void,)
Status bar alerts changed.
ADD_SIGNALS_DECL_WRAPPER(ThreadSafeMessageBox, bool, const bilingual_str &message, const std::string &caption, unsigned int style)
Show message box.
ADD_SIGNALS_DECL_WRAPPER(NotifyNetworkActiveChanged, void, bool networkActive)
Network activity state changed.
ADD_SIGNALS_DECL_WRAPPER(ShowProgress, void, const std::string &title, int nProgress, bool resume_possible)
Show progress e.g.
ADD_SIGNALS_DECL_WRAPPER(NotifyBlockTip, void, SynchronizationState, const CBlockIndex *)
New block has been accepted.
ADD_SIGNALS_DECL_WRAPPER(ThreadSafeQuestion, bool, const bilingual_str &message, const std::string &noninteractive_message, const std::string &caption, unsigned int style)
If possible, ask the user a question.
ADD_SIGNALS_DECL_WRAPPER(NotifyHeaderTip, void, SynchronizationState, int64_t height, int64_t timestamp, bool presync)
Best header has changed.
MessageBoxFlags
Flags for CClientUIInterface::ThreadSafeMessageBox.
Definition: ui_interface.h:27
@ ICON_MASK
Mask of all available icons in CClientUIInterface::MessageBoxFlags This needs to be updated,...
Definition: ui_interface.h:35
@ BTN_MASK
Mask of all available buttons in CClientUIInterface::MessageBoxFlags This needs to be updated,...
Definition: ui_interface.h:58
@ BTN_OK
These values are taken from qmessagebox.h "enum StandardButton" to be directly usable.
Definition: ui_interface.h:41
@ MSG_INFORMATION
Predefined combinations for certain default usage cases.
Definition: ui_interface.h:71
@ MODAL
Force blocking, modal message box dialog (not just OS notification)
Definition: ui_interface.h:65
@ SECURE
Do not print contents of message to debug log.
Definition: ui_interface.h:68
ADD_SIGNALS_DECL_WRAPPER(InitMessage, void, const std::string &message)
Progress message during initialization.
ADD_SIGNALS_DECL_WRAPPER(NotifyNumConnectionsChanged, void, int newNumConnections)
Number of network connections changed.
static void ShowProgress(SplashScreen *splash, const std::string &title, int nProgress, bool resume_possible)
static void InitMessage(SplashScreen *splash, const std::string &message)
Bilingual messages:
Definition: translation.h:17
CClientUIInterface uiInterface
void InitWarning(const bilingual_str &str)
Show warning message.
constexpr auto AbortError
Definition: ui_interface.h:141
bool InitError(const bilingual_str &str)
Show error message.
static bool NotifyHeaderTip(Chainstate &chainstate) LOCKS_EXCLUDED(cs_main)
SynchronizationState
Current sync state passed to tip changed callbacks.
Definition: validation.h:114