PyQt5編程(46)—使用數(shù)據(jù)庫(12)

5. QDataWidgetMapper類
QDataWidgetMapper類提供了數(shù)據(jù)模型部分數(shù)據(jù)與部件之間的映射拙毫。
可以使用QDataWidgetMapper創(chuàng)建與模型某項數(shù)據(jù)關聯(lián)的感知組件胆建。 如果方向是水平的(默認),則數(shù)據(jù)是模型的列數(shù)據(jù)洞渔,否則是行數(shù)據(jù)叹誉。
當前索引改變時凛膏,每個關聯(lián)組件會被來自模型的數(shù)據(jù)更新。 如果用戶編輯了組件的內(nèi)容,這些更改也會寫回模型中稠肘。 使用addMapping()實現(xiàn)組件和模型數(shù)據(jù)之間的映射。

addMapping(QWidget widget, int section)
addMapping(QWidget widget, int section, QByteArray propertyName)萝毛,Qt 4.3中增加的项阴,允許指定傳輸數(shù)據(jù)的屬性(propertyName)。

下列代碼是以phonelog.db數(shù)據(jù)庫笆包,使用該類的示例:

import os
import sys
from PyQt5.QtCore import (QDate, QDateTime, QFile, QVariant, Qt)
from PyQt5.QtWidgets import (QApplication, QDataWidgetMapper,QComboBox,
QDateTimeEdit, QDialog, QGridLayout, QHBoxLayout, QLabel,
QLineEdit, QMessageBox, QPushButton, QVBoxLayout)
from PyQt5.QtSql import (QSqlDatabase, QSqlQuery, QSqlRelation,
QSqlRelationalDelegate, QSqlRelationalTableModel)

DATETIME_FORMAT = "yyyy-MM-dd hh:mm"

class PhoneLogDlg(QDialog):

FIRST, PREV, NEXT, LAST = range(4)

def __init__(self, parent=None):
    super(PhoneLogDlg, self).__init__(parent)

    callerLabel = QLabel("&Caller:")
    self.callerEdit = QLineEdit()
    callerLabel.setBuddy(self.callerEdit)
    today = QDate.currentDate()
    startLabel = QLabel("&Start:")
    self.startDateTime = QDateTimeEdit()
    startLabel.setBuddy(self.startDateTime)
    self.startDateTime.setDateRange(today, today)
    self.startDateTime.setDisplayFormat(DATETIME_FORMAT)
    endLabel = QLabel("&End:")
    self.endDateTime = QDateTimeEdit()
    endLabel.setBuddy(self.endDateTime)
    self.endDateTime.setDateRange(today, today)
    self.endDateTime.setDisplayFormat(DATETIME_FORMAT)
    topicLabel = QLabel("&Topic:")
    topicEdit = QLineEdit()
    topicLabel.setBuddy(topicEdit)
    outcomeLabel = QLabel("&Outcome:")
    self.outcomeComboBox = QComboBox()
    outcomeLabel.setBuddy(self.outcomeComboBox)
    firstButton = QPushButton("第一條")
    prevButton = QPushButton("前一條")
    nextButton = QPushButton("后一條")
    lastButton = QPushButton("最后一條")
    adon = QPushButton("&Add")
    deleteButton = QPushButton("&Delete")
    quitButton = QPushButton("&Quit")
    adon.setFocusPolicy(Qt.NoFocus)
    deleteButton.setFocusPolicy(Qt.NoFocus)

    fieldLayout = QGridLayout()
    fieldLayout.addWidget(callerLabel, 0, 0)
    fieldLayout.addWidget(self.callerEdit, 0, 1, 1, 3)
    fieldLayout.addWidget(startLabel, 1, 0)
    fieldLayout.addWidget(self.startDateTime, 1, 1)
    fieldLayout.addWidget(endLabel, 1, 2)
    fieldLayout.addWidget(self.endDateTime, 1, 3)
    fieldLayout.addWidget(topicLabel, 2, 0)
    fieldLayout.addWidget(topicEdit, 2, 1, 1, 3)
    fieldLayout.addWidget(outcomeLabel, 3, 0)
    fieldLayout.addWidget(self.outcomeComboBox, 3, 1, 1, 3)
    navigationLayout = QHBoxLayout()
    navigationLayout.addWidget(firstButton)
    navigationLayout.addWidget(prevButton)
    navigationLayout.addWidget(nextButton)
    navigationLayout.addWidget(lastButton)
    fieldLayout.addLayout(navigationLayout, 4, 0, 1, 2)
    buttonLayout = QVBoxLayout()
    buttonLayout.addWidget(adon)
    buttonLayout.addWidget(deleteButton)
    buttonLayout.addStretch()
    buttonLayout.addWidget(quitButton)
    layout = QHBoxLayout()
    layout.addLayout(fieldLayout)
    layout.addLayout(buttonLayout)
    self.setLayout(layout)

    self.model = QSqlRelationalTableModel(self)
    self.model.setTable("calls")
    self.model.setRelation(5,
            QSqlRelation("outcomes", "id", "name"))
    self.model.setSort(2, Qt.AscendingOrder)
    self.model.select()

    self.mapper = QDataWidgetMapper(self)
    self.mapper.setSubmitPolicy(QDataWidgetMapper.ManualSubmit)
    self.mapper.setModel(self.model)
    self.mapper.setItemDelegate(QSqlRelationalDelegate(self))
    self.mapper.addMapping(self.callerEdit, 1)
    self.mapper.addMapping(self.startDateTime, 2)
    self.mapper.addMapping(self.endDateTime, 3)
    self.mapper.addMapping(topicEdit, 4)
    relationModel = self.model.relationModel(5)
    self.outcomeComboBox.setModel(relationModel)
    self.outcomeComboBox.setModelColumn(relationModel.fieldIndex("name"))
    self.mapper.addMapping(self.outcomeComboBox, 5)
    self.mapper.toFirst()

    firstButton.clicked.connect(lambda: self.saveRecord(PhoneLogDlg.FIRST))
    prevButton.clicked.connect(lambda: self.saveRecord(PhoneLogDlg.PREV))
    nextButton.clicked.connect(lambda: self.saveRecord(PhoneLogDlg.NEXT))
    lastButton.clicked.connect(lambda: self.saveRecord(PhoneLogDlg.LAST))        
    adon.clicked.connect(self.addRecord)
    deleteButton.clicked.connect(self.deleteRecord)        
    quitButton.clicked.connect(self.done)
    self.setWindowTitle("Phone Log")


def done(self, result=None):
    self.mapper.submit()
    QDialog.done(self, True)


def addRecord(self):
    row = self.model.rowCount()
    self.mapper.submit()
    self.model.insertRow(row)
    self.mapper.setCurrentIndex(row)
    now = QDateTime.currentDateTime()
    self.startDateTime.setDateTime(now)
    self.endDateTime.setDateTime(now)
    self.outcomeComboBox.setCurrentIndex(
            self.outcomeComboBox.findText("Unresolved"))
    self.callerEdit.setFocus()


def deleteRecord(self):
    caller = self.callerEdit.text()
    starttime = self.startDateTime.dateTime().toString(
                                        DATETIME_FORMAT)
    if (QMessageBox.question(self,
            "Delete",
            "Delete call made by

{0} on {1}?".format(caller,starttime),
QMessageBox.Yes|QMessageBox.No) ==
QMessageBox.No):
return
row = self.mapper.currentIndex()
self.model.removeRow(row)
self.model.submitAll()
self.model.select()
if row + 1 >= self.model.rowCount():
row = self.model.rowCount() - 1
self.mapper.setCurrentIndex(row)

def saveRecord(self, where):
    row = self.mapper.currentIndex()
    self.mapper.submit()
    if where == PhoneLogDlg.FIRST:
        row = 0
    elif where == PhoneLogDlg.PREV:
        row = 0 if row <= 1 else row - 1
    elif where == PhoneLogDlg.NEXT:
        row += 1
        if row >= self.model.rowCount():
            row = self.model.rowCount() - 1
    elif where == PhoneLogDlg.LAST:
        row = self.model.rowCount() - 1
    self.mapper.setCurrentIndex(row)

def main():
app = QApplication(sys.argv)

filename = os.path.join(os.path.dirname(__file__), "phonelog.db")
db = QSqlDatabase.addDatabase("QSQLITE")
db.setDatabaseName(filename)
if not db.open():
    QMessageBox.warning(None, "Phone Log",
        QString("Database Error: %1").arg(db.lastError().text()))
    sys.exit(1)

form = PhoneLogDlg()
form.show()
sys.exit(app.exec_())

main()

運行結果:

圖片.png
最后編輯于
?著作權歸作者所有,轉載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末环揽,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子庵佣,更是在濱河造成了極大的恐慌歉胶,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,013評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件巴粪,死亡現(xiàn)場離奇詭異通今,居然都是意外死亡,警方通過查閱死者的電腦和手機肛根,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,205評論 2 382
  • 文/潘曉璐 我一進店門辫塌,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人派哲,你說我怎么就攤上這事臼氨。” “怎么了狮辽?”我有些...
    開封第一講書人閱讀 152,370評論 0 342
  • 文/不壞的土叔 我叫張陵一也,是天一觀的道長。 經(jīng)常有香客問我喉脖,道長椰苟,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,168評論 1 278
  • 正文 為了忘掉前任树叽,我火速辦了婚禮舆蝴,結果婚禮上,老公的妹妹穿的比我還像新娘。我一直安慰自己洁仗,他們只是感情好层皱,可當我...
    茶點故事閱讀 64,153評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著赠潦,像睡著了一般叫胖。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上她奥,一...
    開封第一講書人閱讀 48,954評論 1 283
  • 那天瓮增,我揣著相機與錄音,去河邊找鬼哩俭。 笑死绷跑,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的凡资。 我是一名探鬼主播砸捏,決...
    沈念sama閱讀 38,271評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼隙赁!你這毒婦竟也來了垦藏?” 一聲冷哼從身側響起,我...
    開封第一講書人閱讀 36,916評論 0 259
  • 序言:老撾萬榮一對情侶失蹤鸳谜,失蹤者是張志新(化名)和其女友劉穎膝藕,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體咐扭,經(jīng)...
    沈念sama閱讀 43,382評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡芭挽,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,877評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了蝗肪。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片袜爪。...
    茶點故事閱讀 37,989評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖薛闪,靈堂內(nèi)的尸體忽然破棺而出辛馆,到底是詐尸還是另有隱情,我是刑警寧澤豁延,帶...
    沈念sama閱讀 33,624評論 4 322
  • 正文 年R本政府宣布昙篙,位于F島的核電站,受9級特大地震影響诱咏,放射性物質發(fā)生泄漏苔可。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,209評論 3 307
  • 文/蒙蒙 一袋狞、第九天 我趴在偏房一處隱蔽的房頂上張望焚辅。 院中可真熱鬧映屋,春花似錦、人聲如沸同蜻。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,199評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽湾蔓。三九已至瘫析,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間卵蛉,已是汗流浹背颁股。 一陣腳步聲響...
    開封第一講書人閱讀 31,418評論 1 260
  • 我被黑心中介騙來泰國打工么库, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留傻丝,地道東北人。 一個月前我還...
    沈念sama閱讀 45,401評論 2 352
  • 正文 我出身青樓诉儒,卻偏偏與公主長得像葡缰,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子忱反,可洞房花燭夜當晚...
    茶點故事閱讀 42,700評論 2 345