You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
236 lines
6.6 KiB
236 lines
6.6 KiB
/*
|
|
**************************************************************************
|
|
description
|
|
--------------------
|
|
copyright : (C) 2000-2002 by Andreas Zehender
|
|
email : zehender@kde.org
|
|
**************************************************************************
|
|
|
|
**************************************************************************
|
|
* *
|
|
* 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; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
**************************************************************************/
|
|
|
|
|
|
#include "pmvectoredit.h"
|
|
#include "pmdebug.h"
|
|
#include <tqstring.h>
|
|
#include <tqlayout.h>
|
|
#include <tqlabel.h>
|
|
#include <kdialog.h>
|
|
#include <kmessagebox.h>
|
|
#include <klocale.h>
|
|
|
|
|
|
PMVectorEdit::PMVectorEdit( const TQString& descriptionX,
|
|
const TQString& descriptionY,
|
|
TQWidget* parent, const char* name )
|
|
: TQWidget( parent, name )
|
|
{
|
|
unsigned int i;
|
|
TQHBoxLayout* tqlayout;
|
|
TQLabel* label;
|
|
|
|
m_edits.resize( 2 );
|
|
for( i = 0; i < 2; i++ )
|
|
{
|
|
m_edits.insert( i, new TQLineEdit( this ) );
|
|
connect( m_edits[i], TQT_SIGNAL( textChanged( const TQString& ) ),
|
|
TQT_SLOT( slotTextChanged( const TQString& ) ) );
|
|
}
|
|
|
|
tqlayout = new TQHBoxLayout( this );
|
|
|
|
if( !descriptionX.isEmpty( ) )
|
|
{
|
|
label = new TQLabel( descriptionX, this );
|
|
tqlayout->addWidget( label );
|
|
tqlayout->addSpacing( KDialog::spacingHint( ) );
|
|
}
|
|
tqlayout->addWidget( m_edits[0] );
|
|
tqlayout->addSpacing( KDialog::spacingHint( ) );
|
|
|
|
if( !descriptionY.isEmpty( ) )
|
|
{
|
|
label = new TQLabel( descriptionY, this );
|
|
tqlayout->addWidget( label );
|
|
tqlayout->addSpacing( KDialog::spacingHint( ) );
|
|
}
|
|
tqlayout->addWidget( m_edits[1] );
|
|
}
|
|
|
|
PMVectorEdit::PMVectorEdit( const TQString& descriptionX,
|
|
const TQString& descriptionY,
|
|
const TQString& descriptionZ,
|
|
TQWidget* parent, const char* name )
|
|
: TQWidget( parent, name )
|
|
{
|
|
unsigned int i;
|
|
TQHBoxLayout* tqlayout;
|
|
TQLabel* label;
|
|
|
|
m_edits.resize( 3 );
|
|
for( i = 0; i < 3; i++ )
|
|
{
|
|
m_edits.insert( i, new TQLineEdit( this ) );
|
|
connect( m_edits[i], TQT_SIGNAL( textChanged( const TQString& ) ),
|
|
TQT_SLOT( slotTextChanged( const TQString& ) ) );
|
|
}
|
|
|
|
tqlayout = new TQHBoxLayout( this );
|
|
|
|
if( !descriptionX.isEmpty( ) )
|
|
{
|
|
label = new TQLabel( descriptionX, this );
|
|
tqlayout->addWidget( label );
|
|
tqlayout->addSpacing( KDialog::spacingHint( ) );
|
|
}
|
|
tqlayout->addWidget( m_edits[0] );
|
|
tqlayout->addSpacing( KDialog::spacingHint( ) );
|
|
|
|
if( !descriptionY.isEmpty( ) )
|
|
{
|
|
label = new TQLabel( descriptionY, this );
|
|
tqlayout->addWidget( label );
|
|
tqlayout->addSpacing( KDialog::spacingHint( ) );
|
|
}
|
|
tqlayout->addWidget( m_edits[1] );
|
|
tqlayout->addSpacing( KDialog::spacingHint( ) );
|
|
|
|
if( !descriptionZ.isEmpty( ) )
|
|
{
|
|
label = new TQLabel( descriptionZ, this );
|
|
tqlayout->addWidget( label );
|
|
tqlayout->addSpacing( KDialog::spacingHint( ) );
|
|
}
|
|
tqlayout->addWidget( m_edits[2] );
|
|
}
|
|
|
|
PMVectorEdit::PMVectorEdit( const TQString& descriptionA,
|
|
const TQString& descriptionB,
|
|
const TQString& descriptionC,
|
|
const TQString& descriptionD,
|
|
TQWidget* parent, const char* name )
|
|
: TQWidget( parent, name )
|
|
{
|
|
unsigned int i;
|
|
TQHBoxLayout* tqlayout;
|
|
TQLabel* label;
|
|
|
|
m_edits.resize( 4 );
|
|
for( i = 0; i < 4; i++ )
|
|
{
|
|
m_edits.insert( i, new TQLineEdit( this ) );
|
|
connect( m_edits[i], TQT_SIGNAL( textChanged( const TQString& ) ),
|
|
TQT_SLOT( slotTextChanged( const TQString& ) ) );
|
|
}
|
|
|
|
tqlayout = new TQHBoxLayout( this );
|
|
|
|
if( !descriptionA.isEmpty( ) )
|
|
{
|
|
label = new TQLabel( descriptionA, this );
|
|
tqlayout->addWidget( label );
|
|
tqlayout->addSpacing( KDialog::spacingHint( ) );
|
|
}
|
|
tqlayout->addWidget( m_edits[0] );
|
|
tqlayout->addSpacing( KDialog::spacingHint( ) );
|
|
|
|
if( !descriptionB.isEmpty( ) )
|
|
{
|
|
label = new TQLabel( descriptionB, this );
|
|
tqlayout->addWidget( label );
|
|
tqlayout->addSpacing( KDialog::spacingHint( ) );
|
|
}
|
|
tqlayout->addWidget( m_edits[1] );
|
|
tqlayout->addSpacing( KDialog::spacingHint( ) );
|
|
|
|
if( !descriptionC.isEmpty( ) )
|
|
{
|
|
label = new TQLabel( descriptionC, this );
|
|
tqlayout->addWidget( label );
|
|
tqlayout->addSpacing( KDialog::spacingHint( ) );
|
|
}
|
|
tqlayout->addWidget( m_edits[2] );
|
|
tqlayout->addSpacing( KDialog::spacingHint( ) );
|
|
|
|
if( !descriptionD.isEmpty( ) )
|
|
{
|
|
label = new TQLabel( descriptionD, this );
|
|
tqlayout->addWidget( label );
|
|
tqlayout->addSpacing( KDialog::spacingHint( ) );
|
|
}
|
|
tqlayout->addWidget( m_edits[3] );
|
|
}
|
|
|
|
void PMVectorEdit::setVector( const PMVector& v, int precision )
|
|
{
|
|
unsigned int i;
|
|
TQString str;
|
|
|
|
if( v.size( ) != m_edits.size( ) )
|
|
kdError( PMArea ) << "Vector has wrong size in PMVectorEdit::setVector\n";
|
|
|
|
for( i = 0; ( i < m_edits.size( ) ) && ( i < v.size( ) ); i++ )
|
|
{
|
|
str.setNum( v[i], 'g', precision );
|
|
m_edits[i]->setText( str );
|
|
}
|
|
}
|
|
|
|
PMVector PMVectorEdit::vector( ) const
|
|
{
|
|
PMVector result( m_edits.size( ) );
|
|
unsigned int i;
|
|
|
|
for( i = 0; i < m_edits.size( ); i++ )
|
|
result[i] = m_edits[i]->text( ).toDouble( );
|
|
|
|
return result;
|
|
}
|
|
|
|
bool PMVectorEdit::isDataValid( )
|
|
{
|
|
bool ok = true;
|
|
unsigned int i;
|
|
|
|
for( i = 0; ( i < m_edits.size( ) ) && ok; i++ )
|
|
{
|
|
m_edits[i]->text( ).toDouble( &ok );
|
|
if( !ok )
|
|
{
|
|
KMessageBox::error( this, i18n( "Please enter a valid float value!" ),
|
|
i18n( "Error" ) );
|
|
m_edits[i]->setFocus( );
|
|
m_edits[i]->selectAll( );
|
|
}
|
|
}
|
|
|
|
return ok;
|
|
}
|
|
|
|
void PMVectorEdit::slotTextChanged( const TQString& )
|
|
{
|
|
emit dataChanged( );
|
|
}
|
|
|
|
void PMVectorEdit::setReadOnly( bool yes )
|
|
{
|
|
unsigned int i;
|
|
for( i = 0; ( i < m_edits.size( ) ); i++ )
|
|
m_edits[i]->setReadOnly( yes );
|
|
}
|
|
|
|
void PMVectorEdit::setEnabled( bool yes )
|
|
{
|
|
unsigned int i;
|
|
for( i = 0; ( i < m_edits.size( ) ); i++ )
|
|
m_edits[i]->setEnabled( yes );
|
|
}
|
|
|
|
#include "pmvectoredit.moc"
|