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
ffef877d
Commit
ffef877d
authored
Aug 27, 2013
by
Guillaume Seguin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mark a bunch of strings to be translated
parent
17894653
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
12 deletions
+12
-12
gui.py
printrun/gui.py
+12
-12
No files found.
printrun/gui.py
View file @
ffef877d
...
...
@@ -70,7 +70,7 @@ def add_extra_controls(self, root, parentpanel, extra_buttons = None):
base_line
=
1
if
standalone_mode
else
2
root
.
monitorbox
=
wx
.
CheckBox
(
parentpanel
,
-
1
,
_
(
"Watch"
))
root
.
monitorbox
.
SetValue
(
bool
(
root
.
settings
.
monitor
))
root
.
monitorbox
.
SetToolTip
(
wx
.
ToolTip
(
"Monitor Temperatures in Graph"
))
root
.
monitorbox
.
SetToolTip
(
wx
.
ToolTip
(
_
(
"Monitor Temperatures in Graph"
)
))
if
standalone_mode
:
self
.
Add
(
root
.
monitorbox
,
pos
=
(
0
,
3
),
span
=
(
1
,
3
))
else
:
...
...
@@ -88,7 +88,7 @@ def add_extra_controls(self, root, parentpanel, extra_buttons = None):
htemp_choices
=
[
str
(
root
.
settings
.
last_temperature
)]
+
htemp_choices
root
.
htemp
=
wx
.
ComboBox
(
parentpanel
,
-
1
,
choices
=
htemp_choices
,
style
=
wx
.
CB_DROPDOWN
,
size
=
(
80
,
-
1
))
root
.
htemp
.
SetToolTip
(
wx
.
ToolTip
(
"Select Temperature for Hotend"
))
root
.
htemp
.
SetToolTip
(
wx
.
ToolTip
(
_
(
"Select Temperature for Hotend"
)
))
root
.
htemp
.
Bind
(
wx
.
EVT_COMBOBOX
,
root
.
htemp_change
)
self
.
Add
(
root
.
htemp
,
pos
=
(
base_line
+
0
,
3
),
span
=
(
1
,
1
))
...
...
@@ -107,11 +107,11 @@ def add_extra_controls(self, root, parentpanel, extra_buttons = None):
btemp_choices
=
[
str
(
root
.
settings
.
last_bed_temperature
)]
+
btemp_choices
root
.
btemp
=
wx
.
ComboBox
(
parentpanel
,
-
1
,
choices
=
btemp_choices
,
style
=
wx
.
CB_DROPDOWN
,
size
=
(
80
,
-
1
))
root
.
btemp
.
SetToolTip
(
wx
.
ToolTip
(
"Select Temperature for Heated Bed"
))
root
.
btemp
.
SetToolTip
(
wx
.
ToolTip
(
_
(
"Select Temperature for Heated Bed"
)
))
root
.
btemp
.
Bind
(
wx
.
EVT_COMBOBOX
,
root
.
btemp_change
)
self
.
Add
(
root
.
btemp
,
pos
=
(
base_line
+
1
,
3
),
span
=
(
1
,
1
))
root
.
setbbtn
=
make_button
(
parentpanel
,
_
(
"Set"
),
root
.
do_bedtemp
,
(
"Switch Heated Bed On"
),
size
=
(
38
,
-
1
),
style
=
wx
.
BU_EXACTFIT
)
root
.
setbbtn
=
make_button
(
parentpanel
,
_
(
"Set"
),
root
.
do_bedtemp
,
_
(
"Switch Heated Bed On"
),
size
=
(
38
,
-
1
),
style
=
wx
.
BU_EXACTFIT
)
root
.
printerControls
.
append
(
root
.
setbbtn
)
self
.
Add
(
root
.
setbbtn
,
pos
=
(
base_line
+
1
,
4
),
span
=
(
1
,
1
))
...
...
@@ -177,9 +177,9 @@ def add_extra_controls(self, root, parentpanel, extra_buttons = None):
root
.
edist
.
Bind
(
wx
.
EVT_TEXT
,
root
.
setfeeds
)
esettingssizer
.
Add
(
root
.
edist
,
flag
=
wx
.
ALIGN_CENTER
|
wx
.
RIGHT
,
border
=
5
)
esettingssizer
.
Add
(
wx
.
StaticText
(
esettingspanel
,
-
1
,
_
(
"mm @"
)),
flag
=
wx
.
ALIGN_CENTER
|
wx
.
RIGHT
,
border
=
5
)
root
.
edist
.
SetToolTip
(
wx
.
ToolTip
(
"Amount to Extrude or Retract (mm)"
))
root
.
edist
.
SetToolTip
(
wx
.
ToolTip
(
_
(
"Amount to Extrude or Retract (mm)"
)
))
root
.
efeedc
=
wx
.
SpinCtrl
(
esettingspanel
,
-
1
,
str
(
root
.
settings
.
e_feedrate
),
min
=
0
,
max
=
50000
,
size
=
(
70
,
-
1
))
root
.
efeedc
.
SetToolTip
(
wx
.
ToolTip
(
"Extrude / Retract speed (mm/min)"
))
root
.
efeedc
.
SetToolTip
(
wx
.
ToolTip
(
_
(
"Extrude / Retract speed (mm/min)"
)
))
root
.
efeedc
.
SetBackgroundColour
((
225
,
200
,
200
))
root
.
efeedc
.
SetForegroundColour
(
"black"
)
root
.
efeedc
.
Bind
(
wx
.
EVT_SPINCTRL
,
root
.
setfeeds
)
...
...
@@ -267,12 +267,12 @@ class LeftPane(wx.GridBagSizer):
self
.
extra_buttons
[
i
]
=
btn
root
.
xyfeedc
=
wx
.
SpinCtrl
(
parentpanel
,
-
1
,
str
(
root
.
settings
.
xy_feedrate
),
min
=
0
,
max
=
50000
,
size
=
(
70
,
-
1
))
root
.
xyfeedc
.
SetToolTip
(
wx
.
ToolTip
(
"Set Maximum Speed for X & Y axes (mm/min)"
))
root
.
xyfeedc
.
SetToolTip
(
wx
.
ToolTip
(
_
(
"Set Maximum Speed for X & Y axes (mm/min)"
)
))
llts
.
Add
(
wx
.
StaticText
(
parentpanel
,
-
1
,
_
(
"XY:"
)),
flag
=
wx
.
ALIGN_RIGHT
|
wx
.
ALIGN_CENTER_VERTICAL
)
llts
.
Add
(
root
.
xyfeedc
)
llts
.
Add
(
wx
.
StaticText
(
parentpanel
,
-
1
,
_
(
"mm/min Z:"
)),
flag
=
wx
.
ALIGN_RIGHT
|
wx
.
ALIGN_CENTER_VERTICAL
)
root
.
zfeedc
=
wx
.
SpinCtrl
(
parentpanel
,
-
1
,
str
(
root
.
settings
.
z_feedrate
),
min
=
0
,
max
=
50000
,
size
=
(
70
,
-
1
))
root
.
zfeedc
.
SetToolTip
(
wx
.
ToolTip
(
"Set Maximum Speed for Z axis (mm/min)"
))
root
.
zfeedc
.
SetToolTip
(
wx
.
ToolTip
(
_
(
"Set Maximum Speed for Z axis (mm/min)"
)
))
llts
.
Add
(
root
.
zfeedc
,)
root
.
xyfeedc
.
Bind
(
wx
.
EVT_SPINCTRL
,
root
.
setfeeds
)
...
...
@@ -328,7 +328,7 @@ class VizPane(wx.BoxSizer):
grid
=
(
root
.
settings
.
preview_grid_step1
,
root
.
settings
.
preview_grid_step2
),
extrusion_width
=
root
.
settings
.
preview_extrusion_width
,
bgcolor
=
root
.
settings
.
bgcolor
)
root
.
gviz
.
SetToolTip
(
wx
.
ToolTip
(
"Click to examine / edit
\n
layers of loaded file"
))
root
.
gviz
.
SetToolTip
(
wx
.
ToolTip
(
_
(
"Click to examine / edit
\n
layers of loaded file"
)
))
root
.
gviz
.
showall
=
1
root
.
gviz
.
Bind
(
wx
.
EVT_LEFT_DOWN
,
root
.
showwin
)
use3dview
=
root
.
settings
.
viz3d
...
...
@@ -364,7 +364,7 @@ class LogPane(wx.BoxSizer):
self
.
Add
(
root
.
logbox
,
1
,
wx
.
EXPAND
)
lbrs
=
wx
.
BoxSizer
(
wx
.
HORIZONTAL
)
root
.
commandbox
=
wx
.
TextCtrl
(
parentpanel
,
style
=
wx
.
TE_PROCESS_ENTER
)
root
.
commandbox
.
SetToolTip
(
wx
.
ToolTip
(
"Send commands to printer
\n
(Type 'help' for simple
\n
help function)"
))
root
.
commandbox
.
SetToolTip
(
wx
.
ToolTip
(
_
(
"Send commands to printer
\n
(Type 'help' for simple
\n
help function)"
)
))
root
.
commandbox
.
Bind
(
wx
.
EVT_TEXT_ENTER
,
root
.
sendline
)
root
.
commandbox
.
Bind
(
wx
.
EVT_CHAR
,
root
.
cbkey
)
root
.
commandbox
.
history
=
[
u""
]
...
...
@@ -393,7 +393,7 @@ def MainToolbar(root, parentpanel = None, use_wrapsizer = False):
root
.
serialport
=
wx
.
ComboBox
(
parentpanel
,
-
1
,
choices
=
root
.
scanserial
(),
style
=
wx
.
CB_DROPDOWN
,
size
=
(
-
1
,
25
))
root
.
serialport
.
SetToolTip
(
wx
.
ToolTip
(
"Select Port Printer is connected to"
))
root
.
serialport
.
SetToolTip
(
wx
.
ToolTip
(
_
(
"Select Port Printer is connected to"
)
))
root
.
rescanports
()
self
.
Add
(
root
.
serialport
)
...
...
@@ -402,7 +402,7 @@ def MainToolbar(root, parentpanel = None, use_wrapsizer = False):
choices
=
[
"2400"
,
"9600"
,
"19200"
,
"38400"
,
"57600"
,
"115200"
,
"250000"
],
style
=
wx
.
CB_DROPDOWN
,
size
=
(
100
,
25
))
root
.
baud
.
SetToolTip
(
wx
.
ToolTip
(
"Select Baud rate for printer communication"
))
root
.
baud
.
SetToolTip
(
wx
.
ToolTip
(
_
(
"Select Baud rate for printer communication"
)
))
try
:
root
.
baud
.
SetValue
(
"115200"
)
root
.
baud
.
SetValue
(
str
(
root
.
settings
.
baudrate
))
...
...
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