summaryrefslogtreecommitdiffstats
path: root/quanta/dialogs/tagdialogs/tagmiscdlg.cpp
blob: 9313bb08e29208792b19e1c2d92cd53a12915b5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/***************************************************************************
                          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 <klocale.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"