branchpropwindow.h
author insilmaril
Wed, 21 Mar 2007 11:51:38 +0000
changeset 438 eae9abe70d7c
parent 421 5522d1da7e37
child 440 c6a8651e6bbc
permissions -rw-r--r--
Slightly improved scripting abilities
     1 #ifndef BRANCHPROPERTYWINDOW_H
     2 #define BRANCHPROPERTYWINDOW_H
     3 
     4 #include "ui_branchpropwindow.h"
     5 
     6 #include "branchobj.h"
     7 #include "mapeditor.h"
     8 
     9 class BranchPropertyWindow:public QDialog
    10 {
    11 	Q_OBJECT
    12 public:
    13 	BranchPropertyWindow (QWidget *parent=0);
    14 	void setBranch (BranchObj *);
    15 	void setMapEditor (MapEditor *);
    16 
    17 private slots:
    18 	void frameTypeChanged (int);
    19 	void linkHideUnselectedChanged (int);
    20 
    21 private:
    22 	Ui::BranchPropertyWindow ui;
    23 
    24 	BranchObj *branch;
    25 	MapEditor *mapEditor;
    26 };
    27 
    28 #endif //