代码: 1 # -*- coding:utf8 -*- 2 from PyQt4.QtGui import * 3 from PyQt4.QtCore import * 4 import sys 5 6 class ani(QWidget): 7 def __init__(self): 8...
首先设置autoFillBackground属性为真然后定义一个QPalette对象设置QPalette对象的背景属性(颜色或图片)最后设置QWidget对象的Palette实例: 1 # -*- coding: utf-8 -*- 2 import sys 3 from PyQt4 import ...
分类:
其他好文 时间:
2015-01-20 21:58:54
阅读次数:
1658
安装PyQt4很简单,从官网下载相应的安装包即可。需要注意的是:应该根据你电脑上已经装好的python版本选择相应的PyQt4安装包。PyQt4的安装目录一定要选python的安装目录,比如我的Python安装路径是:D:\Python27;在安装路径处就应该填这个路径,它会自动将PyQt4安装在D...
分类:
其他好文 时间:
2015-01-06 17:36:12
阅读次数:
195
之前一直在windows上测试Phonon代码,刚刚回来用linux居然提示我没有Phonon模块
我使用的发行版是自带pyqt4的,但是不带Phonon模块,其实也说的通,Phonon本身也不是Qt的项目,详细请百度 sorry 是谷歌
我用的ubuntu系列,安装Phonon模块方法如下:
sudo apt-get install python-qt4-phonon
其他版本请使用y...
分类:
其他好文 时间:
2014-12-18 22:20:55
阅读次数:
465
现在网上关于PyQt的文章不多,话说那个官方文档也是烂的一塌糊涂,初次使用Phonon模块遇到很多疑问,
国外网站相关的资料多些,看到一些好的例子记录下来,主要是注释了一下,给后来者一些提示。
# -*- coding: utf-8 -*-
import sys
from PyQt4 import QtCore, QtGui
from PyQt4.phonon import Phonon
c...
分类:
其他好文 时间:
2014-12-18 20:38:24
阅读次数:
293
# -*- coding: cp936 -*-# -*- coding: cp936 -*-import sysfrom PyQt4 import QtCore, QtGui #导入模块app = QtGui.QApplication(sys.argv) #创建一个application对象 ...
分类:
其他好文 时间:
2014-12-15 00:06:15
阅读次数:
298
#-*-coding:cp936-*-fromPyQt4.QtCoreimport*fromPyQt4.QtGuiimport*classInlineEditor(QWidget):_MUTE='MUTE'def__init__(self,parent):QWidget.__init__(self,...
分类:
其他好文 时间:
2014-12-15 00:05:58
阅读次数:
287
fromPyQt4importQtGuifromPyQt4importQtCorefromPyQt4.QtCoreimport(QDate,QFile,QFileInfo,QIODevice,QString,QStringList,QDir,QTextStream,Qt,SIGNAL)if__nam...
分类:
其他好文 时间:
2014-12-15 00:00:28
阅读次数:
413
#-*-coding:utf-8-*-fromPyQt4.QtGuiimport*fromPyQt4.QtCoreimport*importsysQTextCodec.setCodecForTr(QTextCodec.codecForName("utf8"))classPalette(QDialog...
分类:
其他好文 时间:
2014-12-14 23:56:45
阅读次数:
312
#-*-coding:utf-8-*-importsip#程序打包需要importdecimal#程序打包需要fromPyQt4importQtCore,QtGuifromPyQt4importQtWebKitfromPyQt4.QtGuiimport*fromPyQt4.QtCoreimport*...
分类:
其他好文 时间:
2014-12-14 22:31:28
阅读次数:
452