]> git.sven.stormbind.net Git - sven/vym.git/blob - attributewidget.h
Import Upstream version 2.6.11
[sven/vym.git] / attributewidget.h
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