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
0e7c70db
Commit
0e7c70db
authored
Nov 13, 2011
by
Keegi
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote branch 'kliment/master' into experimental
parents
ad21eefe
2bbb39d0
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
16 deletions
+25
-16
gviz.py
gviz.py
+2
-2
pronterface.py
pronterface.py
+23
-14
No files found.
gviz.py
View file @
0e7c70db
...
...
@@ -248,7 +248,7 @@ class gviz(wx.Panel):
self
.
pens
[
target
[
2
]
]
+=
[
self
.
mainpen
if
target
[
3
]
!=
self
.
lastpos
[
3
]
else
self
.
travelpen
]
self
.
lastpos
=
target
else
:
self
.
hilight
+=
line
self
.
hilight
+=
[
line
]
self
.
hilightpos
=
target
self
.
dirty
=
1
...
...
@@ -266,7 +266,7 @@ class gviz(wx.Panel):
self
.
arcpens
[
target
[
2
]
]
+=
[
self
.
arcpen
]
self
.
lastpos
=
target
else
:
self
.
hilightarcs
+=
arc
self
.
hilightarcs
+=
[
arc
]
self
.
hilightpos
=
target
self
.
dirty
=
1
...
...
pronterface.py
View file @
0e7c70db
...
...
@@ -382,24 +382,13 @@ class PronterWindow(wx.Frame,pronsole.pronsole):
def
OnExit
(
self
,
event
):
self
.
Close
()
def
popwindow
(
self
):
# this list will contain all controls that should be only enabled
# when we're connected to a printer
self
.
printerControls
=
[]
#sizer layout: topsizer is a column sizer containing two sections
#upper section contains the mini view buttons
#lower section contains the rest of the window - manual controls, console, visualizations
#TOP ROW:
uts
=
self
.
uppertopsizer
=
wx
.
BoxSizer
(
wx
.
HORIZONTAL
)
uts
.
Add
(
wx
.
StaticText
(
self
.
panel
,
-
1
,
_
(
"Port:"
),
pos
=
(
0
,
5
)),
wx
.
TOP
|
wx
.
LEFT
,
5
)
def
rescanports
(
self
,
event
=
None
):
scan
=
self
.
scanserial
()
portslist
=
list
(
scan
)
if
self
.
settings
.
port
!=
""
and
self
.
settings
.
port
not
in
portslist
:
portslist
+=
[
self
.
settings
.
port
]
self
.
serialport
=
wx
.
ComboBox
(
self
.
panel
,
-
1
,
choices
=
portslist
,
style
=
wx
.
CB_DROPDOWN
|
wx
.
CB_SORT
|
wx
.
CB_READONLY
,
pos
=
(
50
,
0
))
self
.
serialport
.
Clear
()
self
.
serialport
.
AppendItems
(
portslist
)
try
:
if
self
.
settings
.
port
in
scan
:
self
.
serialport
.
SetValue
(
self
.
settings
.
port
)
...
...
@@ -407,6 +396,26 @@ class PronterWindow(wx.Frame,pronsole.pronsole):
self
.
serialport
.
SetValue
(
portslist
[
0
])
except
:
pass
def
popwindow
(
self
):
# this list will contain all controls that should be only enabled
# when we're connected to a printer
self
.
printerControls
=
[]
#sizer layout: topsizer is a column sizer containing two sections
#upper section contains the mini view buttons
#lower section contains the rest of the window - manual controls, console, visualizations
#TOP ROW:
uts
=
self
.
uppertopsizer
=
wx
.
BoxSizer
(
wx
.
HORIZONTAL
)
self
.
rescanbtn
=
wx
.
Button
(
self
.
panel
,
-
1
,
_
(
"Port"
),
pos
=
(
380
,
0
))
self
.
rescanbtn
.
Bind
(
wx
.
EVT_BUTTON
,
self
.
rescanports
)
uts
.
Add
(
self
.
rescanbtn
,
wx
.
TOP
|
wx
.
LEFT
,
5
)
self
.
serialport
=
wx
.
ComboBox
(
self
.
panel
,
-
1
,
choices
=
[],
style
=
wx
.
CB_DROPDOWN
|
wx
.
CB_READONLY
,
pos
=
(
50
,
0
))
self
.
rescanports
()
uts
.
Add
(
self
.
serialport
)
uts
.
Add
(
wx
.
StaticText
(
self
.
panel
,
-
1
,
"@"
,
pos
=
(
250
,
5
)),
wx
.
RIGHT
,
5
)
self
.
baud
=
wx
.
ComboBox
(
self
.
panel
,
-
1
,
...
...
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