シンプルなグラフィカルインターフェイスを作成しています。私は、calling_directory と receive_directory という名前の 2 つのテーブルを持っています。コンボボックスを使用して値を表示しています。ここで、どの値を選択したかを知りたいので、その値を変数に保存したいと思います。それ、どうやったら出来るの?
次に、コンボ ボックスの値をデフォルトに設定するリセット ボタンを使用したいと思います。それ、どうやったら出来るの?
import re
import serial
import sqlite3
import os
import csv
import time
from subprocess import *
import serial.tools.list_ports
import sys
from PyQt4 import QtGui, QtCore
from PyQt4.QtGui import *
from PyQt4.QtCore import *
import threading
global data
con_ports=[]
ports=[]
dial_ports=[]
receiving_ports=[]
class Example(QtGui.QWidget):
def __init__(self):
super(Example, self).__init__()
self.initUI()
def initUI(self):
btn1 = QtGui.QPushButton('Proceed', self)
btn1.resize(btn1.sizeHint())
btn1.move(460, 220)
btn2 = QtGui.QPushButton('Reset',self)
btn2.resize(btn2.sizeHint())
btn2.move(5, 220)
self.setGeometry(300,300,550,250)
self.setWindowTitle('Calling Functions')
self.setWindowIcon(QtGui.QIcon('images.jpg'))
self.lbl1 = QtGui.QLabel("Dialing Number", self)
combo1 = QtGui.QComboBox(self)
conn = sqlite3.connect('database')
combo1.addItem('None')
c = conn.cursor()
c.execute('''select number from Calling_Directory''')
rows = c.fetchall()
for row in rows:
calling_number=row[0]
combo1.addItem(row[0])
#calling_location=row[1]
#x=x+120
#conn.commit()
combo1.move(10, 40)
self.lbl1.move(10, 20)
self.lbl1.adjustSize()
self.lbl2 = QtGui.QLabel("Receiving Number", self)
combo2 = QtGui.QComboBox(self)
#conn = sqlite3.connect('database')
combo2.addItem('None')
#c = conn.cursor()
c.execute('''select number from Receiving_Directory''')
rows2 = c.fetchall()
for row in rows2:
receiving_number=row[0]
combo2.addItem(row[0])
#calling_location=row[1]
#x=x+120
conn.commit()
combo2.move(150, 40)
self.lbl2.move(150, 20)
self.lbl2.adjustSize()
self.show()
def closeEvent(self,event):
reply=QtGui.QMessageBox.question(self,'Mesage',"Are you sure you want to quit?",QtGui.QMessageBox.Yes | QtGui.QMessageBox.No)
if(reply==QtGui.QMessageBox.Yes):
event.accept()
else:
event.ignore()
def main():
app = QtGui.QApplication(sys.argv)
ex=Example()
sys.exit(app.exec_())
if __name__ == '__main__':
main()