![]() |
2010-05-01
, 18:16
|
|
Posts: 1,366 |
Thanked: 1,185 times |
Joined on Jan 2006
|
#2
|
def on_backButton_clicked(self): #emit custom signal and pass some parameters back in self.config self.writeConfig() self.emit(SIGNAL("dialog closed"), self.config) self.close()
![]() |
2010-05-01
, 18:35
|
Posts: 70 |
Thanked: 39 times |
Joined on Mar 2010
|
#3
|
![]() |
2010-05-01
, 19:25
|
|
Posts: 543 |
Thanked: 802 times |
Joined on Apr 2010
@ Germany
|
#4
|
Do something like this in your dialog
Code:def on_backButton_clicked(self): #emit custom signal and pass some parameters back in self.config self.writeConfig() self.emit(SIGNAL("dialog closed"), self.config) self.close()
class frmDialog(QtGui.QDialog): def __init__(self, parent=None): QtGui.QWidget.__init__(self, parent) self.ui = Ui_Dialog() self.ui.setupUi(self) def reject(self): print "reject" self.close() def accept(self): print "accept" self.close()
![]() |
2010-05-02
, 18:20
|
|
Posts: 1,366 |
Thanked: 1,185 times |
Joined on Jan 2006
|
#5
|
#!/usr/bin/env python # -*- coding: utf-8 -*- from PyQt4 import QtCore from PyQt4.QtGui import QApplication from winstub import MainWindow if __name__ == "__main__": import sys app = QApplication(sys.argv) ui = MainWindow() ui.show() sys.exit(app.exec_())
# -*- coding: utf-8 -*- # Form implementation generated from reading ui file '/home/mikec/python/Memo UI examples/Dialog/win.ui' # # Created: Sun May 2 18:50:13 2010 # by: PyQt4 UI code generator 4.6.1 # # WARNING! All changes made in this file will be lost! from PyQt4 import QtCore, QtGui class Ui_MainWindow(object): def setupUi(self, MainWindow): MainWindow.setObjectName("MainWindow") MainWindow.resize(800, 600) self.centralWidget = QtGui.QWidget(MainWindow) self.centralWidget.setObjectName("centralWidget") self.showButton = QtGui.QPushButton(self.centralWidget) self.showButton.setGeometry(QtCore.QRect(280, 250, 201, 71)) self.showButton.setObjectName("showButton") MainWindow.setCentralWidget(self.centralWidget) self.retranslateUi(MainWindow) QtCore.QMetaObject.connectSlotsByName(MainWindow) def retranslateUi(self, MainWindow): MainWindow.setWindowTitle(QtGui.QApplication.translate("MainWindow", "MainWindow", None, QtGui.QApplication.UnicodeUTF8)) self.showButton.setText(QtGui.QApplication.translate("MainWindow", "Show Doalog", None, QtGui.QApplication.UnicodeUTF8)) if __name__ == "__main__": import sys app = QtGui.QApplication(sys.argv) MainWindow = QtGui.QMainWindow() ui = Ui_MainWindow() ui.setupUi(MainWindow) MainWindow.show() sys.exit(app.exec_())
# -*- coding: utf-8 -*- # Form implementation generated from reading ui file '/home/mikec/python/Memo UI examples/Dialog/dialog.ui' # # Created: Sun May 2 18:50:13 2010 # by: PyQt4 UI code generator 4.6.1 # # WARNING! All changes made in this file will be lost! from PyQt4 import QtCore, QtGui class Ui_myDialog(object): def setupUi(self, myDialog): myDialog.setObjectName("myDialog") myDialog.resize(400, 300) self.acceptButton = QtGui.QPushButton(myDialog) self.acceptButton.setGeometry(QtCore.QRect(300, 150, 84, 51)) self.acceptButton.setObjectName("acceptButton") self.rejectButton = QtGui.QPushButton(myDialog) self.rejectButton.setGeometry(QtCore.QRect(300, 220, 84, 51)) self.rejectButton.setObjectName("rejectButton") self.retranslateUi(myDialog) QtCore.QMetaObject.connectSlotsByName(myDialog) def retranslateUi(self, myDialog): myDialog.setWindowTitle(QtGui.QApplication.translate("myDialog", "Dialog", None, QtGui.QApplication.UnicodeUTF8)) self.acceptButton.setText(QtGui.QApplication.translate("myDialog", "Accept", None, QtGui.QApplication.UnicodeUTF8)) self.rejectButton.setText(QtGui.QApplication.translate("myDialog", "Reject", None, QtGui.QApplication.UnicodeUTF8)) if __name__ == "__main__": import sys app = QtGui.QApplication(sys.argv) myDialog = QtGui.QDialog() ui = Ui_myDialog() ui.setupUi(myDialog) myDialog.show() sys.exit(app.exec_())
# -*- coding: utf-8 -*- """ Module implementing MainWindow and Dialog """ from PyQt4.QtGui import QMainWindow, QDialog from PyQt4.QtCore import pyqtSignature from Ui_win import Ui_MainWindow from Ui_dialog import Ui_myDialog class MainWindow(QMainWindow, Ui_MainWindow): def __init__(self, parent = None): QMainWindow.__init__(self, parent) self.setupUi(self) self.popDialog=myDialog() def on_showButton_clicked(self): self.popDialog.show() class myDialog(QDialog, Ui_myDialog): def __init__(self, parent = None): QDialog.__init__(self, parent) self.setupUi(self) def on_acceptButton_clicked(self): self.close() def on_rejectButton_clicked(self): self.close()
![]() |
2010-05-02
, 22:18
|
|
Posts: 543 |
Thanked: 802 times |
Joined on Apr 2010
@ Germany
|
#6
|
You should not have to re-implement those events just for a close.
here some code that works, generated from qt designer.
it opens a main window, with a big button that shows the dialog.
dialog has two buttons that accept and reject then closes the dialog.
def reject(self): self.close()
QtCore.QObject.connect(self.cancelButton, QtCore.SIGNAL("clicked()"), Dialog.reject)
def on_backButton_clicked(self):
![]() |
2010-05-02
, 23:03
|
Posts: 118 |
Thanked: 26 times |
Joined on Jun 2008
|
#7
|
class settingsDialog(QDialog, Ui_settingsDialog): def __init__(self, parent, gconfClient): self.parent = parent QDialog.__init__(self, parent) self.gconfClient = gconfClient self.setupUi(self) self.googlePasswordLineEdit.setEchoMode(QLineEdit.Password) googlename = self.gconfClient.get_string('/apps/event2gcal/googlename') if googlename != None: self.googleUsernameLineEdit.setText(googlename) googlepass = self.gconfClient.get_string('/apps/event2gcal/googlepass') if googlepass != None: self.googlePasswordLineEdit.setText(googlepass) dbuslisten = self.gconfClient.get_bool('/apps/event2gcal/dbuslisten') if dbuslisten != None: self.dBusListenerCheckBox.setChecked(self.gconfClient.get_bool('/apps/event2gcal/dbuslisten')) if googlename != None and googlepass != None: calDict = self.parent.googleCalendar.getCalendars() self.populateCalendar(calDict) self.connect(self.buttonBox, SIGNAL("accepted()"), self.saveSettings) self.exec_() def saveSettings(self): # Read values of widgets and save in GConf # We should probably sanity check the values at some point.. self.gconfClient.set_string('/apps/event2gcal/googlename', str(self.googleUsernameLineEdit.text())) self.gconfClient.set_string('/apps/event2gcal/googlepass', str(self.googlePasswordLineEdit.text())) self.gconfClient.set_string('/apps/event2gcal/googlecal', str(self.calendarComboBox.itemData(self.calendarComboBox.currentIndex()).toString())) self.parent.googleEditUri = str(self.calendarComboBox.itemData(self.calendarComboBox.currentIndex()).toString()) print "Saving edit uri: " + str(self.calendarComboBox.itemData(self.calendarComboBox.currentIndex()).toString()) + "\n" self.gconfClient.set_bool('/apps/event2gcal/dbuslisten', self.dBusListenerCheckBox.isChecked()) def populateCalendar(self, calDict): for calName in calDict: self.calendarComboBox.addItem(calName, calDict[calName])
The Following User Says Thank You to wierdo For This Useful Post: | ||
![]() |
2010-05-03
, 08:03
|
|
Posts: 1,366 |
Thanked: 1,185 times |
Joined on Jan 2006
|
#8
|
The Following User Says Thank You to mikec For This Useful Post: | ||
![]() |
2010-05-03
, 18:32
|
|
Posts: 543 |
Thanked: 802 times |
Joined on Apr 2010
@ Germany
|
#9
|
Just connect the accepted() signal to a function in your class that does whatever work you need to do. It's pretty simple, as the dialog automatically closes. If you want to do some stuff in the event that the dialog is rejected, just connect the rejected() signal to a different function. Here's an example that subclasses the Qt Designer created classes:
[...]
Ironically, too much thinking has been what gets me in trouble with Qt.
signals and slots is great, but Qtdesigner does much for you, as does IDE like eric. Try and stay with Designer as your interfaces get more complex, as it allows you to tweak layout much easier
anyway you get much pleasure for pyqt as you learn more.
![]() |
2010-05-03
, 19:02
|
|
Posts: 1,366 |
Thanked: 1,185 times |
Joined on Jan 2006
|
#10
|
The Following User Says Thank You to mikec For This Useful Post: | ||
I guess this is a totally noob question. But I stuck and don't know how to handle...
I've had to reebot my N900 to often (made a not cancelable modal Dialog by accident) and hope now here for help for my initial problem.
Here a example of my problem:
I created a Main Window and a Menu to call a Test Dialog (want to place some widgets there)
I know I have to close the Dialog after the accept or rejected event. But I don't know how. Dialog.close doesn't work.
DialogTest.py:
Ui_frmMain.py:
Ui_frmDialog.py:
Before I post here some examples of my stupid fault trys... Could someone please help me and post the solution?