1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
//##########################################################################
//# #
//# CLOUDCOMPARE #
//# #
//# 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; version 2 or later of the License. #
//# #
//# This program 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. #
//# #
//# COPYRIGHT: EDF R&D / TELECOM ParisTech (ENST-TSI) #
//# #
//##########################################################################
#ifndef CC_ASCII_FILTER_HEADER
#define CC_ASCII_FILTER_HEADER
#include "FileIOFilter.h"
//dialogs
#include "AsciiOpenDlg.h"
#include "AsciiSaveDlg.h"
//! ASCII point cloud I/O filter
class QCC_IO_LIB_API AsciiFilter : public FileIOFilter
{
public:
//static accessors
static inline QString GetFileFilter() { return "ASCII cloud (*.txt *.asc *.neu *.xyz *.pts *.csv)"; }
static inline QString GetDefaultExtension() { return "asc"; }
//inherited from FileIOFilter
bool importSupported() const override { return true; }
bool exportSupported() const override { return true; }
CC_FILE_ERROR loadFile(const QString& filename, ccHObject& container, LoadParameters& parameters) override;
CC_FILE_ERROR saveToFile(ccHObject* entity, const QString& filename, const SaveParameters& parameters) override;
QStringList getFileFilters(bool onImport) const override { return QStringList(GetFileFilter()); }
QString getDefaultExtension() const override { return GetDefaultExtension(); }
bool canLoadExtension(const QString& upperCaseExt) const override;
bool canSave(CC_CLASS_ENUM type, bool& multiple, bool& exclusive) const override;
//! Loads an ASCII file with a predefined format
CC_FILE_ERROR loadCloudFromFormatedAsciiFile( const QString& filename,
ccHObject& container,
const AsciiOpenDlg::Sequence& openSequence,
char separator,
unsigned approximateNumberOfLines,
qint64 fileSize,
unsigned maxCloudSize,
unsigned skipLines,
LoadParameters& parameters,
bool showLabelsIn2D = false);
//! Returns associated dialog (creates it if necessary)
static AsciiOpenDlg* GetOpenDialog(QWidget* parentWidget = nullptr);
//! Returns associated dialog (creates it if necessary)
static AsciiSaveDlg* GetSaveDialog(QWidget* parentWidget = nullptr);
protected:
//! Internal use only
CC_FILE_ERROR saveFile(ccHObject* entity, FILE *theFile);
};
#endif //CC_ASCII_FILTER_HEADER
|