]> git.sven.stormbind.net Git - sven/vym.git/blobdiff - xlinkitem.h
New upstream version 2.9.22
[sven/vym.git] / xlinkitem.h
diff --git a/xlinkitem.h b/xlinkitem.h
deleted file mode 100644 (file)
index 4e9ce0a..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-#ifndef XLINKITEM_H
-#define XLINKITEM_H
-
-class BranchItem;
-class QGraphicsScene;
-class XLinkObj;
-
-#include "mapitem.h"
-#include "xlink.h"
-
-/*! \brief xlinks are used to draw arbitrary connections between branches (BranchObj) in the map. */
-
-/////////////////////////////////////////////////////////////////////////////
-
-class XLinkItem:public MapItem {
-public:
-    enum XLinkState {undefinedXLink,initXLink,activeXLink,deleteXLink};        
-
-    XLinkItem (const QList<QVariant> &data, TreeItem *parent=NULL);
-    ~XLinkItem ();
-    void init ();
-    void clear ();
-    void setLink (Link*);
-    Link* getLink ();
-    void updateXLink();
-    MapObj* getMO();
-    void setSelection();
-    BranchItem* getPartnerBranch ();
-
-
-private:
-    Link *link;
-};
-
-#endif