00001
00002 #ifndef LAYEREDITDLG_H
00003 #define LAYEREDITDLG_H
00004
00005
00006 #include <qdialog.h>
00007 class UI_LayerEditWidget;
00008 class QString;
00009
00010
00011
00012
00013
00014 class LayerEditDlg : public QDialog
00015 {
00016 Q_OBJECT
00017 public:
00018 LayerEditDlg( int &, QString &, QWidget * parent, const char * name );
00019 ~LayerEditDlg();
00020 public slots:
00021 void accept();
00022 protected:
00023 UI_LayerEditWidget * uiWidget;
00024 int & height;
00025 QString & allowOverlapStr;
00026 };
00027
00028 #endif