1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
Feature: Drag and drop tabs
Background:
Given a window with 2 dockgroups
And one containing 3 items
And another containing 2 items
And define dockgroup 1 as "some-group"
And define dockgroup 2 as "to-group"
And define item 1 from dockgroup 1 as "drag-me"
And define item 1 from dockgroup 2 as "sometab"
And start a main loop
Scenario: Drag an item over a new group
When I drag item "drag-me"
And I drop it on the content section in group "to-group"
Then item "drag-me" is part of "to-group"
And it has the focus
Scenario: Drag an item over the tabs of a new group.
When I drag item "drag-me"
And I drop it on tab "sometab" in group "to-group"
Then item "drag-me" is part of "to-group"
And it has the focus
#And it has been placed in just before "sometab"
Scenario: Drag an item and drop it between two existing groups.
When I drag item "drag-me"
And I drop it between groups "some-group" and "to-group"
Then a new group should have been created
And it should contain the item
Scenario: Drag an item to the end of a group of DockGroups.
When I drag item "drag-me"
And I drop it before the first group
Then a new group should have been created
And it should contain the item
Scenario: Drag all items.
When I drag all items in group "some-group"
And I drop it on the content section in group "to-group"
Then the group "some-group" has been removed
Scenario: If an item is dragged ourside the scope of the dock frame.
When I drag item "drag-me"
And I drop it outside of the frame
Then a floating window is created
And it contains a new group with the item
#Scenario: Drag an item at the begin/end of the intersection between groups
The paned widget should get a new parent with opposite orientation,
containing the items in a new group.
#Scenario: Remove last item from DockGroup and containing DockPaned is also empty
If there is a parent paned that contains only one item after the removal,
it should also be removed (recursively)
|