attributewidget.h
author insilmaril
Mon, 14 Jul 2008 11:21:10 +0000
changeset 718 d2a9c31353f7
parent 627 513107d1ed59
permissions -rw-r--r--
new version name
     1 #ifndef ATTRIBUTEWIDGET_H
     2 #define ATTRIBUTEWIDGET_H
     3 
     4 #include "ui_attributewidget.h"
     5 
     6 #include "attribute.h"
     7 
     8 #include <QWidget>
     9 
    10 class AttributeWidget: public QWidget
    11 {
    12 	Q_OBJECT
    13 public:
    14 	AttributeWidget (QWidget *parent=0);
    15 	void setTable (AttributeTable *at=0);
    16 	void setKey (const QString &k);
    17 	void setValues (const QStringList &vl);
    18 
    19 public slots:
    20 	virtual void keyTextChanged(const QString &t);
    21 	virtual void valueTextChanged(const QString &t);
    22 
    23 private:
    24 	Ui::AttributeWidget ui;
    25 	AttributeTable *table;
    26 	QString key;
    27 };
    28 #endif