主要有几个问题:
1、后台单独线程处理数据的问题;最初不明白QT在子线程中不能 *** 作GUI的问题,因此查了很久的GUI的crash的问题
2、界面的布局;理解了gridLayout这个非常方便的布局方法。
代码片段
# -*- coding: utf-8 -*-
"""
Module implementing umd_MainWindow.
"""
import sys, os, re, time,sip
from PyQt4 import QtGui, QtCore
from dict4ini import DictIni
from Ui_ebook_txt import Ui_umd_MainWindow
class eBookException(Exception):
pass
class ebookParseWorker(QtCore.QThread):
'''QT中子线程内不能 *** 作GUI界面,切记切记'''
def __init__(self, parent=None):
QtCore.QThread.__init__(self, parent)
self.exiting = False
self.isWait=False
self.data={}
def setVar(self, name, value):
self.data[name]=value
def __del__(self):
self.exiting = True
self.wait()
def buildRegx(self):
#self.alert(regx)
if self.data['chmChapterRegx'] is None:
regx='pages\[(\d+)\]\s*=\s*\[(.*)\]'
try:
self.chapterInfo=re.compile(self.data['chmChapterRegx'])
except:
self.alert('列表处理正则表达式不正确')
return False
self.chapterList=[]
return True
def getChapterList(self):
if os.path.exists(unicode(self.data['正御chmChapterJs'])) ==False:
self.alert('章节列表JS文件%s不存在'%(self.data['chmChapterJs']))
return False
if self.data['inputCharset'] is None or self.data['inputCharset'].strip()=='':
self.data['inputCharset']='gbk'
m=self.chapterInfo.findall(open(unicode(self.data['chmChapterJs']),'rb').read())
vol=''
for x in m:
oldChapterInfo=x[1].split(',')
newChapterInfo={}
if len(oldChapterInfo)==4:
if oldChapterInfo[3].strip('"').strip("'")[0:5]!='<img alt="" /><1:
self.alert('章节列表小于1,请检查列表正则表达式是否正确')
return False
return self.chapterList
def run(self):
#是否触发错误
error=False
self.alert("<span><strong>开始处理章节内容</strong>")
if self.data['inputCharset'] is None or self.data['inputCharset'].strip()=='':
self.data['inputCharset']='gbk'
if self.data['outputCharset'] is None or self.data['outputCharset'].strip()=='':
self.data['outputCharset']='gbk'
if self.data['oldChapterTxtDir'] is None or self.data['oldChapterTxtDir'].strip()=='' :
self.alert('原始文件存放位置为空')
error=True
if self.data['newChapterTxtDir'] is None or self.data['newChapterTxtDir'].strip()=='':
self.data['newChapterTxtDir']=self.data['oldChapterTxtDir']
if os.path.exists(unicode(self.data['newChapterTxtDir'])) ==False:
1、最简单的调用方式,直接写到html的body标签里面:
2、在JS语句中调用myfun函数:
扩展资料:
无论是html的body标签,还是JS语句中调用的myfun函数,其本质都是调用轮迅如了 Javascript 中的onload事件处理器。
在现代浏览器中都内置有大量的事件处理器。这些处理器会监视特定腊启的条件或用户行为,例如鼠标单击或浏览器窗口中完成加载某个图像。通过使用客户端的 JavaScript,可以将某些特定的事件处理器作为属性添加给特定的标签,并可以在事件发生时执行一个或多个 JavaScript 命令或函数。
事件处理器的值是一个或一系列以分号隔开的 Javascript 表达式、方法和函数调用,并用引号引起来。当事件发生时,浏览器会昌盯执行这些代码。
除了onload事件之外,还有onUnload事件、onFocus事件、onBlur事件、onChange事件等等。
参考资料:百度百科-事件(HTML属性)
参考资料:百度百科-Javascript 事件
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)