BRepLib::BuildCurves3d(F);
}
-int HYDROData_ShapeFile::ImportLandCovers(const QString theFileName, QStringList& thePolygonsList, TopTools_SequenceOfShape& theFaces, int& theShapeTypeOfFile)
+int HYDROData_ShapeFile::ImportPolygons(const QString theFileName, QStringList& thePolygonsList, TopTools_SequenceOfShape& theFaces, int& theShapeTypeOfFile)
{
Free();
int Stat = TryOpenShapeFile(theFileName);
bool Parse(SHPHandle theHandle, ShapeType theType, int& theShapeTypeOfFile);
//Import Landcover
void ReadSHPPolygon(SHPObject* anObj, int i, TopoDS_Face& F);
- HYDRODATA_EXPORT int ImportLandCovers(const QString theFileName, QStringList& thePolygonsList, TopTools_SequenceOfShape& theFaces, int& theShapeTypeOfFile);
+ HYDRODATA_EXPORT int ImportPolygons(const QString theFileName, QStringList& thePolygonsList, TopTools_SequenceOfShape& theFaces, int& theShapeTypeOfFile);
HYDRODATA_EXPORT void Free();
//Import Polyline
void ReadSHPPolyXY(Handle(HYDROData_Document) theDocument, SHPObject* anObj, QString theFileName,
HYDRODATA_EXPORT QString GetShapeTypeName(int theType);
//DBF I/O Methods
- bool CheckDBFFileExisting(const QString& theSHPFilePath, QString& thePathToDBFFile);
- bool DBF_OpenDBF(const QString& thePathToDBFFile);
- int DBF_GetNbFields();
- QStringList DBF_GetFieldList();
- void DBF_GetFieldTypeList(std::vector<DBF_FieldType>& FTVect);
- int DBF_GetNbRecords();
- void DBF_CloseDBF();
- void DBF_GetAttributeList(int theIndexOfField, std::vector<DBF_AttrValue>& theAttrV);
- bool DBF_WriteFieldAndValues(const QString& theFileName, const QString& theFieldName, DBF_FieldType theType, const std::vector<DBF_AttrValue>& theAttrV, bool bUseStrValue);
+ HYDRODATA_EXPORT bool CheckDBFFileExisting(const QString& theSHPFilePath, QString& thePathToDBFFile);
+ HYDRODATA_EXPORT bool DBF_OpenDBF(const QString& thePathToDBFFile);
+ HYDRODATA_EXPORT int DBF_GetNbFields();
+ HYDRODATA_EXPORT QStringList DBF_GetFieldList();
+ HYDRODATA_EXPORT void DBF_GetFieldTypeList(std::vector<DBF_FieldType>& FTVect);
+ HYDRODATA_EXPORT int DBF_GetNbRecords();
+ HYDRODATA_EXPORT void DBF_CloseDBF();
+ HYDRODATA_EXPORT void DBF_GetAttributeList(int theIndexOfField, std::vector<DBF_AttrValue>& theAttrV);
+ HYDRODATA_EXPORT bool DBF_WriteFieldAndValues(const QString& theFileName, const QString& theFieldName, DBF_FieldType theType, const std::vector<DBF_AttrValue>& theAttrV, bool bUseStrValue);
private:
void ProcessFace(TopoDS_Face theFace, SHPHandle theShpHandle);
myDBFAttr = new QListWidget( aPage );
- myDBFAttr->setSelectionMode( QListWidget::ExtendedSelection );
+ myDBFAttr->setSelectionMode( QListWidget::SingleSelection );
myDBFAttr->setEditTriggers( QListWidget::NoEditTriggers );
myDBFAttr->setViewMode( QListWidget::ListMode );
myDBFAttr->setSortingEnabled( false );
myTableW = new QTableWidget();
- myTableW->setRowCount(5);
- myTableW->setColumnCount(2);
-
- QStringList list;
- list << "1" << "2" << "3";
-
- for (int i = 0; i < 5; i++)
- for (int j = 0; j < 2; j++)
- {
- QComboBox* CB = new QComboBox();
- CB->addItems(list);
- myTableW->setCellWidget(i,j,CB);
- }
-
// Layout
QVBoxLayout* aPageLayout = new QVBoxLayout;
aPageLayout->setMargin( 5 );
void HYDROGUI_ImportLandCoverMapDlg::reset()
{
myPolygons->clear();
+ myDBFAttr->clear();
}
void HYDROGUI_ImportLandCoverMapDlg::setPolygonNames( const QStringList& theNames )
myPolygons->addItems( theNames );
}
+void HYDROGUI_ImportLandCoverMapDlg::setAttributeNames( const QStringList& theAttrNames )
+{
+ myDBFAttr->clear();
+ myDBFAttr->addItems( theAttrNames );
+}
+
void HYDROGUI_ImportLandCoverMapDlg::removePolygonNames( const QStringList& theNames )
{
QList<QListWidgetItem*> aFoundItems;
}
+
void HYDROGUI_ImportLandCoverMapDlg::onBrowse()
{
QString aFilter( tr( "LANDCOVERMAP_FILTER" ) );
return myFileName->text();
}
+
+void HYDROGUI_ImportLandCoverMapDlg::FillCorrTable(const QStringList& theFirstColumn, const QStringList& theSecondColumn)
+{
+ int FCSize = theFirstColumn.size();
+ int SCSize = theSecondColumn.size();
+
+ myTableW->setRowCount(FCSize);
+ myTableW->setColumnCount(2);
+
+ for (int i = 0; i < FCSize; i++)
+ {
+ QTableWidgetItem* aTWI = new QTableWidgetItem();
+ aTWI->setText(theFirstColumn.at(i));
+ aTWI->setFlags(Qt::ItemIsUserCheckable);
+ myTableW->setItem(i, 0, aTWI);
+ }
+
+ for (int i = 0; i < FCSize; i++)
+ {
+ QComboBox* aCB = new QComboBox();
+ aCB->addItems(theSecondColumn);
+ myTableW->setCellWidget(i, 1, aCB);
+ }
+}
+
+QString HYDROGUI_ImportLandCoverMapDlg::getSelectedFieldName() const
+{
+ return myDBFAttr->selectedItems().first()->text();
+}
void setSelectedPolygonNames( const QStringList& theNames );
+ void setAttributeNames( const QStringList& theAttrNames );
+
+ void FillCorrTable(const QStringList& theFirstColumn, const QStringList& theSecondColumn);
+
QStringList getSelectedPolygonNames() const;
+ QString getSelectedFieldName() const;
void setObjectName( const QString& theName );
QString getObjectName() const;
QGroupBox* myCorrNameGroup;
//third page
- QLabel* myCLabel;
- QTableWidget* myTableW;
+ QLabel* myCLabel;
+ QTableWidget* myTableW;
};
#include <LightApp_DataOwner.h>
#include <LightApp_Displayer.h>
#include <LightApp_SelectionMgr.h>
+#include <HYDROData_StricklerTable.h>
#include <SUIT_Desktop.h>
#include <SUIT_ViewManager.h>
#include <TopoDS.hxx>
#include <TopoDS_Shape.hxx>
#include <TopoDS_Wire.hxx>
-
-
-#include <BRepTools.hxx>
-
+#include <qset.h>
HYDROGUI_ImportLandCoverMapOp::HYDROGUI_ImportLandCoverMapOp( HYDROGUI_Module* theModule )
: HYDROGUI_Operation( theModule )
{
- setName( tr( "IMPORT_LANDCOVER" ) );
+ setName( tr( "IMPORT_LANDCOVERMAP" ) );
}
HYDROGUI_ImportLandCoverMapOp::~HYDROGUI_ImportLandCoverMapOp()
anObjectName = HYDROGUI_Tool::GenerateObjectName( module(), tr( "DEFAULT_LANDCOVERMAP_NAME" ) );
aPanel->setObjectName( anObjectName );
- QString aFileName = aPanel->getFileName();
- if ( aFileName.isEmpty() )
+ myFileName = aPanel->getFileName();
+ if ( myFileName.isEmpty() )
{
abort();
return;
}
- QString anExt = aFileName.split('.', QString::SkipEmptyParts).back();
+ QString anExt = myFileName.split('.', QString::SkipEmptyParts).back();
if (anExt == "shp")
{
QApplication::setOverrideCursor(Qt::WaitCursor);
QStringList aPolygonsList;
- TopTools_SequenceOfShape aFaces;
- HYDROData_ShapeFile anImporter;
+ myPolygonFaces.Clear();
+ myImporter.Free();
SalomeApp_Study* aStudy = dynamic_cast<SalomeApp_Study*>( module()->getApp()->activeStudy() );
if ( !aStudy )
Handle(AIS_InteractiveContext) aCtx = NULL;
int aShapeTypeOfFile = -1;
- int aStat = anImporter.ImportLandCovers(aFileName, aPolygonsList, aFaces, aShapeTypeOfFile);
+
+ //Import polygons from SHP file as faces
+ //This faces should be added to the new LCM object
+
+ int aStat = myImporter.ImportPolygons(myFileName, aPolygonsList, myPolygonFaces, aShapeTypeOfFile);
if (aStat == 1)
{
aPanel->setPolygonNames(aPolygonsList);
}
}
- for ( int i = 1; i <= aFaces.Length(); i++ )
+ for ( int i = 1; i <= myPolygonFaces.Length(); i++ )
{
- TopoDS_Face aFace = TopoDS::Face(aFaces.Value( i ));
+ TopoDS_Face aFace = TopoDS::Face(myPolygonFaces.Value( i ));
if ( aViewManager && !aCtx.IsNull() )
{
HYDROGUI_Shape* aShape = new HYDROGUI_Shape( aCtx, NULL, getPreviewZLayer() );
UpdateZLayersOfHilightPresentationsOfDisplayedObjects( aCtx, Graphic3d_ZLayerId_TopOSD );
aCtx->UpdateCurrentViewer();
}
-
+ //
QApplication::restoreOverrideCursor();
commitDocOperation();
}
else if (aStat == -2)
aMess += "Cannot open SHX file";
else
- aMess += "The shape type of file is " + anImporter.GetShapeTypeName(aShapeTypeOfFile);
+ aMess += "The shape type of file is " + myImporter.GetShapeTypeName(aShapeTypeOfFile);
SUIT_MessageBox::warning( module()->getApp()->desktop(), tr( "IMPORT_LANDCOVER" ), aMess);
commitDocOperation();
+ myImporter.Free();
//abort();
}
- anImporter.Free();
-
+
}
}
if ( isApplyAndClose() )
erasePreview();
+ myImporter.Free();
+
return true;
}
void HYDROGUI_ImportLandCoverMapOp::onNext( const int theIndex )
-{
+{
+ //TODO add acceptor
+ HYDROGUI_ImportLandCoverMapDlg* aPanel = ::qobject_cast<HYDROGUI_ImportLandCoverMapDlg*>( inputPanel() );
+ if ( !aPanel )
+ return;
+
+ if (theIndex == 1)
+ {
+ //Try to load DBF-database...
+ QString theDBFFileName;
+ theDBFFileName = myFileName.simplified().replace( ".shp", ".dbf", Qt::CaseInsensitive);
+ bool DBF_Stat = myImporter.DBF_OpenDBF(theDBFFileName);
+ // TODO:
+ // add MSG BOX if stat is bad
+ myFieldList = myImporter.DBF_GetFieldList();
+ aPanel->setAttributeNames(myFieldList);
+ }
+
+ if (theIndex == 2)
+ {
+ std::vector<HYDROData_ShapeFile::DBF_AttrValue> theAttrV;
+ int Ind = myFieldList.indexOf(aPanel->getSelectedFieldName());
+ if (Ind == -1)
+ return; //TODO add acceptor here!!
+ myImporter.DBF_GetAttributeList(Ind, theAttrV );
+
+ mySetOfAttrValues.clear();
+ for (size_t i = 0; i < theAttrV.size(); i++)
+ {
+ HYDROData_ShapeFile::DBF_AttrValue aV = theAttrV[i];
+ mySetOfAttrValues << QString(aV.myStrVal); //take myStrVal by now..
+ }
+
+ //Collect all strickler_types
+ QSet<QString> aSTSet;
+ Handle_HYDROData_Document aDoc = HYDROData_Document::Document( application()->activeStudy()->id() );
+ if ( aDoc )
+ {
+ HYDROData_Iterator It( aDoc, KIND_STRICKLER_TABLE );
+ for( ; It.More(); It.Next() )
+ {
+ Handle(HYDROData_StricklerTable) aStricklerTableObj = Handle(HYDROData_StricklerTable)::DownCast( It.Current() );
+ if ( !aStricklerTableObj.IsNull())
+ {
+ const QStringList& aStricklerList = aStricklerTableObj->GetTypes();
+ foreach (QString aStr, aStricklerList)
+ aSTSet << aStr;
+ }
+ }
+ }
+ aPanel->FillCorrTable(mySetOfAttrValues.toList(), aSTSet.toList());
+ }
}
#include "HYDROGUI_Operation.h"
#include <vector>
#include <QMap>
+#include <QSet>
+
+#include <TopTools_SequenceOfShape.hxx>
+#include <HYDROData_ShapeFile.h>
class SUIT_FileDlg;
class HYDROGUI_Shape;
class TopoDS_Face;
-
class HYDROGUI_ImportLandCoverMapOp : public HYDROGUI_Operation
{
Q_OBJECT
private:
QMap<QString, HYDROGUI_Shape*> myPolygonName2PrsShape;
+ TopTools_SequenceOfShape myPolygonFaces;
+ QSet<QString> mySetOfAttrValues;
+ HYDROData_ShapeFile myImporter;
+ QString myFileName;
+ QStringList myFieldList;
};
#endif