|
Revision 1301, 361 bytes
(checked in by arj..@yirdis.nl, 2 years ago)
|
- updated quite a few unit tests
- removed old/obsolete tests
- more work on the copy service (seems to work now)
- removed plugin manager; plugins should be defined as services
- removed gaphor.application.restart, use shutdown/init instead
- Application.shutdown() also clears Zope registries
|
| Line | |
|---|
| 1 |
from zope import interface |
|---|
| 2 |
from interfaces import * |
|---|
| 3 |
|
|---|
| 4 |
class DiagramSelectionChange(object): |
|---|
| 5 |
|
|---|
| 6 |
interface.implements(IDiagramSelectionChange) |
|---|
| 7 |
|
|---|
| 8 |
def __init__(self, diagram_view, focused_item, selected_items): |
|---|
| 9 |
self.diagram_view = diagram_view |
|---|
| 10 |
self.focused_item = focused_item |
|---|
| 11 |
self.selected_items = selected_items |
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|