1.11.2 split up of xml helper functions. started to work on attributes
1 #ifndef EDITXLINKDIALOG_H
2 #define EDITXLINKDIALOG_H
4 #include "ui_editxlinkdialog.h"
6 /*! \brief Dialog to edit or delete XLinks
8 Using xLinks one can link one branch to any other, just like attaching a rope
9 between two branches in a real tree. This is especially useful in complex maps,
10 where you want to have crossreferences which don't fit on the same visible area
13 class EditXLinkDialog:public QDialog
17 EditXLinkDialog (QWidget *parent=0);
18 void setXLink (XLinkObj *);
19 void setSelection (LinkableMapObj *);
20 bool useSettingsGlobal();
24 void deleteButtonPressed();
25 void widthChanged (int);
26 void colorButtonPressed();
27 void setColorHeadingButtonPressed ();
30 Ui::EditXLinkDialog ui;
33 LinkableMapObj *selection;
36 #endif // EDITXLINKDIALOG_H