smesh/src/SMESHGUI/SMESHGUI_IdValidator.h

71 lines
2.0 KiB
C
Raw Normal View History

2009-02-17 10:27:49 +05:00
// Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE
2004-12-01 15:48:31 +05:00
//
2009-02-17 10:27:49 +05:00
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
2004-12-01 15:48:31 +05:00
//
2009-02-17 10:27:49 +05:00
// 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.
2004-12-01 15:48:31 +05:00
//
2009-02-17 10:27:49 +05:00
// This library 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
// Lesser General Public License for more details.
2004-12-01 15:48:31 +05:00
//
2009-02-17 10:27:49 +05:00
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
//
// SMESH SMESHGUI : GUI for SMESH component
// File : SMESHGUI_IdValidator.h
// Author : Edward AGAPOV, Open CASCADE S.A.S.
//
#ifndef SMESHGUI_IDVALIDATOR_H
#define SMESHGUI_IDVALIDATOR_H
2004-12-01 15:48:31 +05:00
2009-02-17 10:27:49 +05:00
// SMESH includes
#include "SMESH_SMESHGUI.hxx"
2009-02-17 10:27:49 +05:00
// Qt includes
#include <QValidator>
2004-12-01 15:48:31 +05:00
// validator for manual input of Ids
2009-02-17 10:27:49 +05:00
class SMESHGUI_EXPORT SMESHGUI_IdValidator : public QValidator
2004-12-01 15:48:31 +05:00
{
2009-02-17 10:27:49 +05:00
public:
SMESHGUI_IdValidator( QWidget* parent, const int maxNbId = 0 ) :
QValidator( parent ), myMaxNbId( maxNbId ) {}
2004-12-01 15:48:31 +05:00
2009-02-17 10:27:49 +05:00
State validate( QString& input, int& pos ) const
2004-12-01 15:48:31 +05:00
{
2009-02-17 10:27:49 +05:00
input.replace( QRegExp(" *[^0-9]+ *"), " " );
if ( myMaxNbId && input.length() > myMaxNbId ) {
// truncate extra ids
2004-12-01 15:48:31 +05:00
int ind = 0, nbId = 0;
2009-02-17 10:27:49 +05:00
while ( ind < input.length() ) {
if ( input.at( ind ) != ' ' ) {
2004-12-01 15:48:31 +05:00
if ( ++nbId > myMaxNbId ) {
2009-02-17 10:27:49 +05:00
input.truncate( ind );
2004-12-01 15:48:31 +05:00
break;
}
2009-02-17 10:27:49 +05:00
ind = input.indexOf( ' ', ind );
2004-12-01 15:48:31 +05:00
if ( ind < 0 ) break;
}
ind++;
}
}
2009-02-17 10:27:49 +05:00
if ( pos > input.length() )
pos = input.length();
2004-12-01 15:48:31 +05:00
return Acceptable;
}
2009-02-17 10:27:49 +05:00
private:
2004-12-01 15:48:31 +05:00
int myMaxNbId;
};
2009-02-17 10:27:49 +05:00
#endif // SMESHGUI_IDVALIDATOR_H