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/tagwidget.cpp

120 lines
2.8 KiB

/***************************************************************************
tagwidget.cpp - description
-------------------
begin : Sat Apr 1 2000
copyright : (C) 2000 by Yacovlev Alexander & Dmitry Poplavsky <pdima@mail.univ.kiev.ua>
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
// QT files
#include <tqcombobox.h>
#include <klineedit.h>
#include <tqstring.h>
#include <tqspinbox.h>
#include <tqcheckbox.h>
// KDE files
#include <kcolorbutton.h>
#include <kurl.h>
// application's headers
#include "tagwidget.h"
#include "tagdialog.h"
#include "resource.h"
TagWidget::TagWidget(TQObject *tqparent, const char *)
{
baseURL = ((TagDialog *)tqparent)->baseURL();
}
TagWidget::~TagWidget(){
}
void TagWidget::updateDict(const TQString &attr, TQComboBox *combo )
{
TQString *s = new TQString(combo->currentText());
if (s->isEmpty())
{
dict->remove(attr);
delete s;
}
else
dict->replace(attr, s);
}
void TagWidget::setValue(const TQString &val, TQComboBox *combo)
{
bool found = false;
int num = combo->count();
for ( int i = 0; i < num; i++)
{
if (val == combo->text(i))
{
combo->setCurrentItem(i);
found = true;
}
}
if (!found)
combo->setEditText(val);
}
void TagWidget::setValue(const TQString &val, TQLineEdit *line)
{
line->setText(val);
}
void TagWidget::setValue(const TQString &val, TQSpinBox *spin)
{
spin->setValue(val.toInt());
}
void TagWidget::setValue(const TQString &val, KColorButton *button)
{
button->setColor(val);
}
void TagWidget::updateDict(const TQString &attr, TQLineEdit *line )
{
TQString *s = new TQString(line->text());
if (s->isEmpty())
{
dict->remove(attr);
delete s;
}
else
dict->replace(attr, s);
}
void TagWidget::updateDict(const TQString &attr, TQSpinBox *spin )
{
TQString *s = new TQString(spin->text());
if (s->isEmpty())
{
dict->remove(attr);
delete s;
}
else
dict->replace(attr, s);
}
void TagWidget::updateDict(const TQString &attr, TQCheckBox *check )
{
if (!check->isChecked())
dict->remove(attr);
else
{
if (!dict->find(attr))
dict->insert(attr, new TQString(""));
}
}