attributewidget.cpp
author insilmaril
Wed, 16 Jan 2008 15:45:19 +0000
changeset 655 d4b49c6c6069
parent 627 513107d1ed59
permissions -rw-r--r--
Fixed missing MapCenter
     1 #include "attributewidget.h"
     2 
     3 AttributeWidget::AttributeWidget (QWidget *parent):QWidget (parent)
     4 {
     5 	ui.setupUi (this);
     6 	//ui.keyComboBox->setEditable (true);
     7 	ui.valueComboBox->setEditable (true);
     8 }
     9 
    10 void AttributeWidget::setTable(AttributeTable *at)
    11 {
    12 	table=at;
    13 }
    14 
    15 void AttributeWidget::setKey (const QString &k)
    16 {
    17 	key=k;
    18 	ui.keyComboBox->insertItem (ui.keyComboBox->count(), key);
    19 }
    20 
    21 void AttributeWidget::setValues(const QStringList &vl)
    22 {
    23 	ui.valueComboBox->clear();
    24 	ui.valueComboBox->insertStringList(vl);
    25 }
    26 
    27 /*
    28 void AttributeWidget::setValue (const QString &v)
    29 {
    30 }
    31 */
    32 
    33 void AttributeWidget::keyTextChanged(const QString &t)
    34 {
    35 }
    36 
    37 void AttributeWidget::valueTextChanged(const QString &t)
    38 {
    39 }