1 #ifndef ATTRIBUTEDIALOG_H
2 #define ATTRIBUTEDIALOG_H
9 #include <QtGui/QHBoxLayout>
10 #include <QtGui/QPushButton>
11 #include <QtGui/QSpacerItem>
12 #include <QtGui/QVBoxLayout>
15 class AttributeDialog:public QDialog
19 AttributeDialog (QWidget *parent=0 );
20 void setTable (AttributeTable *table=0);
21 void setBranch (BranchObj *bo);
27 void closeEvent(QCloseEvent*);
30 QVBoxLayout *vboxLayout;
31 QVBoxLayout *tableLayout;
32 QHBoxLayout *hboxLayout;
33 QPushButton *addButton;
34 QSpacerItem *spacerItem;
35 QPushButton *closeButton;
37 AttributeTable *table;