QGIS/python/gui/qgscodeeditor.sip
Nathan Woodrow a284c4e0d1 Code editor
2014-07-12 22:27:52 +10:00

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);
};