/* vim: set sw=8: -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */ /* * go-format.h : * * Copyright (C) 2003-2005 Jody Goldberg (jody@gnome.org) * * This program is free software; you can redistribute it and/or * modify it under the terms of version 2 of the GNU General Public * License as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 * USA */ #ifndef GO_FORMAT_H #define GO_FORMAT_H #include #include #include #include #include #include G_BEGIN_DECLS /* Keep these sequential, they are used as the index for go_format_builtins */ typedef enum { GO_FORMAT_UNKNOWN = -1, GO_FORMAT_GENERAL = 0, GO_FORMAT_NUMBER = 1, GO_FORMAT_CURRENCY = 2, GO_FORMAT_ACCOUNTING = 3, GO_FORMAT_DATE = 4, GO_FORMAT_TIME = 5, GO_FORMAT_PERCENTAGE = 6, GO_FORMAT_FRACTION = 7, GO_FORMAT_SCIENTIFIC = 8, GO_FORMAT_TEXT = 9, GO_FORMAT_SPECIAL = 10, GO_FORMAT_MARKUP = 11 /* Internal use only */ } GOFormatFamily; typedef struct { gboolean thousands_sep; int num_decimals; /* 0 - 30 */ int negative_fmt; /* 0 - 3 */ int currency_symbol_index; int list_element; gboolean date_has_days; gboolean date_has_months; int fraction_denominator; } GOFormatDetails; struct _GOFormat { int ref_count; char *format; GSList *entries; /* Of type GOFormatElement. */ GOFormatFamily family; GOFormatDetails family_info; gboolean is_var_width; PangoAttrList *markup; /* only for GO_FORMAT_MARKUP */ }; GOFormat *go_format_new_from_XL (char const *str, gboolean delocalize); GOFormat *go_format_new (GOFormatFamily family, GOFormatDetails const *details); GOFormat *go_format_new_markup (PangoAttrList *markup, gboolean add_ref); /* these do not add a reference to the result */ GOFormat *go_format_general (void); GOFormat *go_format_default_date (void); GOFormat *go_format_default_time (void); GOFormat *go_format_default_date_time (void); GOFormat *go_format_default_percentage (void); GOFormat *go_format_default_money (void); char *go_format_str_delocalize (char const *str); char *go_format_str_as_XL (char const *str, gboolean localized); char *go_format_as_XL (GOFormat const *fmt, gboolean localized); GOFormat *go_format_ref (GOFormat *fmt); void go_format_unref (GOFormat *fmt); #define go_format_is_general(fmt) ((fmt)->family == GO_FORMAT_GENERAL) #define go_format_is_markup(fmt) ((fmt)->family == GO_FORMAT_MARKUP) #define go_format_is_text(fmt) ((fmt)->family == GO_FORMAT_TEXT) #define go_format_is_var_width(fmt) ((fmt)->is_var_width) char *go_format_value (GOFormat const *fmt, double val); void go_format_value_gstring (GOFormat const *format, GString *res, double val, int col_width, GODateConventions const *date_conv); gboolean go_format_eq (GOFormat const *a, GOFormat const *b); GOFormat *go_format_inc_precision (GOFormat const *fmt); GOFormat *go_format_dec_precision (GOFormat const *fmt); GOFormat *go_format_toggle_1000sep (GOFormat const *fmt); GOFormatFamily go_format_classify (GOFormat const *fmt, GOFormatDetails *details); typedef struct { gchar const *symbol; gchar const *description; gboolean precedes; gboolean has_space; } GOFormatCurrency; /* Indexed by GOFormatFamily */ extern char const * const * const go_format_builtins []; extern GOFormatCurrency const go_format_currencies []; /*************************************************************************/ typedef struct { int right_optional, right_spaces, right_req, right_allowed; int left_spaces, left_req; float scale; gboolean rendered; gboolean decimal_separator_seen; gboolean group_thousands; gboolean has_fraction; } GONumberFormat; void go_render_number (GString *result, double number, GONumberFormat const *info); #ifdef GOFFICE_WITH_LONG_DOUBLE void go_render_numberl (GString *result, long double number, GONumberFormat const *info); #endif /* Locale support routines */ void go_set_untranslated_bools (void); char const * go_setlocale (int category, char const *val); GString const *format_get_currency (gboolean *precedes, gboolean *space_sep); gboolean format_month_before_day (void); char format_get_arg_sep (void); char format_get_col_sep (void); char format_get_row_sep (void); GString const *format_get_thousand (void); GString const *format_get_decimal (void); char const * format_boolean (gboolean b); void number_format_init (void); void number_format_shutdown (void); void currency_date_format_init (void); void currency_date_format_shutdown (void); extern char const * const day_short []; extern char const * const day_long []; extern char const * const month_short []; extern char const * const month_long []; G_END_DECLS #endif /* GO_FORMAT_H */