branchpropwindow.h
changeset 421 5522d1da7e37
child 440 c6a8651e6bbc
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/branchpropwindow.h	Tue Jan 23 11:50:53 2007 +0000
     1.3 @@ -0,0 +1,28 @@
     1.4 +#ifndef BRANCHPROPERTYWINDOW_H
     1.5 +#define BRANCHPROPERTYWINDOW_H
     1.6 +
     1.7 +#include "ui_branchpropwindow.h"
     1.8 +
     1.9 +#include "branchobj.h"
    1.10 +#include "mapeditor.h"
    1.11 +
    1.12 +class BranchPropertyWindow:public QDialog
    1.13 +{
    1.14 +	Q_OBJECT
    1.15 +public:
    1.16 +	BranchPropertyWindow (QWidget *parent=0);
    1.17 +	void setBranch (BranchObj *);
    1.18 +	void setMapEditor (MapEditor *);
    1.19 +
    1.20 +private slots:
    1.21 +	void frameTypeChanged (int);
    1.22 +	void linkHideUnselectedChanged (int);
    1.23 +
    1.24 +private:
    1.25 +	Ui::BranchPropertyWindow ui;
    1.26 +
    1.27 +	BranchObj *branch;
    1.28 +	MapEditor *mapEditor;
    1.29 +};
    1.30 +
    1.31 +#endif //