예제 #1
0
 def on_actionSettings_triggered(self, tabIndex = 0):
     settings_dialog = Settings(self, tabIndex)
     settings_dialog.accepted.connect(self.updateTextEditor)
     settings_dialog.show()
예제 #2
0
 def on_actionSettings_triggered(self, tabIndex=0):
     settings_dialog = Settings(self, tabIndex)
     settings_dialog.accepted.connect(self.updateTextEditor)
     settings_dialog.show()
예제 #3
0
    def settings(self):
        lectorSettings = Settings(self, 1)
#        QObject.connect(lectorSettings, SIGNAL('accepted()'),
#                    self.updateTextEditor)
        lectorSettings.settingAccepted.connect(self.resetSpell)
        lectorSettings.show()
예제 #4
0
 def settings(self):
     lectorSettings = Settings(self, 1)
     #        QObject.connect(lectorSettings, SIGNAL('accepted()'),
     #                    self.updateTextEditor)
     lectorSettings.settingAccepted.connect(self.resetSpell)
     lectorSettings.show()
예제 #5
0
파일: lector.py 프로젝트: klukonin/lector
 def on_actionSettings_triggered(self, tabIndex=0):
     settings_dialog = Settings(self, tabIndex)
     QObject.connect(settings_dialog, SIGNAL('accepted()'),
                     self.updateTextEditor)
     settings_dialog.show()
예제 #6
0
파일: lector.py 프로젝트: klukonin/lector
 def on_actionSettings_triggered(self, tabIndex = 0):
     settings_dialog = Settings(self, tabIndex)
     QObject.connect(settings_dialog, SIGNAL('accepted()'),
                 self.updateTextEditor)
     settings_dialog.show()