![]() |
QCAD
Open Source 2D CAD
|
Base class for file importers. More...
#include <RFileImporter.h>
Public Member Functions | |
virtual bool | importFile (const QString &fileName, const QString &nameFilter, const QVariantMap ¶ms=RDEFAULT_QVARIANTMAP)=0 |
Must be implemented by file importers to import the given file into the document. | |
RFileImporter () | |
Copyright (c) 2011-2018 by Andrew Mustun. | |
RFileImporter (RDocument &document, RMessageHandler *messageHandler=NULL, RProgressHandler *progressHandler=NULL) | |
virtual | ~RFileImporter () |
![]() | |
virtual void | endImport () |
Ends the import. | |
virtual RObject::Id | getCurrentBlockId () |
RDocument & | getDocument () |
virtual void | importObject (RObject *object) |
Provided for script importers as importObjectP will loose the object ID. | |
virtual void | importObjectP (QSharedPointer< RObject > object) |
Imports an entity into the document. | |
RImporter () | |
Copyright (c) 2011-2018 by Andrew Mustun. | |
RImporter (RDocument &document, RMessageHandler *messageHandler=NULL, RProgressHandler *progressHandler=NULL) | |
virtual void | setCurrentBlockId (RObject::Id id) |
void | setDocument (RDocument *d) |
void | setKnownVariable (RS::KnownVariable key, const QVariant &value) |
void | setKnownVariable (RS::KnownVariable key, const RVector &value) |
virtual void | startImport () |
Starts the import. | |
virtual | ~RImporter () |
Additional Inherited Members | |
![]() | |
RObject::Id | blockId |
RDocument * | document |
RMessageHandler * | messageHandler |
RProgressHandler * | progressHandler |
RTransaction | transaction |
Base class for file importers.
File importers import files of a specific format into an RDocument.
RFileImporter::RFileImporter | ( | ) |
Copyright (c) 2011-2018 by Andrew Mustun.
All rights reserved.
This file is part of the QCAD project.
QCAD 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 3 of the License, or (at your option) any later version.
QCAD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with QCAD.
RFileImporter::RFileImporter | ( | RDocument & | document, |
RMessageHandler * | messageHandler = NULL, | ||
RProgressHandler * | progressHandler = NULL ) |
|
virtual |
|
pure virtual |
Must be implemented by file importers to import the given file into the document.
Implemented in RDxfImporter.