Imported Upstream version 1.0.10
[platform/upstream/fribidi.git] / lib / fribidi.h
index c925bd5..6157a3a 100644 (file)
 #include "fribidi-shape.h"
 #include "fribidi-char-sets.h"
 
+#include "fribidi-begindecls.h"
+
+/* fribidi_remove_bidi_marks - remove bidi marks out of an string
+ *
+ * This function removes the bidi and boundary-neutral marks out of an string
+ * and the accompanying lists.  It implements rule X9 of the Unicode
+ * Bidirectional Algorithm available at
+ * http://www.unicode.org/reports/tr9/#X9, with the exception that it removes
+ * U+200E LEFT-TO-RIGHT MARK and U+200F RIGHT-TO-LEFT MARK too.
+ *
+ * If any of the input lists are NULL, the list is skipped.  If str is the
+ * visual string, then positions_to_this is  positions_L_to_V and
+ * position_from_this_list is positions_V_to_L;  if str is the logical
+ * string, the other way. Moreover, the position maps should be filled with
+ * valid entries.
+ * 
+ * A position map pointing to a removed character is filled with \(mi1. By the
+ * way, you should not use embedding_levels if str is visual string.
+ * 
+ * For best results this function should be run on a whole paragraph, not
+ * lines; but feel free to do otherwise if you know what you are doing.
+ *
+ * Returns: New length of the string, or \(mi1 if an error occurred (memory
+ * allocation failure most probably).
+ */
+FRIBIDI_ENTRY FriBidiStrIndex
+fribidi_remove_bidi_marks (
+  FriBidiChar *str,            /* input string to clean */
+  const FriBidiStrIndex len,   /* input string length */
+  FriBidiStrIndex *positions_to_this,  /* list mapping positions to the
+                                          order used in str */
+  FriBidiStrIndex *position_from_this_list,    /* list mapping positions from the
+                                                  order used in str */
+  FriBidiLevel *embedding_levels       /* list of embedding levels */
+);
+
+
+/* fribidi_log2vis - get visual string
+ *
+ * This function converts the logical input string to the visual output
+ * strings as specified by the Unicode Bidirectional Algorithm.  As a side
+ * effect it also generates mapping lists between the two strings, and the
+ * list of embedding levels as defined by the algorithm.
+ *
+ * If NULL is passed as any of the the lists, the list is ignored and not
+ * filled.
+ *
+ * Note that this function handles one-line paragraphs. For multi-
+ * paragraph texts it is necessary to first split the text into
+ * separate paragraphs and then carry over the resolved pbase_dir
+ * between the subsequent invocations.
+ *
+ * Returns: Maximum level found plus one, or zero if any error occurred
+ * (memory allocation failure most probably).
+ */
+FRIBIDI_ENTRY FriBidiLevel fribidi_log2vis (
+  const FriBidiChar *str,      /* input logical string */
+  const FriBidiStrIndex len,   /* input string length */
+  FriBidiParType *pbase_dir,   /* requested and resolved paragraph
+                                * base direction */
+  FriBidiChar *visual_str,     /* output visual string */
+  FriBidiStrIndex *positions_L_to_V,   /* output mapping from logical to 
+                                        * visual string positions */
+  FriBidiStrIndex *positions_V_to_L,   /* output mapping from visual string
+                                        * back to the logical string
+                                        * positions */
+  FriBidiLevel *embedding_levels       /* output list of embedding levels */
+);
+
+/* End of functions */
 
 #ifdef FRIBIDI_NO_DEPRECATED
 #else
 #endif                         /* !FRIBIDI_NO_DEPRECATED */
 
 
-#include "fribidi-begindecls.h"
-
-
-
 /* An string containing the version information of the library. */
-FRIBIDI_ENTRY const char *fribidi_version_info;
+FRIBIDI_ENTRY FRIBIDI_EXTERN const char *fribidi_version_info;
 
 #include "fribidi-enddecls.h"