Currency format updated

This commit is contained in:
Andre Jochems
2015-11-19 15:06:24 +01:00
parent 2079e3456a
commit 07e9dea07b
11 changed files with 113 additions and 86 deletions

View File

@@ -31,6 +31,7 @@ public:
DisplayAddresses, // bool
Language, // QString
CoinControlFeatures, // bool
DisplayPromotions, // bool
OptionIDRowCount,
};
@@ -53,6 +54,7 @@ public:
QString getLanguage() { return language; }
bool getCoinControlFeatures();
int getDisplayFiatCurrency() { return nDisplayFiatCurrency; }
bool getDisplayPromotions() { return fDisplayPromotions; }
private:
int nDisplayUnit;
@@ -62,11 +64,14 @@ private:
QString language;
bool fCoinControlFeatures;
int nDisplayFiatCurrency;
bool fDisplayPromotions;
signals:
void displayUnitChanged(int unit);
void transactionFeeChanged(qint64);
void coinControlFeaturesChanged(bool);
void displayCurrencyChanged(int currency);
void displayPromotionsChanged(bool);
};
#endif // OPTIONSMODEL_H