PyQt4 HardwareManager
# PyQt4 HardwareManager
# 声明:
# 本软件主要是由于朋友说想要一个产品缺陷记录软件,主要用于记录产品缺陷,
# 通过产品序列号进行插入、查询,本来想用VC++ 6.0做,但是每次打开开发环境就
# 奔溃了,所以只能换一个开发环境,于是尝试用PyQt4进行原型开发,在开发过程中
# 发现,这确实是一个很好的思路,该软件可以换一种思路用于其他环境下,但就
# 目前而已,这仅仅是一个原型。
#
# 2015-10-23 晴 深圳 南山平山村 曾剑锋 \\\\\\\\\\\\\-*- 目录 -*-////////////
| 一、cat main.pyw
| 二、cat HardwareDialog.pyw
| 三、cat Ui_HardwareManager.pyw
| 四、cat hardwaremanager.ui
| 五、cat autorun.bat
| 六、cat readme.txt
------------------------------------ 一、cat main.pyw
#coding=utf-8 # 参考文章:
# 1. pyqt 使用 Qt Designer 设计的ui文件
# http://blog.csdn.net/lainegates/article/details/8656145
# 2. PyQt 4.11.4 Reference Guide Using Qt Designer
# http://pyqt.sourceforge.net/Docs/PyQt4/designer.html
# 3. Create dynamic button in PyQt
# http://stackoverflow.com/questions/10730131/create-dynamic-button-in-pyqt
# 4. How can I hide the console window in a PyQt app running on Windows?
# http://stackoverflow.com/questions/466203/how-can-i-hide-the-console-window-in-a-pyqt-app-running-on-windows
# 5. pyqt如何关闭dos窗口
# http://www.wosoni.com/osk/230860_91298.html import sys
from PyQt4.QtCore import *
from PyQt4.QtGui import * from HardwareDialog import HardwareDialog def main(): app = QApplication(sys.argv)
app.setWindowIcon(QIcon("./logo.ico")) hardwareDialog = HardwareDialog()
hardwareDialog.show() sys.exit(app.exec_()) if __name__ == '__main__':
main() 二、cat HardwareDialog.pyw
#coding=utf-8 import sys
import os
import time
from PyQt4.QtCore import *
from PyQt4.QtGui import *
import sqlite3 from ui_hardwaremanager import Ui_HardwareManager class HardwareDialog(QDialog): def __init__(self): QDialog.__init__(self) self.ui = Ui_HardwareManager()
self.ui.setupUi(self) self.setWindowTitle("HardwareManager")
self.setFixedHeight(self.height())
self.setFixedWidth(self.width())
self.setWindowFlags(self.windowFlags() & ~Qt.WindowContextHelpButtonHint); # http://stackoverflow.com/questions/10730131/create-dynamic-button-in-pyqt
# Error: TypeError: connect() slot argument should be a callable or a signal, not 'NoneType' #
# Note the lambda will avoid the evaluation of the function call, so it'll call
# self.commander(command) only when clicked
# self.ui.insert.clicked.connect(lambda: self.insertData())
self.ui.insert.clicked.connect(self.insertData)
self.ui.query.clicked.connect(self.queryData)
self.ui.clean.clicked.connect(self.cleanData) self.cpFilePath = "" def insertData(self): # 这里必须这么处理一下才能将serial插入sqlite3数据,否则总是会报如下错误:
# sqlite3.InterfaceError: Error binding parameter 0 - probably unsupported type.
serial = ("%s" % (self.ui.serial.text())).strip()
filePath = time.strftime("%Y%m%d%H%M%S", time.localtime(time.time())) # To prevent the string length is less than 0
if ( len(serial) > 0 ) : hmConnect = sqlite3.connect("./HardwareManager.db")
cursor = hmConnect.cursor() cursor.execute('CREATE TABLE if not exists HardwareManager (id INTEGER PRIMARY KEY, serial VARCHAR(40), path VARCHAR(100))') # check serial NO. was only one
cursor.execute('SELECT id, path from HardwareManager where serial = ?', [serial])
if ( cursor.fetchone() != None ) :
QMessageBox.about(self, "ERROR","Please check the serial number is the only one")
hmConnect.close()
return # insert data
argument=(serial, filePath)
cursor.execute('INSERT INTO HardwareManager (id, serial, path) VALUES(NULL, ?, ?)', argument)
hmConnect.commit() # save readme data
readmeFilePath = "./managerFile/%s" % filePath
os.makedirs(readmeFilePath)
readme = open( "%s/readme.txt" % readmeFilePath, "w" )
readme.write(self.ui.readme.toPlainText())
readme.flush()
readme.close() self.ui.id.setText( "%s" % cursor.lastrowid )
self.ui.path.setText("%s/readme.txt" % readmeFilePath) ## debug
#print argument
#cursor.execute('SELECT * FROM HardwareManager')
#print cursor.fetchall() hmConnect.close() # mesage for costomer
QMessageBox.about(self, "Mesg","Insert OK.") def queryData(self): serial = ("%s" % (self.ui.serial.text())).strip() if ( len(serial) > 0 ) : hmConnect = sqlite3.connect("./HardwareManager.db")
cursor = hmConnect.cursor() # create data if HardwareManager table don't exists
cursor.execute('CREATE TABLE if not exists HardwareManager (id INTEGER PRIMARY KEY, serial VARCHAR(40), path VARCHAR(100))') # check data
cursor.execute('SELECT id, path from HardwareManager where serial = ?', [serial])
row = cursor.fetchone()
if ( row == None ) :
QMessageBox.about(self, "ERROR","Please check your serial number")
hmConnect.close()
return self.ui.id.setText( "%s" % row[0] )
self.ui.path.setText( "./managerFile/%s/readme.txt" % row[1] ) # maybe this file has lost
if ( os.path.exists("./managerFile/%s/readme.txt" % row[1]) == True) :
readme = open( "./managerFile/%s/readme.txt" % row[1] )
self.ui.readme.setPlainText(readme.read())
readme.close()
else :
QMessageBox.about(self, "Mesg","can't find the readme.txt file") hmConnect.close() def cleanData(self): '''
clean EditLine widget data
''' self.ui.id.setText("")
self.ui.serial.setText("")
self.ui.path.setText("")
self.ui.readme.setPlainText("") 三、cat Ui_HardwareManager.pyw
# -*- coding: utf-8 -*- # Form implementation generated from reading ui file 'E:\python\HardWareManager\hardwaremanager.ui'
#
# Created by: PyQt4 UI code generator 4.11.4
#
# WARNING! All changes made in this file will be lost! from PyQt4 import QtCore, QtGui try:
_fromUtf8 = QtCore.QString.fromUtf8
except AttributeError:
def _fromUtf8(s):
return s try:
_encoding = QtGui.QApplication.UnicodeUTF8
def _translate(context, text, disambig):
return QtGui.QApplication.translate(context, text, disambig, _encoding)
except AttributeError:
def _translate(context, text, disambig):
return QtGui.QApplication.translate(context, text, disambig) class Ui_HardwareManager(object):
def setupUi(self, HardwareManager):
HardwareManager.setObjectName(_fromUtf8("HardwareManager"))
HardwareManager.resize(465, 300)
self.verticalLayout_2 = QtGui.QVBoxLayout(HardwareManager)
self.verticalLayout_2.setObjectName(_fromUtf8("verticalLayout_2"))
self.frame = QtGui.QVBoxLayout()
self.frame.setObjectName(_fromUtf8("frame"))
self.serialIDPath = QtGui.QGridLayout()
self.serialIDPath.setSizeConstraint(QtGui.QLayout.SetNoConstraint)
self.serialIDPath.setContentsMargins(20, -1, -1, -1)
self.serialIDPath.setHorizontalSpacing(30)
self.serialIDPath.setObjectName(_fromUtf8("serialIDPath"))
self.label_path = QtGui.QLabel(HardwareManager)
self.label_path.setAlignment(QtCore.Qt.AlignCenter)
self.label_path.setObjectName(_fromUtf8("label_path"))
self.serialIDPath.addWidget(self.label_path, 5, 0, 1, 1)
self.label_id = QtGui.QLabel(HardwareManager)
self.label_id.setAlignment(QtCore.Qt.AlignCenter)
self.label_id.setObjectName(_fromUtf8("label_id"))
self.serialIDPath.addWidget(self.label_id, 2, 0, 1, 1)
self.pathClean = QtGui.QHBoxLayout()
self.pathClean.setObjectName(_fromUtf8("pathClean"))
self.path = QtGui.QLineEdit(HardwareManager)
self.path.setObjectName(_fromUtf8("path"))
self.pathClean.addWidget(self.path)
self.clean = QtGui.QPushButton(HardwareManager)
self.clean.setObjectName(_fromUtf8("clean"))
self.pathClean.addWidget(self.clean)
self.serialIDPath.addLayout(self.pathClean, 5, 1, 1, 1)
self.label_serial = QtGui.QLabel(HardwareManager)
self.label_serial.setAlignment(QtCore.Qt.AlignCenter)
self.label_serial.setObjectName(_fromUtf8("label_serial"))
self.serialIDPath.addWidget(self.label_serial, 1, 0, 1, 1)
self.serial = QtGui.QLineEdit(HardwareManager)
self.serial.setObjectName(_fromUtf8("serial"))
self.serialIDPath.addWidget(self.serial, 1, 1, 1, 1)
self.id = QtGui.QLineEdit(HardwareManager)
self.id.setObjectName(_fromUtf8("id"))
self.serialIDPath.addWidget(self.id, 2, 1, 1, 1)
self.frame.addLayout(self.serialIDPath)
self.insertQueryButton = QtGui.QHBoxLayout()
self.insertQueryButton.setObjectName(_fromUtf8("insertQueryButton"))
self.insert = QtGui.QPushButton(HardwareManager)
self.insert.setObjectName(_fromUtf8("insert"))
self.insertQueryButton.addWidget(self.insert)
self.query = QtGui.QPushButton(HardwareManager)
self.query.setObjectName(_fromUtf8("query"))
self.insertQueryButton.addWidget(self.query)
self.frame.addLayout(self.insertQueryButton)
self.readme = QtGui.QPlainTextEdit(HardwareManager)
self.readme.setObjectName(_fromUtf8("readme"))
self.frame.addWidget(self.readme)
self.verticalLayout_2.addLayout(self.frame) self.retranslateUi(HardwareManager)
QtCore.QMetaObject.connectSlotsByName(HardwareManager)
HardwareManager.setTabOrder(self.serial, self.id)
HardwareManager.setTabOrder(self.id, self.path)
HardwareManager.setTabOrder(self.path, self.insert)
HardwareManager.setTabOrder(self.insert, self.query)
HardwareManager.setTabOrder(self.query, self.readme)
HardwareManager.setTabOrder(self.readme, self.clean) def retranslateUi(self, HardwareManager):
HardwareManager.setWindowTitle(_translate("HardwareManager", "HardwareManager", None))
self.label_path.setText(_translate("HardwareManager", "Path:", None))
self.label_id.setText(_translate("HardwareManager", "ID:", None))
self.clean.setText(_translate("HardwareManager", "Clean", None))
self.label_serial.setText(_translate("HardwareManager", "Serial NO.:", None))
self.insert.setText(_translate("HardwareManager", "Insert", None))
self.query.setText(_translate("HardwareManager", "Query", None)) 四、cat hardwaremanager.ui
<?xml version="1.0" encoding="UTF-8"?>
<ui version="4.0">
<class>HardwareManager</class>
<widget class="QDialog" name="HardwareManager">
<property name="geometry">
<rect>
<x>0</x>
<y>0</y>
<width>465</width>
<height>300</height>
</rect>
</property>
<property name="windowTitle">
<string>HardwareManager</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_2">
<item>
<layout class="QVBoxLayout" name="frame">
<item>
<layout class="QGridLayout" name="serialIDPath">
<property name="sizeConstraint">
<enum>QLayout::SetNoConstraint</enum>
</property>
<property name="leftMargin">
<number>20</number>
</property>
<property name="horizontalSpacing">
<number>30</number>
</property>
<item row="" column="">
<widget class="QLabel" name="label_path">
<property name="text">
<string>Path:</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item row="" column="">
<widget class="QLabel" name="label_id">
<property name="text">
<string>ID:</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item row="" column="">
<layout class="QHBoxLayout" name="pathClean">
<item>
<widget class="QLineEdit" name="path"/>
</item>
<item>
<widget class="QPushButton" name="clean">
<property name="text">
<string>Clean</string>
</property>
</widget>
</item>
</layout>
</item>
<item row="" column="">
<widget class="QLabel" name="label_serial">
<property name="text">
<string>Serial NO.:</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>
</property>
</widget>
</item>
<item row="" column="">
<widget class="QLineEdit" name="serial"/>
</item>
<item row="" column="">
<widget class="QLineEdit" name="id"/>
</item>
</layout>
</item>
<item>
<layout class="QHBoxLayout" name="insertQueryButton">
<item>
<widget class="QPushButton" name="insert">
<property name="text">
<string>Insert</string>
</property>
</widget>
</item>
<item>
<widget class="QPushButton" name="query">
<property name="text">
<string>Query</string>
</property>
</widget>
</item>
</layout>
</item>
<item>
<widget class="QPlainTextEdit" name="readme"/>
</item>
</layout>
</item>
</layout>
</widget>
<tabstops>
<tabstop>serial</tabstop>
<tabstop>id</tabstop>
<tabstop>path</tabstop>
<tabstop>insert</tabstop>
<tabstop>query</tabstop>
<tabstop>readme</tabstop>
<tabstop>clean</tabstop>
</tabstops>
<resources/>
<connections/>
</ui> 五、cat autorun.bat
start pythonw.exe main.pyw
exit 六、cat readme.txt
一、文件说明:
1. managerFile目录主要是程序生成的信息文件,不要去动它;
2. pyhon2.7目录包含了python2.7、pyqt4的安装文件;
3. autorun.bat是windows的批处理文件,双击运行,会自动main.pyw文件;
4. 所有的.pyw文件是python程序文件;
5. hardwaremanager.ui文件是qt Designer生成的文件,通过pyuic4.bat将ui文件转成ui_hardwaremanager.pyw;
6. logo.ico是程序的ico文件。
二、程序运行说明:
1. 可以通过双击main.pyw文件运行;
2. 可以通过双击autorun.bat文件运行。
PyQt4 HardwareManager的更多相关文章
- PyQt4 py2exe 打包 HardwareManager
#!/usr/bin/env python # -*- coding: UTF-8 -*- # 1. 以下代码保存在HardwareManager项目的目录下,名称叫:setup.py: # 2. 打 ...
- PyQt4 ShowHMDB show sqlite3 with QTableWidget summary
PyQt4 ShowHMDB show sqlite3 with QTableWidget summary Source Code: https://github.com/zengjfgit/Pyth ...
- PyQt4入门学习笔记(五)
PyQt4里的对话框 对话框是大多数GUI应用中不可分割的一部分.一个对话框是两者或多者的会话.在GUI内,对话框是应用向人说话的方式.一个对话框可以用来输入数据,修改数据,改变应用设置等等. QtG ...
- PyQt4入门学习笔记(四)
在PyQt4中的事件和信号 事件 所有的GUI应用都是事件驱动的.事件主要是来自于应用的使用者,但是像互联网连接,窗口管理器或者计时器也可以产生事件.当我们调用应用的exec_()方法时,应用就进入了 ...
- PyQt4入门学习笔记(三)
# PyQt4入门学习笔记(三) PyQt4内的布局 布局方式是我们控制我们的GUI页面内各个控件的排放位置的.我们可以通过两种基本方式来控制: 1.绝对位置 2.layout类 绝对位置 这种方式要 ...
- 基于傅里叶变换和PyQt4开发一个简单的频率计数器
小学期的<信号与系统>课,要求写一个频率计数器,下面是我个人理解的频率计数 傅里叶变换的代码: # coding=utf-8 import numpy as np from scipy.i ...
- PyQt4入门学习笔记(二)
之前第一篇介绍了pyqt4的大小,移动位置,消息提示.这次我们介绍菜单和工具栏 QtGui.QmainWindow这个类可以给我们提供一个创建带有状态栏.工具栏和菜单栏的标准的应用. 状态栏 状态栏是 ...
- PyQt4入门学习笔记(一)
PyQt4入门学习笔记(一) 一直没有找到什么好的pyqt4的教程,偶然在google上搜到一篇不错的入门文档,翻译过来,留以后再复习. 原始链接如下: http://zetcode.com/gui/ ...
- PyQt4入门
PyQt4入门教程(6)_对话框 文中译者的话将用方括号[]标出.对话框(Dialogs)是现代GUI程序中不可缺少的一部分.对话本来指的是两个或者更多人之间的交流,而在计算机应用中,对话是一个可以让 ...
随机推荐
- PAT 1094 The Largest Generation[bfs][一般]
1094 The Largest Generation(25 分) A family hierarchy is usually presented by a pedigree tree where a ...
- AngularJS SQL
服务端代码 以下列出了列出了几种服务端代码类型: 使用 PHP 和 MySQL.返回 JSON. 使用 PHP 和 MS Access.返回 JSON. 使用 ASP.NET, VB, 及 MS Ac ...
- netty4.1.6源码2-------创建服务端的channel
1. netty在哪里调用jdk底层的socket去创建netty服务端的socket. 2. 在哪里accept连接. 服务端的启动: 1. 调用jdk底层的api去创建jdk的服务端的channe ...
- ubuntu常用命令解释
1.seq 用于产生一个整数到另一个整数之间所有的整数,如:seq 3 5 输出:3 4 5 注:如果参数为一个整数,则输出1至这个数之间的所有整数 2.tee [-a] file 从标准输入设备读取 ...
- 20145311 《Java程序设计》第2周学习总结
20145311 <Java程序设计>第2周学习总结 教材学习内容总结 3.1Java的类型分为基本类型(Primitive type)和类类型(Class type)基本类型: *整数: ...
- SQL 中 not in 查询不到数据问题
在开发的过程中,遇到过not in 始终查询不到数据问题 select * from T_CustomerInfo where CustomerID not in (select CustomerID ...
- MSBI
https://blog.csdn.net/fanyingnedu/article/details/78597207 Familiarity with Microsoft BI Stack - SSI ...
- xlrd基本操作
#coding=utf-8import xlrd def read_excel(): workbook = xlrd.open_workbook('people.xlsx') sheet2 = wor ...
- (转载)YOLO配置文件理解
YOLO配置文件理解 转载自 [net] batch=64 每batch个样本更新一次参数. subdivisions=8 如果内存不够大,将batch分割为subdivisions个子batch,每 ...
- jQuery实现鼠标点击Div区域外隐藏Div
冒泡定义:当一个元素上的事件被触发的时候,比如说鼠标点击了一个按钮,同样的事件将会在那个元素的所有祖先元素中被触发.这一过程被称为事件冒泡:这个事件从原始元素开始一直冒泡到DOM树的最上层.(摘自网络 ...