minimize amount of text in status bar; show only icons, if the user wants explanation...
[novacoin.git] / src / qt / guiutil.h
index 58f8979..fb5c575 100644 (file)
@@ -7,12 +7,14 @@ QT_BEGIN_NAMESPACE
 class QFont;
 class QLineEdit;
 class QWidget;
+class QDateTime;
 QT_END_NAMESPACE
 
 class GUIUtil
 {
 public:
     static QString DateTimeStr(qint64 nTime);
+    static QString DateTimeStr(const QDateTime &datetime);
 
     // Render bitcoin addresses in monospace font
     static QFont bitcoinAddressFont();
@@ -20,12 +22,6 @@ public:
     static void setupAddressWidget(QLineEdit *widget, QWidget *parent);
 
     static void setupAmountWidget(QLineEdit *widget, QWidget *parent);
-
-    // Convenience wrapper around ParseMoney that takes QString
-    static bool parseMoney(const QString &amount, qint64 *val_out);
-
-    // Convenience wrapper around FormatMoney that returns QString
-    static QString formatMoney(qint64 amount, bool plussign=false);
 };
 
 #endif // GUIUTIL_H