def __init__(self, vcs, parent = None):
     """
     Constructor
     
     @param vcs reference to the vcs object
     @param parent parent widget (QWidget)
     """
     QWidget.__init__(self, parent)
     self.setupUi(self)
     SvnDialogMixin.__init__(self)
     
     self.buttonBox.button(QDialogButtonBox.Close).setEnabled(False)
     self.buttonBox.button(QDialogButtonBox.Cancel).setDefault(True)
     
     self.vcs = vcs
     
     self.propsList.headerItem().setText(self.propsList.columnCount(), "")
     self.propsList.header().setSortIndicator(0, Qt.AscendingOrder)
     
     self.client = self.vcs.getClient()
     self.client.callback_cancel = \
         self._clientCancelCallback
     self.client.callback_get_login = \
         self._clientLoginCallback
     self.client.callback_ssl_server_trust_prompt = \
         self._clientSslServerTrustPromptCallback
 def __init__(self, vcs, parent = None):
     """
     Constructor
     
     @param vcs reference to the vcs object
     @param parent parent widget (QWidget)
     """
     QDialog.__init__(self, parent)
     self.setupUi(self)
     SvnDialogMixin.__init__(self)
     
     self.buttonBox.button(QDialogButtonBox.Close).setEnabled(False)
     self.buttonBox.button(QDialogButtonBox.Cancel).setDefault(True)
     
     self.vcs = vcs
     
     self.blameList.headerItem().setText(self.blameList.columnCount(), "")
     font = QFont(self.blameList.font())
     if Utilities.isWindowsPlatform():
         font.setFamily("Lucida Console")
     else:
         font.setFamily("Monospace")
     self.blameList.setFont(font)
     
     self.client = self.vcs.getClient()
     self.client.callback_cancel = \
         self._clientCancelCallback
     self.client.callback_get_login = \
         self._clientLoginCallback
     self.client.callback_ssl_server_trust_prompt = \
         self._clientSslServerTrustPromptCallback
 def __init__(self, text, command, pysvnClient, parent = None, log = ""):
     """
     Constructor
     
     @param text text to be shown by the label (string or QString)
     @param command svn command to be executed (display purposes only)
         (string or QString)
     @param pysvnClient reference to the pysvn client object (pysvn.Client)
     @keyparam parent parent widget (QWidget)
     @keyparam log optional log message (string or QString)
     """
     QDialog.__init__(self, parent)
     self.setupUi(self)
     SvnDialogMixin.__init__(self, log)
     
     self.buttonBox.button(QDialogButtonBox.Close).setEnabled(False)
     self.buttonBox.button(QDialogButtonBox.Cancel).setDefault(True)
     
     self.outputGroup.setTitle(text)
     self.errorGroup.hide()
     
     pysvnClient.callback_cancel = \
         self._clientCancelCallback
     
     pysvnClient.callback_notify = \
         self._clientNotifyCallback
     pysvnClient.callback_get_login = \
         self._clientLoginCallback
     pysvnClient.callback_ssl_server_trust_prompt = \
         self._clientSslServerTrustPromptCallback
     pysvnClient.callback_get_log_message = \
         self._clientLogCallback
     
     self.__hasAddOrDelete = False
     
     command = unicode(command)
     if command:
         self.resultbox.append(command)
         self.resultbox.append('')
     
     self.show()
     QApplication.processEvents()
 def __init__(self, vcs, parent = None):
     """
     Constructor
     
     @param vcs reference to the vcs object
     @param parent parent widget (QWidget)
     """
     QDialog.__init__(self, parent)
     self.setupUi(self)
     SvnDialogMixin.__init__(self)
     
     self.vcs = vcs
     
     self.client = self.vcs.getClient()
     self.client.callback_cancel = \
         self._clientCancelCallback
     self.client.callback_get_login = \
         self._clientLoginCallback
     self.client.callback_ssl_server_trust_prompt = \
         self._clientSslServerTrustPromptCallback
     
     self.show()
     QApplication.processEvents()
 def __init__(self, vcs, parent=None):
     """
     Constructor
     
     @param vcs reference to the vcs object
     @param parent parent widget (QWidget)
     """
     QDialog.__init__(self, parent)
     self.setupUi(self)
     SvnDialogMixin.__init__(self)
     
     self.buttonBox.button(QDialogButtonBox.Close).setEnabled(False)
     self.buttonBox.button(QDialogButtonBox.Cancel).setDefault(True)
     
     self.vcs = vcs
     
     self.client = self.vcs.getClient()
     self.client.callback_cancel = \
         self._clientCancelCallback
     self.client.callback_get_login = \
         self._clientLoginCallback
     self.client.callback_ssl_server_trust_prompt = \
         self._clientSslServerTrustPromptCallback
 def __init__(self, vcs, parent = None):
     """
     Constructor
     
     @param vcs reference to the vcs object
     @param parent parent widget (QWidget)
     """
     QWidget.__init__(self, parent)
     self.setupUi(self)
     SvnDialogMixin.__init__(self)
     
     self.buttonBox.button(QDialogButtonBox.Save).setEnabled(False)
     self.buttonBox.button(QDialogButtonBox.Close).setEnabled(False)
     self.buttonBox.button(QDialogButtonBox.Cancel).setDefault(True)
     
     self.vcs = vcs
     
     if Utilities.isWindowsPlatform():
         self.contents.setFontFamily("Lucida Console")
     else:
         self.contents.setFontFamily("Monospace")
     
     self.cNormalFormat = self.contents.currentCharFormat()
     self.cAddedFormat = self.contents.currentCharFormat()
     self.cAddedFormat.setBackground(QBrush(QColor(190, 237, 190)))
     self.cRemovedFormat = self.contents.currentCharFormat()
     self.cRemovedFormat.setBackground(QBrush(QColor(237, 190, 190)))
     self.cLineNoFormat = self.contents.currentCharFormat()
     self.cLineNoFormat.setBackground(QBrush(QColor(255, 220, 168)))
     
     self.client = self.vcs.getClient()
     self.client.callback_cancel = \
         self._clientCancelCallback
     self.client.callback_get_login = \
         self._clientLoginCallback
     self.client.callback_ssl_server_trust_prompt = \
         self._clientSslServerTrustPromptCallback