mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
15 lines
321 B
Plaintext
15 lines
321 B
Plaintext
class QgsCodeEditor: QsciScintilla
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgscodeeditor.h>
|
|
%End
|
|
|
|
public:
|
|
QgsCodeEditor( QWidget *parent /TransferThis/ = 0, QString title = "" , bool folding = false, bool margin = false );
|
|
~QgsCodeEditor();
|
|
|
|
bool enableMargin( bool margin );
|
|
|
|
void enableFolding( bool folding);
|
|
};
|