Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The Beebox user interface lets users find text segments by a large variety of filter criteria. Built-in filters permit to look for untranslated content, problems with embedded codes, etc: 

...

  1. Add a class that extendst BeeboxTextFilter.
  2. Code the IsMatch() method. It receives one segment at a time and returns true if the segment passes the filter.
  3. Compile and install your dll.

The code below is a sample implementation. All interface methods are verbosely commented and should be self-explanatory.

Sample class

The Beebox extension below adds a filter that yields segments that are not translated: A simple but fundamental quality assurance algorithm.

...