author | insilmaril |
Tue Jan 23 11:50:53 2007 +0000 (2007-01-23) | |
changeset 422 | 07a2f3f31101 |
child 440 | c6a8651e6bbc |
permissions | -rw-r--r-- |
1 #ifndef BRANCHPROPERTYWINDOW_H
2 #define BRANCHPROPERTYWINDOW_H
4 #include "ui_branchpropwindow.h"
6 #include "branchobj.h"
7 #include "mapeditor.h"
9 class BranchPropertyWindow:public QDialog
10 {
11 Q_OBJECT
12 public:
13 BranchPropertyWindow (QWidget *parent=0);
14 void setBranch (BranchObj *);
15 void setMapEditor (MapEditor *);
17 private slots:
18 void frameTypeChanged (int);
19 void linkHideUnselectedChanged (int);
21 private:
22 Ui::BranchPropertyWindow ui;
24 BranchObj *branch;
25 MapEditor *mapEditor;
26 };
28 #endif //