attributedialog.h
changeset 623 7ba1c04d96d5
child 626 96c8e6860e0c
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/attributedialog.h	Fri Nov 09 12:07:20 2007 +0000
     1.3 @@ -0,0 +1,22 @@
     1.4 +#ifndef ATTRIBUTEDIALOG_H
     1.5 +#define ATTRIBUTEDIALOG_H
     1.6 +
     1.7 +#include "ui_attributedialog.h"
     1.8 +
     1.9 +#include <QDialog>
    1.10 +#include <QCloseEvent>
    1.11 +
    1.12 +class AttributeDialog:public QDialog
    1.13 +{
    1.14 +	Q_OBJECT 
    1.15 +public:
    1.16 +	AttributeDialog (QWidget *parent=0 );
    1.17 +signals:
    1.18 +	void windowClosed();
    1.19 +protected:
    1.20 +	void closeEvent(QCloseEvent*);
    1.21 +private:
    1.22 +	Ui::AttributeDialog ui;
    1.23 +};
    1.24 +
    1.25 +#endif