diff options
Diffstat (limited to 'parts/filecreate/fctypeedit.cpp')
-rw-r--r-- | parts/filecreate/fctypeedit.cpp | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/parts/filecreate/fctypeedit.cpp b/parts/filecreate/fctypeedit.cpp new file mode 100644 index 00000000..310453ea --- /dev/null +++ b/parts/filecreate/fctypeedit.cpp @@ -0,0 +1,40 @@ +/*************************************************************************** + * Copyright (C) 2003 by Alexander Dymo * + * [email protected] * + * * + * 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 <klineedit.h> +#include <qpushbutton.h> +#include "fctypeedit.h" + + +FCTypeEdit::FCTypeEdit(QWidget *parent, char *name) + : FCTypeEditBase(parent, name) +{ + connect( typeext_edit, SIGNAL( textChanged ( const QString & )),this, SLOT( slotTypeEditTextChanged())); + connect( typename_edit, SIGNAL( textChanged ( const QString & )),this, SLOT( slotTypeEditTextChanged( ))); + slotTypeEditTextChanged( ); +} + +FCTypeEdit::~FCTypeEdit() +{ +} + +void FCTypeEdit::slotTypeEditTextChanged( ) +{ + ok_button->setEnabled( !typeext_edit->text().isEmpty() && + !typename_edit->text().isEmpty()); +} + +void FCTypeEdit::accept() +{ + if ( !typeext_edit->text().isEmpty() && + !typename_edit->text().isEmpty() ) + FCTypeEditBase::accept(); +} +#include "fctypeedit.moc" |