Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
MDANSE
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
4
Issues
4
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Scientific Software
MDANSE
Commits
a020b9f4
Commit
a020b9f4
authored
Jul 28, 2016
by
eric pellegrini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Modified some icons
parent
6f9fe9e5
Pipeline
#485
passed with stage
in 20 minutes and 55 seconds
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
7 deletions
+3
-7
.gitignore
.gitignore
+2
-0
MDANSE/GUI/Icons/atom.png
MDANSE/GUI/Icons/atom.png
+0
-0
MDANSE/GUI/Icons/periodic_table.png
MDANSE/GUI/Icons/periodic_table.png
+0
-0
MDANSE/GUI/MainFrame.py
MDANSE/GUI/MainFrame.py
+1
-7
No files found.
.gitignore
View file @
a020b9f4
...
@@ -7,3 +7,5 @@
...
@@ -7,3 +7,5 @@
dist/
dist/
.DS_Store
.DS_Store
Tests/FunctionalTests/Jobs
Tests/FunctionalTests/Jobs
/.gitignore
/MANIFEST
MDANSE/GUI/Icons/atom.png
0 → 100644
View file @
a020b9f4
286 KB
MDANSE/GUI/Icons/periodic_table.png
View replaced file @
6f9fe9e5
View file @
a020b9f4
18.8 KB
|
W:
|
H:
581 KB
|
W:
|
H:
2-up
Swipe
Onion skin
MDANSE/GUI/MainFrame.py
View file @
a020b9f4
...
@@ -187,10 +187,9 @@ class MainFrame(wx.Frame):
...
@@ -187,10 +187,9 @@ class MainFrame(wx.Frame):
loadDataButton
=
self
.
_toolbar
.
AddSimpleTool
(
wx
.
ID_ANY
,
ICONS
[
"load"
,
32
,
32
],
'Load a trajectory'
)
loadDataButton
=
self
.
_toolbar
.
AddSimpleTool
(
wx
.
ID_ANY
,
ICONS
[
"load"
,
32
,
32
],
'Load a trajectory'
)
periodicTableButton
=
self
.
_toolbar
.
AddSimpleTool
(
wx
.
ID_ANY
,
ICONS
[
"periodic_table"
,
32
,
32
],
'Launch the periodic table viewer'
)
periodicTableButton
=
self
.
_toolbar
.
AddSimpleTool
(
wx
.
ID_ANY
,
ICONS
[
"periodic_table"
,
32
,
32
],
'Launch the periodic table viewer'
)
elementsDatabaseButton
=
self
.
_toolbar
.
AddSimpleTool
(
wx
.
ID_ANY
,
ICONS
[
"
element
"
,
32
,
32
],
'Launch the elements database editor'
)
elementsDatabaseButton
=
self
.
_toolbar
.
AddSimpleTool
(
wx
.
ID_ANY
,
ICONS
[
"
atom
"
,
32
,
32
],
'Launch the elements database editor'
)
plotButton
=
self
.
_toolbar
.
AddSimpleTool
(
wx
.
ID_ANY
,
ICONS
[
"plot"
,
32
,
32
],
'Launch the NetCDF plotter'
)
plotButton
=
self
.
_toolbar
.
AddSimpleTool
(
wx
.
ID_ANY
,
ICONS
[
"plot"
,
32
,
32
],
'Launch the NetCDF plotter'
)
udButton
=
self
.
_toolbar
.
AddSimpleTool
(
wx
.
ID_ANY
,
ICONS
[
"user"
,
32
,
32
],
'Launch the user definitions editor'
)
udButton
=
self
.
_toolbar
.
AddSimpleTool
(
wx
.
ID_ANY
,
ICONS
[
"user"
,
32
,
32
],
'Launch the user definitions editor'
)
atomButton
=
self
.
_toolbar
.
AddSimpleTool
(
wx
.
ID_ANY
,
ICONS
[
"atom"
,
32
,
32
],
'Create an atom database entry'
)
preferencesButton
=
self
.
_toolbar
.
AddSimpleTool
(
wx
.
ID_ANY
,
ICONS
[
"preferences"
,
32
,
32
],
'Launch the preferences editor'
)
preferencesButton
=
self
.
_toolbar
.
AddSimpleTool
(
wx
.
ID_ANY
,
ICONS
[
"preferences"
,
32
,
32
],
'Launch the preferences editor'
)
registryButton
=
self
.
_toolbar
.
AddSimpleTool
(
wx
.
ID_ANY
,
ICONS
[
"registry"
,
32
,
32
],
'Inspect MDANSE classes framework'
)
registryButton
=
self
.
_toolbar
.
AddSimpleTool
(
wx
.
ID_ANY
,
ICONS
[
"registry"
,
32
,
32
],
'Inspect MDANSE classes framework'
)
templateButton
=
self
.
_toolbar
.
AddSimpleTool
(
wx
.
ID_ANY
,
ICONS
[
"template"
,
32
,
32
],
'Save a template for a new analysis'
)
templateButton
=
self
.
_toolbar
.
AddSimpleTool
(
wx
.
ID_ANY
,
ICONS
[
"template"
,
32
,
32
],
'Save a template for a new analysis'
)
...
@@ -211,7 +210,6 @@ class MainFrame(wx.Frame):
...
@@ -211,7 +210,6 @@ class MainFrame(wx.Frame):
self
.
Bind
(
wx
.
EVT_MENU
,
self
.
on_start_plotter
,
plotButton
)
self
.
Bind
(
wx
.
EVT_MENU
,
self
.
on_start_plotter
,
plotButton
)
self
.
Bind
(
wx
.
EVT_MENU
,
self
.
on_set_preferences
,
preferencesButton
)
self
.
Bind
(
wx
.
EVT_MENU
,
self
.
on_set_preferences
,
preferencesButton
)
self
.
Bind
(
wx
.
EVT_MENU
,
self
.
on_open_user_definitions
,
udButton
)
self
.
Bind
(
wx
.
EVT_MENU
,
self
.
on_open_user_definitions
,
udButton
)
self
.
Bind
(
wx
.
EVT_MENU
,
self
.
on_create_atom_database_entry
,
atomButton
)
self
.
Bind
(
wx
.
EVT_MENU
,
self
.
on_open_classes_registry
,
registryButton
)
self
.
Bind
(
wx
.
EVT_MENU
,
self
.
on_open_classes_registry
,
registryButton
)
self
.
Bind
(
wx
.
EVT_MENU
,
self
.
on_save_job_template
,
templateButton
)
self
.
Bind
(
wx
.
EVT_MENU
,
self
.
on_save_job_template
,
templateButton
)
self
.
Bind
(
wx
.
EVT_MENU
,
self
.
on_about
,
aboutButton
)
self
.
Bind
(
wx
.
EVT_MENU
,
self
.
on_about
,
aboutButton
)
...
@@ -270,10 +268,6 @@ or directly to the MDANSE mailing list:
...
@@ -270,10 +268,6 @@ or directly to the MDANSE mailing list:
d
.
ShowModal
()
d
.
ShowModal
()
d
.
Destroy
()
d
.
Destroy
()
def
on_create_atom_database_entry
(
self
,
event
):
print
"coucou"
def
on_simple_help
(
self
,
event
):
def
on_simple_help
(
self
,
event
):
path
=
os
.
path
.
join
(
PLATFORM
.
doc_path
(),
'simple_help.txt'
)
path
=
os
.
path
.
join
(
PLATFORM
.
doc_path
(),
'simple_help.txt'
)
...
...
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