~ubuntu-branches/debian/sid/texstudio/sid

« back to all changes in this revision

Viewing changes to latexoutputfilter.h

  • Committer: Package Import Robot
  • Author(s): Tom Jampen
  • Date: 2015-05-08 06:42:01 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20150508064201-1cy70o5bdh9h9258
Tags: 2.9.4+debian-1
* Merging upstream version 2.9.4+debian.
* Regenerating 03-disable-auto-update.patch.
* Removing 05-use-libsynctex.patch as TeXstudio includes a modified
  version of the synctex parser.
* Removing libsynctex-dev from Build-Depends as TeXstudio includes a
  modified version of the synctex parser.
* Removing 06-fix-silent-file-saving.patch, fixed upstream.
* Adding 05-fix-mercurial-revision.patch in order to prevent TeXstudio's
  mercurial revision from being empty.
* Updating year in copyright file.
* Updating quazip's copyright information.
* Rebuilding upstream tarball without:
  - conflicting debian directory
  - unused hunspell directory
  - unused include_win32 directory
  - unused include_win32_qt5 directory
  - unused qt translations
  - unused dictionary and thesaurus files
  - unused TexTablet directory
  - unused poppler-data directory

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
#include "mostQtHeaders.h"
21
21
 
22
 
enum LogType {LT_NONE = 0, LT_ERROR=1, LT_WARNING=2, LT_BADBOX=3, LT_MAX};
 
22
enum LogType {LT_NONE = 0, LT_ERROR=1, LT_WARNING=2, LT_BADBOX=3, LT_INFO, LT_MAX};
23
23
struct LatexLogEntry {
24
24
        static QColor textColors[LT_MAX];
25
25
        static QColor textColor(LogType lt) {return textColors[lt];}
116
116
        //void sendProblems();
117
117
        //void updateInfoLists(const QString &texfilename, int selrow, int docrow);
118
118
 
119
 
        enum {Start = 0, FileName, HeuristicSearch, Error, Warning, BadBox, ExpectingBadBoxTextQoute, LineNumber,
 
119
        enum {Start = 0, FileName, HeuristicSearch, Error, Latex3Error, Latex3ErrorEnd, Warning, Latex3Warning, BadBox, ExpectingBadBoxTextQoute, LineNumber,
120
120
                  // the following states are only used in updateFileStackHeuristic2
121
 
                  ExpectingFileName=10, InFileName, InQuotedFileName};
 
121
                  ExpectingFileName=100, InFileName, InQuotedFileName};
122
122
 
123
123
    protected:
124
124
        /**