Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
Printrun
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
machinery
Printrun
Commits
9a311ff2
Commit
9a311ff2
authored
Nov 06, 2013
by
Guillaume Seguin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add recent files menu (#432)
parent
ef6a2180
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
1 deletion
+30
-1
pronterface.py
printrun/pronterface.py
+30
-1
No files found.
printrun/pronterface.py
View file @
9a311ff2
...
...
@@ -146,7 +146,7 @@ class PronterWindow(MainWindow, pronsole.pronsole):
self
.
settings
.
_add
(
StaticTextSetting
(
"note1"
,
_
(
"Note:"
),
_
(
"Changing most settings here will require restart to get effect"
),
group
=
"UI"
))
recentfilessetting
=
StringSetting
(
"recentfiles"
,
"[]"
)
recentfilessetting
.
hidden
=
True
self
.
settings
.
_add
(
recentfilessetting
)
self
.
settings
.
_add
(
recentfilessetting
,
self
.
update_recent_files
)
self
.
pauseScript
=
"pause.gcode"
self
.
endScript
=
"end.gcode"
...
...
@@ -181,6 +181,7 @@ class PronterWindow(MainWindow, pronsole.pronsole):
]
self
.
custombuttons
=
[]
self
.
btndict
=
{}
self
.
filehistory
=
None
self
.
autoconnect
=
False
self
.
parse_cmdline
(
sys
.
argv
[
1
:])
self
.
display_graph
=
self
.
settings
.
tempgraph
...
...
@@ -216,6 +217,7 @@ class PronterWindow(MainWindow, pronsole.pronsole):
except
:
pass
self
.
popmenu
()
self
.
update_recent_files
(
"recentfiles"
,
self
.
settings
.
recentfiles
)
if
self
.
settings
.
uimode
==
"Tabbed"
:
self
.
createTabbedGui
()
else
:
...
...
@@ -505,6 +507,13 @@ class PronterWindow(MainWindow, pronsole.pronsole):
# File menu
m
=
wx
.
Menu
()
self
.
Bind
(
wx
.
EVT_MENU
,
self
.
loadfile
,
m
.
Append
(
-
1
,
_
(
"&Open..."
),
_
(
" Opens file"
)))
self
.
filehistory
=
wx
.
FileHistory
(
maxFiles
=
8
,
idBase
=
wx
.
ID_FILE1
)
recent
=
wx
.
Menu
()
self
.
filehistory
.
UseMenu
(
recent
)
self
.
Bind
(
wx
.
EVT_MENU_RANGE
,
self
.
load_recent_file
,
id
=
wx
.
ID_FILE1
,
id2
=
wx
.
ID_FILE9
)
m
.
AppendMenu
(
wx
.
ID_ANY
,
"&Recent Files"
,
recent
)
self
.
Bind
(
wx
.
EVT_MENU
,
self
.
clearOutput
,
m
.
Append
(
-
1
,
_
(
"Clear console"
),
_
(
" Clear output console"
)))
self
.
Bind
(
wx
.
EVT_MENU
,
self
.
OnExit
,
m
.
Append
(
wx
.
ID_EXIT
,
_
(
"E&xit"
),
_
(
" Closes the Window"
)))
self
.
menustrip
.
Append
(
m
,
_
(
"&File"
))
...
...
@@ -793,6 +802,21 @@ Printrun. If not, see <http://www.gnu.org/licenses/>."""
self
.
gwindow
.
SetToolTip
(
wx
.
ToolTip
(
"Mousewheel zooms the display
\n
Shift / Mousewheel scrolls layers"
))
self
.
gwindow
.
Raise
()
def
update_recent_files
(
self
,
param
,
value
):
if
self
.
filehistory
is
None
:
return
try
:
recent_files
=
json
.
loads
(
value
)
except
:
self
.
logError
(
_
(
"Failed to load recent files list:"
)
+
"
\n
"
+
traceback
.
format_exc
())
# Clear history
while
self
.
filehistory
.
GetCount
():
self
.
filehistory
.
RemoveFileFromHistory
(
0
)
recent_files
.
reverse
()
for
f
in
recent_files
:
self
.
filehistory
.
AddFileToHistory
(
f
)
def
update_gviz_params
(
self
,
param
,
value
):
params_map
=
{
"preview_extrusion_width"
:
"extrusion_width"
,
"preview_grid_step1"
:
"grid"
,
...
...
@@ -1549,6 +1573,11 @@ Printrun. If not, see <http://www.gnu.org/licenses/>."""
else
:
self
.
_do_load
(
l
)
def
load_recent_file
(
self
,
event
):
fileid
=
event
.
GetId
()
-
wx
.
ID_FILE1
path
=
self
.
filehistory
.
GetHistoryFile
(
fileid
)
self
.
loadfile
(
None
,
filename
=
path
)
def
loadfile
(
self
,
event
,
filename
=
None
):
if
self
.
skeining
and
self
.
skeinp
is
not
None
:
self
.
skeinp
.
terminate
()
...
...
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