X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_GeoreferencementDlg.cxx;h=8c31879e395bac82e8ab9b183d5ee86365150462;hb=dfa894b758ac65080dc7185d25b7646dc45a10f4;hp=8f6c6943901f854cd81183ea33ca152914b8761f;hpb=d02cf392c2c47232c9301a02365cd25e9f2fe510;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_GeoreferencementDlg.cxx b/src/HYDROGUI/HYDROGUI_GeoreferencementDlg.cxx index 8f6c6943..8c31879e 100644 --- a/src/HYDROGUI/HYDROGUI_GeoreferencementDlg.cxx +++ b/src/HYDROGUI/HYDROGUI_GeoreferencementDlg.cxx @@ -1,12 +1,8 @@ -// Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE -// -// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, -// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS -// +// Copyright (C) 2014-2015 EDF-R&D // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public // License as published by the Free Software Foundation; either -// version 2.1 of the License. +// version 2.1 of the License, or (at your option) any later version. // // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -23,6 +19,7 @@ #include "HYDROGUI_GeoreferencementDlg.h" #include "HYDROGUI_Tool.h" +#include "HYDROGUI_LineEditDoubleValidator.h" #include @@ -33,7 +30,6 @@ #include #include -#include #include #include #include @@ -71,64 +67,6 @@ HYDROGUI_GeoreferencementDlg::ProfileGeoData::ProfileGeoData( } } -//! Custom item delegate (line edit with double validator) -class HYDROGUI_GeoreferencementDlg::Delegate : public QItemDelegate -{ -public: - Delegate( QObject* = 0 ); - - QWidget* createEditor( QWidget*, const QStyleOptionViewItem&, - const QModelIndex& ) const; - - void setEditorData( QWidget*, const QModelIndex& ) const; - void setModelData( QWidget*, QAbstractItemModel*, const QModelIndex& ) const; -}; - -HYDROGUI_GeoreferencementDlg::Delegate::Delegate( QObject* theParent ) - : QItemDelegate( theParent ) -{ -} - -QWidget* HYDROGUI_GeoreferencementDlg::Delegate::createEditor( - QWidget* theParent, const QStyleOptionViewItem& theOption, - const QModelIndex& theIndex ) const -{ - QWidget* anEditor = 0; - - if ( theIndex.column() > 0 ) { - QLineEdit* aLineEdit = new QLineEdit( theParent ); - QDoubleValidator* aDoubleValidator = new QDoubleValidator(); - aDoubleValidator->setNotation( QDoubleValidator::StandardNotation ); - aDoubleValidator->setDecimals( 2 ); - aLineEdit->setValidator( aDoubleValidator ); - anEditor = aLineEdit; - } else { - anEditor = QItemDelegate::createEditor( theParent, theOption, theIndex ); - } - - return anEditor; -} - -void HYDROGUI_GeoreferencementDlg::Delegate::setEditorData( - QWidget* theEditor, const QModelIndex& theIndex ) const -{ - if ( QLineEdit* aLineEdit = dynamic_cast( theEditor ) ) { - aLineEdit->setText( theIndex.data( Qt::EditRole ).toString() ); - } else { - QItemDelegate::setEditorData( theEditor, theIndex ); - } -} - -void HYDROGUI_GeoreferencementDlg::Delegate::setModelData( - QWidget* theEditor, QAbstractItemModel* theModel, const QModelIndex& theIndex) const -{ - if ( QLineEdit* aLineEdit = dynamic_cast( theEditor ) ) { - theModel->setData( theIndex, aLineEdit->text() ); - } else { - QItemDelegate::setModelData( theEditor, theModel, theIndex ); - } -} - HYDROGUI_GeoreferencementDlg::HYDROGUI_GeoreferencementDlg( HYDROGUI_Module* theModule, const QString& theTitle ) : HYDROGUI_InputPanel( theModule, theTitle ), myIsModified( false ) { @@ -157,7 +95,7 @@ HYDROGUI_GeoreferencementDlg::HYDROGUI_GeoreferencementDlg( HYDROGUI_Module* the // Table myTable = new QTableWidget( mainFrame() ); - myTable->setItemDelegate( new Delegate( this ) ); + myTable->setItemDelegate( new HYDROGUI_LineEditDoubleValidator( this ) ); myTable->verticalHeader()->setVisible( false ); myTable->setSelectionBehavior( QAbstractItemView::SelectItems ); myTable->setSelectionMode( QAbstractItemView::SingleSelection );