]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/forms_gettext.C
Change the semantics of 'none' and 'auto' viewers/editors: 'none' means now
[lyx.git] / src / frontends / xforms / forms_gettext.C
index 090e76bb0a7f57e6840d0996e5ea56c5f2ea924b..1f8f5d1466bf10ca8e72f29902452b2187f62edf 100644 (file)
@@ -1,50 +1,37 @@
 /**
  * \file forms_gettext.C
- * Copyright 2002 the LyX Team
- * Read the file COPYING
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author Angus Leeming, leeming@lyx.org
+ * \author Angus Leeming
+ *
+ * Full author contact details are available in file CREDITS.
  */
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
-
 #include "forms_gettext.h"
 
-#include FORMS_H_LOCATION
+#include "support/lstrings.h"
+
+using std::string;
 
-// Extract shortcut from <ident>|<shortcut> string
-char const * flyx_shortcut_extract(char const * sc)
+namespace lyx {
+namespace frontend {
+
+// Extract shortcut from "<identifier>|<shortcut>" string
+string const scex(string const & str)
 {
-       // Find '|' in the sc and return the string after that.
-       register char const * sd = sc;
-       while (sd[0]!= 0 && sd[0] != '|') ++sd;
-
-       if (sd[0] == '|') {
-               ++sd;
-               return sd;
-       }
-       return "";
+       return support::split(str, '|');
 }
 
 
-// Extract identifier from <ident>|<shortcut> string
-char const * flyx_ident_extract(char const * sc)
+// Extract identifier from "<identifier>|<shortcut>" string
+string const idex(string const & str)
 {
-       register char const * se = sc;
-       while (se[0]!= 0 && se[0] != '|') ++se;
-
-       if (se[0] == 0) return sc;
-
-       char * sb = new char[se - sc + 1];
-       int index = 0;
-       register char const * sd = sc;
-       while (sd != se) {
-               sb[index] = sd[0];
-               ++index; ++sd;
-       }
-       sb[index] = 0;
-       return sb;
+       string identifier;
+       support::split(str, identifier, '|');
+       return identifier;
 }
+
+} // namespace frontend
+} // namespace lyx