diff -r b7447adddc9a -r 5522d1da7e37 branchpropwindow.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/branchpropwindow.h Tue Jan 23 11:50:53 2007 +0000 @@ -0,0 +1,28 @@ +#ifndef BRANCHPROPERTYWINDOW_H +#define BRANCHPROPERTYWINDOW_H + +#include "ui_branchpropwindow.h" + +#include "branchobj.h" +#include "mapeditor.h" + +class BranchPropertyWindow:public QDialog +{ + Q_OBJECT +public: + BranchPropertyWindow (QWidget *parent=0); + void setBranch (BranchObj *); + void setMapEditor (MapEditor *); + +private slots: + void frameTypeChanged (int); + void linkHideUnselectedChanged (int); + +private: + Ui::BranchPropertyWindow ui; + + BranchObj *branch; + MapEditor *mapEditor; +}; + +#endif //