2009-10-19 16:34:26 +00:00
|
|
|
/***************************************************************************
|
|
|
|
syntax.h
|
|
|
|
----------
|
|
|
|
begin : Sat Mar 11 2006
|
|
|
|
copyright : (C) 2006 by Michael Margraf
|
|
|
|
email : michael.margraf@alumni.tu-berlin.de
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
* *
|
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef SYNTAX_H
|
|
|
|
#define SYNTAX_H
|
|
|
|
|
|
|
|
enum language_type {
|
|
|
|
LANG_NONE = 0,
|
|
|
|
LANG_VHDL,
|
|
|
|
LANG_VERILOG,
|
|
|
|
LANG_VERILOGA,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum textstate_type {
|
|
|
|
STATE_NONE = 0,
|
2009-10-23 17:23:33 +00:00
|
|
|
STATE_COMMENT = 100,
|
2009-10-19 16:34:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class SyntaxHighlighter : public QSyntaxHighlighter {
|
|
|
|
public:
|
|
|
|
SyntaxHighlighter(TextDoc*);
|
|
|
|
virtual ~SyntaxHighlighter();
|
|
|
|
|
|
|
|
void setLanguage(int);
|
|
|
|
int highlightParagraph(const QString&, int);
|
|
|
|
|
|
|
|
private:
|
|
|
|
int language;
|
|
|
|
TextDoc *Doc;
|
|
|
|
void markWord(const QString&, int, int);
|
|
|
|
void markAttribute(const QString&, int, int);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|