#include <QItemDelegate>
#include <QHeaderView>
#include <QRadioButton>
+#include <QPushButton>
#include <QLineEdit>
#include <QButtonGroup>
#include <QGroupBox>
}
HYDROGUI_GeoreferencementDlg::HYDROGUI_GeoreferencementDlg( HYDROGUI_Module* theModule, const QString& theTitle )
-: HYDROGUI_InputPanel( theModule, theTitle )
+: HYDROGUI_InputPanel( theModule, theTitle ), myIsModified( false )
{
// Mode selector (all/selected)
QGroupBox* aModeGroup = new QGroupBox( tr( "PROFILES" ), this );
aModeSelectorLayout->addWidget( anAllRB );
aModeSelectorLayout->addWidget( aSelectedRB );
+ // Update selection button
+ myUpdateSelBtn = new QPushButton( mainFrame() );
+ myUpdateSelBtn->setText( tr("UPDATE_SELECTION") );
+ QBoxLayout* anUpdateSelLayout = new QHBoxLayout( mainFrame() );
+ anUpdateSelLayout->addWidget( myUpdateSelBtn );
+ anUpdateSelLayout->addStretch();
+
// Table
myTable = new QTableWidget( mainFrame() );
myTable->setItemDelegate( new Delegate( this ) );
// Layout
addWidget( aModeGroup );
+ addLayout( anUpdateSelLayout );
addWidget( myTable );
// Connect signals and slots
connect( myModeButtons, SIGNAL( buttonClicked( int ) ), this, SLOT( onModeActivated( int ) ) );
+ connect( myUpdateSelBtn, SIGNAL( clicked() ), this, SIGNAL( updateSelection() ) );
+ connect( myTable->model(), SIGNAL( dataChanged ( const QModelIndex&, const QModelIndex& ) ),
+ this, SLOT( onDataChanged() ) );
}
HYDROGUI_GeoreferencementDlg::~HYDROGUI_GeoreferencementDlg()
void HYDROGUI_GeoreferencementDlg::onModeActivated( int theMode )
{
+ myUpdateSelBtn->setEnabled( theMode == SelectedProfiles );
emit modeActivated( theMode );
}
aModeButton->setChecked( true );
}
+ myUpdateSelBtn->setEnabled( theMode == SelectedProfiles );
+
myModeButtons->blockSignals( isBlocked );
}
void HYDROGUI_GeoreferencementDlg::setData( const ProfilesGeoDataMap& theMap )
{
+ disconnect( myTable->model(), SIGNAL( dataChanged ( const QModelIndex&, const QModelIndex& ) ),
+ this, SLOT( onDataChanged() ) );
+
myTable->setRowCount( 0 );
foreach ( const QString& aProfileName, theMap.keys() ) {
}
myTable->resizeColumnToContents( 0 );
+ myTable->resizeRowsToContents();
+
+ myIsModified = false;
+
+ connect( myTable->model(), SIGNAL( dataChanged ( const QModelIndex&, const QModelIndex& ) ),
+ this, SLOT( onDataChanged() ) );
}
void HYDROGUI_GeoreferencementDlg::getData( ProfilesGeoDataMap& theMap )
QString HYDROGUI_GeoreferencementDlg::getString( const double theNumber ) const
{
return QString::number( theNumber, 'g', 12 );
+}
+
+void HYDROGUI_GeoreferencementDlg::onDataChanged()
+{
+ myIsModified = true;
+}
+
+bool HYDROGUI_GeoreferencementDlg::isModified() const
+{
+ return myIsModified;
}
\ No newline at end of file
aPanel->reset();
if ( myInitialMode == All ) {
- int anAllMode = HYDROGUI_GeoreferencementDlg::AllProfiles;
- aPanel->setMode( anAllMode );
- onModeActivated( anAllMode );
+ //@MZN aPanel->setMode( anAllMode );
+ onModeActivated( HYDROGUI_GeoreferencementDlg::AllProfiles );
} else if ( myInitialMode == Selected ) {
- int aSelectionMode = HYDROGUI_GeoreferencementDlg::SelectedProfiles;
- aPanel->setMode( aSelectionMode );
- onModeActivated( aSelectionMode );
+ //@MZN aPanel->setMode( aSelectionMode );
+ onModeActivated( HYDROGUI_GeoreferencementDlg::SelectedProfiles );
}
LightApp_Application* anApp = module()->getApp();
{
HYDROGUI_InputPanel* aPanel = new HYDROGUI_GeoreferencementDlg( module(), getName() );
connect( aPanel, SIGNAL( modeActivated( int ) ), SLOT( onModeActivated( int ) ) );
+ connect( aPanel, SIGNAL( updateSelection() ), SLOT( onUpdateSelection() ) );
return aPanel;
}
bool HYDROGUI_GeoreferencementOp::processApply( int& theUpdateFlags,
QString& theErrorMsg )
{
- theUpdateFlags = UF_Model;
+ theUpdateFlags = UF_Model | UF_OCCViewer | UF_OCC_Forced;
return store( theErrorMsg );
}
return;
}
- // Store the dialog data to the data model
- if ( !store( anErrorMsg ) ) {
- aPanel->setMode( theActualMode == HYDROGUI_GeoreferencementDlg::AllProfiles ?
- HYDROGUI_GeoreferencementDlg::SelectedProfiles :
- HYDROGUI_GeoreferencementDlg::AllProfiles);
+ aPanel->setMode( theActualMode == HYDROGUI_GeoreferencementDlg::AllProfiles ?
+ HYDROGUI_GeoreferencementDlg::SelectedProfiles :
+ HYDROGUI_GeoreferencementDlg::AllProfiles);
+ // Store the dialog data to the data model
+ bool isToStore = false;
+ // Check if modifications exists
+ if ( aPanel->isModified() ) {
+ // Show confirmation dialog
+ SUIT_MessageBox::StandardButtons aButtons =
+ SUIT_MessageBox::Yes | SUIT_MessageBox::No;
+
+ isToStore = SUIT_MessageBox::question( module()->getApp()->desktop(),
+ tr( "CONFIRMATION" ),
+ tr( "CONFIRM_STORE" ),
+ aButtons,
+ SUIT_MessageBox::Yes) == SUIT_MessageBox::Yes;
+ }
+ // Store modifications if needed
+ if ( isToStore && !store( anErrorMsg ) ) {
anErrorMsg.append( "\n" + tr( "INPUT_VALID_DATA" ) );
SUIT_MessageBox::critical( module()->getApp()->desktop(),
tr( "INSUFFICIENT_INPUT_DATA" ),
return;
}
- // Get georeferencement data from the data model
- HYDROGUI_GeoreferencementDlg::ProfilesGeoDataMap aDataMap;
+ aPanel->setMode( theActualMode );
+
+ // Get the list of profiles
HYDROData_SequenceOfObjects aSeqOfProfiles;
if( theActualMode == HYDROGUI_GeoreferencementDlg::AllProfiles ) {
aSeqOfProfiles = HYDROGUI_Tool::GetSelectedObjects( module() );
}
- HYDROData_SequenceOfObjects::Iterator anIter( aSeqOfProfiles );
- for ( ; anIter.More(); anIter.Next() ) {
- Handle(HYDROData_Profile) aProfile =
- Handle(HYDROData_Profile)::DownCast( anIter.Value() );
- if ( aProfile.IsNull() ) {
- continue;
- }
-
- HYDROGUI_GeoreferencementDlg::ProfileGeoData aGeoData;
-
- gp_XY aFirstPoint, aLastPoint;
- if ( aProfile->GetFirstPoint( aFirstPoint ) && aProfile->GetLastPoint( aLastPoint ) ) {
- aGeoData =
- HYDROGUI_GeoreferencementDlg::ProfileGeoData( aFirstPoint.X(), aFirstPoint.Y(),
- aLastPoint.X(), aLastPoint.Y() );
- }
-
- aDataMap.insert( aProfile->GetName(), aGeoData );
- }
-
- // Set the collected data to the dialog
- aPanel->setData( aDataMap );
+ // Set the profiles to the panel
+ setPanelData( aSeqOfProfiles );
}
void HYDROGUI_GeoreferencementOp::onWindowActivated( SUIT_ViewWindow* theViewWindow )
} else {
aProfile->Invalidate();
}
+
+ aProfile->Update();
}
}
+ module()->update( UF_Model | UF_OCCViewer | UF_OCC_Forced );
+ commitDocOperation(); // TODO: analyze the consequences
+
return true;
}
+
+void HYDROGUI_GeoreferencementOp::onUpdateSelection()
+{
+ // Get the selected profiles
+ HYDROData_SequenceOfObjects aSeqOfProfiles =
+ HYDROGUI_Tool::GetSelectedObjects( module() );
+
+ // Set them to the dialog
+ setPanelData( aSeqOfProfiles );
+}
+
+void HYDROGUI_GeoreferencementOp::setPanelData(
+ const HYDROData_SequenceOfObjects& theProfiles )
+{
+ // Get the panel
+ HYDROGUI_GeoreferencementDlg* aPanel =
+ ::qobject_cast<HYDROGUI_GeoreferencementDlg*>( inputPanel() );
+ if ( !aPanel ) {
+ return;
+ }
+
+ // Get georeferencement data from the data model
+ HYDROGUI_GeoreferencementDlg::ProfilesGeoDataMap aDataMap;
+
+ HYDROData_SequenceOfObjects::Iterator anIter( theProfiles );
+ for ( ; anIter.More(); anIter.Next() ) {
+ Handle(HYDROData_Profile) aProfile =
+ Handle(HYDROData_Profile)::DownCast( anIter.Value() );
+ if ( aProfile.IsNull() ) {
+ continue;
+ }
+
+ HYDROGUI_GeoreferencementDlg::ProfileGeoData aGeoData;
+
+ gp_XY aFirstPoint, aLastPoint;
+ if ( aProfile->GetFirstPoint( aFirstPoint ) && aProfile->GetLastPoint( aLastPoint ) ) {
+ aGeoData =
+ HYDROGUI_GeoreferencementDlg::ProfileGeoData( aFirstPoint.X(), aFirstPoint.Y(),
+ aLastPoint.X(), aLastPoint.Y() );
+ }
+
+ aDataMap.insert( aProfile->GetName(), aGeoData );
+ }
+
+ // Set the collected data to the dialog
+ aPanel->setData( aDataMap );
+}
\ No newline at end of file