Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Scientific Software
MDANSE
Commits
6e4e551f
Commit
6e4e551f
authored
Dec 10, 2015
by
eric pellegrini
Browse files
Added a close event to UserDefinitionViewer dialog
parent
bc137abb
Changes
2
Hide whitespace changes
Inline
Side-by-side
MDANSE/GUI/UserDefinitionViewer.py
View file @
6e4e551f
...
...
@@ -74,6 +74,8 @@ class UserDefinitionViewer(wx.Dialog):
self
.
Bind
(
wx
.
EVT_TREE_BEGIN_LABEL_EDIT
,
self
.
on_try_rename
,
self
.
_tree
)
self
.
Bind
(
wx
.
EVT_BUTTON
,
self
.
on_save_ud
,
self
.
_save
)
self
.
Bind
(
wx
.
EVT_CLOSE
,
self
.
on_close
)
if
ud
is
not
None
:
self
.
expand_ud
(
ud
)
...
...
@@ -246,6 +248,10 @@ class UserDefinitionViewer(wx.Dialog):
UD_STORE
.
set_definition
(
targetItemName
,
sectionItemName
,
newItemName
,
currentItemData
.
GetData
())
UD_STORE
.
remove_definition
(
targetItemName
,
sectionItemName
,
currentItemName
)
def
on_close
(
self
,
event
):
self
.
Destroy
()
if
__name__
==
"__main__"
:
app
=
wx
.
App
(
False
)
f
=
UserDefinitionViewer
(
None
,
ud
=
[
'protein_in_periodic_universe.nc'
,
'atom_selection'
,
"sfdfdfsd"
],
editable
=
True
)
...
...
Scripts/mdanse_ud_editor
View file @
6e4e551f
...
...
@@ -9,8 +9,8 @@ class UserDefinitionViewerApp(wx.App):
def
OnInit
(
self
):
f
=
UserDefinitionViewer
(
None
)
f
.
Show
()
self
.
SetTopWindow
(
f
)
f
.
Show
()
return
True
if
__name__
==
"__main__"
:
...
...
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