eric4.QScintilla.Exporters.ExporterBase

Module implementing the exporter base class.

Classes

ExporterBase Class implementing the exporter base class.

Functions

None


ExporterBase

Class implementing the exporter base class.

Derived from

QObject

Methods

ExporterBase Constructor
_getFileName Protected method to get the file name of the export file from the user.
exportSource Public method performing the export.

ExporterBase (Constructor)

ExporterBase(editor, parent = None)

Constructor

editor
reference to the editor object (QScintilla.Editor.Editor)
parent
parent object of the exporter (QObject)

ExporterBase._getFileName

_getFileName(filter)

Protected method to get the file name of the export file from the user.

filter
the filter string to be used (QString). The filter for "All Files (*)" is appended by this method.

ExporterBase.exportSource

exportSource()

Public method performing the export.

This method must be overridden by the real exporters.

Up