summaryrefslogtreecommitdiffstats
path: root/kpovmodeler/pmnamedobjectedit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kpovmodeler/pmnamedobjectedit.cpp')
-rw-r--r--kpovmodeler/pmnamedobjectedit.cpp81
1 files changed, 81 insertions, 0 deletions
diff --git a/kpovmodeler/pmnamedobjectedit.cpp b/kpovmodeler/pmnamedobjectedit.cpp
new file mode 100644
index 00000000..35a6c96c
--- /dev/null
+++ b/kpovmodeler/pmnamedobjectedit.cpp
@@ -0,0 +1,81 @@
+/*
+**************************************************************************
+ description
+ --------------------
+ copyright : (C) 2000-2001 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 "pmnamedobjectedit.h"
+#include "pmnamedobject.h"
+
+#include <qlayout.h>
+#include <qlineedit.h>
+#include <qlabel.h>
+#include <klocale.h>
+
+PMNamedObjectEdit::PMNamedObjectEdit( QWidget* parent, const char* name )
+ : Base( parent, name )
+{
+ m_pDisplayedObject = 0;
+}
+
+void PMNamedObjectEdit::createTopWidgets( )
+{
+ Base::createTopWidgets( );
+
+ QHBoxLayout* layout = new QHBoxLayout( topLayout( ) );
+ m_pNameEdit = new QLineEdit( this );
+ QLabel* label = new QLabel( i18n( "Name:" ), this );
+
+ layout->addWidget( label );
+ layout->addWidget( m_pNameEdit );
+
+ connect( m_pNameEdit, SIGNAL( textChanged( const QString& ) ),
+ SLOT( slotNameChanged( const QString& ) ) );
+}
+
+void PMNamedObjectEdit::displayObject( PMObject* o )
+{
+ if( o->isA( "NamedObject" ) )
+ {
+ m_pDisplayedObject = ( PMNamedObject* ) o;
+ m_pNameEdit->setText( m_pDisplayedObject->name( ) );
+
+ m_pNameEdit->setReadOnly( m_pDisplayedObject->isReadOnly( ) );
+
+ Base::displayObject( o );
+ }
+ else
+ kdError( PMArea ) << "PMNamedObjectEdit: Can't display object\n";
+}
+
+void PMNamedObjectEdit::saveContents( )
+{
+ if( m_pDisplayedObject )
+ {
+ Base::saveContents( );
+ m_pDisplayedObject->setName( m_pNameEdit->text( ) );
+ }
+}
+
+bool PMNamedObjectEdit::isDataValid( )
+{
+ return Base::isDataValid( );
+}
+
+void PMNamedObjectEdit::slotNameChanged( const QString& )
+{
+ emit dataChanged( );
+}
+#include "pmnamedobjectedit.moc"