Use standard C99 (and Qt) types for 64-bit integers
[novacoin.git] / src / qtui.h
1 // Copyright (c) 2010 Satoshi Nakamoto
2 // Distributed under the MIT/X11 software license, see the accompanying
3 // file license.txt or http://www.opensource.org/licenses/mit-license.php.
4 #ifndef BITCOIN_EXTERNUI_H
5 #define BITCOIN_EXTERNUI_H
6
7 #include <stdint.h>
8
9 #include <string>
10 #include <boost/function/function0.hpp>
11 #include "wallet.h"
12
13 typedef void wxWindow;
14 #define wxYES                   0x00000002
15 #define wxOK                    0x00000004
16 #define wxNO                    0x00000008
17 #define wxYES_NO                (wxYES|wxNO)
18 #define wxCANCEL                0x00000010
19 #define wxAPPLY                 0x00000020
20 #define wxCLOSE                 0x00000040
21 #define wxOK_DEFAULT            0x00000000
22 #define wxYES_DEFAULT           0x00000000
23 #define wxNO_DEFAULT            0x00000080
24 #define wxCANCEL_DEFAULT        0x80000000
25 #define wxICON_EXCLAMATION      0x00000100
26 #define wxICON_HAND             0x00000200
27 #define wxICON_WARNING          wxICON_EXCLAMATION
28 #define wxICON_ERROR            wxICON_HAND
29 #define wxICON_QUESTION         0x00000400
30 #define wxICON_INFORMATION      0x00000800
31 #define wxICON_STOP             wxICON_HAND
32 #define wxICON_ASTERISK         wxICON_INFORMATION
33 #define wxICON_MASK             (0x00000100|0x00000200|0x00000400|0x00000800)
34 #define wxFORWARD               0x00001000
35 #define wxBACKWARD              0x00002000
36 #define wxRESET                 0x00004000
37 #define wxHELP                  0x00008000
38 #define wxMORE                  0x00010000
39 #define wxSETUP                 0x00020000
40
41 extern int MyMessageBox(const std::string& message, const std::string& caption="Message", int style=wxOK, wxWindow* parent=NULL, int x=-1, int y=-1);
42 #define wxMessageBox  MyMessageBox
43 extern int ThreadSafeMessageBox(const std::string& message, const std::string& caption, int style=wxOK, wxWindow* parent=NULL, int x=-1, int y=-1);
44 extern bool ThreadSafeAskFee(int64_t nFeeRequired, const std::string& strCaption, wxWindow* parent);
45 extern void CalledSetStatusBar(const std::string& strText, int nField);
46 extern void UIThreadCall(boost::function0<void> fn);
47 extern void MainFrameRepaint();
48 extern void InitMessage(const std::string &message);
49 extern std::string _(const char* psz);
50
51 #endif