qucs_s/qucs/syntax.h

68 lines
1.9 KiB
C
Raw Normal View History

/***************************************************************************
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
2013-04-06 19:06:49 +02:00
#include "textdoc.h"
#include <QSyntaxHighlighter>
2023-01-17 13:27:12 +03:00
#include <QRegularExpression>
2013-04-06 19:06:49 +02:00
enum language_type {
LANG_NONE = 0,
LANG_VHDL,
LANG_VERILOG,
LANG_VERILOGA,
LANG_OCTAVE,
};
enum textstate_type {
STATE_NONE = 0,
STATE_COMMENT = 100,
};
2013-04-06 19:06:49 +02:00
class SyntaxHighlighter : public QSyntaxHighlighter {
public:
SyntaxHighlighter(TextDoc*);
virtual ~SyntaxHighlighter();
void setLanguage(int);
2013-04-06 19:06:49 +02:00
void highlightBlock(const QString&);
private:
int language;
TextDoc *Doc;
2013-04-06 19:06:49 +02:00
struct HighlightingRule
{
2023-01-17 13:27:12 +03:00
QRegularExpression pattern;
2013-04-06 19:06:49 +02:00
QTextCharFormat format;
};
QVector<HighlightingRule> highlightingRules;
QTextCharFormat reservedWordFormat;
QTextCharFormat unitFormat;
QTextCharFormat datatypeFormat;
QTextCharFormat directiveFormat;
QTextCharFormat functionFormat;
QTextCharFormat commentFormat;
};
#endif