Exemple #1
0
class SettingsDialog(QDialog):
    
    def __init__(self, app):
        QDialog.__init__(self)
        self.app = app
        self.setupUi()
        
    def setupUi(self):
        self.ui = Ui_SettingsDialog()
        self.ui.setupUi(self)
        
        self.connect(self.ui.bbox, SIGNAL("accepted()"), self.accept)
        self.connect(self.ui.bbox, SIGNAL("rejected()"), self.reject)
        
    def accept(self):
        self.app.settings.setValue("smartauth/auth/apikey", self.ui.edit_auth_api_key.text())
        self.app.settings.setValue("smartauth/auth/domain", self.ui.edit_auth_domain.text())
        self.app.settings.setValue("smartauth/profiles/apikey", self.ui.edit_profiles_api_key.text())
        self.app.settings.setValue("smartauth/profiles/domain", self.ui.edit_profiles_domain.text())
        QDialog.accept(self)
        
    def onReject(self):
        QDialog.reject(self)
    
    ### Events ###
    
    def showEvent(self, event):
        self.ui.edit_auth_api_key.setText(self.app.settings.value("smartauth/auth/apikey", "").toString())
        self.ui.edit_auth_domain.setText(self.app.settings.value("smartauth/auth/domain", "").toString())
        self.ui.edit_profiles_api_key.setText(self.app.settings.value("smartauth/profiles/apikey", "").toString())
        self.ui.edit_profiles_domain.setText(self.app.settings.value("smartauth/profiles/domain", "").toString())
        
Exemple #2
0
class SettingsDialog(QDialog):
    def __init__(self, app):
        QDialog.__init__(self)
        self.app = app
        self.setupUi()

    def setupUi(self):
        self.ui = Ui_SettingsDialog()
        self.ui.setupUi(self)

        self.connect(self.ui.bbox, SIGNAL("accepted()"), self.accept)
        self.connect(self.ui.bbox, SIGNAL("rejected()"), self.reject)

    def accept(self):
        self.app.settings.setValue("smartauth/auth/apikey",
                                   self.ui.edit_auth_api_key.text())
        self.app.settings.setValue("smartauth/auth/domain",
                                   self.ui.edit_auth_domain.text())
        self.app.settings.setValue("smartauth/profiles/apikey",
                                   self.ui.edit_profiles_api_key.text())
        self.app.settings.setValue("smartauth/profiles/domain",
                                   self.ui.edit_profiles_domain.text())
        QDialog.accept(self)

    def onReject(self):
        QDialog.reject(self)

    ### Events ###

    def showEvent(self, event):
        self.ui.edit_auth_api_key.setText(
            self.app.settings.value("smartauth/auth/apikey", "").toString())
        self.ui.edit_auth_domain.setText(
            self.app.settings.value("smartauth/auth/domain", "").toString())
        self.ui.edit_profiles_api_key.setText(
            self.app.settings.value("smartauth/profiles/apikey",
                                    "").toString())
        self.ui.edit_profiles_domain.setText(
            self.app.settings.value("smartauth/profiles/domain",
                                    "").toString())
Exemple #3
0
 def setupUi(self):
     self.ui = Ui_SettingsDialog()
     self.ui.setupUi(self)
     
     self.connect(self.ui.bbox, SIGNAL("accepted()"), self.accept)
     self.connect(self.ui.bbox, SIGNAL("rejected()"), self.reject)
Exemple #4
0
    def setupUi(self):
        self.ui = Ui_SettingsDialog()
        self.ui.setupUi(self)

        self.connect(self.ui.bbox, SIGNAL("accepted()"), self.accept)
        self.connect(self.ui.bbox, SIGNAL("rejected()"), self.reject)