- the SELECTED type of messages are no longer printed to shell from 2 reasons: first, too much spam and second, issue with displaying html

- on set_zero function and creation of new geometry or new excellon there is no longer a zoom fit
This commit is contained in:
Marius Stanciu
2019-02-09 19:44:01 +02:00
committed by Marius S
parent c59da8669b
commit b68a010bde
3 changed files with 24 additions and 10 deletions

View File

@@ -92,8 +92,8 @@ class App(QtCore.QObject):
log.addHandler(handler) log.addHandler(handler)
# Version # Version
version = 8.908 version = 8.909
version_date = "2019/02/9" version_date = "2019/02/10"
beta = True beta = True
# current date now # current date now
@@ -2314,7 +2314,8 @@ class App(QtCore.QObject):
# after adding the object to the collection always update the list of objects that are in the collection # after adding the object to the collection always update the list of objects that are in the collection
self.all_objects_list = self.collection.get_list() self.all_objects_list = self.collection.get_list()
# self.inform.emit('[selected] %s created & selected: %s' %
# (str(obj.kind).capitalize(), str(obj.options['name'])))
if obj.kind == 'gerber': if obj.kind == 'gerber':
self.inform.emit('[selected]%s created/selected: <span style="color:%s;">%s</span>' % self.inform.emit('[selected]%s created/selected: <span style="color:%s;">%s</span>' %
(obj.kind.capitalize(), 'green', str(obj.options['name']))) (obj.kind.capitalize(), 'green', str(obj.options['name'])))
@@ -3779,7 +3780,7 @@ class App(QtCore.QObject):
obj.offset((x,y)) obj.offset((x,y))
self.object_changed.emit(obj) self.object_changed.emit(obj)
# obj.plot() # obj.plot()
self.plot_all() self.plot_all(zoom=False)
self.inform.emit('[success] Origin set ...') self.inform.emit('[success] Origin set ...')
self.plotcanvas.vis_disconnect('mouse_press', self.on_set_zero_click) self.plotcanvas.vis_disconnect('mouse_press', self.on_set_zero_click)
@@ -4554,6 +4555,8 @@ class App(QtCore.QObject):
curr_sel_obj = self.collection.get_active() curr_sel_obj = self.collection.get_active()
self.draw_selection_shape(curr_sel_obj) self.draw_selection_shape(curr_sel_obj)
# self.inform.emit('[selected] %s: %s selected' %
# (str(curr_sel_obj.kind).capitalize(), str(curr_sel_obj.options['name'])))
if curr_sel_obj.kind == 'gerber': if curr_sel_obj.kind == 'gerber':
self.inform.emit('[selected]<span style="color:%s;">%s</span> selected' % self.inform.emit('[selected]<span style="color:%s;">%s</span> selected' %
('green', str(curr_sel_obj.options['name']))) ('green', str(curr_sel_obj.options['name'])))
@@ -4575,6 +4578,8 @@ class App(QtCore.QObject):
curr_sel_obj = self.collection.get_active() curr_sel_obj = self.collection.get_active()
self.draw_selection_shape(curr_sel_obj) self.draw_selection_shape(curr_sel_obj)
# self.inform.emit('[selected] %s: %s selected' %
# (str(curr_sel_obj.kind).capitalize(), str(curr_sel_obj.options['name'])))
if curr_sel_obj.kind == 'gerber': if curr_sel_obj.kind == 'gerber':
self.inform.emit('[selected]<span style="color:%s;">%s</span> selected' % self.inform.emit('[selected]<span style="color:%s;">%s</span> selected' %
('green', str(curr_sel_obj.options['name']))) ('green', str(curr_sel_obj.options['name'])))
@@ -4609,7 +4614,8 @@ class App(QtCore.QObject):
else: else:
name_sel_obj_idx = objects_under_the_click_list.index(name_sel_obj) name_sel_obj_idx = objects_under_the_click_list.index(name_sel_obj)
self.collection.set_all_inactive() self.collection.set_all_inactive()
self.collection.set_active(objects_under_the_click_list[(name_sel_obj_idx + 1) % len(objects_under_the_click_list)]) self.collection.set_active(objects_under_the_click_list[(name_sel_obj_idx + 1) %
len(objects_under_the_click_list)])
curr_sel_obj = self.collection.get_active() curr_sel_obj = self.collection.get_active()
# delete the possible selection box around a possible selected object # delete the possible selection box around a possible selected object
@@ -4617,6 +4623,8 @@ class App(QtCore.QObject):
# create the selection box around the selected object # create the selection box around the selected object
self.draw_selection_shape(curr_sel_obj) self.draw_selection_shape(curr_sel_obj)
# self.inform.emit('[selected] %s: %s selected' %
# (str(curr_sel_obj.kind).capitalize(), str(curr_sel_obj.options['name'])))
if curr_sel_obj.kind == 'gerber': if curr_sel_obj.kind == 'gerber':
self.inform.emit('[selected]<span style="color:%s;">%s</span> selected' % self.inform.emit('[selected]<span style="color:%s;">%s</span> selected' %
('green', str(curr_sel_obj.options['name']))) ('green', str(curr_sel_obj.options['name'])))
@@ -6168,7 +6176,7 @@ class App(QtCore.QObject):
except KeyError: except KeyError:
pass pass
def plot_all(self): def plot_all(self, zoom=True):
""" """
Re-generates all plots from all objects. Re-generates all plots from all objects.
@@ -6180,7 +6188,8 @@ class App(QtCore.QObject):
def worker_task(obj): def worker_task(obj):
with self.proc_container.new("Plotting"): with self.proc_container.new("Plotting"):
obj.plot() obj.plot()
self.object_plotted.emit(obj) if zoom:
self.object_plotted.emit(obj)
# Send to worker # Send to worker
self.worker_task.emit({'fcn': worker_task, 'params': [obj]}) self.worker_task.emit({'fcn': worker_task, 'params': [obj]})

View File

@@ -9,6 +9,11 @@ CAD program, and create G-Code for Isolation routing.
================================================= =================================================
10.02.2019
- the SELECTED type of messages are no longer printed to shell from 2 reasons: first, too much spam and second, issue with displaying html
- on set_zero function and creation of new geometry or new excellon there is no longer a zoom fit
9.02.2019 9.02.2019
- added a protection for when saving a file first time, it require a saved path and if none then it use the current working directory - added a protection for when saving a file first time, it require a saved path and if none then it use the current working directory

View File

@@ -91,11 +91,11 @@ class TermWidget(QWidget):
elif style == 'err': elif style == 'err':
text = '<span style="font-weight: bold; color: red;">%s</span>' % text text = '<span style="font-weight: bold; color: red;">%s</span>' % text
elif style == 'warning': elif style == 'warning':
text = '<span style="font-weight: bold; color: rgb(244, 182, 66);">%s</span>' % text text = '<span style="font-weight: bold; color: #f4b642;">%s</span>' % text
elif style == 'success': elif style == 'success':
text = '<span style="font-weight: bold; color: rgb(8, 68, 0);">%s</span>' % text text = '<span style="font-weight: bold; color: #084400;">%s</span>' % text
elif style == 'selected': elif style == 'selected':
text = '<span style="font-weight: bold; color: rgb(0, 8, 255);">%s</span>' % text text = ''
else: else:
text = '<span>%s</span>' % text # without span <br/> is ignored!!! text = '<span>%s</span>' % text # without span <br/> is ignored!!!