void SelectionList::copyList( SelectionList &source_list )
{
    unGroup();

    addList(source_list);

}
Beispiel #2
0
void GraphicsWorkflow::initialize() {
    if ( _currentgroup != NULL ) {
        unGroup();
        removeItems();
        setScene(NULL);
    }
    SceneWorkflow *scene = new SceneWorkflow(this);
    scene->setItemIndexMethod(QGraphicsScene::NoIndex);
    setScene(scene);
    Q_CHECK_PTR(scene);
   // scene->setSceneRect(0,0,800,600);

}
Beispiel #3
0
void CollapsibleGroup::slotUnGroup()
{
    emit unGroup(this);
}