Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
beat.editor
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
11
Issues
11
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
beat
beat.editor
Commits
208f2e47
Commit
208f2e47
authored
Mar 22, 2019
by
Samuel GAIST
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[widgets] Freeze all editors
parent
c78684b3
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
32 additions
and
0 deletions
+32
-0
beat/editor/widgets/algorithmeditor.py
beat/editor/widgets/algorithmeditor.py
+4
-0
beat/editor/widgets/databaseeditor.py
beat/editor/widgets/databaseeditor.py
+4
-0
beat/editor/widgets/dataformateditor.py
beat/editor/widgets/dataformateditor.py
+4
-0
beat/editor/widgets/experimenteditor.py
beat/editor/widgets/experimenteditor.py
+4
-0
beat/editor/widgets/libraryeditor.py
beat/editor/widgets/libraryeditor.py
+4
-0
beat/editor/widgets/plottereditor.py
beat/editor/widgets/plottereditor.py
+4
-0
beat/editor/widgets/plotterparameterseditor.py
beat/editor/widgets/plotterparameterseditor.py
+4
-0
beat/editor/widgets/toolchaineditor.py
beat/editor/widgets/toolchaineditor.py
+4
-0
No files found.
beat/editor/widgets/algorithmeditor.py
View file @
208f2e47
...
...
@@ -23,12 +23,16 @@
# #
###############################################################################
from
..utils
import
frozen
from
.editor
import
AbstractAssetEditor
@
frozen
class
AlgorithmEditor
(
AbstractAssetEditor
):
def
__init__
(
self
,
parent
=
None
):
super
(
AlgorithmEditor
,
self
).
__init__
(
parent
)
self
.
setObjectName
(
self
.
__class__
.
__name__
)
self
.
set_title
(
self
.
tr
(
"Algorithm"
))
def
_load_json
(
self
,
json_object
):
...
...
beat/editor/widgets/databaseeditor.py
View file @
208f2e47
...
...
@@ -23,12 +23,16 @@
# #
###############################################################################
from
..utils
import
frozen
from
.editor
import
AbstractAssetEditor
@
frozen
class
DatabaseEditor
(
AbstractAssetEditor
):
def
__init__
(
self
,
parent
=
None
):
super
(
DatabaseEditor
,
self
).
__init__
(
parent
)
self
.
setObjectName
(
self
.
__class__
.
__name__
)
self
.
set_title
(
self
.
tr
(
"Database"
))
def
_load_json
(
self
,
json_object
):
...
...
beat/editor/widgets/dataformateditor.py
View file @
208f2e47
...
...
@@ -23,12 +23,16 @@
# #
###############################################################################
from
..utils
import
frozen
from
.editor
import
AbstractAssetEditor
@
frozen
class
DataformatEditor
(
AbstractAssetEditor
):
def
__init__
(
self
,
parent
=
None
):
super
(
DataformatEditor
,
self
).
__init__
(
parent
)
self
.
setObjectName
(
self
.
__class__
.
__name__
)
self
.
set_title
(
self
.
tr
(
"Dataformat"
))
def
_load_json
(
self
,
json_object
):
...
...
beat/editor/widgets/experimenteditor.py
View file @
208f2e47
...
...
@@ -23,12 +23,16 @@
# #
###############################################################################
from
..utils
import
frozen
from
.editor
import
AbstractAssetEditor
@
frozen
class
ExperimentEditor
(
AbstractAssetEditor
):
def
__init__
(
self
,
parent
=
None
):
super
(
ExperimentEditor
,
self
).
__init__
(
parent
)
self
.
setObjectName
(
self
.
__class__
.
__name__
)
self
.
set_title
(
self
.
tr
(
"Experiment"
))
def
_load_json
(
self
,
json_object
):
...
...
beat/editor/widgets/libraryeditor.py
View file @
208f2e47
...
...
@@ -23,12 +23,16 @@
# #
###############################################################################
from
..utils
import
frozen
from
.editor
import
AbstractAssetEditor
@
frozen
class
LibraryEditor
(
AbstractAssetEditor
):
def
__init__
(
self
,
parent
=
None
):
super
(
LibraryEditor
,
self
).
__init__
(
parent
)
self
.
setObjectName
(
self
.
__class__
.
__name__
)
self
.
set_title
(
self
.
tr
(
"Library"
))
def
_load_json
(
self
,
json_object
):
...
...
beat/editor/widgets/plottereditor.py
View file @
208f2e47
...
...
@@ -23,12 +23,16 @@
# #
###############################################################################
from
..utils
import
frozen
from
.editor
import
AbstractAssetEditor
@
frozen
class
PlotterEditor
(
AbstractAssetEditor
):
def
__init__
(
self
,
parent
=
None
):
super
(
PlotterEditor
,
self
).
__init__
(
parent
)
self
.
setObjectName
(
self
.
__class__
.
__name__
)
self
.
set_title
(
self
.
tr
(
"Plotter"
))
def
_load_json
(
self
,
json_object
):
...
...
beat/editor/widgets/plotterparameterseditor.py
View file @
208f2e47
...
...
@@ -23,12 +23,16 @@
# #
###############################################################################
from
..utils
import
frozen
from
.editor
import
AbstractAssetEditor
@
frozen
class
PlotterParametersEditor
(
AbstractAssetEditor
):
def
__init__
(
self
,
parent
=
None
):
super
(
PlotterParametersEditor
,
self
).
__init__
(
parent
)
self
.
setObjectName
(
self
.
__class__
.
__name__
)
self
.
set_title
(
self
.
tr
(
"Plotter Parameters"
))
def
_load_json
(
self
,
json_object
):
...
...
beat/editor/widgets/toolchaineditor.py
View file @
208f2e47
...
...
@@ -23,12 +23,16 @@
# #
###############################################################################
from
..utils
import
frozen
from
.editor
import
AbstractAssetEditor
@
frozen
class
ToolchainEditor
(
AbstractAssetEditor
):
def
__init__
(
self
,
parent
=
None
):
super
(
ToolchainEditor
,
self
).
__init__
(
parent
)
self
.
setObjectName
(
self
.
__class__
.
__name__
)
self
.
set_title
(
self
.
tr
(
"Toolchain"
))
def
_load_json
(
self
,
json_object
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment