summaryrefslogtreecommitdiff
path: root/src/currency.h
blob: 02cbfd8ed15a7def5cd827e4959cd86928c589f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#ifndef CURRENCY_H
#define CURRENCY_H

#include <glib/gi18n.h>

#include "mp.h"

struct currency_name {
    char *short_name;
    char *symbol;
    char *long_name;
};

/*
 * List taken from http://www.ecb.int/press/pr/date/2008/html/pr081205.en.html
 * with euro added.
 */
static const struct currency_name currency_names[] = {
    {"AUD", "$",  N_("Australian dollar")},
    {"BGN", "лв", N_("Bulgarian lev")},
    {"BRL", "R$", N_("Brazilian real")},
    {"CAD", "$",  N_("Canadian dollar")},
    {"CHF", "Fr", N_("Swiss franc")},
    {"CNY", "元", N_("Chinese yuan renminbi")},
    {"CZK", "Kč", N_("Czech koruna")},
    {"DKK", "kr", N_("Danish krone")},
    {"EEK", "KR", N_("Estonian kroon")},
    {"EUR", "€",  N_("Euro")},
    {"GBP", "£",  N_("Pound sterling")},
    {"HKD", "$",  N_("Hong Kong dollar")},
    {"HRK", "kn", N_("Croatian kuna")},
    {"HUF", "Ft", N_("Hungarian forint")},
    {"IDR", "Rp", N_("Indonesian rupiah")},
    {"INR", "Rs", N_("Indian rupee")},
    {"ISK", "kr", N_("Icelandic krona")},
    {"JPY", "¥",  N_("Japanese yen")},
    {"KRW", "₩",  N_("South Korean won")},
    {"LTL", "Lt", N_("Lithuanian litas")},
    {"LVL", "Ls", N_("Latvian lats")},
    {"MXN", "$",  N_("Mexican peso")},
    {"MYR", "RM", N_("Malaysian ringgit")},
    {"NOK", "kr", N_("Norwegian krone")},
    {"NZD", "$",  N_("New Zealand dollar")},
    {"PHP", "₱",  N_("Philippine peso")},
    {"PLN", "zł", N_("Polish zloty")},
    {"RON", "L",  N_("New Romanian leu")},
    {"RUB", "руб.", N_("Russian rouble")},
    {"SEK", "kr", N_("Swedish krona")},
    {"SGD", "$",  N_("Singapore dollar")},
    {"THB", "฿",  N_("Thai baht")},
    {"TRY", "TL", N_("New Turkish lira")},
    {"USD", "$",  N_("US dollar")},
    {"ZAR", "R",  N_("South African rand")},
    {NULL, NULL}
};

// FIXME: Should indicate when rates are updated to UI

/* Converts an amount of money from one currency to another */
gboolean currency_convert(const MPNumber *from_amount,
                          const char *source_currency, const char *target_currency,
                          MPNumber *to_amount);

/* Frees up all allocated resources */
void currency_free_resources(void);

#endif /* CURRENCY_H */