mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-05 00:05:32 -04:00
44 lines
1.5 KiB
C++
44 lines
1.5 KiB
C++
/***************************************************************************
|
|
qgscodeeditorhtml.cpp - A HTML editor based on QScintilla
|
|
--------------------------------------
|
|
Date : 20-Jul-2014
|
|
Copyright : (C) 2014 by Nathan Woodrow
|
|
Email : woodrow.nathan (at) gmail (dot) com
|
|
***************************************************************************
|
|
* *
|
|
* 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. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#include "qgsapplication.h"
|
|
#include "qgscodeeditorhtml.h"
|
|
|
|
#include <QWidget>
|
|
#include <QString>
|
|
#include <QFont>
|
|
#include <Qsci/qscilexerhtml.h>
|
|
|
|
|
|
QgsCodeEditorHTML::QgsCodeEditorHTML( QWidget *parent )
|
|
: QgsCodeEditor( parent )
|
|
{
|
|
if ( !parent )
|
|
{
|
|
setTitle( tr( "HTML Editor" ) );
|
|
}
|
|
setMarginVisible( false );
|
|
setFoldingVisible( true );
|
|
setSciLexerHTML();
|
|
}
|
|
|
|
void QgsCodeEditorHTML::setSciLexerHTML()
|
|
{
|
|
QsciLexerHTML *lexer = new QsciLexerHTML( this );
|
|
lexer->setDefaultFont( QFont( QStringLiteral( "Sans" ), 10 ) );
|
|
|
|
setLexer( lexer );
|
|
}
|