Config ui prototype and some minor fixes

git-svn-id: svn://svn.code.sf.net/p/writer2latex/code/trunk@29 f0f2a975-2e09-46c8-9428-3b39399b9f3c
This commit is contained in:
henrikjust 2009-09-07 08:01:40 +00:00
parent f6c8e1709e
commit e8bba32302
50 changed files with 1091 additions and 110 deletions

View file

@ -26,7 +26,7 @@
package writer2latex.latex.i18n;
/** This class contains a node in a trie of string -> LaTeX code replacements
/** This class contains a node in a trie of string -> LaTeX code replacements
*/
public class ReplacementTrieNode {

View file

@ -26,7 +26,7 @@
package writer2latex.latex.i18n;
// Helper class: A struct to hold the LaTeX representations of a unicode character
// Helper class: A struct to hold the LaTeX representations of a unicode character
class UnicodeCharacter implements Cloneable {
final static int NORMAL = 0; // this is a normal character
final static int COMBINING = 1; // this character should be ignored

View file

@ -29,7 +29,7 @@ package writer2latex.latex.i18n;
// Helper class: Parse a unicode string.
// Note: Some 8-bit fonts have additional "spacer" characters that are used
// for manual placement of accents. These are ignored between the base character
// and the combining character, thus we are parsing according to the rule
// and the combining character, thus we are parsing according to the rule
// <base char> <spacer char>* <combining char>?
class UnicodeStringParser {
private UnicodeTable table; // the table to use

View file

@ -18,7 +18,7 @@
*
* Copyright: 2002-2007 by Henrik Just
*
* All Rights Reserved.
* All Rights Reserved.
*
* Version 0.5 (2007-07-24)
*

View file

@ -26,7 +26,7 @@
package writer2latex.latex.util;
/** Utility class to hold LaTeX code to put before/after other LaTeX code
/** Utility class to hold LaTeX code to put before/after other LaTeX code
*/
public class BeforeAfter {
private String sBefore="";

View file

@ -27,7 +27,7 @@
package writer2latex.latex.util;
/** This class contains data for the mapping of OOo headings to LaTeX headings.
A LaTeX heading is characterized by a name and a level.
A LaTeX heading is characterized by a name and a level.
The heading is inserted with \name{...} or \name[...]{...}
The headings are supposed to be "normal" LaTeX headings,
ie. the names are also counter names, and the headings

View file

@ -26,7 +26,7 @@
package writer2latex.latex.util;
// A struct to hold data about a style map
// A struct to hold data about a style map
class StyleMapItem {
String sBefore;
String sAfter;