def epn_highlight(self):
global home, site
num = self.list2.currentRow()
move_ahead = True
if num < 0:
move_ahead = False
if self.list2.currentItem() and num < len(self.epn_arr_list) and move_ahead:
epn_h = self.list2.currentItem().text()
picn = self.get_thumbnail_image_path(num, self.epn_arr_list[num])
label_name = 'label.'+os.path.basename(picn)
path_thumb, new_title = os.path.split(picn)
new_picn = os.path.join(path_thumb, label_name)
if os.path.exists(picn):
if not picn.endswith('default.jpg'):
if not os.path.exists(new_picn):
self.image_fit_option(picn, new_picn, fit_size=6, widget=self.label)
if os.path.isfile(new_picn):
self.label.setPixmap(QtGui.QPixmap(new_picn, "1"))
txt_file = new_title.replace('.jpg', '.txt', 1)
txt_path = os.path.join(path_thumb, txt_file)
if os.path.isfile(txt_path):
#logger.debug(txt_path)
summary = open_files(txt_path, False)
self.text.setText(summary)
评论列表
文章目录