mirror of
https://github.com/GNS3/gns3-server
synced 2025-02-17 18:42:00 +00:00
Additional drawing options for Project
This commit is contained in:
parent
3132dbd9eb
commit
cc34f45677
@ -68,7 +68,7 @@ class Project:
|
|||||||
|
|
||||||
def __init__(self, name=None, project_id=None, path=None, controller=None, status="opened",
|
def __init__(self, name=None, project_id=None, path=None, controller=None, status="opened",
|
||||||
filename=None, auto_start=False, auto_open=False, auto_close=True,
|
filename=None, auto_start=False, auto_open=False, auto_close=True,
|
||||||
scene_height=1000, scene_width=2000):
|
scene_height=1000, scene_width=2000, zoom=100, show_layers=False, snap_to_grid=False, show_grid=False):
|
||||||
|
|
||||||
self._controller = controller
|
self._controller = controller
|
||||||
assert name is not None
|
assert name is not None
|
||||||
@ -79,6 +79,10 @@ class Project:
|
|||||||
self._status = status
|
self._status = status
|
||||||
self._scene_height = scene_height
|
self._scene_height = scene_height
|
||||||
self._scene_width = scene_width
|
self._scene_width = scene_width
|
||||||
|
self._zoom = zoom
|
||||||
|
self._show_layers = show_layers
|
||||||
|
self._snap_to_grid = snap_to_grid
|
||||||
|
self._show_grid = show_grid
|
||||||
self._loading = False
|
self._loading = False
|
||||||
|
|
||||||
# Disallow overwrite of existing project
|
# Disallow overwrite of existing project
|
||||||
@ -170,6 +174,66 @@ class Project:
|
|||||||
"""
|
"""
|
||||||
self._scene_width = val
|
self._scene_width = val
|
||||||
|
|
||||||
|
@property
|
||||||
|
def zoom(self):
|
||||||
|
"""
|
||||||
|
Zoom level in percentage
|
||||||
|
:return: integer > 0
|
||||||
|
"""
|
||||||
|
return self._zoom
|
||||||
|
|
||||||
|
@zoom.setter
|
||||||
|
def zoom(self, zoom):
|
||||||
|
"""
|
||||||
|
Setter for zoom level in percentage
|
||||||
|
"""
|
||||||
|
self._zoom = zoom
|
||||||
|
|
||||||
|
@property
|
||||||
|
def show_layers(self):
|
||||||
|
"""
|
||||||
|
Show layers mode
|
||||||
|
:return: bool
|
||||||
|
"""
|
||||||
|
return self._show_layers
|
||||||
|
|
||||||
|
@show_layers.setter
|
||||||
|
def show_layers(self, show_layers):
|
||||||
|
"""
|
||||||
|
Setter for show layers mode
|
||||||
|
"""
|
||||||
|
self._show_layers = show_layers
|
||||||
|
|
||||||
|
@property
|
||||||
|
def snap_to_grid(self):
|
||||||
|
"""
|
||||||
|
Snap to grid mode
|
||||||
|
:return: bool
|
||||||
|
"""
|
||||||
|
return self._snap_to_grid
|
||||||
|
|
||||||
|
@snap_to_grid.setter
|
||||||
|
def snap_to_grid(self, snap_to_grid):
|
||||||
|
"""
|
||||||
|
Setter for snap to grid mode
|
||||||
|
"""
|
||||||
|
self._snap_to_grid = snap_to_grid
|
||||||
|
|
||||||
|
@property
|
||||||
|
def show_grid(self):
|
||||||
|
"""
|
||||||
|
Show grid mode
|
||||||
|
:return: bool
|
||||||
|
"""
|
||||||
|
return self._show_grid
|
||||||
|
|
||||||
|
@show_grid.setter
|
||||||
|
def show_grid(self, show_grid):
|
||||||
|
"""
|
||||||
|
Setter for snam to grid mode
|
||||||
|
"""
|
||||||
|
self._show_grid = show_grid
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def auto_start(self):
|
def auto_start(self):
|
||||||
"""
|
"""
|
||||||
@ -798,7 +862,6 @@ class Project:
|
|||||||
yield from pool.join()
|
yield from pool.join()
|
||||||
|
|
||||||
def __json__(self):
|
def __json__(self):
|
||||||
|
|
||||||
return {
|
return {
|
||||||
"name": self._name,
|
"name": self._name,
|
||||||
"project_id": self._id,
|
"project_id": self._id,
|
||||||
@ -809,7 +872,11 @@ class Project:
|
|||||||
"auto_close": self._auto_close,
|
"auto_close": self._auto_close,
|
||||||
"auto_open": self._auto_open,
|
"auto_open": self._auto_open,
|
||||||
"scene_height": self._scene_height,
|
"scene_height": self._scene_height,
|
||||||
"scene_width": self._scene_width
|
"scene_width": self._scene_width,
|
||||||
|
"zoom": self._zoom,
|
||||||
|
"show_layers": self._show_layers,
|
||||||
|
"snap_to_grid": self._snap_to_grid,
|
||||||
|
"show_grid": self._show_grid
|
||||||
}
|
}
|
||||||
|
|
||||||
def __repr__(self):
|
def __repr__(self):
|
||||||
|
@ -79,6 +79,10 @@ def project_to_topology(project):
|
|||||||
"auto_close": project.auto_close,
|
"auto_close": project.auto_close,
|
||||||
"scene_width": project.scene_width,
|
"scene_width": project.scene_width,
|
||||||
"scene_height": project.scene_height,
|
"scene_height": project.scene_height,
|
||||||
|
"zoom": project.zoom,
|
||||||
|
"show_layers": project.show_layers,
|
||||||
|
"snap_to_grid": project.snap_to_grid,
|
||||||
|
"show_grid": project.show_grid,
|
||||||
"topology": {
|
"topology": {
|
||||||
"nodes": [],
|
"nodes": [],
|
||||||
"links": [],
|
"links": [],
|
||||||
|
@ -49,6 +49,22 @@ PROJECT_CREATE_SCHEMA = {
|
|||||||
"scene_width": {
|
"scene_width": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"description": "Width of the drawing area"
|
"description": "Width of the drawing area"
|
||||||
|
},
|
||||||
|
"zoom": {
|
||||||
|
"type": "integer",
|
||||||
|
"description": "Zoom of the drawing area"
|
||||||
|
},
|
||||||
|
"show_layers": {
|
||||||
|
"type": "boolean",
|
||||||
|
"description": "Show layers on the drawing area"
|
||||||
|
},
|
||||||
|
"snap_to_grid": {
|
||||||
|
"type": "boolean",
|
||||||
|
"description": "Snap to grid on the drawing area"
|
||||||
|
},
|
||||||
|
"show_grid": {
|
||||||
|
"type": "boolean",
|
||||||
|
"description": "Show the grid on the drawing area"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"additionalProperties": False,
|
"additionalProperties": False,
|
||||||
@ -88,6 +104,22 @@ PROJECT_UPDATE_SCHEMA = {
|
|||||||
"scene_width": {
|
"scene_width": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"description": "Width of the drawing area"
|
"description": "Width of the drawing area"
|
||||||
|
},
|
||||||
|
"zoom": {
|
||||||
|
"type": "integer",
|
||||||
|
"description": "Zoom of the drawing area"
|
||||||
|
},
|
||||||
|
"show_layers": {
|
||||||
|
"type": "boolean",
|
||||||
|
"description": "Show layers on the drawing area"
|
||||||
|
},
|
||||||
|
"snap_to_grid": {
|
||||||
|
"type": "boolean",
|
||||||
|
"description": "Snap to grid on the drawing area"
|
||||||
|
},
|
||||||
|
"show_grid": {
|
||||||
|
"type": "boolean",
|
||||||
|
"description": "Show the grid on the drawing area"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"additionalProperties": False,
|
"additionalProperties": False,
|
||||||
@ -143,6 +175,22 @@ PROJECT_OBJECT_SCHEMA = {
|
|||||||
"scene_width": {
|
"scene_width": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"description": "Width of the drawing area"
|
"description": "Width of the drawing area"
|
||||||
|
},
|
||||||
|
"zoom": {
|
||||||
|
"type": "integer",
|
||||||
|
"description": "Zoom of the drawing area"
|
||||||
|
},
|
||||||
|
"show_layers": {
|
||||||
|
"type": "boolean",
|
||||||
|
"description": "Show layers on the drawing area"
|
||||||
|
},
|
||||||
|
"snap_to_grid": {
|
||||||
|
"type": "boolean",
|
||||||
|
"description": "Snap to grid on the drawing area"
|
||||||
|
},
|
||||||
|
"show_grid": {
|
||||||
|
"type": "boolean",
|
||||||
|
"description": "Show the grid on the drawing area"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"additionalProperties": False,
|
"additionalProperties": False,
|
||||||
|
Loading…
Reference in New Issue
Block a user