Skip to content

Commit

Permalink
Gui: refactor tree view
Browse files Browse the repository at this point in the history
* Major refactor of tree view to support external linking.

* Item update and selection change are now mostly handled by timer for
  performance improvement.

* Major change to drag and drop for better support of switching between
  copy, move and replace action, and auto adjustment of placement and
  relative link.

* Add second column for user changable object description.

* Unified tree view options and action into command group
  Std_TreeViewActions.

* Modified object search function to find external objects using
  Expression syntax.
  • Loading branch information
realthunder authored and wwmayer committed Aug 17, 2019
1 parent 2bd4795 commit c18bf11
Show file tree
Hide file tree
Showing 9 changed files with 4,581 additions and 1,171 deletions.
3 changes: 1 addition & 2 deletions src/Gui/CombiView.cpp
Expand Up @@ -63,8 +63,7 @@ CombiView::CombiView(Gui::Document* pcDocument, QWidget *parent)
QSplitter *splitter = new QSplitter();
splitter->setOrientation(Qt::Vertical);

// tree widget
tree = new TreePanel(this);
tree = new TreePanel("ComboView", this);
splitter->addWidget(tree);

// property view
Expand Down

0 comments on commit c18bf11

Please sign in to comment.