]> saetta.ns0.it Git - solipa/libsolipa/commitdiff
Aggiunta la funzione SolipaUtils::gstring_initial_capital.c.
authorAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Fri, 27 Jan 2012 10:10:30 +0000 (11:10 +0100)
committerAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Fri, 27 Jan 2012 10:10:30 +0000 (11:10 +0100)
.gitignore
src/utils.c
src/utils.h
tests/Makefile.am
tests/utils_gstring_initial_capital.c [new file with mode: 0644]

index 1a98a79b7605ed220b9c7d8488c785b331591ef3..878dd55ac03acb571f94f758f47dc999502f1161 100644 (file)
@@ -58,6 +58,7 @@ tests/utils
 tests/utils_codfisc_piva
 tests/utils_format_money
 tests/utils_gdatetime
+tests/utils_gstring_initial_capital.c
 tests/utils_gtktreemodel_copy
 tests/utils_infobar
 tests/utils_round
index cbd7c5d45b67a2becf8ecbdb0901d884a3646424..6f25d1811c4fe2cd6a52976256edf11187d145dc 100644 (file)
@@ -1834,6 +1834,47 @@ GdkPixbuf
        return pixbuf;
 }
 
+void
+solipa_gstring_initial_capital (GString *gstring)
+{
+       const gchar *cutf8;
+
+       GString *tmp;
+       gboolean first;
+       gunichar c;
+
+       g_return_if_fail (gstring != NULL);
+       g_return_if_fail (gstring->str != NULL);
+       g_return_if_fail (g_utf8_validate (gstring->str, -1, NULL));
+
+       tmp = g_string_new ("");
+       first = TRUE;
+
+       cutf8 = gstring->str;
+       while (*cutf8)
+               {
+                       c = g_utf8_get_char (cutf8);
+                       if (!g_unichar_isalpha (c))
+                               {
+                                       first = TRUE;
+                                       g_string_append_unichar (tmp, c);
+                               }
+                       else if (first)
+                               {
+                                       first = FALSE;
+                                       g_string_append_unichar (tmp, g_unichar_toupper (c));
+                               }
+                       else
+                               {
+                                       g_string_append_unichar (tmp, g_unichar_tolower (c));
+                               }
+                       cutf8 = g_utf8_next_char (cutf8);
+               }
+
+       g_string_assign (gstring, tmp->str);
+       g_string_free (tmp, TRUE);
+}
+
 /**
  * This function is copied from
  * http://bugzilla.gnome.org/show_bug.cgi?id=524831.
index d677525ef131cafad0c00c84dd6b9962b574723e..b3b7f8168550099221891c8f8ba1992e9856dd6a 100644 (file)
@@ -101,6 +101,8 @@ GtkWidget *solipa_info_bar (GtkMessageType type, const gchar *message_text);
 
 GdkPixbuf *solipa_file_get_icon_as_pixbuf (const gchar *filename, GtkWidget *widget, GtkIconSize size);
 
+void solipa_gstring_initial_capital (GString *gstring);
+
 gchar *g_mkdtemp (gchar *tmpl);
 
 
index f6f009d206f813123d43355b681bd213e71663f2..d4ef0a3554c1ad7000655ef902a5ee7678ae6aaf 100644 (file)
@@ -24,6 +24,7 @@ noinst_PROGRAMS = allegato \
                   utils_codfisc_piva \
                   utils_format_money \
                   utils_gdatetime \
+                  utils_gstring_initial_capital \
                   utils_gtktreemodel_copy \
                   utils_infobar \
                   utils_round
diff --git a/tests/utils_gstring_initial_capital.c b/tests/utils_gstring_initial_capital.c
new file mode 100644 (file)
index 0000000..7aee2f7
--- /dev/null
@@ -0,0 +1,38 @@
+/*
+ * Copyright (C) 2012 Andrea Zagli <azagli@libero.it>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library 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
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+ */
+
+#include <solipa.h>
+#include <utils.h>
+
+int
+main (int argc, char *argv[])
+{
+       GString *str;
+
+       g_type_init ();
+
+       if (argc == 2)
+               {
+                       str = g_string_new (argv[1]);
+                       solipa_gstring_initial_capital (str);
+                       g_message ("%s", str->str);
+                       g_string_free (str, TRUE);
+               }
+
+       return 0;
+}