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.
tdewebdev/quanta/dialogs/tagdialogs/tagmiscdlg.cpp

55 lines
1.9 KiB

/***************************************************************************
tagmiscdlg.h - description
-------------------
copyright : (C) 2005 Laurent Montel <montel@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 "tagmiscdlg.h"
#include "tagmisc.h"
#include <tdelocale.h>
#include <tqlineedit.h>
#include <tqcheckbox.h>
TagMiscDlg::TagMiscDlg( TQWidget* parent, const char* name, bool addClosingTag, const TQString &element )
:KDialogBase( parent, name, true, i18n("Misc. Tag"), KDialogBase::Ok | KDialogBase::Cancel )
{
miscWidget = new TagMisc(this);
connect( miscWidget->elementName, TQT_SIGNAL( textChanged ( const TQString & ) ), this, TQT_SLOT( slotMiscTagChanged(const TQString & ) ) );
setMainWidget(miscWidget);
miscWidget->addClosingTag->setChecked(addClosingTag);
miscWidget->elementName->setText(element);
slotMiscTagChanged( element );
}
TagMiscDlg::~TagMiscDlg()
{
}
void TagMiscDlg::slotMiscTagChanged( const TQString &_tag )
{
enableButtonOK( !_tag.isEmpty() );
}
TQString TagMiscDlg::elementTagName() const
{
return miscWidget->elementName->text();
}
bool TagMiscDlg::addClosingTag() const
{
return miscWidget->addClosingTag->isChecked();
}
#include "tagmiscdlg.moc"